2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
|
2019-02-28 08:32:13 +00:00
|
|
|
#![allow(clippy::cast_ptr_alignment)]
|
2018-11-18 12:20:16 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
2020-06-09 09:24:30 +00:00
|
|
|
mod error;
|
2019-05-26 23:36:30 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
2020-06-09 09:24:30 +00:00
|
|
|
mod plugin;
|
2018-11-18 12:20:16 +00:00
|
|
|
|
2020-06-09 09:24:30 +00:00
|
|
|
mod bin;
|
2022-02-01 09:12:05 +00:00
|
|
|
mod buffer_pool;
|
2020-06-09 09:24:30 +00:00
|
|
|
mod child_proxy;
|
|
|
|
mod element;
|
|
|
|
mod ghost_pad;
|
2021-08-24 06:12:27 +00:00
|
|
|
mod object;
|
2020-06-09 09:24:30 +00:00
|
|
|
mod pad;
|
|
|
|
mod pipeline;
|
2021-08-24 06:12:27 +00:00
|
|
|
mod proxy_pad;
|
2021-10-22 13:51:21 +00:00
|
|
|
mod task_pool;
|
2021-08-15 10:00:32 +00:00
|
|
|
mod tracer;
|
2019-09-11 19:42:32 +00:00
|
|
|
|
2020-06-09 09:24:30 +00:00
|
|
|
mod device;
|
|
|
|
mod device_provider;
|
2019-09-11 19:42:32 +00:00
|
|
|
|
2020-06-09 09:24:30 +00:00
|
|
|
mod clock;
|
|
|
|
mod system_clock;
|
2019-09-25 13:41:23 +00:00
|
|
|
|
2020-06-09 09:24:30 +00:00
|
|
|
mod preset;
|
|
|
|
mod tag_setter;
|
|
|
|
mod uri_handler;
|
|
|
|
|
2020-10-20 20:55:20 +00:00
|
|
|
pub use self::device_provider::DeviceProviderMetadata;
|
|
|
|
pub use self::element::ElementMetadata;
|
|
|
|
|
2020-06-09 09:24:30 +00:00
|
|
|
pub use self::error::FlowError;
|
|
|
|
pub use self::plugin::{MAJOR_VERSION, MINOR_VERSION};
|
2018-11-18 12:20:16 +00:00
|
|
|
|
2022-04-07 15:37:12 +00:00
|
|
|
pub use self::task_pool::TaskPoolFunction;
|
|
|
|
|
2018-11-18 12:20:16 +00:00
|
|
|
pub mod prelude {
|
2020-12-20 17:39:15 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub use glib::subclass::prelude::*;
|
|
|
|
|
2019-02-13 09:57:04 +00:00
|
|
|
pub use super::bin::{BinImpl, BinImplExt};
|
2022-02-01 09:12:05 +00:00
|
|
|
pub use super::buffer_pool::{BufferPoolImpl, BufferPoolImplExt};
|
2021-03-14 12:06:30 +00:00
|
|
|
pub use super::child_proxy::{ChildProxyImpl, ChildProxyImplExt};
|
2019-09-25 13:41:23 +00:00
|
|
|
pub use super::clock::{ClockImpl, ClockImplExt};
|
2019-09-11 19:42:32 +00:00
|
|
|
pub use super::device::{DeviceImpl, DeviceImplExt};
|
2020-10-20 20:55:20 +00:00
|
|
|
pub use super::device_provider::{DeviceProviderImpl, DeviceProviderImplExt};
|
|
|
|
pub use super::element::{ElementImpl, ElementImplExt};
|
2018-11-20 12:43:23 +00:00
|
|
|
pub use super::ghost_pad::GhostPadImpl;
|
2021-08-24 06:12:27 +00:00
|
|
|
pub use super::object::GstObjectImpl;
|
2019-02-13 09:57:04 +00:00
|
|
|
pub use super::pad::{PadImpl, PadImplExt};
|
2018-11-19 23:22:22 +00:00
|
|
|
pub use super::pipeline::PipelineImpl;
|
2019-09-25 13:11:54 +00:00
|
|
|
pub use super::preset::PresetImpl;
|
2021-08-24 06:12:27 +00:00
|
|
|
pub use super::proxy_pad::ProxyPadImpl;
|
2019-09-25 14:19:51 +00:00
|
|
|
pub use super::system_clock::SystemClockImpl;
|
2019-09-25 13:13:07 +00:00
|
|
|
pub use super::tag_setter::TagSetterImpl;
|
2021-10-22 13:51:21 +00:00
|
|
|
pub use super::task_pool::TaskPoolImpl;
|
2021-08-15 10:00:32 +00:00
|
|
|
pub use super::tracer::{TracerHook, TracerImpl, TracerImplExt};
|
2021-03-14 12:06:30 +00:00
|
|
|
pub use super::uri_handler::{URIHandlerImpl, URIHandlerImplExt};
|
2018-11-18 12:20:16 +00:00
|
|
|
}
|