diff options
author | ami_stuff <ami_stuff@o2.pl> | 2011-05-16 11:25:57 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-05-16 11:25:57 +0200 |
commit | 0eba7fc2935fb5d1aba949d89be4049669d1e621 (patch) | |
tree | e6c00df092782292c6b7da86c70ab44344d9264f /libavcodec/rawdec.c | |
parent | d43a6edf7d62fb24f96697a7ad31cf585db4724c (diff) | |
download | ffmpeg-0eba7fc2935fb5d1aba949d89be4049669d1e621.tar.gz |
Support decoding of 2bpp rawvideo in avi (ticket 206).
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 bdf5674873..cdafa00b15 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_PAL8, 2 }, { PIX_FMT_PAL8, 4 }, { PIX_FMT_PAL8, 8 }, { PIX_FMT_RGB444, 12 }, |