2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
|
2019-02-28 08:32:13 +00:00
|
|
|
#![allow(clippy::cast_ptr_alignment)]
|
2018-11-20 17:33:30 +00:00
|
|
|
|
2020-06-09 09:24: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;
|
2020-06-09 09:24:30 +00:00
|
|
|
// Public to namespace GenerateOutputSuccess and PrepareOutputBufferSuccess,
|
2018-11-20 21:40:39 +00:00
|
|
|
pub mod base_transform;
|
2020-06-09 09:24:30 +00:00
|
|
|
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
|
|
|
|
2020-11-27 13:37:49 +00:00
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
|
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_14")))]
|
2020-06-09 09:24:30 +00:00
|
|
|
mod aggregator;
|
2020-11-27 13:37:49 +00:00
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
|
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_14")))]
|
2020-06-09 09:24:30 +00:00
|
|
|
mod aggregator_pad;
|
2018-11-21 06:49:36 +00:00
|
|
|
|
2018-11-20 17:33:30 +00:00
|
|
|
pub mod prelude {
|
2020-12-20 17:39:15 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub use gst::subclass::prelude::*;
|
|
|
|
|
2020-11-27 13:37:49 +00:00
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
|
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_14")))]
|
2019-02-12 14:23:30 +00:00
|
|
|
pub use super::aggregator::{AggregatorImpl, AggregatorImplExt};
|
2020-11-27 13:37:49 +00:00
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
|
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_14")))]
|
2019-02-12 14:23:30 +00:00
|
|
|
pub use super::aggregator_pad::{AggregatorPadImpl, AggregatorPadImplExt};
|
2019-05-25 19:29:04 +00:00
|
|
|
pub use super::base_parse::{BaseParseImpl, BaseParseImplExt};
|
2019-02-12 14:23:30 +00:00
|
|
|
pub use super::base_sink::{BaseSinkImpl, BaseSinkImplExt};
|
|
|
|
pub use super::base_src::{BaseSrcImpl, BaseSrcImplExt};
|
2020-10-20 20:55:20 +00:00
|
|
|
pub use super::base_transform::{BaseTransformImpl, BaseTransformImplExt};
|
2020-03-29 19:40:22 +00:00
|
|
|
pub use super::push_src::{PushSrcImpl, PushSrcImplExt};
|
2018-11-20 17:33:30 +00:00
|
|
|
}
|