aboutsummaryrefslogtreecommitdiff
path: root/docs/pwg/building-pads.xml
diff options
context:
space:
mode:
Diffstat (limited to 'docs/pwg/building-pads.xml')
-rw-r--r--docs/pwg/building-pads.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pwg/building-pads.xml b/docs/pwg/building-pads.xml
index 81f9df8..06b3273 100644
--- a/docs/pwg/building-pads.xml
+++ b/docs/pwg/building-pads.xml
@@ -145,9 +145,9 @@ gst_my_filter_setcaps (GstPad *pad,
* and from that audio type, we need to get the samplerate and
* number of channels. */
mime = gst_structure_get_name (structure);
- if (strcmp (mime, "audio/x-raw-int") != 0) {
+ if (strcmp (mime, "audio/x-raw") != 0) {
GST_WARNING ("Wrong mimetype %s provided, we only support %s",
- mime, "audio/x-raw-int");
+ mime, "audio/x-raw");
return FALSE;
}