diff options
author | Mike Lampard <mlampard@users.sourceforge.net> | 2001-10-24 15:53:23 +0000 |
---|---|---|
committer | Mike Lampard <mlampard@users.sourceforge.net> | 2001-10-24 15:53:23 +0000 |
commit | 42b41e3ee226ba1447b7febb12537b84219040c9 (patch) | |
tree | 9baefcba04e0b58931cd919db9abc1cbe01e0e66 /src/dxr3/dxr3_decoder.c | |
parent | b96f7e0248bedc48b468f4c7dc872e04d4fe66f8 (diff) | |
download | xine-lib-42b41e3ee226ba1447b7febb12537b84219040c9.tar.gz xine-lib-42b41e3ee226ba1447b7febb12537b84219040c9.tar.bz2 |
fix a couple of compiler warnings, dxr3_overlay_buggy_preinit is no longer
quite so buggy...
CVS patchset: 876
CVS date: 2001/10/24 15:53:23
Diffstat (limited to 'src/dxr3/dxr3_decoder.c')
-rw-r--r-- | src/dxr3/dxr3_decoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dxr3/dxr3_decoder.c b/src/dxr3/dxr3_decoder.c index c5c6240af..dc0cb927a 100644 --- a/src/dxr3/dxr3_decoder.c +++ b/src/dxr3/dxr3_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: dxr3_decoder.c,v 1.20 2001/10/24 13:42:58 mlampard Exp $ + * $Id: dxr3_decoder.c,v 1.21 2001/10/24 15:53:23 mlampard Exp $ * * dxr3 video and spu decoder plugin. Accepts the video and spu data * from XINE and sends it directly to the corresponding dxr3 devices. @@ -240,7 +240,7 @@ static void find_aspect(dxr3_decoder_t *this, uint8_t * buffer) if (old_h!=this->height || old_w!=this->width || old_a!=this->aspect) this->video_out->get_frame(this->video_out, this->width,this->height,this->aspect, - IMGFMT_YV12, 1, 6667); + IMGFMT_YV12, 1, 6667); /* dxr3_decoder = 6667 */ } } |