Trait gstreamer_video::subclass::prelude::VideoFilterImplExt
source · pub trait VideoFilterImplExt: Sealed + ObjectSubclass {
// Provided methods
fn parent_set_info(
&self,
incaps: &Caps,
in_info: &VideoInfo,
outcaps: &Caps,
out_info: &VideoInfo,
) -> Result<(), LoggableError> { ... }
fn parent_transform_frame(
&self,
inframe: &VideoFrameRef<&BufferRef>,
outframe: &mut VideoFrameRef<&mut BufferRef>,
) -> Result<FlowSuccess, FlowError> { ... }
fn parent_transform_frame_ip(
&self,
frame: &mut VideoFrameRef<&mut BufferRef>,
) -> Result<FlowSuccess, FlowError> { ... }
fn parent_transform_frame_ip_passthrough(
&self,
frame: &VideoFrameRef<&BufferRef>,
) -> Result<FlowSuccess, FlowError> { ... }
}
Provided Methods§
fn parent_set_info( &self, incaps: &Caps, in_info: &VideoInfo, outcaps: &Caps, out_info: &VideoInfo, ) -> Result<(), LoggableError>
fn parent_transform_frame( &self, inframe: &VideoFrameRef<&BufferRef>, outframe: &mut VideoFrameRef<&mut BufferRef>, ) -> Result<FlowSuccess, FlowError>
fn parent_transform_frame_ip( &self, frame: &mut VideoFrameRef<&mut BufferRef>, ) -> Result<FlowSuccess, FlowError>
fn parent_transform_frame_ip_passthrough( &self, frame: &VideoFrameRef<&BufferRef>, ) -> Result<FlowSuccess, FlowError>
Object Safety§
This trait is not object safe.