diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-10-09 12:35:53 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-10-09 12:35:53 +0000 |
commit | e1687cc07ff4e95d2689408b15b606b7916ba076 (patch) | |
tree | 95734e46c148b616475790755278f99e5cdf123c /libav | |
parent | d017ab70f4ade39717db101ac93dd36a7e592754 (diff) | |
download | ffmpeg-e1687cc07ff4e95d2689408b15b606b7916ba076.tar.gz |
added DV support
Originally committed as revision 1017 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav')
-rw-r--r-- | libav/mov.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libav/mov.c b/libav/mov.c index 0662c61535..1101d6f9b2 100644 --- a/libav/mov.c +++ b/libav/mov.c @@ -107,6 +107,8 @@ static const CodecTag mov_video_tags[] = { { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X') }, /* OpenDiVX *//* sample files at http://heroinewarrior.com/xmovie.php3 use this tag */ /* { CODEC_ID_, MKTAG('I', 'V', '5', '0') }, *//* Indeo 5.0 */ { CODEC_ID_H263, MKTAG('h', '2', '6', '3') }, /* H263 */ + { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', ' ') }, /* DV NTSC */ + { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', 'p') }, /* DV PAL */ { 0, 0 }, }; |