1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
// Take a look at the license at the top of the repository in the LICENSE file.

#![allow(clippy::cast_ptr_alignment)]

mod video_decoder;
mod video_encoder;
mod video_sink;

pub mod prelude {
    #[doc(hidden)]
    pub use gst_base::subclass::prelude::*;

    pub use super::video_decoder::{VideoDecoderImpl, VideoDecoderImplExt};
    pub use super::video_encoder::{VideoEncoderImpl, VideoEncoderImplExt};
    pub use super::video_sink::{VideoSinkImpl, VideoSinkImplExt};
}