diff --git a/gstreamer/src/element.rs b/gstreamer/src/element.rs index f42b57c47..8a8050b15 100644 --- a/gstreamer/src/element.rs +++ b/gstreamer/src/element.rs @@ -191,6 +191,10 @@ pub trait ElementExtManual: 'static { fn get_sink_pads(&self) -> Vec; fn get_src_pads(&self) -> Vec; + fn num_pads(&self) -> u16; + fn num_sink_pads(&self) -> u16; + fn num_src_pads(&self) -> u16; + #[cfg(any(feature = "v1_10", feature = "dox"))] fn add_property_deep_notify_watch( &self, @@ -500,6 +504,30 @@ impl> ElementExtManual for O { } } + fn num_pads(&self) -> u16 { + unsafe { + let elt: &gst_sys::GstElement = &*(self.as_ptr() as *const _); + ::utils::MutexGuard::lock(&elt.object.lock); + elt.numpads + } + } + + fn num_sink_pads(&self) -> u16 { + unsafe { + let elt: &gst_sys::GstElement = &*(self.as_ptr() as *const _); + ::utils::MutexGuard::lock(&elt.object.lock); + elt.numsinkpads + } + } + + fn num_src_pads(&self) -> u16 { + unsafe { + let elt: &gst_sys::GstElement = &*(self.as_ptr() as *const _); + ::utils::MutexGuard::lock(&elt.object.lock); + elt.numsrcpads + } + } + #[cfg(any(feature = "v1_10", feature = "dox"))] fn add_property_deep_notify_watch( &self,