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

darkshikari subversion
Wed Jun 17 01:50:02 CEST 2009


Author: darkshikari
Date: Wed Jun 17 01:50:02 2009
New Revision: 19211

Log:
Add ".mp2" as a fourcc for mp2 audio in MOV.  Fixes a problematic MOV file.

Modified:
   trunk/libavformat/isom.c

Modified: trunk/libavformat/isom.c
==============================================================================
--- trunk/libavformat/isom.c	Wed Jun 17 01:14:59 2009	(r19210)
+++ trunk/libavformat/isom.c	Wed Jun 17 01:50:02 2009	(r19211)
@@ -195,6 +195,8 @@ const AVCodecTag codec_movaudio_tags[] =
     { CODEC_ID_MACE3, MKTAG('M', 'A', 'C', '3') }, /* Macintosh Audio Compression and Expansion 3:1 */
     { CODEC_ID_MACE6, MKTAG('M', 'A', 'C', '6') }, /* Macintosh Audio Compression and Expansion 6:1 */
 
+    { CODEC_ID_MP2, MKTAG('.', 'm', 'p', '2') }, /* MPEG layer 2 */
+
     { CODEC_ID_MP3, MKTAG('.', 'm', 'p', '3') }, /* MPEG layer 3 */ /* sample files at http://www.3ivx.com/showcase.html use this tag */
     { CODEC_ID_MP3, 0x6D730055 }, /* MPEG layer 3 */
 



More information about the ffmpeg-cvslog mailing list