From db8037d16cea67f028025c1b16d3975301d0c244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 12 Oct 2022 21:30:43 +0300 Subject: [PATCH] ndi: Update for pad default functions API changes --- net/ndi/src/ndisrcdemux/imp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ndi/src/ndisrcdemux/imp.rs b/net/ndi/src/ndisrcdemux/imp.rs index 0043cad6..472930f6 100644 --- a/net/ndi/src/ndisrcdemux/imp.rs +++ b/net/ndi/src/ndisrcdemux/imp.rs @@ -311,6 +311,6 @@ impl NdiSrcDemux { ); } } - pad.event_default(Some(element), event) + gst::Pad::event_default(pad, Some(element), event) } }