gstreamer_video/auto/
video_aggregator.rs1use crate::ffi;
7use glib::prelude::*;
8
9glib::wrapper! {
10 #[doc(alias = "GstVideoAggregator")]
11 pub struct VideoAggregator(Object<ffi::GstVideoAggregator, ffi::GstVideoAggregatorClass>) @extends gst_base::Aggregator, gst::Element, gst::Object;
12
13 match fn {
14 type_ => || ffi::gst_video_aggregator_get_type(),
15 }
16}
17
18impl VideoAggregator {
19 pub const NONE: Option<&'static VideoAggregator> = None;
20}
21
22unsafe impl Send for VideoAggregator {}
23unsafe impl Sync for VideoAggregator {}
24
25mod sealed {
26 pub trait Sealed {}
27 impl<T: super::IsA<super::VideoAggregator>> Sealed for T {}
28}
29
30pub trait VideoAggregatorExt: IsA<VideoAggregator> + sealed::Sealed + 'static {
31 }
39
40impl<O: IsA<VideoAggregator>> VideoAggregatorExt for O {}