aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2014-12-06 12:32:25 +0100
committerLuca Barbato <lu_zero@gentoo.org>2015-01-12 23:18:01 +0100
commit4baee1124b905cbd75240530e081c8ffa68fddbe (patch)
tree44256c2eb212138c2c7ecc3c6788903801bd7f8f
parentbbb86717b303a3e4c0809d3cc6fb55580766a17e (diff)
downloadffmpeg-4baee1124b905cbd75240530e081c8ffa68fddbe.tar.gz
mp3: Tweak the probe scores
Having more than 10 consecutive frames decoded as mp3 should be considered a clear signal that the sample is mp3 and not mpegps. Reported-By: Florian Iragne <florian@iragne.fr> CC: libav-stable@libav.org
-rw-r--r--libavformat/mp3dec.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c
index 14d8254f4c..ce734b76b9 100644
--- a/libavformat/mp3dec.c
+++ b/libavformat/mp3dec.c
@@ -80,7 +80,10 @@ static int mp3_read_probe(AVProbeData *p)
}
// keep this in sync with ac3 probe, both need to avoid
// issues with MPEG-files!
- if (first_frames >= 4) return AVPROBE_SCORE_EXTENSION + 1;
+ if (first_frames >= 10)
+ return AVPROBE_SCORE_EXTENSION + 5;
+ if (first_frames >= 4)
+ return AVPROBE_SCORE_EXTENSION + 1;
if (max_frames) {
int pes = 0, i;