mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-23 01:51:06 +00:00
pipeline: Add to lib.rs
This commit is contained in:
parent
698120c620
commit
496fc61873
2 changed files with 2 additions and 7 deletions
|
@ -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! {
|
||||
|
|
|
@ -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<O: IsA<::Pipeline>> GstPipelineExtManual for O {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue