# HG changeset patch # User michael # Date 1196674004 0 # Node ID 51e0a502392fb552362d35ef5177896042528732 # Parent 428c1678b21f884db54e66649748d2848b5d2c82 return a slightly larger score if we find more than 500 valid mp3 frames in a row diff -r 428c1678b21f -r 51e0a502392f mp3.c --- a/mp3.c Mon Dec 03 08:27:04 2007 +0000 +++ b/mp3.c Mon Dec 03 09:26:44 2007 +0000 @@ -420,6 +420,7 @@ first_frames= frames; } if (first_frames>=3) return AVPROBE_SCORE_MAX/2+1; + else if(max_frames>500)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;