diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2011-12-28 00:50:25 -0500 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-01 22:27:04 +0100 |
commit | d3a5c2698676c68e529f79d8bf9954793b97fc4e (patch) | |
tree | 424889a2180523287b726dde0b87e52942ab8755 | |
parent | 1135a0714613b91642fc1c2c4b0d807250a55f5c (diff) | |
download | ffmpeg-d3a5c2698676c68e529f79d8bf9954793b97fc4e.tar.gz |
rawdec: Support more QT 1bpp rawvideo files.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-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 9989a36d13..dcbe23c500 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -59,6 +59,7 @@ static const PixelFormatTag pix_fmt_bps_mov[] = { { PIX_FMT_RGB555BE, 16 }, { PIX_FMT_RGB24, 24 }, { PIX_FMT_ARGB, 32 }, + { PIX_FMT_MONOWHITE,33 }, { PIX_FMT_NONE, 0 }, }; |