diff options
author | ami_stuff <ami_stuff@o2.pl> | 2011-05-16 11:26:45 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-05-16 11:26:45 +0200 |
commit | 85eedcf6ff46b5d3e593a16ebcdd84af278e6d83 (patch) | |
tree | d8422eb6cddca6449d3b9fd41b45b7f3d9fe0094 | |
parent | 0eba7fc2935fb5d1aba949d89be4049669d1e621 (diff) | |
download | ffmpeg-85eedcf6ff46b5d3e593a16ebcdd84af278e6d83.tar.gz |
Support decoding of 1bpp rawvideo in avi (ticket 205).
-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 cdafa00b15..3055a50475 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -39,6 +39,7 @@ typedef struct RawVideoContext { } RawVideoContext; static const PixelFormatTag pix_fmt_bps_avi[] = { + { PIX_FMT_MONOWHITE, 1 }, { PIX_FMT_PAL8, 2 }, { PIX_FMT_PAL8, 4 }, { PIX_FMT_PAL8, 8 }, |