0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

demuxer_lavf: use audio/mpeg mime type for mp3

Basically, add exactly the same hacks for mp3 as we did for AAC. Should
make starting mp3 streams much faster.
This commit is contained in:
wm4 2013-05-27 23:27:59 +02:00
parent 8cfb87d200
commit cc1b1f773f

View File

@ -93,6 +93,7 @@ struct format_hack {
static const struct format_hack format_hacks[] = {
{"aac", "audio/aacp", 25, 0.5},
{"mp3", "audio/mpeg", 25, 0.5},
{0}
};