From fb2e8387d46346ca0079ba794931078134e89e3e Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 4 May 2014 20:38:46 +0200 Subject: demux_lavf: one more hack for mp3 from network mp3 has a hack lowering the probescore for format detection. This is because detecting mp3s is hard due to their nature, and the fact that ID3v2 tags are sometimes several megabytes big. When playing mp3 from network, the mime-type is usually set, and that matches the format hack entry meant for webradios, overriding the normal mp3 entry. This can lead to network mp3s not being detected. Lower the network case to the same probescore as on-disk mp3s. The difference is that for network mp3s, we don't load the full probe-buffer, and we lower the amount of audio the demuxer will read to collect data on opening (0.5 seconds instead of typically 5 seconds). --- demux/demux_lavf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'demux') diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c index 08f05c18df..d493e9f631 100644 --- a/demux/demux_lavf.c +++ b/demux/demux_lavf.c @@ -102,8 +102,8 @@ static const struct format_hack format_hacks[] = { // for webradios {"aac", "audio/aacp", 25, 0.5}, {"aac", "audio/aac", 25, 0.5}, - {"mp3", "audio/mpeg", 25, 0.5}, // some mp3 files don't detect correctly + {"mp3", "audio/mpeg", 24, 0.5}, {"mp3", NULL, 24, .max_probe = true}, {0} }; -- cgit v1.2.3