diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-12-02 00:43:39 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-12-02 00:43:39 +0100 |
commit | 196920060b52c1de528447a0fe9d52e997fb0ed2 (patch) | |
tree | 790e50a5743a52839c5375ae1531a55b5609cdc8 | |
parent | f61369d7621bcf9e0f3e9f133bf615889f2953a2 (diff) | |
download | ffmpeg-196920060b52c1de528447a0fe9d52e997fb0ed2.tar.gz |
Add FourCC V264 for H264 in CCTV recordings.
-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 57d6ca68df..af4894767f 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -42,6 +42,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_H264, MKTAG('S', 'M', 'V', '2') }, { AV_CODEC_ID_H264, MKTAG('V', 'S', 'S', 'H') }, { AV_CODEC_ID_H264, MKTAG('Q', '2', '6', '4') }, /* QNAP surveillance system */ + { AV_CODEC_ID_H264, MKTAG('V', '2', '6', '4') }, { 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') }, |