2017-08-08 22:29:49 +00:00
|
|
|
// Copyright (C) 2017 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2020-11-25 14:54:02 +00:00
|
|
|
#![cfg_attr(all(not(doctest), doc), feature(doc_cfg))]
|
2020-11-18 12:48:41 +00:00
|
|
|
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use ffi;
|
2020-06-05 10:22:08 +00:00
|
|
|
|
2017-08-09 22:33:13 +00:00
|
|
|
macro_rules! assert_initialized_main_thread {
|
2018-04-01 08:30:03 +00:00
|
|
|
() => {
|
2020-11-21 18:17:20 +00:00
|
|
|
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
|
2017-08-30 11:39:09 +00:00
|
|
|
panic!("GStreamer has not been initialized. Call `gst::init` first.");
|
|
|
|
}
|
2018-04-01 08:30:03 +00:00
|
|
|
};
|
2017-08-09 22:33:13 +00:00
|
|
|
}
|
|
|
|
|
2017-08-08 22:29:49 +00:00
|
|
|
macro_rules! skip_assert_initialized {
|
2018-04-01 08:30:03 +00:00
|
|
|
() => {};
|
2017-08-08 22:29:49 +00:00
|
|
|
}
|
|
|
|
|
2019-02-28 08:32:13 +00:00
|
|
|
#[allow(clippy::unreadable_literal)]
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
|
|
|
#[allow(clippy::match_same_arms)]
|
2020-10-17 09:04:24 +00:00
|
|
|
#[allow(unused_imports)]
|
2017-08-08 22:29:49 +00:00
|
|
|
mod auto;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::auto::*;
|
2017-08-08 22:29:49 +00:00
|
|
|
|
2017-08-10 08:24:16 +00:00
|
|
|
mod audio_format;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::audio_format::*;
|
2017-08-08 22:29:49 +00:00
|
|
|
mod audio_format_info;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::audio_format_info::*;
|
2019-12-13 13:09:30 +00:00
|
|
|
mod audio_ring_buffer_spec;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::audio_ring_buffer_spec::*;
|
2017-08-08 22:29:49 +00:00
|
|
|
mod audio_info;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::audio_info::*;
|
2020-04-10 14:52:32 +00:00
|
|
|
mod audio_meta;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::audio_meta::*;
|
2017-08-10 11:39:57 +00:00
|
|
|
mod audio_channel_position;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::audio_channel_position::*;
|
2020-11-25 14:54:02 +00:00
|
|
|
#[cfg(any(feature = "v1_14", all(not(doctest), doc)))]
|
|
|
|
#[cfg_attr(all(not(doctest), doc), doc(cfg(feature = "v1_14")))]
|
2018-03-15 08:03:01 +00:00
|
|
|
mod audio_stream_align;
|
2020-05-28 13:27:34 +00:00
|
|
|
mod functions;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::functions::*;
|
2020-11-25 14:54:02 +00:00
|
|
|
#[cfg(any(feature = "v1_16", all(not(doctest), doc)))]
|
|
|
|
#[cfg_attr(all(not(doctest), doc), doc(cfg(feature = "v1_16")))]
|
2020-06-07 11:53:38 +00:00
|
|
|
pub mod audio_buffer;
|
2020-11-25 14:54:02 +00:00
|
|
|
#[cfg(any(feature = "v1_16", all(not(doctest), doc)))]
|
|
|
|
#[cfg_attr(all(not(doctest), doc), doc(cfg(feature = "v1_16")))]
|
2020-06-07 11:53:38 +00:00
|
|
|
pub use audio_buffer::{AudioBuffer, AudioBufferRef};
|
2017-08-10 11:43:06 +00:00
|
|
|
|
2019-09-13 19:51:10 +00:00
|
|
|
mod audio_decoder;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::audio_decoder::AudioDecoderExtManual;
|
2019-09-13 19:51:10 +00:00
|
|
|
mod audio_encoder;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::audio_encoder::AudioEncoderExtManual;
|
2019-09-13 19:51:10 +00:00
|
|
|
|
2017-08-17 14:58:15 +00:00
|
|
|
// Re-export all the traits in a prelude module, so that applications
|
|
|
|
// can always "use gst::prelude::*" without getting conflicts
|
|
|
|
pub mod prelude {
|
|
|
|
pub use glib::prelude::*;
|
|
|
|
pub use gst::prelude::*;
|
|
|
|
|
2019-09-13 19:51:10 +00:00
|
|
|
pub use super::audio_decoder::AudioDecoderExtManual;
|
|
|
|
pub use super::audio_encoder::AudioEncoderExtManual;
|
2020-11-21 18:17:20 +00:00
|
|
|
pub use crate::audio_format::AudioFormatIteratorExt;
|
|
|
|
pub use crate::auto::traits::*;
|
2017-08-17 14:58:15 +00:00
|
|
|
}
|
2019-09-13 19:51:10 +00:00
|
|
|
|
|
|
|
pub mod subclass;
|