diff options
author | Arnaud Bienner | 2015-09-04 23:55:32 +0200 |
---|---|---|
committer | Carl Eugen Hoyos | 2015-09-05 00:09:06 +0200 |
commit | fd6b38bed7818687a850811bf056c75adf4cdaa1 (patch) | |
tree | 060169018eeca74ff499f767438f800e79ee332a /libavformat | |
parent | 3059562aa19a576bdf900a4875c1aa69ef69c86e (diff) |
lavf/riff: Support fourcc AVd1 for dvvideo.
Signed-off-by: Carl Eugen Hoyos <cehoyos@ag.or.at>
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 ddfa829251..780fe530db 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -149,6 +149,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_DVVIDEO, MKTAG('p', 'd', 'v', 'c') }, { AV_CODEC_ID_DVVIDEO, MKTAG('S', 'L', '2', '5') }, { AV_CODEC_ID_DVVIDEO, MKTAG('S', 'L', 'D', 'V') }, + { AV_CODEC_ID_DVVIDEO, MKTAG('A', 'V', 'd', '1') }, { AV_CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '1') }, { AV_CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '2') }, { AV_CODEC_ID_MPEG2VIDEO, MKTAG('m', 'p', 'g', '2') }, |