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.
|
|
|
|
|
2017-09-10 11:55:29 +00:00
|
|
|
extern crate array_init;
|
2017-08-08 22:29:49 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate bitflags;
|
|
|
|
|
2017-09-10 11:55:29 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate glib;
|
2019-03-19 07:58:20 +00:00
|
|
|
extern crate glib_sys;
|
|
|
|
extern crate gobject_sys;
|
2019-09-13 19:51:10 +00:00
|
|
|
#[macro_use]
|
2017-08-08 22:29:49 +00:00
|
|
|
extern crate gstreamer as gst;
|
2019-03-19 07:58:20 +00:00
|
|
|
extern crate gstreamer_audio_sys as gst_audio_sys;
|
2019-09-13 19:51:10 +00:00
|
|
|
extern crate gstreamer_base as gst_base;
|
|
|
|
extern crate gstreamer_base_sys as gst_base_sys;
|
2019-03-19 07:58:20 +00:00
|
|
|
extern crate gstreamer_sys as gst_sys;
|
2017-08-08 22:29:49 +00:00
|
|
|
|
2017-08-09 22:33:13 +00:00
|
|
|
macro_rules! assert_initialized_main_thread {
|
2018-04-01 08:30:03 +00:00
|
|
|
() => {
|
2019-03-19 07:58:20 +00:00
|
|
|
if unsafe { ::gst_sys::gst_is_initialized() } != ::glib_sys::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)]
|
2017-08-08 22:29:49 +00:00
|
|
|
mod auto;
|
|
|
|
pub use auto::*;
|
|
|
|
|
2017-08-10 08:24:16 +00:00
|
|
|
mod audio_format;
|
|
|
|
pub use audio_format::*;
|
2017-08-08 22:29:49 +00:00
|
|
|
mod audio_format_info;
|
|
|
|
pub use audio_format_info::*;
|
2019-12-13 13:09:30 +00:00
|
|
|
mod audio_ring_buffer_spec;
|
|
|
|
pub use audio_ring_buffer_spec::*;
|
2017-08-08 22:29:49 +00:00
|
|
|
mod audio_info;
|
|
|
|
pub use audio_info::*;
|
2020-04-10 14:52:32 +00:00
|
|
|
mod audio_meta;
|
|
|
|
pub use audio_meta::*;
|
2017-08-10 11:39:57 +00:00
|
|
|
mod audio_channel_position;
|
|
|
|
pub use audio_channel_position::*;
|
2018-03-15 08:46:49 +00:00
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
2018-03-15 08:03:01 +00:00
|
|
|
mod audio_stream_align;
|
2017-08-10 11:43:06 +00:00
|
|
|
|
2019-09-13 19:51:10 +00:00
|
|
|
mod audio_decoder;
|
2019-10-17 10:04:29 +00:00
|
|
|
pub use audio_decoder::AudioDecoderExtManual;
|
2019-09-13 19:51:10 +00:00
|
|
|
mod audio_encoder;
|
2019-10-17 10:04:29 +00:00
|
|
|
pub use audio_encoder::AudioEncoderExtManual;
|
2019-09-13 19:51:10 +00:00
|
|
|
|
2017-08-10 11:43:06 +00:00
|
|
|
use glib::translate::{from_glib_full, ToGlibPtr};
|
|
|
|
pub fn audio_buffer_clip(
|
|
|
|
buffer: gst::Buffer,
|
|
|
|
segment: &gst::Segment,
|
|
|
|
rate: u32,
|
2019-07-11 12:34:28 +00:00
|
|
|
bpf: u32,
|
2017-12-16 08:56:59 +00:00
|
|
|
) -> Option<gst::Buffer> {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
|
|
|
|
2017-08-10 11:43:06 +00:00
|
|
|
unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
from_glib_full(gst_audio_sys::gst_audio_buffer_clip(
|
2017-08-10 11:43:06 +00:00
|
|
|
buffer.into_ptr(),
|
|
|
|
segment.to_glib_none().0,
|
|
|
|
rate as i32,
|
2019-07-11 12:34:28 +00:00
|
|
|
bpf as i32,
|
2017-08-10 11:43:06 +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;
|
2017-08-17 14:58:15 +00:00
|
|
|
pub use auto::traits::*;
|
|
|
|
}
|
2019-09-13 19:51:10 +00:00
|
|
|
|
|
|
|
pub mod subclass;
|