From 261afd97e9e2de062c89bd44c1556f7b04e3b2b0 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Wed, 6 Aug 2003 17:37:14 +0000 Subject: [PATCH] Fix wrong mimetype, might cause #119272 Original commit message from CVS: Fix wrong mimetype, might cause #119272 --- gst/auparse/gstauparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/auparse/gstauparse.c b/gst/auparse/gstauparse.c index 9942fd7..422ee1b 100644 --- a/gst/auparse/gstauparse.c +++ b/gst/auparse/gstauparse.c @@ -51,7 +51,7 @@ au_type_find (GstBuffer *buf, gpointer private) return NULL; if (*head == 0x2e736e64 || *head == 0x646e732e) - new = gst_caps_new ("au_type_find", "audio/au", NULL); + new = gst_caps_new ("au_type_find", "audio/x-au", NULL); return new; } -- 2.7.4