gstreamer_audio/subclass/
audio_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::{prelude::*, subclass::prelude::*};
4
5use super::prelude::AudioAggregatorPadImpl;
6use crate::AudioAggregatorConvertPad;
7
8pub trait AudioAggregatorConvertPadImpl:
9    AudioAggregatorPadImpl + ObjectSubclass<Type: IsA<AudioAggregatorConvertPad>>
10{
11}
12
13unsafe impl<T: AudioAggregatorConvertPadImpl> IsSubclassable<T> for AudioAggregatorConvertPad {}