mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-04-28 07:55:22 +00:00
threadshare: Add a first version of a queue
This commit is contained in:
parent
21f905739f
commit
1e26ca6365
2 changed files with 1027 additions and 0 deletions
|
@ -36,11 +36,15 @@ extern crate rand;
|
||||||
extern crate lazy_static;
|
extern crate lazy_static;
|
||||||
|
|
||||||
mod iocontext;
|
mod iocontext;
|
||||||
|
|
||||||
mod udpsocket;
|
mod udpsocket;
|
||||||
mod udpsrc;
|
mod udpsrc;
|
||||||
|
|
||||||
|
mod queue;
|
||||||
|
|
||||||
fn plugin_init(plugin: &gst::Plugin) -> bool {
|
fn plugin_init(plugin: &gst::Plugin) -> bool {
|
||||||
udpsrc::register(plugin);
|
udpsrc::register(plugin);
|
||||||
|
queue::register(plugin);
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
1023
gst-plugin-threadshare/src/queue.rs
Normal file
1023
gst-plugin-threadshare/src/queue.rs
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue