Fix wrong mimetype, might cause #119272

Original commit message from CVS:
Fix wrong mimetype, might cause #119272
This commit is contained in:
Ronald S. Bultje 2003-08-06 17:37:14 +00:00
parent 35bfaafc15
commit 261afd97e9

View file

@ -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;
}