2017-08-17 11:50:25 +00:00
|
|
|
// This file was generated by gir (651da6e) from gir-files (???)
|
2017-07-04 22:47:33 +00:00
|
|
|
// DO NOT EDIT
|
|
|
|
|
2017-07-10 21:02:08 +00:00
|
|
|
use Caps;
|
2017-07-04 22:47:33 +00:00
|
|
|
use Element;
|
|
|
|
use Object;
|
2017-07-10 21:02:08 +00:00
|
|
|
use Structure;
|
2017-07-04 22:47:33 +00:00
|
|
|
use ffi;
|
|
|
|
use glib;
|
|
|
|
use glib::object::Downcast;
|
|
|
|
use glib::object::IsA;
|
|
|
|
use glib::signal::connect;
|
|
|
|
use glib::translate::*;
|
|
|
|
use glib_ffi;
|
|
|
|
use gobject_ffi;
|
|
|
|
use std::boxed::Box as Box_;
|
2017-07-19 18:41:25 +00:00
|
|
|
use std::mem;
|
2017-07-04 22:47:33 +00:00
|
|
|
use std::mem::transmute;
|
2017-07-19 18:41:25 +00:00
|
|
|
use std::ptr;
|
2017-07-04 22:47:33 +00:00
|
|
|
|
|
|
|
glib_wrapper! {
|
|
|
|
pub struct Device(Object<ffi::GstDevice>): Object;
|
|
|
|
|
|
|
|
match fn {
|
|
|
|
get_type => || ffi::gst_device_get_type(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Send for Device {}
|
|
|
|
unsafe impl Sync for Device {}
|
|
|
|
|
|
|
|
pub trait DeviceExt {
|
|
|
|
fn create_element<'a, P: Into<Option<&'a str>>>(&self, name: P) -> Option<Element>;
|
|
|
|
|
2017-07-10 21:02:08 +00:00
|
|
|
fn get_caps(&self) -> Option<Caps>;
|
2017-07-04 22:47:33 +00:00
|
|
|
|
|
|
|
fn get_device_class(&self) -> Option<String>;
|
|
|
|
|
|
|
|
fn get_display_name(&self) -> Option<String>;
|
|
|
|
|
2017-07-10 21:02:08 +00:00
|
|
|
fn get_properties(&self) -> Option<Structure>;
|
|
|
|
|
2017-07-04 22:47:33 +00:00
|
|
|
fn has_classes(&self, classes: &str) -> bool;
|
|
|
|
|
|
|
|
fn has_classesv(&self, classes: &[&str]) -> bool;
|
|
|
|
|
|
|
|
fn reconfigure_element<P: IsA<Element>>(&self, element: &P) -> bool;
|
|
|
|
|
|
|
|
fn connect_removed<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> u64;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<O: IsA<Device> + IsA<glib::object::Object>> DeviceExt for O {
|
|
|
|
fn create_element<'a, P: Into<Option<&'a str>>>(&self, name: P) -> Option<Element> {
|
|
|
|
let name = name.into();
|
|
|
|
let name = name.to_glib_none();
|
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_device_create_element(self.to_glib_none().0, name.0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-10 21:02:08 +00:00
|
|
|
fn get_caps(&self) -> Option<Caps> {
|
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_device_get_caps(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
2017-07-04 22:47:33 +00:00
|
|
|
|
|
|
|
fn get_device_class(&self) -> Option<String> {
|
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_device_get_device_class(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_display_name(&self) -> Option<String> {
|
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_device_get_display_name(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-10 21:02:08 +00:00
|
|
|
fn get_properties(&self) -> Option<Structure> {
|
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_device_get_properties(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-04 22:47:33 +00:00
|
|
|
fn has_classes(&self, classes: &str) -> bool {
|
|
|
|
unsafe {
|
|
|
|
from_glib(ffi::gst_device_has_classes(self.to_glib_none().0, classes.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn has_classesv(&self, classes: &[&str]) -> bool {
|
|
|
|
unsafe {
|
|
|
|
from_glib(ffi::gst_device_has_classesv(self.to_glib_none().0, classes.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reconfigure_element<P: IsA<Element>>(&self, element: &P) -> bool {
|
|
|
|
unsafe {
|
|
|
|
from_glib(ffi::gst_device_reconfigure_element(self.to_glib_none().0, element.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn connect_removed<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> u64 {
|
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Self) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "removed",
|
|
|
|
transmute(removed_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn removed_trampoline<P>(this: *mut ffi::GstDevice, f: glib_ffi::gpointer)
|
|
|
|
where P: IsA<Device> {
|
|
|
|
callback_guard!();
|
2017-08-03 18:56:39 +00:00
|
|
|
let f: &&(Fn(&P) + Send + Sync + 'static) = transmute(f);
|
2017-07-04 22:47:33 +00:00
|
|
|
f(&Device::from_glib_none(this).downcast_unchecked())
|
|
|
|
}
|