2017-08-01 13:18:50 +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.
|
|
|
|
|
|
|
|
extern crate libc;
|
|
|
|
|
2019-03-19 07:58:20 +00:00
|
|
|
extern crate glib_sys;
|
|
|
|
extern crate gobject_sys;
|
2017-08-01 13:18:50 +00:00
|
|
|
extern crate gstreamer as gst;
|
2019-03-19 07:58:20 +00:00
|
|
|
extern crate gstreamer_app_sys as gst_app_sys;
|
2017-10-17 09:06:51 +00:00
|
|
|
extern crate gstreamer_base as gst_base;
|
2019-03-19 07:58:20 +00:00
|
|
|
extern crate gstreamer_sys as gst_sys;
|
2017-08-01 13:18:50 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate glib;
|
|
|
|
|
|
|
|
macro_rules! skip_assert_initialized {
|
2018-04-01 08:30:03 +00:00
|
|
|
() => {};
|
2017-08-01 13:18:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub use glib::{Cast, Continue, Error, IsA, StaticType, ToValue, Type, TypedValue, Value};
|
|
|
|
|
2019-02-28 08:32:13 +00:00
|
|
|
#[allow(clippy::unreadable_literal)]
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
|
|
|
#[allow(clippy::match_same_arms)]
|
2017-08-01 13:18:50 +00:00
|
|
|
mod auto;
|
|
|
|
pub use auto::*;
|
|
|
|
|
2017-08-01 14:52:11 +00:00
|
|
|
mod app_sink;
|
2018-04-01 08:30:03 +00:00
|
|
|
mod app_src;
|
2017-12-10 13:18:54 +00:00
|
|
|
pub use app_sink::*;
|
2018-04-01 08:30:03 +00:00
|
|
|
pub use app_src::*;
|
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::*;
|
|
|
|
|
|
|
|
pub use auto::traits::*;
|
|
|
|
}
|