2018-02-09 02:30:08 +00:00
|
|
|
// Copyright (C) 2018 Mathieu Duponchelle <mathieu@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;
|
2018-02-23 02:33:37 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2018-02-09 02:30:08 +00:00
|
|
|
extern crate libc;
|
|
|
|
|
2018-02-22 10:18:37 +00:00
|
|
|
extern crate gio;
|
|
|
|
extern crate gio_sys as gio_ffi;
|
2018-02-23 02:33:37 +00:00
|
|
|
use std::ffi::CStr;
|
2018-02-09 02:30:08 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate glib;
|
|
|
|
extern crate glib_sys as glib_ffi;
|
|
|
|
extern crate gobject_sys as gobject_ffi;
|
|
|
|
extern crate gstreamer as gst;
|
|
|
|
extern crate gstreamer_net as gst_net;
|
|
|
|
extern crate gstreamer_net_sys as gst_net_ffi;
|
2018-02-22 10:18:37 +00:00
|
|
|
extern crate gstreamer_rtsp as gst_rtsp;
|
2018-02-09 02:30:08 +00:00
|
|
|
extern crate gstreamer_rtsp_server_sys as ffi;
|
2018-02-22 10:18:37 +00:00
|
|
|
extern crate gstreamer_rtsp_sys as gst_rtsp_ffi;
|
|
|
|
extern crate gstreamer_sys as gst_ffi;
|
2018-02-09 02:30:08 +00:00
|
|
|
|
2018-03-02 19:33:41 +00:00
|
|
|
macro_rules! callback_guard {
|
2018-04-01 08:30:03 +00:00
|
|
|
() => {
|
2018-03-02 19:33:41 +00:00
|
|
|
let _guard = ::glib::CallbackGuard::new();
|
2018-04-01 08:30:03 +00:00
|
|
|
};
|
2018-03-02 19:33:41 +00:00
|
|
|
}
|
|
|
|
|
2018-02-09 02:30:08 +00:00
|
|
|
macro_rules! assert_initialized_main_thread {
|
2018-04-01 08:30:03 +00:00
|
|
|
() => {
|
|
|
|
if unsafe { ::gst_ffi::gst_is_initialized() } != ::glib_ffi::GTRUE {
|
2018-02-09 02:30:08 +00:00
|
|
|
panic!("GStreamer has not been initialized. Call `gst::init` first.");
|
|
|
|
}
|
2018-04-01 08:30:03 +00:00
|
|
|
};
|
2018-02-09 02:30:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! skip_assert_initialized {
|
2018-04-01 08:30:03 +00:00
|
|
|
() => {};
|
2018-02-09 02:30:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub use glib::{Cast, Continue, Error, IsA, StaticType, ToValue, Type, TypedValue, Value};
|
|
|
|
|
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(unreadable_literal))]
|
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(transmute_ptr_to_ref))]
|
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(too_many_arguments))]
|
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(match_same_arms))]
|
|
|
|
mod auto;
|
|
|
|
pub use auto::*;
|
|
|
|
|
|
|
|
mod r_t_s_p_address_pool;
|
2018-04-01 08:30:03 +00:00
|
|
|
mod r_t_s_p_auth;
|
2018-02-09 02:30:08 +00:00
|
|
|
mod r_t_s_p_client;
|
2018-02-15 15:03:31 +00:00
|
|
|
mod r_t_s_p_context;
|
2018-03-15 08:21:53 +00:00
|
|
|
mod r_t_s_p_media_factory;
|
2018-04-01 08:30:03 +00:00
|
|
|
mod r_t_s_p_server;
|
|
|
|
mod r_t_s_p_session_pool;
|
|
|
|
mod r_t_s_p_token;
|
2018-02-09 02:30:08 +00:00
|
|
|
|
|
|
|
pub use r_t_s_p_address_pool::RTSPAddressPoolExtManual;
|
2018-02-23 02:33:37 +00:00
|
|
|
pub use r_t_s_p_auth::RTSPAuthExtManual;
|
2018-04-01 08:30:03 +00:00
|
|
|
pub use r_t_s_p_client::RTSPClientExtManual;
|
2018-03-15 08:21:53 +00:00
|
|
|
pub use r_t_s_p_media_factory::RTSPMediaFactoryExtManual;
|
2018-04-01 08:30:03 +00:00
|
|
|
pub use r_t_s_p_server::RTSPServerExtManual;
|
|
|
|
pub use r_t_s_p_session_pool::RTSPSessionPoolExtManual;
|
2018-02-09 02:30:08 +00:00
|
|
|
|
2018-02-15 15:03:31 +00:00
|
|
|
pub use r_t_s_p_context::*;
|
2018-02-23 02:33:37 +00:00
|
|
|
pub use r_t_s_p_token::*;
|
|
|
|
|
|
|
|
lazy_static! {
|
2018-04-01 08:30:03 +00:00
|
|
|
pub static ref RTSP_ADDRESS_POOL_ANY_IPV4: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_ADDRESS_POOL_ANY_IPV4)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
pub static ref RTSP_ADDRESS_POOL_ANY_IPV6: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_ADDRESS_POOL_ANY_IPV6)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
pub static ref RTSP_AUTH_CHECK_CONNECT: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_AUTH_CHECK_CONNECT)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
pub static ref RTSP_AUTH_CHECK_MEDIA_FACTORY_ACCESS: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_ACCESS)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
pub static ref RTSP_AUTH_CHECK_MEDIA_FACTORY_CONSTRUCT: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_CONSTRUCT)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
pub static ref RTSP_AUTH_CHECK_TRANSPORT_CLIENT_SETTINGS: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_AUTH_CHECK_TRANSPORT_CLIENT_SETTINGS)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
pub static ref RTSP_AUTH_CHECK_URL: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_AUTH_CHECK_URL)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
pub static ref RTSP_PERM_MEDIA_FACTORY_ACCESS: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_PERM_MEDIA_FACTORY_ACCESS)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
pub static ref RTSP_PERM_MEDIA_FACTORY_CONSTRUCT: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_PERM_MEDIA_FACTORY_CONSTRUCT)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
pub static ref RTSP_TOKEN_MEDIA_FACTORY_ROLE: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_TOKEN_MEDIA_FACTORY_ROLE)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
pub static ref RTSP_TOKEN_TRANSPORT_CLIENT_SETTINGS: &'static str = unsafe {
|
|
|
|
CStr::from_ptr(ffi::GST_RTSP_TOKEN_TRANSPORT_CLIENT_SETTINGS)
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
};
|
2018-02-23 02:33:37 +00:00
|
|
|
}
|
2018-02-15 15:03:31 +00:00
|
|
|
|
2018-02-09 02:30:08 +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::*;
|
|
|
|
|
|
|
|
pub use r_t_s_p_address_pool::RTSPAddressPoolExtManual;
|
2018-04-01 08:30:03 +00:00
|
|
|
pub use r_t_s_p_auth::RTSPAuthExtManual;
|
2018-02-09 02:30:08 +00:00
|
|
|
pub use r_t_s_p_client::RTSPClientExtManual;
|
2018-04-01 08:30:03 +00:00
|
|
|
pub use r_t_s_p_media_factory::RTSPMediaFactoryExtManual;
|
|
|
|
pub use r_t_s_p_server::RTSPServerExtManual;
|
2018-02-09 02:30:08 +00:00
|
|
|
pub use r_t_s_p_session_pool::RTSPSessionPoolExtManual;
|
2018-03-01 23:46:12 +00:00
|
|
|
pub use r_t_s_p_token::GstRcRTSPTokenExt;
|
2018-02-09 02:30:08 +00:00
|
|
|
}
|