[FFmpeg-cvslog] r13482 - trunk/libavformat/avidec.c

michael subversion
Wed May 28 02:07:41 CEST 2008


Author: michael
Date: Wed May 28 02:07:41 2008
New Revision: 13482

Log:
Tell the user if a AVI is non interleaved.


Modified:
   trunk/libavformat/avidec.c

Modified: trunk/libavformat/avidec.c
==============================================================================
--- trunk/libavformat/avidec.c	(original)
+++ trunk/libavformat/avidec.c	Wed May 28 02:07:41 2008
@@ -605,8 +605,10 @@ static int avi_read_header(AVFormatConte
         avi_load_index(s);
     avi->index_loaded = 1;
     avi->non_interleaved |= guess_ni_flag(s);
-    if(avi->non_interleaved)
+    if(avi->non_interleaved) {
+        av_log(s, AV_LOG_INFO, "Non interleaved AVI\n");
         clean_index(s);
+    }
 
     return 0;
 }




More information about the ffmpeg-cvslog mailing list