gstreamer-rs/gstreamer-video/src/subclass/mod.rs
Marijn Suijten e6a81edb3c prelude: Remove redundant reexports already provided by other preludes
For cleanliness the prelude module only needs to reexport preludes from
direct, "top-most" crates, which themselves take care of reexporting
preludes from its dependencies again.  This shaves off some code while
maintaining the same set of exports.
2021-04-29 11:44:35 +02:00

17 lines
475 B
Rust

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