[FFmpeg-cvslog] r20962 - trunk/libavcodec/rawdec.c
cehoyos
subversion
Tue Dec 29 12:53:51 CET 2009
Author: cehoyos
Date: Tue Dec 29 12:53:51 2009
New Revision: 20962
Log:
Use correct pixfmt for 32 bit raw in mov also on big-endian, fixes issue 1630.
Modified:
trunk/libavcodec/rawdec.c
Modified: trunk/libavcodec/rawdec.c
==============================================================================
--- trunk/libavcodec/rawdec.c Tue Dec 29 12:42:16 2009 (r20961)
+++ trunk/libavcodec/rawdec.c Tue Dec 29 12:53:51 2009 (r20962)
@@ -52,7 +52,7 @@ static const PixelFormatTag pixelFormatB
// http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html
{ PIX_FMT_BGR555, 16 },
{ PIX_FMT_RGB24, 24 },
- { PIX_FMT_BGR32_1, 32 },
+ { PIX_FMT_ARGB, 32 },
{ PIX_FMT_NONE, 0 },
};
More information about the ffmpeg-cvslog
mailing list