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 crate::AudioBaseSrc; |
6 | |
7 | pub trait AudioBaseSrcImpl: BaseSrcImpl {} |
8 | |
9 | unsafe impl<T: AudioBaseSrcImpl> IsSubclassable<T> for AudioBaseSrc {} |
10 |