diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-28 15:45:24 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-28 15:45:24 +0000 |
commit | 2f124d2af20b44917d4b85954b06fcd75137b4c2 (patch) | |
tree | 570fca6ce1a5c3f10348b748de1244def5aefa78 /libavformat | |
parent | 0b339acb9e436c01cc1d3c36dbb21619fca2d034 (diff) | |
download | ffmpeg-2f124d2af20b44917d4b85954b06fcd75137b4c2.tar.gz |
add hdv1 fourcc
Originally committed as revision 8540 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/isom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index ef44d90b4f..f913bc0a91 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -106,6 +106,7 @@ const AVCodecTag codec_movvideo_tags[] = { { CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') }, /* AVC-1/H.264 */ { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'e', 'g') }, /* MPEG */ + { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '1') }, /* HDV 720p30 */ { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '2') }, /* MPEG2 produced by Sony HD camera */ { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '3') }, /* HDV produced by FCP */ { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '5', 'n') }, /* MPEG2 IMX NTSC 525/60 50mb/s produced by FCP */ |