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

bcoudurier subversion
Thu Aug 3 13:57:28 CEST 2006


Author: bcoudurier
Date: Thu Aug  3 13:57:28 2006
New Revision: 5907

Modified:
   trunk/libavformat/mxf.c

Log:
10l, check container_ul existence

Modified: trunk/libavformat/mxf.c
==============================================================================
--- trunk/libavformat/mxf.c	(original)
+++ trunk/libavformat/mxf.c	Thu Aug  3 13:57:28 2006
@@ -41,7 +41,7 @@
  * Only tracks with associated descriptors will be decoded. "Highly Desirable" SMPTE 377M D.1
  */
 
-//#define DEBUG
+#define DEBUG
 
 #include "avformat.h"
 
@@ -840,7 +840,7 @@
                     st->codec->codec_id = CODEC_ID_PCM_S32BE;
             }
         }
-        if (container_ul->wrapping == Clip) {
+        if (container_ul && container_ul->wrapping == Clip) {
             dprintf("stream %d: clip wrapped essence\n", st->index);
             st->need_parsing = 1;
         }




More information about the ffmpeg-cvslog mailing list