Rename manual files with too many underscores

This commit is contained in:
Sebastian Dröge 2018-04-23 20:37:08 +03:00
parent 46d27e3e75
commit 2d260b4f0c
27 changed files with 62 additions and 62 deletions

View file

@ -54,24 +54,24 @@ pub use glib::{Cast, Continue, Error, IsA, StaticType, ToValue, Type, TypedValue
mod auto;
pub use auto::*;
mod r_t_s_p_address_pool;
mod r_t_s_p_auth;
mod r_t_s_p_client;
mod r_t_s_p_context;
mod r_t_s_p_media_factory;
mod r_t_s_p_server;
mod r_t_s_p_session_pool;
mod r_t_s_p_token;
mod rtsp_address_pool;
mod rtsp_auth;
mod rtsp_client;
mod rtsp_context;
mod rtsp_media_factory;
mod rtsp_server;
mod rtsp_session_pool;
mod rtsp_token;
pub use r_t_s_p_address_pool::RTSPAddressPoolExtManual;
pub use r_t_s_p_auth::RTSPAuthExtManual;
pub use r_t_s_p_client::RTSPClientExtManual;
pub use r_t_s_p_media_factory::RTSPMediaFactoryExtManual;
pub use r_t_s_p_server::RTSPServerExtManual;
pub use r_t_s_p_session_pool::RTSPSessionPoolExtManual;
pub use rtsp_address_pool::RTSPAddressPoolExtManual;
pub use rtsp_auth::RTSPAuthExtManual;
pub use rtsp_client::RTSPClientExtManual;
pub use rtsp_media_factory::RTSPMediaFactoryExtManual;
pub use rtsp_server::RTSPServerExtManual;
pub use rtsp_session_pool::RTSPSessionPoolExtManual;
pub use r_t_s_p_context::*;
pub use r_t_s_p_token::*;
pub use rtsp_context::*;
pub use rtsp_token::*;
lazy_static! {
pub static ref RTSP_ADDRESS_POOL_ANY_IPV4: &'static str = unsafe {
@ -139,11 +139,11 @@ pub mod prelude {
pub use auto::traits::*;
pub use r_t_s_p_address_pool::RTSPAddressPoolExtManual;
pub use r_t_s_p_auth::RTSPAuthExtManual;
pub use r_t_s_p_client::RTSPClientExtManual;
pub use r_t_s_p_media_factory::RTSPMediaFactoryExtManual;
pub use r_t_s_p_server::RTSPServerExtManual;
pub use r_t_s_p_session_pool::RTSPSessionPoolExtManual;
pub use r_t_s_p_token::GstRcRTSPTokenExt;
pub use rtsp_address_pool::RTSPAddressPoolExtManual;
pub use rtsp_auth::RTSPAuthExtManual;
pub use rtsp_client::RTSPClientExtManual;
pub use rtsp_media_factory::RTSPMediaFactoryExtManual;
pub use rtsp_server::RTSPServerExtManual;
pub use rtsp_session_pool::RTSPSessionPoolExtManual;
pub use rtsp_token::GstRcRTSPTokenExt;
}

View file

@ -39,32 +39,32 @@ pub use glib::{Cast, Continue, Error, IsA, StaticType, ToValue, Type, TypedValue
mod auto;
pub use auto::*;
mod m_i_k_e_y_decrypt_info;
pub use m_i_k_e_y_decrypt_info::*;
mod m_i_k_e_y_encrypt_info;
pub use m_i_k_e_y_encrypt_info::*;
mod m_i_k_e_y_map_s_r_t_p;
pub use m_i_k_e_y_map_s_r_t_p::*;
mod m_i_k_e_y_payload_s_p_param;
pub use m_i_k_e_y_payload_s_p_param::*;
mod s_d_p_attribute;
pub use s_d_p_attribute::*;
mod s_d_p_bandwidth;
pub use s_d_p_bandwidth::*;
mod s_d_p_connection;
pub use s_d_p_connection::*;
mod s_d_p_key;
pub use s_d_p_key::*;
mod s_d_p_media;
pub use s_d_p_media::*;
mod s_d_p_message;
pub use s_d_p_message::*;
mod s_d_p_origin;
pub use s_d_p_origin::*;
mod s_d_p_time;
pub use s_d_p_time::*;
mod s_d_p_zone;
pub use s_d_p_zone::*;
mod mikey_decrypt_info;
pub use mikey_decrypt_info::*;
mod mikey_encrypt_info;
pub use mikey_encrypt_info::*;
mod mikey_map_s_r_t_p;
pub use mikey_map_s_r_t_p::*;
mod mikey_payload_s_p_param;
pub use mikey_payload_s_p_param::*;
mod sdp_attribute;
pub use sdp_attribute::*;
mod sdp_bandwidth;
pub use sdp_bandwidth::*;
mod sdp_connection;
pub use sdp_connection::*;
mod sdp_key;
pub use sdp_key::*;
mod sdp_media;
pub use sdp_media::*;
mod sdp_message;
pub use sdp_message::*;
mod sdp_origin;
pub use sdp_origin::*;
mod sdp_time;
pub use sdp_time::*;
mod sdp_zone;
pub use sdp_zone::*;
// Re-export all the traits in a prelude module, so that applications
// can always "use gst::prelude::*" without getting conflicts

View file

@ -15,10 +15,10 @@ use glib::translate::*;
use glib_ffi;
use gst;
use s_d_p_attribute::SDPAttribute;
use s_d_p_bandwidth::SDPBandwidth;
use s_d_p_connection::SDPConnection;
use s_d_p_key::SDPKey;
use sdp_attribute::SDPAttribute;
use sdp_bandwidth::SDPBandwidth;
use sdp_connection::SDPConnection;
use sdp_key::SDPKey;
#[cfg(any(feature = "v1_8_1", feature = "dox"))]
use MIKEYMessage;

View file

@ -17,14 +17,14 @@ use gobject_ffi;
use gst;
use gst::MiniObject;
use s_d_p_attribute::SDPAttribute;
use s_d_p_bandwidth::SDPBandwidth;
use s_d_p_connection::SDPConnection;
use s_d_p_key::SDPKey;
use s_d_p_media::SDPMedia;
use s_d_p_origin::SDPOrigin;
use s_d_p_time::SDPTime;
use s_d_p_zone::SDPZone;
use sdp_attribute::SDPAttribute;
use sdp_bandwidth::SDPBandwidth;
use sdp_connection::SDPConnection;
use sdp_key::SDPKey;
use sdp_media::SDPMedia;
use sdp_origin::SDPOrigin;
use sdp_time::SDPTime;
use sdp_zone::SDPZone;
#[cfg(any(feature = "v1_8_1", feature = "dox"))]
use MIKEYMessage;

View file

@ -44,7 +44,7 @@ pub use glib::{Cast, Continue, Error, IsA, StaticType, ToValue, Type, TypedValue
mod auto;
pub use auto::*;
mod web_r_t_c_session_description;
mod web_rtc_session_description;
// Re-export all the traits in a prelude module, so that applications
// can always "use gst::prelude::*" without getting conflicts