diff options
author | Thierry Foucu <tfoucu@gmail.com> | 2015-09-15 14:11:38 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-15 23:21:47 +0200 |
commit | 164cd9b42af7104edce84c6ba53d5c15fdd6d8d8 (patch) | |
tree | b1ae99469d8dcd7ea32a8bb386afae927cf04321 | |
parent | bbd44e124a59e8fc6212b21765f23cb5c64473fd (diff) | |
download | ffmpeg-164cd9b42af7104edce84c6ba53d5c15fdd6d8d8.tar.gz |
libavformat/riff.c: Add support for RV40 codec in AVI
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-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 768b406a1f..be76b0aa3d 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -373,6 +373,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 } }; |