From: Wim Taymans Date: Fri, 4 Nov 2011 12:01:52 +0000 (+0100) Subject: docs: fix some docs X-Git-Tag: 1.19.3~511^2~7213 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=89f35729862e68dc19fa8b933f48c4910c9d9586;p=platform%2Fupstream%2Fgstreamer.git docs: fix some docs --- diff --git a/docs/design/design-decodebin.txt b/docs/design/design-decodebin.txt index 7ca84b6..31b8987 100644 --- a/docs/design/design-decodebin.txt +++ b/docs/design/design-decodebin.txt @@ -148,8 +148,8 @@ differences: * Multiple streams handling. The element handles queueing data on more than one stream at once. To - achieve such a feature it has request sink pads (sink_%d) and 'sometimes' src - pads (src_%d). + achieve such a feature it has request sink pads (sink_%u) and 'sometimes' src + pads (src_%u). When requesting a given sinkpad, the associated srcpad for that stream will be created. Ex: requesting sink_1 will generate src_1. diff --git a/docs/design/design-encoding.txt b/docs/design/design-encoding.txt index dda79ad..942b734 100644 --- a/docs/design/design-encoding.txt +++ b/docs/design/design-encoding.txt @@ -87,7 +87,7 @@ B. Goals ... vsrcpad = gst_element_get_src_pad(source, "src1"); - vsinkpad = gst_element_get_request_pad (encbin, "video_%d"); + vsinkpad = gst_element_get_request_pad (encbin, "video_%u"); gst_pad_link(vsrcpad, vsinkpad); ...