mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-27 05:51:01 +00:00
threadshare: Disable all elements for now
This commit is contained in:
parent
03fda100d4
commit
3ea465907d
1 changed files with 17 additions and 17 deletions
|
@ -29,16 +29,16 @@ pub use tokio;
|
|||
#[macro_use]
|
||||
pub mod runtime;
|
||||
|
||||
pub mod socket;
|
||||
mod tcpclientsrc;
|
||||
mod udpsink;
|
||||
mod udpsrc;
|
||||
|
||||
mod appsrc;
|
||||
pub mod dataqueue;
|
||||
mod jitterbuffer;
|
||||
mod proxy;
|
||||
mod queue;
|
||||
//pub mod socket;
|
||||
//mod tcpclientsrc;
|
||||
//mod udpsink;
|
||||
//mod udpsrc;
|
||||
//
|
||||
//mod appsrc;
|
||||
//pub mod dataqueue;
|
||||
//mod jitterbuffer;
|
||||
//mod proxy;
|
||||
//mod queue;
|
||||
|
||||
use glib::translate::*;
|
||||
use glib_sys as glib_ffi;
|
||||
|
@ -49,13 +49,13 @@ use gst::prelude::*;
|
|||
use gstreamer_sys as gst_ffi;
|
||||
|
||||
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
||||
udpsrc::register(plugin)?;
|
||||
udpsink::register(plugin)?;
|
||||
tcpclientsrc::register(plugin)?;
|
||||
queue::register(plugin)?;
|
||||
proxy::register(plugin)?;
|
||||
appsrc::register(plugin)?;
|
||||
jitterbuffer::jitterbuffer::register(plugin)?;
|
||||
//udpsrc::register(plugin)?;
|
||||
//udpsink::register(plugin)?;
|
||||
//tcpclientsrc::register(plugin)?;
|
||||
//queue::register(plugin)?;
|
||||
//proxy::register(plugin)?;
|
||||
//appsrc::register(plugin)?;
|
||||
//jitterbuffer::jitterbuffer::register(plugin)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue