[FFmpeg-cvslog] r19180 - trunk/libavformat/isom.c

darkshikari subversion
Sat Jun 13 05:02:16 CEST 2009


Author: darkshikari
Date: Sat Jun 13 05:02:16 2009
New Revision: 19180

Log:
Analysis of logs show that there are in fact some files with m1v1 too (not just m2v2),
which is documented to be MPEG-1 video.  Adding fourcc to isom.c.

Modified:
   trunk/libavformat/isom.c

Modified: trunk/libavformat/isom.c
==============================================================================
--- trunk/libavformat/isom.c	Sat Jun 13 04:20:54 2009	(r19179)
+++ trunk/libavformat/isom.c	Sat Jun 13 05:02:16 2009	(r19180)
@@ -117,6 +117,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_MPEG1VIDEO, MKTAG('m', '1', 'v', '1') },
     { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '1') }, /* MPEG2 HDV 720p30 */
     { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '2') }, /* MPEG2 HDV 1080i60 */
     { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '3') }, /* MPEG2 HDV 1080i50 */



More information about the ffmpeg-cvslog mailing list