diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-03-16 10:34:12 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-03-17 13:34:22 +0000 |
commit | 02d76141d68e38c80f9a205a56b9af10d74f0995 (patch) | |
tree | 1a8d2e7f7baa68a63295763441d778a04b79bc7d /libavformat | |
parent | c0f504e947cc0a3c73770419bf7d1af98288fc59 (diff) | |
download | ffmpeg-02d76141d68e38c80f9a205a56b9af10d74f0995.tar.gz |
riff: Add 'tshd' FourCC for H.264
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 db91749acd..02588bcd11 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -39,6 +39,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_H264, MKTAG('V', '2', '6', '4') }, /* CCTV recordings */ { AV_CODEC_ID_H264, MKTAG('G', 'A', 'V', 'C') }, /* GeoVision camera */ { AV_CODEC_ID_H264, MKTAG('U', 'M', 'S', 'V') }, + { AV_CODEC_ID_H264, MKTAG('t', 's', 'h', 'd') }, { AV_CODEC_ID_H263, MKTAG('H', '2', '6', '3') }, { AV_CODEC_ID_H263, MKTAG('X', '2', '6', '3') }, { AV_CODEC_ID_H263, MKTAG('T', '2', '6', '3') }, |