gstreamer-rs/gstreamer-audio/src/subclass/audio_base_src.rs

10 lines
259 B
Rust
Raw Permalink Normal View History

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