# HG changeset patch # User michael # Date 1252969413 0 # Node ID cbaefd9135ac4c8ace152ad21562ebf078ca6c73 # Parent 0c742c9c4aa71d67e2348db8afdf575076d751e8 Slighty tweak mp3 probe threshold to prevent probetest from complaining. diff -r 0c742c9c4aa7 -r cbaefd9135ac mp3.c --- a/mp3.c Mon Sep 14 22:03:07 2009 +0000 +++ b/mp3.c Mon Sep 14 23:03:33 2009 +0000 @@ -60,7 +60,7 @@ if(buf == buf0) first_frames= frames; } - if (first_frames>=3) return AVPROBE_SCORE_MAX/2+1; + if (first_frames>=4) return AVPROBE_SCORE_MAX/2+1; else if(max_frames>500)return AVPROBE_SCORE_MAX/2; else if(max_frames>=4) return AVPROBE_SCORE_MAX/4; else if(buf0!=p->buf) return AVPROBE_SCORE_MAX/4-1;