[Mplayer-cvslog] CVS: main/postproc swscale.c,1.95,1.96

Arpi of Ize arpi at mplayerhq.hu
Sun Jun 23 21:30:38 CEST 2002


Update of /cvsroot/mplayer/main/postproc
In directory mail:/var/tmp.root/cvs-serv13515

Modified Files:
	swscale.c 
Log Message:
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


Index: swscale.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/swscale.c,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- swscale.c	23 Jun 2002 18:51:43 -0000	1.95
+++ swscale.c	23 Jun 2002 19:30:35 -0000	1.96
@@ -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;
 	}
 }




More information about the MPlayer-cvslog mailing list