summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-23 19:30:35 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-23 19:30:35 +0000
commit1ac6f92adf90a3286982a1f309b957fe8c5f635d (patch)
treef7e23a0085726f5ba983140af34e3f45b242074c /postproc
parent645ad5efad353d376cddaa688c7a4b3c2561c2bf (diff)
downloadmpv-1ac6f92adf90a3286982a1f309b957fe8c5f635d.tar.bz2
mpv-1ac6f92adf90a3286982a1f309b957fe8c5f635d.tar.xz
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 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6536 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/swscale.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/postproc/swscale.c b/postproc/swscale.c
index 35de538977..d804591c17 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;
}
}