From 7ba0073052c81c8f2f1ebe500048ed6d974e81d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laignel?= Date: Wed, 10 May 2023 17:02:08 +0200 Subject: use Pad builders for optional name definition Also, apply auto-naming in the following cases * When building from a non wildcard-named template, the name of the template is automatically assigned to the Pad. User can override with a specific name by calling `name()` on the `PadBuilder`. * When building with a target and no name was provided via the above, the GhostPad is named after the target. See https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/issues/448 Auto-naming discussion: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1255#note_1891181 Part-of: --- text/ahead/src/textahead/imp.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'text/ahead') diff --git a/text/ahead/src/textahead/imp.rs b/text/ahead/src/textahead/imp.rs index 6af01de9..90c937ea 100644 --- a/text/ahead/src/textahead/imp.rs +++ b/text/ahead/src/textahead/imp.rs @@ -78,7 +78,7 @@ impl ObjectSubclass for TextAhead { fn with_class(klass: &Self::Class) -> Self { let templ = klass.pad_template("sink").unwrap(); - let sink_pad = gst::Pad::builder_with_template(&templ, Some("sink")) + let sink_pad = gst::Pad::builder_from_template(&templ) .chain_function(|pad, parent, buffer| { TextAhead::catch_panic_pad_function( parent, @@ -96,7 +96,7 @@ impl ObjectSubclass for TextAhead { .build(); let templ = klass.pad_template("src").unwrap(); - let src_pad = gst::Pad::builder_with_template(&templ, Some("src")).build(); + let src_pad = gst::Pad::from_template(&templ); Self { sink_pad, -- cgit v1.2.3