diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-02-12 11:04:58 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-02-17 12:18:20 -0500 |
commit | 195942ed9b9b563ec86d34b73aa2c1ee8715d59d (patch) | |
tree | 21a7f06a9e09c11eba2b0c23f9adf944bbb454e2 /libavformat | |
parent | c78dc12118cb5b2a69a17f38c69f77a42e89a9c4 (diff) | |
download | ffmpeg-195942ed9b9b563ec86d34b73aa2c1ee8715d59d.tar.gz |
riff: Support QT RLE Animation in avi ('rle ' FourCC)
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
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 a093986aa0..866f5c2d6e 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -350,6 +350,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_FIC, MKTAG('F', 'I', 'C', 'V') }, { AV_CODEC_ID_PRORES, MKTAG('A', 'P', 'C', 'N') }, { AV_CODEC_ID_PRORES, MKTAG('A', 'P', 'C', 'H') }, + { AV_CODEC_ID_QTRLE, MKTAG('r', 'l', 'e', ' ') }, { AV_CODEC_ID_NONE, 0 } }; |