[FFmpeg-cvslog] r10062 - trunk/libavformat/raw.c

michael subversion
Fri Aug 10 19:05:12 CEST 2007


Author: michael
Date: Fri Aug 10 19:05:12 2007
New Revision: 10062

Log:
100000l (forgotten return)


Modified:
   trunk/libavformat/raw.c

Modified: trunk/libavformat/raw.c
==============================================================================
--- trunk/libavformat/raw.c	(original)
+++ trunk/libavformat/raw.c	Fri Aug 10 19:05:12 2007
@@ -434,7 +434,7 @@ static int ac3_probe(AVProbeData *p)
 static int flac_probe(AVProbeData *p)
 {
     if(memcmp(p->buf, "fLaC", 4)) return 0;
-    else                          AVPROBE_SCORE_MAX / 2;
+    else                          return AVPROBE_SCORE_MAX / 2;
 }
 
 AVInputFormat shorten_demuxer = {




More information about the ffmpeg-cvslog mailing list