diff options
author | Thierry Foucu <tfoucu@gmail.com> | 2015-09-26 16:21:06 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-09-29 14:33:01 +0200 |
commit | c5e5e6306223623de8352a3ecd224956aa5beb37 (patch) | |
tree | d1030c6e0cbbcc4e2cb2e32742cf7912dae376d6 /libavformat | |
parent | b5e4f393b6757629281f58c3f3f6d55ca522ab60 (diff) | |
download | ffmpeg-c5e5e6306223623de8352a3ecd224956aa5beb37.tar.gz |
riff: Add support for RV40 codec in AVI
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/riff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 9093b3a449..1746297f36 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -359,6 +359,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_HQX, MKTAG('C', 'H', 'Q', 'X') }, { AV_CODEC_ID_TDSC, MKTAG('T', 'D', 'S', 'C') }, { AV_CODEC_ID_HQ_HQA, MKTAG('C', 'U', 'V', 'C') }, + { AV_CODEC_ID_RV40, MKTAG('R', 'V', '4', '0') }, { AV_CODEC_ID_NONE, 0 } }; |