Commit caa17db8 authored by J. Alexander Treuman's avatar J. Alexander Treuman

Add MIME types for the aac and mp4 input plugins. Note that these won't

have any effect until the aac and mp4 input plugins actually support a stream decoding API. git-svn-id: https://svn.musicpd.org/mpd/trunk@6481 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 71094905
......@@ -453,7 +453,8 @@ static MpdTag *aacTagDup(char *file)
return ret;
}
static char *aacSuffixes[] = { "aac", NULL };
static char *aac_suffixes[] = { "aac", NULL };
static char *aac_mimeTypes[] = { "audio/aac", "audio/aacp", NULL };
InputPlugin aacPlugin = {
"aac",
......@@ -464,8 +465,8 @@ InputPlugin aacPlugin = {
aac_decode,
aacTagDup,
INPUT_PLUGIN_STREAM_FILE,
aacSuffixes,
NULL
aac_suffixes,
aac_mimeTypes
};
#else
......
......@@ -433,7 +433,8 @@ static MpdTag *mp4TagDup(char *file)
return ret;
}
static char *mp4Suffixes[] = { "m4a", "mp4", NULL };
static char *mp4_suffixes[] = { "m4a", "mp4", NULL };
static char *mp4_mimeTypes[] = { "audio/mp4", "audio/m4a", NULL };
InputPlugin mp4Plugin = {
"mp4",
......@@ -444,8 +445,8 @@ InputPlugin mp4Plugin = {
mp4_decode,
mp4TagDup,
INPUT_PLUGIN_STREAM_FILE,
mp4Suffixes,
NULL
mp4_suffixes,
mp4_mimeTypes
};
#else
......
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