Commit 6522d2f7 authored by Max Kellermann's avatar Max Kellermann

decoder/{dsdiff,dsf}: support more MIME types

These are used by DSD-streaming servers. For example, MiniDLNA uses "audio/x-dsd".
parent ac61fd1d
ver 0.20.20 (not yet released)
* protocol
- fix "modified-since" filter regression
* decoder
- dsdiff, dsf: support more MIME types
ver 0.20.19 (2018/04/26)
* protocol
......
......@@ -484,6 +484,8 @@ static const char *const dsdiff_suffixes[] = {
static const char *const dsdiff_mime_types[] = {
"application/x-dff",
"audio/x-dff",
"audio/x-dsd",
nullptr
};
......
......@@ -358,6 +358,8 @@ static const char *const dsf_suffixes[] = {
static const char *const dsf_mime_types[] = {
"application/x-dsf",
"audio/x-dsf",
"audio/x-dsd",
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