From 6f408b47d7f592495c9e8d5af96b6a813a5778aa Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 26 Jan 2002 15:43:31 +0000 Subject: [PATCH] yuy2 reported as working git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4351 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/tv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libmpdemux/tv.c b/libmpdemux/tv.c index 4cfc6827d9..a3062491ef 100644 --- a/libmpdemux/tv.c +++ b/libmpdemux/tv.c @@ -113,8 +113,8 @@ int stream_open_tv(stream_t *stream, tvi_handle_t *tvh) picture_format = IMGFMT_I420; else if (!strcasecmp(tv_param_outfmt, "uyvy")) picture_format = IMGFMT_UYVY; -// else if (!strcasecmp(tv_param_outfmt, "yuy2")) -// picture_format = IMGFMT_YUY2; + else if (!strcasecmp(tv_param_outfmt, "yuy2")) + picture_format = IMGFMT_YUY2; else if (!strcasecmp(tv_param_outfmt, "rgb32")) picture_format = IMGFMT_RGB32; else if (!strcasecmp(tv_param_outfmt, "rgb24"))