Fix dynamic-pipelines.md tutorial text
authorLuis Paulo Fernandes de Barros <tc.lbarros@padtec.com.br>
Wed, 7 Oct 2020 13:35:36 +0000 (10:35 -0300)
committerLuis Paulo Fernandes de Barros <tc.lbarros@padtec.com.br>
Wed, 7 Oct 2020 13:35:36 +0000 (10:35 -0300)
The text and the piece of code that describes the link process of data.convert e data.sink are missing data.resample.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/116>

markdown/tutorials/basic/dynamic-pipelines.md

index 652a1e9..f4b7f5a 100644 (file)
@@ -304,14 +304,14 @@ previous tutorial, for audio. It will render the audio stream to the
 audio card.
 
 ``` c
-if (!gst_element_link (data.convert, data.sink)) {
+if (!gst_element_link_many (data.convert, data.resample, data.sink, NULL)) {
   g_printerr ("Elements could not be linked.\n");
   gst_object_unref (data.pipeline);
   return -1;
 }
 ```
 
-Here we link the converter element to the sink, but we **DO NOT** link
+Here we link the elements converter, resample and sink, but we **DO NOT** link
 them with the source, since at this point it contains no source pads. We
 just leave this branch (converter + sink) unlinked, until later on.