1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Take a look at the license at the top of the repository in the LICENSE file.

#![allow(clippy::cast_ptr_alignment)]

mod base_parse;
mod base_sink;
// Public to namespace CreateSuccess
pub mod base_src;
// Public to namespace GenerateOutputSuccess and PrepareOutputBufferSuccess,
pub mod base_transform;
mod push_src;

pub use self::base_transform::BaseTransformMode;

mod aggregator;
mod aggregator_pad;

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},
    };
}