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

This commit is contained in:
Max Kellermann 2014-10-26 08:14:16 +01:00
parent f6b2899dd2
commit c882568ccd
3 changed files with 5 additions and 1 deletions

2
NEWS
View File

@ -1,4 +1,6 @@
ver 0.18.17 (not yet released) ver 0.18.17 (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

View File

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

View File

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