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