diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-12-31 01:08:10 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-12-31 01:08:10 +0000 |
commit | f27fd362313dc2f968f98db8666e335c4112fcc7 (patch) | |
tree | 006705b30f61cdbbbc45fa24d5e5cba0edf695cc /libavcodec/rawdec.c | |
parent | e1bd945b1dcd91321ac18397b2531bcbdd93dbd5 (diff) | |
download | ffmpeg-f27fd362313dc2f968f98db8666e335c4112fcc7.tar.gz |
Fix colourspace for 16 bit raw video in mov, fixes issue 1527 on big-endian.
Originally committed as revision 20985 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 458ac96f80..46a5de4918 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -51,7 +51,7 @@ static const PixelFormatTag pixelFormatBpsMOV[] = { { PIX_FMT_PAL8, 8 }, // FIXME swscale does not support 16 bit in .mov, sample 16bit.mov // http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html - { PIX_FMT_BGR555, 16 }, + { PIX_FMT_RGB555BE, 16 }, { PIX_FMT_RGB24, 24 }, { PIX_FMT_ARGB, 32 }, { PIX_FMT_NONE, 0 }, |