docs: fix some docs

This commit is contained in:
Wim Taymans 2011-11-04 13:01:52 +01:00
parent 7d9ccab8c6
commit 89f3572986
2 changed files with 3 additions and 3 deletions

View file

@ -148,8 +148,8 @@ differences:
* Multiple streams handling. * Multiple streams handling.
The element handles queueing data on more than one stream at once. To 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 achieve such a feature it has request sink pads (sink_%u) and 'sometimes' src
pads (src_%d). pads (src_%u).
When requesting a given sinkpad, the associated srcpad for that stream will When requesting a given sinkpad, the associated srcpad for that stream will
be created. Ex: requesting sink_1 will generate src_1. be created. Ex: requesting sink_1 will generate src_1.

View file

@ -87,7 +87,7 @@ B. Goals
... ...
vsrcpad = gst_element_get_src_pad(source, "src1"); 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); gst_pad_link(vsrcpad, vsinkpad);
... ...