gstreamer_video/subclass/
video_aggregator_convert_pad.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use gst_base::subclass::prelude::*;
4
5use super::prelude::VideoAggregatorPadImpl;
6use crate::VideoAggregatorConvertPad;
7
8pub trait VideoAggregatorConvertPadImpl: VideoAggregatorPadImpl {}
9
10unsafe impl<T: VideoAggregatorConvertPadImpl> IsSubclassable<T> for VideoAggregatorConvertPad {}