mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-02-10 08:12:53 +00:00
20 lines
628 B
Rust
20 lines
628 B
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
#![allow(clippy::cast_ptr_alignment)]
|
|
|
|
mod navigation;
|
|
mod video_decoder;
|
|
mod video_encoder;
|
|
mod video_filter;
|
|
mod video_sink;
|
|
|
|
pub mod prelude {
|
|
#[doc(hidden)]
|
|
pub use gst_base::subclass::prelude::*;
|
|
|
|
pub use super::navigation::NavigationImpl;
|
|
pub use super::video_decoder::{VideoDecoderImpl, VideoDecoderImplExt};
|
|
pub use super::video_encoder::{VideoEncoderImpl, VideoEncoderImplExt};
|
|
pub use super::video_filter::{VideoFilterImpl, VideoFilterImplExt};
|
|
pub use super::video_sink::{VideoSinkImpl, VideoSinkImplExt};
|
|
}
|