mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
docs: fix some docs
This commit is contained in:
parent
7d9ccab8c6
commit
89f3572986
2 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
||||
...
|
||||
|
|
Loading…
Reference in a new issue