Mercurial > mplayer.hg
changeset 6535:29f94210a67f
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
author | arpi |
---|---|
date | Sun, 23 Jun 2002 19:30:35 +0000 |
parents | fce6f98eb72e |
children | 87942adf9c1c |
files | postproc/swscale.c |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/postproc/swscale.c Sun Jun 23 19:09:25 2002 +0000 +++ b/postproc/swscale.c Sun Jun 23 19:30:35 2002 +0000 @@ -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 @@ { case IMGFMT_IYUV: return IMGFMT_I420; case IMGFMT_Y8 : return IMGFMT_Y800; + case IMGFMT_IF09: return IMGFMT_YVU9; default: return fourcc; } }