Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-10-12 21:30:43 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-10-12 22:09:55 +0300
commitdb8037d16cea67f028025c1b16d3975301d0c244 (patch)
treea040f987cc7496ce2a6e8961feb9d597cb22a44c
parent3fe9e4a207f8da5d5f3996160a09a12ed19a2a3c (diff)
ndi: Update for pad default functions API changes
-rw-r--r--net/ndi/src/ndisrcdemux/imp.rs2
1 files changed, 1 insertions, 1 deletions
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)
}
}