diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2005-06-30 11:42:17 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2005-06-30 11:42:17 +0000 |
commit | a3075830f257d3ac011f9100c53bf79b8fca5c0e (patch) | |
tree | 079f7fd341d2286b321f42592a1a741646611e00 /libavformat/mov.c | |
parent | 9cc768f64c06954a55e3c1d25ac44f8651c08d24 (diff) | |
download | ffmpeg-a3075830f257d3ac011f9100c53bf79b8fca5c0e.tar.gz |
add hdv2 fourcc to MPEG2 codec mapping
Originally committed as revision 4412 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 2e70498651..63529ce9bf 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -118,6 +118,7 @@ static const CodecTag mov_video_tags[] = { { CODEC_ID_QTRLE, MKTAG('r', 'l', 'e', ' ') }, /* Apple Animation (RLE) */ { CODEC_ID_QDRAW, MKTAG('q', 'd', 'r', 'w') }, /* QuickDraw */ { CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') }, /* AVC-1/H.264 */ + { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '2') }, /* MPEG2 produced by Sony HD camera */ { CODEC_ID_NONE, 0 }, }; |