mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-29 13:01:05 +00:00
069c6a2c01
When I introduced the 'ser_de' feature, I couldn't find a way to name it 'serde' while also make it pull the optional 'serde' crate together with the other related dependencies. With rustc >= 1.60 we can use 'dep:serde' to refer to the 'serde' dependency as part of the 'serde' feature.
94 lines
2.7 KiB
Rust
94 lines
2.7 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))]
|
|
#![allow(clippy::missing_safety_doc)]
|
|
#![allow(clippy::non_send_fields_in_send_ty)]
|
|
#![doc = include_str!("../README.md")]
|
|
|
|
pub use ffi;
|
|
pub use glib;
|
|
pub use gst;
|
|
pub use gst_base;
|
|
|
|
macro_rules! assert_initialized_main_thread {
|
|
() => {
|
|
if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
|
|
#[allow(unused_unsafe)]
|
|
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
|
|
panic!("GStreamer has not been initialized. Call `gst::init` first.");
|
|
} else {
|
|
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
macro_rules! skip_assert_initialized {
|
|
() => {};
|
|
}
|
|
|
|
#[allow(clippy::unreadable_literal)]
|
|
#[allow(clippy::too_many_arguments)]
|
|
#[allow(clippy::match_same_arms)]
|
|
#[allow(clippy::use_self)]
|
|
#[allow(clippy::needless_borrow)]
|
|
#[allow(unused_imports)]
|
|
mod auto;
|
|
pub use crate::auto::*;
|
|
|
|
mod caps;
|
|
pub use crate::caps::AudioCapsBuilder;
|
|
|
|
#[cfg(feature = "serde")]
|
|
mod flag_serde;
|
|
|
|
mod audio_format;
|
|
pub use crate::audio_format::*;
|
|
mod audio_format_info;
|
|
pub use crate::audio_format_info::*;
|
|
mod audio_ring_buffer_spec;
|
|
pub use crate::audio_ring_buffer_spec::*;
|
|
mod audio_info;
|
|
pub use crate::audio_info::*;
|
|
mod audio_meta;
|
|
pub use crate::audio_meta::*;
|
|
mod audio_channel_position;
|
|
pub use crate::audio_channel_position::*;
|
|
mod audio_aggregator;
|
|
mod audio_aggregator_convert_pad;
|
|
mod audio_aggregator_pad;
|
|
mod audio_stream_align;
|
|
mod functions;
|
|
pub use crate::functions::*;
|
|
#[cfg(any(feature = "v1_16", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
|
|
pub mod audio_buffer;
|
|
#[cfg(any(feature = "v1_16", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
|
|
pub use audio_buffer::{AudioBuffer, AudioBufferRef};
|
|
|
|
mod audio_decoder;
|
|
mod audio_encoder;
|
|
|
|
mod audio_converter;
|
|
pub use crate::audio_converter::AudioConverterConfig;
|
|
|
|
mod utils;
|
|
|
|
// Re-export all the traits in a prelude module, so that applications
|
|
// can always "use gst_audio::prelude::*" without getting conflicts
|
|
pub mod prelude {
|
|
#[doc(hidden)]
|
|
pub use gst_base::prelude::*;
|
|
|
|
pub use super::audio_decoder::AudioDecoderExtManual;
|
|
pub use super::audio_encoder::AudioEncoderExtManual;
|
|
pub use crate::audio_aggregator::AudioAggregatorExtManual;
|
|
pub use crate::audio_aggregator_convert_pad::AudioAggregatorConvertPadExtManual;
|
|
pub use crate::audio_aggregator_pad::AudioAggregatorPadExtManual;
|
|
pub use crate::audio_format::AudioFormatIteratorExt;
|
|
|
|
pub use crate::auto::traits::*;
|
|
}
|
|
|
|
pub mod subclass;
|