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