[FFmpeg-cvslog] r18788 - trunk/libavformat/movenc.c

bcoudurier subversion
Sun May 10 22:12:36 CEST 2009


Author: bcoudurier
Date: Sun May 10 22:12:36 2009
New Revision: 18788

Log:
correct pixfmt for argb

Modified:
   trunk/libavformat/movenc.c

Modified: trunk/libavformat/movenc.c
==============================================================================
--- trunk/libavformat/movenc.c	Sun May 10 22:11:11 2009	(r18787)
+++ trunk/libavformat/movenc.c	Sun May 10 22:12:36 2009	(r18788)
@@ -615,7 +615,7 @@ static const struct {
     { PIX_FMT_UYVY422, MKTAG('2','v','u','y'),  0 },
     { PIX_FMT_BGR555,  MKTAG('r','a','w',' '), 16 },
     { PIX_FMT_RGB24,   MKTAG('r','a','w',' '), 24 },
-    { PIX_FMT_BGR32_1, MKTAG('r','a','w',' '), 32 },
+    { PIX_FMT_ARGB,    MKTAG('r','a','w',' '), 32 },
     { PIX_FMT_RGBA,    MKTAG('R','G','B','A'), 32 },
 };
 



More information about the ffmpeg-cvslog mailing list