mirror of https://github.com/mpv-player/mpv
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:
parent
8cfb87d200
commit
cc1b1f773f
|
@ -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}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue