summaryrefslogtreecommitdiffstats
path: root/gst/auparse
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-08-06 17:37:14 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-08-06 17:37:14 +0000
commit261afd97e9e2de062c89bd44c1556f7b04e3b2b0 (patch)
tree9d8fc655a17ccccfc581394bdab80a0d331f6ed5 /gst/auparse
parent35bfaafc155470bd71b761fc1acb9534d56b6b7c (diff)
Fix wrong mimetype, might cause #119272
Original commit message from CVS: Fix wrong mimetype, might cause #119272
Diffstat (limited to 'gst/auparse')
-rw-r--r--gst/auparse/gstauparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/auparse/gstauparse.c b/gst/auparse/gstauparse.c
index 9942fd7b..422ee1ba 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;
}