summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorSteve Baker <steve@stevebaker.org>2002-04-26 12:44:20 +0000
committerSteve Baker <steve@stevebaker.org>2002-04-26 12:44:20 +0000
commit7c41bba5893964db937cdeb4ffe34982d91ee672 (patch)
treeaecaa396164215dff67995f6b750f12afc5ee9a2 /gst
parenta6857206f453f911557e74fa12870ed45f2d612c (diff)
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.
Diffstat (limited to 'gst')
-rw-r--r--gst/wavparse/gstwavparse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c
index bed3d871..534ffcbd 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);
}