Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-02-28 19:32:36 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-02-28 19:56:58 +0300
commitb38f6cc731b1b4bcec1e19f7e5b9767d1804d343 (patch)
tree55e3a6a616d0b1a4549b3553ca744f58beeb09e6 /audio/lewton
parentd9f3e8e9e7249c3a0c8c251c7e371079f6846ff7 (diff)
Remove now unnecessary `Send+Sync` impls for element/etc subclasses
This is now automatically implemented.
Diffstat (limited to 'audio/lewton')
-rw-r--r--audio/lewton/src/lewtondec/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/audio/lewton/src/lewtondec/mod.rs b/audio/lewton/src/lewtondec/mod.rs
index 319fc535..8db59b65 100644
--- a/audio/lewton/src/lewtondec/mod.rs
+++ b/audio/lewton/src/lewtondec/mod.rs
@@ -17,9 +17,6 @@ glib::wrapper! {
pub struct LewtonDec(ObjectSubclass<imp::LewtonDec>) @extends gst_audio::AudioDecoder, gst::Element, gst::Object;
}
-unsafe impl Send for LewtonDec {}
-unsafe impl Sync for LewtonDec {}
-
pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
gst::Element::register(
Some(plugin),