diff options
author | Ben Littler <tempn@twmi.rr.com> | 2009-04-01 00:45:28 +0000 |
---|---|---|
committer | Ben Littler <tempn@twmi.rr.com> | 2009-04-01 00:45:28 +0000 |
commit | 13b47b4012dde0cea9ff303415891058e0615f84 (patch) | |
tree | d1434c70322de1b781434356764b5944c5041411 | |
parent | 59b053508f5114b31f05cfdc22e72eb7611fd824 (diff) | |
download | ffmpeg-13b47b4012dde0cea9ff303415891058e0615f84.tar.gz |
add another dv fourcc CDVH
Originally committed as revision 18293 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 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') }, |