mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-26 03:21:03 +00:00
Ignore property notify functions
They're manually implemented now.
This commit is contained in:
parent
3193c19131
commit
99a60e921d
31 changed files with 45 additions and 42 deletions
15
Gir_Gst.toml
15
Gir_Gst.toml
|
@ -301,6 +301,21 @@ status = "generate"
|
|||
# Unsafe
|
||||
ignore = true
|
||||
|
||||
[[object.function]]
|
||||
name = "add_property_deep_notify_watch"
|
||||
# ulong
|
||||
ignore = true
|
||||
|
||||
[[object.function]]
|
||||
name = "add_property_notify_watch"
|
||||
# ulong
|
||||
ignore = true
|
||||
|
||||
[[object.function]]
|
||||
name = "remove_property_notify_watch"
|
||||
# ulong
|
||||
ignore = true
|
||||
|
||||
[[object]]
|
||||
name = "Gst.ElementFactory"
|
||||
status = "generate"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
#[allow(unused_imports)]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use ChildProxy;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use ClockTime;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use ffi;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use ClockTime;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use ffi;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Caps;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Bus;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Bus;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use DeviceProvider;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Bus;
|
||||
|
@ -30,8 +30,6 @@ use glib::signal::connect;
|
|||
use glib::translate::*;
|
||||
use glib_ffi;
|
||||
use gobject_ffi;
|
||||
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
||||
use libc;
|
||||
use std::boxed::Box as Box_;
|
||||
use std::mem;
|
||||
use std::mem::transmute;
|
||||
|
@ -165,9 +163,6 @@ pub trait ElementExt {
|
|||
|
||||
fn remove_pad<P: IsA<Pad>>(&self, pad: &P) -> Result<(), glib::error::BoolError>;
|
||||
|
||||
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
||||
fn remove_property_notify_watch(&self, watch_id: libc::c_ulong);
|
||||
|
||||
fn request_pad<'a, 'b, P: Into<Option<&'a str>>, Q: Into<Option<&'b Caps>>>(&self, templ: &PadTemplate, name: P, caps: Q) -> Option<Pad>;
|
||||
|
||||
fn seek(&self, rate: f64, format: Format, flags: SeekFlags, start_type: SeekType, start: i64, stop_type: SeekType, stop: i64) -> Result<(), glib::error::BoolError>;
|
||||
|
@ -453,13 +448,6 @@ impl<O: IsA<Element> + IsA<glib::object::Object>> ElementExt for O {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(any(feature = "v1_10", feature = "dox"))]
|
||||
fn remove_property_notify_watch(&self, watch_id: libc::c_ulong) {
|
||||
unsafe {
|
||||
ffi::gst_element_remove_property_notify_watch(self.to_glib_none().0, watch_id);
|
||||
}
|
||||
}
|
||||
|
||||
fn request_pad<'a, 'b, P: Into<Option<&'a str>>, Q: Into<Option<&'b Caps>>>(&self, templ: &PadTemplate, name: P, caps: Q) -> Option<Pad> {
|
||||
let name = name.into();
|
||||
let name = name.to_glib_none();
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Caps;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use ffi;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use ffi;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Bin;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Object;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
mod bin;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use ClockTime;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Caps;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Caps;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Bin;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Error;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use ffi;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Object;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Caps;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Object;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Clock;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Element;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Element;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// This file was generated by gir (12a28ac) from gir-files (???)
|
||||
// This file was generated by gir (12a28ac+) from gir-files (???)
|
||||
// DO NOT EDIT
|
||||
|
||||
use Error;
|
||||
|
|
Loading…
Reference in a new issue