summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Keil <jkeil@users.sourceforge.net>2001-09-20 11:02:45 +0000
committerJuergen Keil <jkeil@users.sourceforge.net>2001-09-20 11:02:45 +0000
commitd8bafc108146452196526e392e83501eb70fc2ff (patch)
treeb4d7f50d04be7a30e49e396c7b95d10e81983217
parentba880b5d293d59c2c556d6563ee93cc491d1e8e9 (diff)
downloadxine-lib-d8bafc108146452196526e392e83501eb70fc2ff.tar.gz
xine-lib-d8bafc108146452196526e392e83501eb70fc2ff.tar.bz2
Always request IMGFMT_YUY2 from video_out decoder (RGB format is converted to
YUY2 here in w32codec) CVS patchset: 674 CVS date: 2001/09/20 11:02:45
-rw-r--r--src/libw32dll/w32codec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libw32dll/w32codec.c b/src/libw32dll/w32codec.c
index 1bebf2377..60047b6ca 100644
--- a/src/libw32dll/w32codec.c
+++ b/src/libw32dll/w32codec.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: w32codec.c,v 1.28 2001/09/20 09:33:23 jkeil Exp $
+ * $Id: w32codec.c,v 1.29 2001/09/20 11:02:45 jkeil Exp $
*
* routines for using w32 codecs
*
@@ -406,7 +406,7 @@ static void w32v_decode_data (video_decoder_t *this_gen, buf_element_t *buf) {
this->bih.biWidth,
this->bih.biHeight,
42,
- this->outfmt,
+ IMGFMT_YUY2,
this->video_step,
VO_BOTH_FIELDS);