From e1687cc07ff4e95d2689408b15b606b7916ba076 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Wed, 9 Oct 2002 12:35:53 +0000 Subject: [PATCH] added DV support Originally committed as revision 1017 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libav/mov.c | 2 ++ 1 file changed, 2 insertions(+) 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 }, };