From 484d1464162a94bcd63f65adb008c44bd6b94f7e Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Tue, 29 Dec 2009 11:53:51 +0000 Subject: Use correct pixfmt for 32 bit raw in mov also on big-endian, fixes issue 1630. Originally committed as revision 20962 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/rawdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/rawdec.c') diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index 5439a47..25d74ed 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -52,7 +52,7 @@ static const PixelFormatTag pixelFormatBpsMOV[] = { // 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 }, }; -- cgit v1.1