[Ffmpeg-cvslog] r6751 - trunk/libavformat/tiertexseq.c

bcoudurier subversion
Sat Oct 21 13:08:39 CEST 2006


Author: bcoudurier
Date: Sat Oct 21 13:08:39 2006
New Revision: 6751

Modified:
   trunk/libavformat/tiertexseq.c

Log:
fix probe, patch by Andreas Oman, andreas at olebyn dot nu

Modified: trunk/libavformat/tiertexseq.c
==============================================================================
--- trunk/libavformat/tiertexseq.c	(original)
+++ trunk/libavformat/tiertexseq.c	Sat Oct 21 13:08:39 2006
@@ -68,7 +68,7 @@
     /* there's no real header in a .seq file, the only thing they have in common */
     /* is the first 256 bytes of the file which are always filled with 0 */
     for (i = 0; i < 256; i++)
-        if (p->buf[0] != 0)
+        if (p->buf[i] != 0)
             return 0;
 
     /* only one fourth of the score since the previous check is too naive */




More information about the ffmpeg-cvslog mailing list