diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-12-29 11:53:51 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-12-29 11:53:51 +0000 |
commit | 484d1464162a94bcd63f65adb008c44bd6b94f7e (patch) | |
tree | 019cd780f33ca8c8b46df165c100745eb44cbe8e /libavcodec/rawdec.c | |
parent | f1e946943ac7da6491142c2422de1ac0f26f47fe (diff) | |
download | ffmpeg-484d1464162a94bcd63f65adb008c44bd6b94f7e.tar.gz |
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
Diffstat (limited to 'libavcodec/rawdec.c')
-rw-r--r-- | libavcodec/rawdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index 5439a47d9c..25d74ed4b9 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 }, }; |