From 7c41bba5893964db937cdeb4ffe34982d91ee672 Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Fri, 26 Apr 2002 12:44:20 +0000 Subject: [PATCH] use audio/x-wav instead of audio/wav. I don't know if we have a policy of matching GStreamer types with official mime... Original commit message from CVS: use audio/x-wav instead of audio/wav. I don't know if we have a policy of matching GStreamer types with official mime types, but I figure it can't hurt. --- gst/wavparse/gstwavparse.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c index bed3d871d6..534ffcbd50 100644 --- a/gst/wavparse/gstwavparse.c +++ b/gst/wavparse/gstwavparse.c @@ -45,7 +45,7 @@ GST_PAD_TEMPLATE_FACTORY (sink_template_factory, GST_PAD_ALWAYS, GST_CAPS_NEW ( "wavparse_wav", - "audio/wav", + "audio/x-wav", NULL ) ) @@ -78,8 +78,8 @@ GST_PAD_TEMPLATE_FACTORY (src_template_factory, static GstTypeDefinition wavdefinition = { - "wavparse_audio/wav", - "audio/wav", + "wavparse_audio/x-wav", + "audio/x-wav", ".wav", wav_type_find, }; @@ -157,7 +157,7 @@ wav_type_find (GstBuffer *buf, gpointer private) if (strncmp (&data[0], "RIFF", 4)) return NULL; if (strncmp (&data[8], "WAVE", 4)) return NULL; - return gst_caps_new ("wav_type_find", "audio/wav", NULL); + return gst_caps_new ("wav_type_find", "audio/x-wav", NULL); }