gstreamer-rs/gstreamer-base/src/subclass/mod.rs

32 lines
912 B
Rust
Raw Normal View History

2020-12-15 10:53:31 +00:00
// Take a look at the license at the top of the repository in the LICENSE file.
#![allow(clippy::cast_ptr_alignment)]
2018-11-20 17:33:30 +00:00
mod base_parse;
mod base_sink;
// Public to namespace CreateSuccess
2018-11-20 17:33:30 +00:00
pub mod base_src;
// Public to namespace GenerateOutputSuccess and PrepareOutputBufferSuccess,
2018-11-20 21:40:39 +00:00
pub mod base_transform;
mod push_src;
2018-11-20 21:40:39 +00:00
pub use self::base_transform::BaseTransformMode;
2018-11-20 17:33:30 +00:00
mod aggregator;
mod aggregator_pad;
2018-11-21 06:49:36 +00:00
2018-11-20 17:33:30 +00:00
pub mod prelude {
#[doc(hidden)]
pub use gst::subclass::prelude::*;
pub use super::{
aggregator::{AggregatorImpl, AggregatorImplExt},
aggregator_pad::{AggregatorPadImpl, AggregatorPadImplExt},
base_parse::{BaseParseImpl, BaseParseImplExt},
base_sink::{BaseSinkImpl, BaseSinkImplExt},
base_src::{BaseSrcImpl, BaseSrcImplExt},
base_transform::{BaseTransformImpl, BaseTransformImplExt},
push_src::{PushSrcImpl, PushSrcImplExt},
};
2018-11-20 17:33:30 +00:00
}