gstreamer-rs/gstreamer/src/lib.rs

90 lines
2.1 KiB
Rust
Raw Normal View History

2017-07-07 11:47:28 +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.
#[macro_use]
extern crate bitflags;
extern crate libc;
extern crate glib_sys as glib_ffi;
extern crate gobject_sys as gobject_ffi;
extern crate gstreamer_sys as ffi;
#[macro_use]
extern crate glib;
2017-07-12 10:25:11 +00:00
extern crate num_rational;
use glib::translate::{from_glib, from_glib_full};
macro_rules! callback_guard {
() => (
let _guard = ::glib::CallbackGuard::new();
)
}
macro_rules! assert_initialized_main_thread {
() => (
assert_eq!(unsafe {ffi::gst_is_initialized()}, ::glib_ffi::GTRUE)
)
}
macro_rules! skip_assert_initialized {
() => (
)
}
2017-07-10 21:33:24 +00:00
pub use glib::{Cast, Continue, Error, IsA, StaticType, ToValue, Type, TypedValue, Value};
mod auto;
pub use auto::*;
pub use auto::traits::*;
pub use auto::functions::{parse_launch, parse_bin_from_description};
pub use auto::traits::ObjectExt as GstObjectExt;
pub mod miniobject;
pub use miniobject::GstRc;
pub mod message;
2017-07-24 22:17:50 +00:00
pub use message::{Message, MessageRef, MessageView};
2017-07-07 13:04:54 +00:00
pub mod structure;
2017-07-24 22:17:50 +00:00
pub use structure::{Structure, StructureRef};
2017-07-10 21:02:08 +00:00
pub mod caps;
2017-07-24 22:17:50 +00:00
pub use caps::{Caps, CapsRef};
2017-07-12 07:27:43 +00:00
pub mod tags;
pub use tags::*;
2017-07-25 12:01:24 +00:00
pub mod buffer;
pub use buffer::{Buffer, BufferRef, ReadBufferMap, ReadWriteBufferMap, ReadMappedBuffer, ReadWriteMappedBuffer};
mod element;
mod bin;
mod bus;
mod pad;
mod gobject;
pub use bin::BinExtManual;
2017-07-24 22:17:50 +00:00
pub use pad::{PadExtManual, PadProbeId, PadProbeInfo, PadProbeData, PAD_PROBE_ID_INVALID};
pub use gobject::GObjectExtManualGst;
2017-07-12 10:25:11 +00:00
mod value;
pub use value::*;
use std::ptr;
pub fn init() -> Result<(), glib::Error> {
unsafe {
let mut error = ptr::null_mut();
2017-07-10 21:33:24 +00:00
if from_glib(ffi::gst_init_check(
ptr::null_mut(),
ptr::null_mut(),
&mut error,
)) {
Ok(())
} else {
Err(from_glib_full(error))
}
}
}