[FFmpeg-cvslog] r17998 - trunk/libavformat/mov.c

bcoudurier subversion
Mon Mar 16 06:13:56 CET 2009


Author: bcoudurier
Date: Mon Mar 16 06:13:55 2009
New Revision: 17998

Log:
do not set isom if ctype is not set, happens in mov

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	Mon Mar 16 04:56:42 2009	(r17997)
+++ trunk/libavformat/mov.c	Mon Mar 16 06:13:55 2009	(r17998)
@@ -233,8 +233,7 @@ static int mov_read_hdlr(MOVContext *c, 
             ((char *)&ctype)[2], ((char *)&ctype)[3], (int) ctype);
     dprintf(c->fc, "stype= %c%c%c%c\n",
             *((char *)&type), ((char *)&type)[1], ((char *)&type)[2], ((char *)&type)[3]);
-    if(!ctype)
-        c->isom = 1;
+
     if     (type == MKTAG('v','i','d','e'))
         st->codec->codec_type = CODEC_TYPE_VIDEO;
     else if(type == MKTAG('s','o','u','n'))




More information about the ffmpeg-cvslog mailing list