2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
2017-08-01 13:18:50 +00:00
|
|
|
|
2020-11-27 13:37:49 +00:00
|
|
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
2021-07-30 19:23:46 +00:00
|
|
|
#![allow(clippy::missing_safety_doc)]
|
2022-01-13 21:12:53 +00:00
|
|
|
#![allow(clippy::non_send_fields_in_send_ty)]
|
2021-07-30 16:03:12 +00:00
|
|
|
#![doc = include_str!("../README.md")]
|
2020-11-18 12:48:41 +00:00
|
|
|
|
2020-11-21 18:06:11 +00:00
|
|
|
pub use ffi;
|
2020-12-20 17:39:15 +00:00
|
|
|
pub use glib;
|
|
|
|
pub use gst;
|
|
|
|
pub use gst_base;
|
2020-01-29 15:51:47 +00:00
|
|
|
|
2017-08-01 13:18:50 +00:00
|
|
|
macro_rules! skip_assert_initialized {
|
2018-04-01 08:30:03 +00:00
|
|
|
() => {};
|
2017-08-01 13:18:50 +00:00
|
|
|
}
|
|
|
|
|
2019-02-28 08:32:13 +00:00
|
|
|
#[allow(clippy::unreadable_literal)]
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
|
|
|
#[allow(clippy::match_same_arms)]
|
2021-04-29 20:06:11 +00:00
|
|
|
#[allow(clippy::use_self)]
|
2021-11-06 17:09:27 +00:00
|
|
|
#[allow(unused_imports)]
|
2017-08-01 13:18:50 +00:00
|
|
|
mod auto;
|
2020-11-21 18:06:11 +00:00
|
|
|
pub use crate::auto::*;
|
2017-08-01 13:18:50 +00:00
|
|
|
|
2020-01-29 12:40:17 +00:00
|
|
|
pub mod app_sink;
|
2020-11-21 18:06:11 +00:00
|
|
|
pub use crate::app_sink::AppSinkCallbacks;
|
2020-01-29 12:40:17 +00:00
|
|
|
|
|
|
|
pub mod app_src;
|
2020-11-21 18:06:11 +00:00
|
|
|
pub use crate::app_src::AppSrcCallbacks;
|
2017-08-17 14:58:15 +00:00
|
|
|
|
|
|
|
// Re-export all the traits in a prelude module, so that applications
|
2021-04-27 07:30:13 +00:00
|
|
|
// can always "use gst_app::prelude::*" without getting conflicts
|
2017-08-17 14:58:15 +00:00
|
|
|
pub mod prelude {
|
2020-12-20 17:39:15 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub use gst_base::prelude::*;
|
2017-08-17 14:58:15 +00:00
|
|
|
}
|