mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-29 21:11:14 +00:00
fb55cdfeff
gir has been fixed to omit all unnecessary imports from objects, enums and flags which currently are the only offenders of this linter warning. Hence disallow this warning from now on which is anyway not applied to every crate - like gstreamer-gl - where such issues have been uncovered.
64 lines
1.5 KiB
Rust
64 lines
1.5 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
|
|
|
pub use ffi;
|
|
pub use glib;
|
|
pub use gst;
|
|
|
|
use std::sync::Once;
|
|
|
|
static PBUTILS_INIT: Once = Once::new();
|
|
|
|
macro_rules! assert_initialized_main_thread {
|
|
() => {
|
|
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
|
|
panic!("GStreamer has not been initialized. Call `gst::init` first.");
|
|
}
|
|
crate::PBUTILS_INIT.call_once(|| {
|
|
unsafe { ffi::gst_pb_utils_init() };
|
|
});
|
|
};
|
|
}
|
|
|
|
macro_rules! skip_assert_initialized {
|
|
() => {};
|
|
}
|
|
|
|
#[allow(clippy::unreadable_literal)]
|
|
#[allow(clippy::too_many_arguments)]
|
|
#[allow(clippy::match_same_arms)]
|
|
#[allow(clippy::type_complexity)]
|
|
mod auto;
|
|
pub use crate::auto::functions::*;
|
|
pub use crate::auto::*;
|
|
|
|
mod discoverer;
|
|
pub use crate::discoverer::*;
|
|
|
|
pub mod discoverer_stream_info;
|
|
|
|
mod discoverer_video_info;
|
|
pub use crate::discoverer_video_info::*;
|
|
|
|
mod encoding_profile;
|
|
pub use crate::encoding_profile::*;
|
|
|
|
pub mod functions;
|
|
pub use crate::functions::*;
|
|
|
|
// Re-export all the traits in a prelude module, so that applications
|
|
// can always "use gst::prelude::*" without getting conflicts
|
|
pub mod prelude {
|
|
#[doc(hidden)]
|
|
pub use glib::prelude::*;
|
|
#[doc(hidden)]
|
|
pub use gst::prelude::*;
|
|
|
|
pub use crate::auto::traits::*;
|
|
pub use crate::encoding_profile::{
|
|
EncodingProfileBuilder, EncodingProfileHasRestrictionGetter,
|
|
};
|
|
|
|
pub use crate::functions::CodecTag;
|
|
}
|