mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-26 13:31:00 +00:00
9b96cfc452
Contrary to the existing Task Sink, the Async and Sync Mutex Sinks handle buffers in the `PadSinkHandler` directly. The Async Mutex Sink uses an async Mutex for the `PadSinkHandlerInner` while the Sync Mutex Sink uses... a sync Mutex. All Sinks share the same settings and stats manager. Use the `--sink` command line option to select the sink (default is `sync-mutex` since it allows evaluating the framework with as little overhead as possible. Also apply various fixes: - Only keep the segment start instead of the full `Segment`. This helps with cache locality (`Segment` is a plain struct with many fields) and avoids downcasting the generic `Segment` upon each buffer handling. - Box the `Stat`s. This should improve cache locality a bit. - Fix EOS handling which took ages for no benefits in this particular use case. - Use a macro to raise log level in the main element. - Move error handling during item processing in `handle_loop_error`. This function was precisely designed for this and it should reduce the `handle_item`'s Future size.
47 lines
985 B
Rust
47 lines
985 B
Rust
use super::super::CAT;
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
pub struct SyncMutexSink;
|
|
|
|
impl SyncMutexSink {
|
|
pub fn element_name(self) -> &'static str {
|
|
super::super::sink::SYNC_MUTEX_ELEMENT_NAME
|
|
}
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub struct Args {
|
|
pub streams: u32,
|
|
pub groups: u32,
|
|
pub wait: u32,
|
|
pub push_period: u32,
|
|
pub num_buffers: i32,
|
|
pub sink: SyncMutexSink,
|
|
pub disable_stats_log: bool,
|
|
}
|
|
|
|
impl Default for Args {
|
|
fn default() -> Self {
|
|
Args {
|
|
streams: 5000,
|
|
groups: 2,
|
|
wait: 20,
|
|
push_period: 20,
|
|
num_buffers: 5000,
|
|
sink: SyncMutexSink,
|
|
disable_stats_log: false,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn args() -> Args {
|
|
if std::env::args().len() > 1 {
|
|
gst::warning!(CAT, "Ignoring command line arguments");
|
|
gst::warning!(CAT, "Build with `--features=clap`");
|
|
}
|
|
|
|
let args = Args::default();
|
|
gst::warning!(CAT, "{:?}", args);
|
|
|
|
args
|
|
}
|