gstreamer-rs/gstreamer-player/src/auto/player_visualization.rs
Sebastian Dröge 6f09e5c791 Regenerate with latest GIR to fix various issues with property getters
Get rid of unneeded transmutes and actually initialize flags/enum
GValues with the correct type instead of using integers.
2017-11-27 19:19:00 +02:00

23 lines
580 B
Rust

// This file was generated by gir (d50d839) from gir-files (???)
// DO NOT EDIT
use ffi;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;
glib_wrapper! {
pub struct PlayerVisualization(Boxed<ffi::GstPlayerVisualization>);
match fn {
copy => |ptr| ffi::gst_player_visualization_copy(mut_override(ptr)),
free => |ptr| ffi::gst_player_visualization_free(ptr),
get_type => || ffi::gst_player_visualization_get_type(),
}
}
unsafe impl Send for PlayerVisualization {}
unsafe impl Sync for PlayerVisualization {}