From 0c51ef979f715b2e1ecb7f921f65a2a4883eec86 Mon Sep 17 00:00:00 2001 From: Arpi Date: Sun, 23 Jun 2002 19:30:35 +0000 Subject: [PATCH] IF09 is alias for YVU9 (actually it has extra 4th plane containing MC change flags, but it doesn't matter for now) - IF09 is supported by win32 Indeo codecs and by some others too Originally committed as revision 6536 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc --- postproc/swscale.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/postproc/swscale.c b/postproc/swscale.c index 35de538977a..d804591c17e 100644 --- a/postproc/swscale.c +++ b/postproc/swscale.c @@ -17,8 +17,8 @@ */ /* - supported Input formats: YV12, I420, IYUV, YUY2, BGR32, BGR24, BGR16, BGR15, RGB32, RGB24, Y8, Y800, YVU9 - supported output formats: YV12, I420, IYUV, BGR15, BGR16, BGR24, BGR32, Y8, Y800, YVU9 + supported Input formats: YV12, I420/IYUV, YUY2, BGR32, BGR24, BGR16, BGR15, RGB32, RGB24, Y8/Y800, YVU9/IF09 + supported output formats: YV12, I420/IYUV, BGR15, BGR16, BGR24, BGR32, Y8/Y800, YVU9/IF09 BGR15/16 support dithering unscaled special converters @@ -1763,6 +1763,7 @@ static int remove_dup_fourcc(int fourcc) { case IMGFMT_IYUV: return IMGFMT_I420; case IMGFMT_Y8 : return IMGFMT_Y800; + case IMGFMT_IF09: return IMGFMT_YVU9; default: return fourcc; } } -- 2.39.2