gstreamer_video/auto/
video_aggregator_parallel_convert_pad.rs1use crate::{ffi, VideoAggregatorConvertPad, VideoAggregatorPad};
7
8glib::wrapper! {
9 #[doc(alias = "GstVideoAggregatorParallelConvertPad")]
10 pub struct VideoAggregatorParallelConvertPad(Object<ffi::GstVideoAggregatorParallelConvertPad, ffi::GstVideoAggregatorParallelConvertPadClass>) @extends VideoAggregatorConvertPad, VideoAggregatorPad, gst_base::AggregatorPad, gst::Pad, gst::Object;
11
12 match fn {
13 type_ => || ffi::gst_video_aggregator_parallel_convert_pad_get_type(),
14 }
15}
16
17impl VideoAggregatorParallelConvertPad {
18 pub const NONE: Option<&'static VideoAggregatorParallelConvertPad> = None;
19}
20
21unsafe impl Send for VideoAggregatorParallelConvertPad {}
22unsafe impl Sync for VideoAggregatorParallelConvertPad {}