diff options
author | Martin Storsjö <martin@martin.st> | 2013-08-14 12:38:56 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-10-12 13:02:45 +0300 |
commit | a52b5a5a07b0d432f9bed90b6d56647f8d44fbce (patch) | |
tree | 3a8f81a041aa5ec99729565764df58507391c0dd /libavformat | |
parent | c0de9a23c7080e2fac8f879b9d9a0ce2b64ea953 (diff) | |
download | ffmpeg-a52b5a5a07b0d432f9bed90b6d56647f8d44fbce.tar.gz |
riff: Add a mapping for VP6A
This allows demuxing VP6A from F4V files.
Signed-off-by: Martin Storsjö <martin@martin.st>
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 8216261527..2668d19840 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -228,6 +228,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', '0') }, { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', '1') }, { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', '2') }, + { AV_CODEC_ID_VP6A, MKTAG('V', 'P', '6', 'A') }, { AV_CODEC_ID_VP6F, MKTAG('V', 'P', '6', 'F') }, { AV_CODEC_ID_VP6F, MKTAG('F', 'L', 'V', '4') }, { AV_CODEC_ID_VP8, MKTAG('V', 'P', '8', '0') }, |