aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputPlugins/mp4_plugin.c
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2007-06-04 18:57:34 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2007-06-04 18:57:34 +0000
commitcaa17db85e2401f1ed9e4ddcc587ba8d511f79fb (patch)
treea5858fd3f20fc383099e211aeaf04abd2c010114 /src/inputPlugins/mp4_plugin.c
parent71094905e30d0e63ca1bb281e1621299e3b0e110 (diff)
downloadmpd-caa17db85e2401f1ed9e4ddcc587ba8d511f79fb.tar.gz
mpd-caa17db85e2401f1ed9e4ddcc587ba8d511f79fb.tar.xz
mpd-caa17db85e2401f1ed9e4ddcc587ba8d511f79fb.zip
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
Diffstat (limited to 'src/inputPlugins/mp4_plugin.c')
-rw-r--r--src/inputPlugins/mp4_plugin.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/inputPlugins/mp4_plugin.c b/src/inputPlugins/mp4_plugin.c
index 1ebf556c6..b30d6593a 100644
--- a/src/inputPlugins/mp4_plugin.c
+++ b/src/inputPlugins/mp4_plugin.c
@@ -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