aboutsummaryrefslogtreecommitdiff
path: root/docs/pwg/building-pads.xml
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-09-14 09:01:50 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-09-14 09:01:50 +0200
commit9d38656f62214739b6c0e2690c883d9d65600b41 (patch)
treefe9b79a38c4aa0e38d472b7c54d5d18d896bc50a /docs/pwg/building-pads.xml
parent427ff61c5eb4e91087d7c1df17f4cfd20dbc36a1 (diff)
parente0655f96cc7e2ef783f3db82c6b087d34f1e2b87 (diff)
Merge tag 'upstream/0.11.94'
Upstream version 0.11.94
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;
}