Commit ffa676f5 authored by Mario Di Raimondo's avatar Mario Di Raimondo Committed by Max Kellermann

playlist/m3u: support for mime-type `audio-mpegurl` for M3U playlists

parent 6d023c4d
ver 0.20.8 (not yet released)
* output
- osx: fix build failure due to missing "noexcept"
* playlist
- m3u: support MIME type `audio/mpegurl`
* fix build failure with GCC 4.x
ver 0.20.7 (2017/05/15)
......
......@@ -146,6 +146,7 @@ static const char *const extm3u_suffixes[] = {
static const char *const extm3u_mime_types[] = {
"audio/x-mpegurl",
"audio/mpegurl",
nullptr
};
......
......@@ -66,6 +66,7 @@ static const char *const m3u_suffixes[] = {
static const char *const m3u_mime_types[] = {
"audio/x-mpegurl",
"audio/mpegurl",
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