mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
Fix wrong mimetype, might cause #119272
Original commit message from CVS: Fix wrong mimetype, might cause #119272
This commit is contained in:
parent
35bfaafc15
commit
261afd97e9
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ au_type_find (GstBuffer *buf, gpointer private)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (*head == 0x2e736e64 || *head == 0x646e732e)
|
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;
|
return new;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue