mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-02-01 13:42:21 +00:00
29a490f6dc
This makes it easy to generate "listenable" signals and to evaluate discontinuities. When the `tuning` feature is activated and the `main-elem` property is set, the element can log the parked duration in %, which is an image of the CPU usage for the ts-context. This commit adds a test mode to `udpsrc-benchmark-sender` which generates default audio buffers from `ts-audiotestsrc`. The `rtp` mode is modified so that it uses `ts-audiotestsrc`.
57 lines
1.3 KiB
Rust
57 lines
1.3 KiB
Rust
// Copyright (C) 2018 Sebastian Dröge <sebastian@centricular.com>
|
|
//
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
|
|
|
//! A collection of GStreamer plugins which leverage the `threadshare` [`runtime`].
|
|
//!
|
|
//! [`runtime`]: runtime/index.html
|
|
|
|
/**
|
|
* plugin-threadshare:
|
|
*
|
|
* Since: plugins-rs-0.4.0
|
|
*/
|
|
|
|
#[macro_use]
|
|
pub mod runtime;
|
|
|
|
mod appsrc;
|
|
mod audiotestsrc;
|
|
pub mod dataqueue;
|
|
mod inputselector;
|
|
mod jitterbuffer;
|
|
mod proxy;
|
|
mod queue;
|
|
pub mod socket;
|
|
mod tcpclientsrc;
|
|
mod udpsink;
|
|
mod udpsrc;
|
|
|
|
use gst::glib;
|
|
|
|
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
|
appsrc::register(plugin)?;
|
|
audiotestsrc::register(plugin)?;
|
|
inputselector::register(plugin)?;
|
|
jitterbuffer::register(plugin)?;
|
|
proxy::register(plugin)?;
|
|
queue::register(plugin)?;
|
|
tcpclientsrc::register(plugin)?;
|
|
udpsink::register(plugin)?;
|
|
udpsrc::register(plugin)?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
gst::plugin_define!(
|
|
threadshare,
|
|
env!("CARGO_PKG_DESCRIPTION"),
|
|
plugin_init,
|
|
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
|
|
"LGPL",
|
|
env!("CARGO_PKG_NAME"),
|
|
env!("CARGO_PKG_NAME"),
|
|
env!("CARGO_PKG_REPOSITORY"),
|
|
env!("BUILD_REL_DATE")
|
|
);
|