[FFmpeg-cvslog] Require at least three frames to autodetect loas.

Carl Eugen Hoyos git at videolan.org
Sat Mar 2 02:10:15 CET 2013


ffmpeg | branch: release/0.10 | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sat Feb  2 22:36:25 2013 +0100| [85e082d08180ae1abfb63ddf0e09795def881316] | committer: Carl Eugen Hoyos

Require at least three frames to autodetect loas.
(cherry picked from commit a60530e3ee1d9532c026a52b03661f88e163d647)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=85e082d08180ae1abfb63ddf0e09795def881316
---

 libavformat/loasdec.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/libavformat/loasdec.c b/libavformat/loasdec.c
index e48c219..fbe1cb4 100644
--- a/libavformat/loasdec.c
+++ b/libavformat/loasdec.c
@@ -55,7 +55,6 @@ static int loas_probe(AVProbeData *p)
     if   (first_frames>=3) return AVPROBE_SCORE_MAX/2+1;
     else if(max_frames>100)return AVPROBE_SCORE_MAX/2;
     else if(max_frames>=3) return AVPROBE_SCORE_MAX/4;
-    else if(max_frames>=1) return 1;
     else                   return 0;
 }
 



More information about the ffmpeg-cvslog mailing list