diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-04-03 15:08:40 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-04 01:29:25 +0200 |
commit | a1c58b3acd073047e8c2f3f3817fce3f77b4ac89 (patch) | |
tree | c44d9af84f85e6451724015c9b6fc4ea88b18cf5 /libavformat/riff.c | |
parent | 6aa7cbd58c3e581250c23296736a612252354f00 (diff) | |
download | ffmpeg-a1c58b3acd073047e8c2f3f3817fce3f77b4ac89.tar.gz |
riff: Support NTSC forward dvcpro videos
PAL looks incorrect.
Diffstat (limited to 'libavformat/riff.c')
-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 0787f6350a..6a8885889f 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -141,6 +141,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', '1') }, { AV_CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'i', 's') }, { AV_CODEC_ID_DVVIDEO, MKTAG('p', 'd', 'v', 'c') }, + { AV_CODEC_ID_DVVIDEO, MKTAG('S', 'L', '2', '5') }, { 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') }, |