forked from mirrors/gstreamer-rs
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