mirror of https://git.ffmpeg.org/ffmpeg.git
Merge remote-tracking branch 'qatar/master'
* qatar/master: aacdec: Lower the number of frames required to detect ADTS Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
0efacc7f9a
|
@ -66,7 +66,7 @@ static int adts_aac_probe(AVProbeData *p)
|
||||||
|
|
||||||
if (first_frames >= 3)
|
if (first_frames >= 3)
|
||||||
return AVPROBE_SCORE_EXTENSION + 1;
|
return AVPROBE_SCORE_EXTENSION + 1;
|
||||||
else if (max_frames > 500)
|
else if (max_frames > 100)
|
||||||
return AVPROBE_SCORE_EXTENSION;
|
return AVPROBE_SCORE_EXTENSION;
|
||||||
else if (max_frames >= 3)
|
else if (max_frames >= 3)
|
||||||
return AVPROBE_SCORE_EXTENSION / 2;
|
return AVPROBE_SCORE_EXTENSION / 2;
|
||||||
|
|
Loading…
Reference in New Issue