playlist/m3u: recognize the file suffix ".m3u8"
This commit is contained in:
parent
d7f024c510
commit
394e3be482
2
NEWS
2
NEWS
|
@ -1,4 +1,6 @@
|
||||||
ver 0.19.2 (not yet released)
|
ver 0.19.2 (not yet released)
|
||||||
|
* playlist
|
||||||
|
- m3u: recognize the file suffix ".m3u8"
|
||||||
* decoder
|
* decoder
|
||||||
- faad: remove workaround for ancient libfaad2 ABI bug
|
- faad: remove workaround for ancient libfaad2 ABI bug
|
||||||
- ffmpeg: recognize MIME type audio/aacp
|
- ffmpeg: recognize MIME type audio/aacp
|
||||||
|
|
|
@ -130,6 +130,7 @@ ExtM3uPlaylist::NextSong()
|
||||||
|
|
||||||
static const char *const extm3u_suffixes[] = {
|
static const char *const extm3u_suffixes[] = {
|
||||||
"m3u",
|
"m3u",
|
||||||
|
"m3u8",
|
||||||
nullptr
|
nullptr
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -60,6 +60,7 @@ M3uPlaylist::NextSong()
|
||||||
|
|
||||||
static const char *const m3u_suffixes[] = {
|
static const char *const m3u_suffixes[] = {
|
||||||
"m3u",
|
"m3u",
|
||||||
|
"m3u8",
|
||||||
nullptr
|
nullptr
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue