diff options
author | Compn <tempn@twmi.rr.com> | 2013-11-15 09:45:08 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-04 01:29:22 +0200 |
commit | fa6a021121326777e70176047faa0d8de2ea48ac (patch) | |
tree | 3881b9dcbef7f84fb387a857b582e47715f7cf3e /libavformat/riff.c | |
parent | 9ab2d5a33c26686959a309a9116ac89238dde4f6 (diff) | |
download | ffmpeg-fa6a021121326777e70176047faa0d8de2ea48ac.tar.gz |
riff: add G264 to mpeg4, only decodes keyframes
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 7c5790b631..bb2b82d334 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -83,6 +83,8 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_MPEG4, MKTAG('M', '4', 'T', '3') }, { AV_CODEC_ID_MPEG4, MKTAG('G', 'E', 'O', 'X') }, /* flipped video */ + { AV_CODEC_ID_MPEG4, MKTAG('G', '2', '6', '4') }, + /* flipped video */ { AV_CODEC_ID_MPEG4, MKTAG('H', 'D', 'X', '4') }, { AV_CODEC_ID_MPEG4, MKTAG('D', 'M', 'K', '2') }, { AV_CODEC_ID_MPEG4, MKTAG('D', 'I', 'G', 'I') }, |