diff --git a/gstreamer/src/lib.rs b/gstreamer/src/lib.rs index 782843c9f..f49ab965b 100644 --- a/gstreamer/src/lib.rs +++ b/gstreamer/src/lib.rs @@ -153,6 +153,8 @@ mod element; mod bin; +mod pipeline; + // OS dependent Bus extensions (also import the other plateform mod for doc) #[cfg(any(feature = "v1_14", feature = "dox"))] cfg_if! { diff --git a/gstreamer/src/pipeline.rs b/gstreamer/src/pipeline.rs index e23296f6d..738f7dc8d 100644 --- a/gstreamer/src/pipeline.rs +++ b/gstreamer/src/pipeline.rs @@ -6,14 +6,9 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use glib; -use glib::object::{Cast, ObjectExt}; -use glib::signal::SignalHandlerId; use glib::translate::*; use glib::IsA; -use gobject_sys; - use PipelineFlags; pub trait GstPipelineExtManual: 'static { @@ -49,5 +44,3 @@ impl> GstPipelineExtManual for O { } } } - -