From efa337df0a1abf0039e9a7591ad8fcf3f34fc464 Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Sun, 8 Dec 2002 17:20:41 +0000 Subject: Replace audio/mp3 with audio/x-mp3 and audio/x-flac with application/x-flac Original commit message from CVS: Replace audio/mp3 with audio/x-mp3 and audio/x-flac with application/x-flac --- ext/flac/gstflac.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/flac') diff --git a/ext/flac/gstflac.c b/ext/flac/gstflac.c index 4d75caf1..6614f865 100644 --- a/ext/flac/gstflac.c +++ b/ext/flac/gstflac.c @@ -37,7 +37,7 @@ flac_caps_factory (void) return gst_caps_new ( "flac_flac", - "audio/x-flac", + "application/x-flac", NULL); } @@ -61,8 +61,8 @@ raw_caps_factory (void) } static GstTypeDefinition flacdefinition = { - "flac_audio/x-flac", - "audio/x-flac", + "flac_application/x-flac", + "application/x-flac", ".flac", flac_type_find, }; @@ -75,7 +75,7 @@ flac_type_find (GstBuffer *buf, gpointer private) if (head != 0x664C6143) return NULL; - return gst_caps_new ("flac_type_find", "audio/x-flac", NULL); + return gst_caps_new ("flac_type_find", "application/x-flac", NULL); } -- cgit