mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-12-31 20:38:44 +00:00
Define Sync and Send traits for AudioInfo
Fixes https://github.com/sdroege/gstreamer-rs/pull/27
This commit is contained in:
parent
b0307f9108
commit
46327b231f
1 changed files with 3 additions and 0 deletions
|
@ -263,6 +263,9 @@ impl PartialEq for AudioInfo {
|
|||
|
||||
impl Eq for AudioInfo {}
|
||||
|
||||
unsafe impl Sync for AudioInfo {}
|
||||
unsafe impl Send for AudioInfo {}
|
||||
|
||||
impl glib::types::StaticType for AudioInfo {
|
||||
fn static_type() -> glib::types::Type {
|
||||
unsafe { glib::translate::from_glib(ffi::gst_audio_info_get_type()) }
|
||||
|
|
Loading…
Reference in a new issue