diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-06-06 11:00:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-06-06 11:00:30 +0000 |
commit | de51f22d8580c3b19d3b53ddfe7523f34e478ede (patch) | |
tree | 3b6d3ebb38be43bf84016d0db1d5f21d9dc95bc1 /libavcodec/rawdec.c | |
parent | 48b5a2fa9837849316584e4fa94cbaf5391121da (diff) | |
download | ffmpeg-de51f22d8580c3b19d3b53ddfe7523f34e478ede.tar.gz |
fix rgb444 support in avi.
Originally committed as revision 23503 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 a73b293aae..ab13bdc59e 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -38,6 +38,7 @@ typedef struct RawVideoContext { static const PixelFormatTag pix_fmt_bps_avi[] = { { PIX_FMT_PAL8, 4 }, { PIX_FMT_PAL8, 8 }, + { PIX_FMT_RGB444, 12 }, { PIX_FMT_RGB555, 15 }, { PIX_FMT_RGB555, 16 }, { PIX_FMT_BGR24, 24 }, |