From 3fef3a607f632fd4a7f2ec810d27500bceefabee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 17 Aug 2020 10:39:55 +0300 Subject: [PATCH] base/aggregator: "samples-selected" signal handler only has to be Send, not Sync It can only be emitted from the aggregate thread. --- gstreamer-base/src/aggregator.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/gstreamer-base/src/aggregator.rs b/gstreamer-base/src/aggregator.rs index 38fadf4e4..2332a73aa 100644 --- a/gstreamer-base/src/aggregator.rs +++ b/gstreamer-base/src/aggregator.rs @@ -70,7 +70,6 @@ pub trait AggregatorExtManual: 'static { gst::ClockTime, Option<&gst::StructureRef>, ) + Send - + Sync + 'static, >( &self, @@ -204,7 +203,6 @@ impl> AggregatorExtManual for O { gst::ClockTime, Option<&gst::StructureRef>, ) + Send - + Sync + 'static, >( &self, @@ -223,7 +221,6 @@ impl> AggregatorExtManual for O { gst::ClockTime, Option<&gst::StructureRef>, ) + Send - + Sync + 'static, >( this: *mut gst_base_sys::GstAggregator,