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::AudioBaseSink; |
6 | |
7 | pub trait AudioBaseSinkImpl: BaseSinkImpl {} |
8 | |
9 | unsafe impl<T: AudioBaseSinkImpl> IsSubclassable<T> for AudioBaseSink {} |
10 |