From 13b47b4012dde0cea9ff303415891058e0615f84 Mon Sep 17 00:00:00 2001 From: Ben Littler Date: Wed, 1 Apr 2009 00:45:28 +0000 Subject: [PATCH] add another dv fourcc CDVH Originally committed as revision 18293 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/riff.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/riff.c b/libavformat/riff.c index c0bccb9737..8dda623549 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -97,6 +97,7 @@ const AVCodecTag codec_bmp_tags[] = { { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '2', '5') }, { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '5', '0') }, { CODEC_ID_DVVIDEO, MKTAG('c', 'd', 'v', 'c') }, /* Canopus DV */ + { CODEC_ID_DVVIDEO, MKTAG('C', 'D', 'V', 'H') }, /* Canopus DV */ { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', ' ') }, { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '1') }, { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '2') },