mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-26 21:41:03 +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;
|
||||
|
||||
mod iocontext;
|
||||
|
||||
mod udpsocket;
|
||||
mod udpsrc;
|
||||
|
||||
mod queue;
|
||||
|
||||
fn plugin_init(plugin: &gst::Plugin) -> bool {
|
||||
udpsrc::register(plugin);
|
||||
queue::register(plugin);
|
||||
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