mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-23 12:01:01 +00:00
threadshare/proxy: Port proxysrc/sink to new API
This commit is contained in:
parent
5f9e923a04
commit
bfedca6cfe
2 changed files with 290 additions and 424 deletions
|
@ -37,7 +37,7 @@ mod udpsrc;
|
||||||
mod appsrc;
|
mod appsrc;
|
||||||
pub mod dataqueue;
|
pub mod dataqueue;
|
||||||
mod jitterbuffer;
|
mod jitterbuffer;
|
||||||
//mod proxy;
|
mod proxy;
|
||||||
mod queue;
|
mod queue;
|
||||||
|
|
||||||
use glib::translate::*;
|
use glib::translate::*;
|
||||||
|
@ -53,7 +53,7 @@ fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
||||||
udpsink::register(plugin)?;
|
udpsink::register(plugin)?;
|
||||||
tcpclientsrc::register(plugin)?;
|
tcpclientsrc::register(plugin)?;
|
||||||
queue::register(plugin)?;
|
queue::register(plugin)?;
|
||||||
//proxy::register(plugin)?;
|
proxy::register(plugin)?;
|
||||||
appsrc::register(plugin)?;
|
appsrc::register(plugin)?;
|
||||||
jitterbuffer::jitterbuffer::register(plugin)?;
|
jitterbuffer::jitterbuffer::register(plugin)?;
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue