[Ffmpeg-cvslog] r6721 - trunk/libavformat/mxf.c

bcoudurier subversion
Tue Oct 17 13:30:22 CEST 2006


Author: bcoudurier
Date: Tue Oct 17 13:30:22 2006
New Revision: 6721

Modified:
   trunk/libavformat/mxf.c

Log:
skip packet if no stream index is found, fix proxy_pal030926.mxf\n

Modified: trunk/libavformat/mxf.c
==============================================================================
--- trunk/libavformat/mxf.c	(original)
+++ trunk/libavformat/mxf.c	Tue Oct 17 13:30:22 2006
@@ -265,6 +265,7 @@
             int index = mxf_get_stream_index(s, &klv);
             if (index < 0) {
                 av_log(s, AV_LOG_ERROR, "error getting stream index\n");
+                url_fskip(&s->pb, klv.length);
                 return -1;
             }
             /* check for 8 channels AES3 element */




More information about the ffmpeg-cvslog mailing list