[Ffmpeg-cvslog] r5654 - trunk/libavformat/mov.c

bcoudurier subversion
Fri Jul 7 10:56:06 CEST 2006


Author: bcoudurier
Date: Fri Jul  7 10:56:05 2006
New Revision: 5654

Modified:
   trunk/libavformat/mov.c

Log:
skip others fourcc, if present

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Fri Jul  7 10:56:05 2006
@@ -935,6 +935,12 @@
         get_be16(pb); /* reserved */
         get_be16(pb); /* index */
 
+        if (st->codec->codec_tag) {
+            /* multiple fourcc, just skip for now */
+            url_fskip(pb, size - (url_ftell(pb) - start_pos));
+            continue;
+        }
+
         st->codec->codec_tag = format;
         id = codec_get_id(mov_audio_tags, format);
         if (id > 0) {




More information about the ffmpeg-cvslog mailing list