1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
glib::wrapper! {
#[doc(alias = "GstVideoAggregatorParallelConvertPad")]
pub struct VideoAggregatorParallelConvertPad(Object<ffi::GstVideoAggregatorParallelConvertPad, ffi::GstVideoAggregatorParallelConvertPadClass>) @extends gst::Object;
match fn {
type_ => || ffi::gst_video_aggregator_parallel_convert_pad_get_type(),
}
}
impl VideoAggregatorParallelConvertPad {}
unsafe impl Send for VideoAggregatorParallelConvertPad {}
unsafe impl Sync for VideoAggregatorParallelConvertPad {}
pub const NONE_VIDEO_AGGREGATOR_PARALLEL_CONVERT_PAD: Option<&VideoAggregatorParallelConvertPad> =
None;