playlist/m3u: recognize the file suffix ".m3u8"

This commit is contained in:
Max Kellermann 2014-10-26 08:14:16 +01:00
parent d7f024c510
commit 394e3be482
3 changed files with 4 additions and 0 deletions

2
NEWS
View File

@ -1,4 +1,6 @@
ver 0.19.2 (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

View File

@ -130,6 +130,7 @@ ExtM3uPlaylist::NextSong()
static const char *const extm3u_suffixes[] = {
"m3u",
"m3u8",
nullptr
};

View File

@ -60,6 +60,7 @@ M3uPlaylist::NextSong()
static const char *const m3u_suffixes[] = {
"m3u",
"m3u8",
nullptr
};