mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-23 01:18:11 +00:00
threadshare: Switch to gobject-subclass
This commit is contained in:
parent
8f9a42f486
commit
be0403ce24
6 changed files with 6 additions and 8 deletions
|
@ -9,6 +9,7 @@ glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
|||
gstreamer-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
|
||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||
gobject-subclass = { git = "https://github.com/sdroege/gobject-subclass" }
|
||||
gst-plugin = { git = "https://github.com/sdroege/gst-plugin-rs" }
|
||||
tokio = { git = "https://github.com/tokio-rs/tokio" }
|
||||
tokio-reactor = { git = "https://github.com/tokio-rs/tokio" }
|
||||
|
|
|
@ -20,9 +20,8 @@ use glib::prelude::*;
|
|||
use gst;
|
||||
use gst::prelude::*;
|
||||
|
||||
use gobject_subclass::object::*;
|
||||
use gst_plugin::element::*;
|
||||
use gst_plugin::object::*;
|
||||
use gst_plugin::properties::*;
|
||||
|
||||
use std::sync::Mutex;
|
||||
use std::{u16, u32};
|
||||
|
|
|
@ -21,6 +21,7 @@ extern crate glib_sys as glib_ffi;
|
|||
extern crate gstreamer_sys as gst_ffi;
|
||||
|
||||
extern crate glib;
|
||||
extern crate gobject_subclass;
|
||||
#[macro_use]
|
||||
extern crate gst_plugin;
|
||||
#[macro_use]
|
||||
|
|
|
@ -20,9 +20,8 @@ use glib::prelude::*;
|
|||
use gst;
|
||||
use gst::prelude::*;
|
||||
|
||||
use gobject_subclass::object::*;
|
||||
use gst_plugin::element::*;
|
||||
use gst_plugin::object::*;
|
||||
use gst_plugin::properties::*;
|
||||
|
||||
use std::collections::HashMap;
|
||||
use std::collections::VecDeque;
|
||||
|
|
|
@ -20,9 +20,8 @@ use glib::prelude::*;
|
|||
use gst;
|
||||
use gst::prelude::*;
|
||||
|
||||
use gobject_subclass::object::*;
|
||||
use gst_plugin::element::*;
|
||||
use gst_plugin::object::*;
|
||||
use gst_plugin::properties::*;
|
||||
|
||||
use std::collections::VecDeque;
|
||||
use std::sync::Mutex;
|
||||
|
|
|
@ -20,9 +20,8 @@ use glib::prelude::*;
|
|||
use gst;
|
||||
use gst::prelude::*;
|
||||
|
||||
use gobject_subclass::object::*;
|
||||
use gst_plugin::element::*;
|
||||
use gst_plugin::object::*;
|
||||
use gst_plugin::properties::*;
|
||||
|
||||
use std::sync::Mutex;
|
||||
use std::u16;
|
||||
|
|
Loading…
Reference in a new issue