diff options
author | Compn <tempn@twmi.rr.com> | 2013-11-15 09:45:08 -0500 |
---|---|---|
committer | Compn <tempn@twmi.rr.com> | 2013-11-15 09:46:35 -0500 |
commit | 5592d1b741924d375a04470eda8e601715e0d04c (patch) | |
tree | 8d4aca9f52dc14b873e2b4650ea7aba930ff1333 /libavformat/riff.c | |
parent | 97962b278a8ab0962e6d450db3829b907f22d09b (diff) | |
download | ffmpeg-5592d1b741924d375a04470eda8e601715e0d04c.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 121a939f1a..0ec8056651 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -85,6 +85,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', '4', 'V') }, { AV_CODEC_ID_MPEG4, MKTAG('D', 'M', 'K', '2') }, |