From da142983b0cb4887d0b8cad87bf26f96d32e714d Mon Sep 17 00:00:00 2001 From: Alistair Martin Date: Tue, 1 Feb 2022 14:51:23 +0000 Subject: [PATCH] Incl resample in CustomData, tutorial 3 Part-of: --- .../gst-docs/markdown/tutorials/basic/dynamic-pipelines.md | 1 + 1 file changed, 1 insertion(+) diff --git a/subprojects/gst-docs/markdown/tutorials/basic/dynamic-pipelines.md b/subprojects/gst-docs/markdown/tutorials/basic/dynamic-pipelines.md index af6720a54b..0fe36c34d9 100644 --- a/subprojects/gst-docs/markdown/tutorials/basic/dynamic-pipelines.md +++ b/subprojects/gst-docs/markdown/tutorials/basic/dynamic-pipelines.md @@ -264,6 +264,7 @@ typedef struct _CustomData { GstElement *pipeline; GstElement *source; GstElement *convert; + GstElement *resample; GstElement *sink; } CustomData; ```