gstreamer-rs/gstreamer-video/src/subclass/video_aggregator_convert_pad.rs

10 lines
366 B
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
use gst_base::subclass::prelude::*;
use super::prelude::VideoAggregatorPadImpl;
use crate::VideoAggregatorConvertPad;
pub trait VideoAggregatorConvertPadImpl: VideoAggregatorPadImpl {}
unsafe impl<T: VideoAggregatorConvertPadImpl> IsSubclassable<T> for VideoAggregatorConvertPad {}