Commit 394e3be4 authored by Max Kellermann's avatar Max Kellermann

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

parent d7f024c5
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() ...@@ -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() ...@@ -60,6 +60,7 @@ M3uPlaylist::NextSong()
static const char *const m3u_suffixes[] = { static const char *const m3u_suffixes[] = {
"m3u", "m3u",
"m3u8",
nullptr nullptr
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment