diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-04-21 16:35:33 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-04-21 16:35:33 +0100 |
commit | e3ab3794e99360e2ddcfb79ee46dd32cff655e1e (patch) | |
tree | 99305fa3e1cdf4aa7d239f46c941669c227abc46 | |
parent | d59c3de535738d8cd5d313b5a4f5502fa0aa7081 (diff) | |
download | xine-lib-e3ab3794e99360e2ddcfb79ee46dd32cff655e1e.tar.gz xine-lib-e3ab3794e99360e2ddcfb79ee46dd32cff655e1e.tar.bz2 |
Add MIME types and .mpp for musepack.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/demuxers/demux_mpc.c | 5 |
2 files changed, 4 insertions, 2 deletions
@@ -5,6 +5,7 @@ xine-lib (1.1.12.1) 2008-??-?? via an NSF file with a long title or copyright message. (CVE-2008-1878) - For extra safety against possible Integer overflows like the ones found in CVE-2008-1482, backport more calloc usage from 1.2 branch. + * Added MIME types and .mpp for musepack. xine-lib (1.1.12) 2008-04-14 * Security fixes: diff --git a/src/demuxers/demux_mpc.c b/src/demuxers/demux_mpc.c index 346f0c2e6..a3791811e 100644 --- a/src/demuxers/demux_mpc.c +++ b/src/demuxers/demux_mpc.c @@ -381,11 +381,12 @@ static const char *get_identifier (demux_class_t *this_gen) { } static const char *get_extensions (demux_class_t *this_gen) { - return "mpc mp+"; + return "mpc mp+ mpp"; } static const char *get_mimetypes (demux_class_t *this_gen) { - return NULL; + return "audio/musepack: mpc, mp+, mpp: Musepack audio;" + "audio/x-musepack: mpc, mp+, mpp: Musepack audio;"; } static void class_dispose (demux_class_t *this_gen) { |