diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-12-30 22:58:49 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-12-30 22:58:49 +0000 |
commit | e1bd945b1dcd91321ac18397b2531bcbdd93dbd5 (patch) | |
tree | d3a4938867fe2b60e6b344244af5d9bfde597580 /libavcodec/rawdec.c | |
parent | 759dc2b6cc6ced0c935186cc9bff65150dfb0de9 (diff) | |
download | ffmpeg-e1bd945b1dcd91321ac18397b2531bcbdd93dbd5.tar.gz |
Support raw black&white in mov, fixes issue 1654.
Originally committed as revision 20984 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rawdec.c')
-rw-r--r-- | libavcodec/rawdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index 25d74ed4b9..458ac96f80 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -46,6 +46,7 @@ static const PixelFormatTag pixelFormatBpsAVI[] = { }; static const PixelFormatTag pixelFormatBpsMOV[] = { + { PIX_FMT_MONOWHITE, 1 }, { PIX_FMT_PAL8, 4 }, { PIX_FMT_PAL8, 8 }, // FIXME swscale does not support 16 bit in .mov, sample 16bit.mov |