gstreamer-rs/gstreamer-mpegts/src/lib.rs

29 lines
599 B
Rust
Raw Normal View History

#![cfg_attr(docsrs, feature(doc_cfg))]
#![allow(clippy::missing_safety_doc)]
use std::sync::Once;
pub use ffi::*;
pub use glib;
pub use gst;
static MPEGTS_INIT: Once = Once::new();
macro_rules! assert_initialized_main_thread {
() => {
if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
gst::assert_initialized();
}
crate::MPEGTS_INIT.call_once(|| unsafe { ffi::gst_mpegts_initialize() });
};
}
pub fn init() {
assert_initialized_main_thread!();
}
#[allow(unused_imports)]
mod auto;
#[allow(unused_imports)]
pub use crate::auto::*;