Regenerate with latest gir / gir files

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1610>
This commit is contained in:
Sebastian Dröge 2024-12-10 13:25:44 +02:00 committed by GStreamer Marge Bot
parent 2eb150b61f
commit 82b185068a
169 changed files with 746 additions and 656 deletions

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -18,8 +18,10 @@ bitflags! {
const CONTAIN = ffi::GST_ANALYTICS_REL_TYPE_CONTAIN as _; const CONTAIN = ffi::GST_ANALYTICS_REL_TYPE_CONTAIN as _;
#[doc(alias = "GST_ANALYTICS_REL_TYPE_RELATE_TO")] #[doc(alias = "GST_ANALYTICS_REL_TYPE_RELATE_TO")]
const RELATE_TO = ffi::GST_ANALYTICS_REL_TYPE_RELATE_TO as _; const RELATE_TO = ffi::GST_ANALYTICS_REL_TYPE_RELATE_TO as _;
#[doc(alias = "GST_ANALYTICS_REL_TYPE_LAST")] #[cfg(feature = "v1_26")]
const LAST = ffi::GST_ANALYTICS_REL_TYPE_LAST as _; #[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
#[doc(alias = "GST_ANALYTICS_REL_TYPE_N_TO_N")]
const N_TO_N = ffi::GST_ANALYTICS_REL_TYPE_N_TO_N as _;
#[doc(alias = "GST_ANALYTICS_REL_TYPE_ANY")] #[doc(alias = "GST_ANALYTICS_REL_TYPE_ANY")]
const ANY = ffi::GST_ANALYTICS_REL_TYPE_ANY as _; const ANY = ffi::GST_ANALYTICS_REL_TYPE_ANY as _;
} }

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -74,7 +74,9 @@ pub const GST_ANALYTICS_REL_TYPE_NONE: GstAnalyticsRelTypes = 0;
pub const GST_ANALYTICS_REL_TYPE_IS_PART_OF: GstAnalyticsRelTypes = 2; pub const GST_ANALYTICS_REL_TYPE_IS_PART_OF: GstAnalyticsRelTypes = 2;
pub const GST_ANALYTICS_REL_TYPE_CONTAIN: GstAnalyticsRelTypes = 4; pub const GST_ANALYTICS_REL_TYPE_CONTAIN: GstAnalyticsRelTypes = 4;
pub const GST_ANALYTICS_REL_TYPE_RELATE_TO: GstAnalyticsRelTypes = 8; pub const GST_ANALYTICS_REL_TYPE_RELATE_TO: GstAnalyticsRelTypes = 8;
pub const GST_ANALYTICS_REL_TYPE_LAST: GstAnalyticsRelTypes = 16; #[cfg(feature = "v1_26")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
pub const GST_ANALYTICS_REL_TYPE_N_TO_N: GstAnalyticsRelTypes = 16;
pub const GST_ANALYTICS_REL_TYPE_ANY: GstAnalyticsRelTypes = 2147483647; pub const GST_ANALYTICS_REL_TYPE_ANY: GstAnalyticsRelTypes = 2147483647;
// Records // Records

View file

@ -321,8 +321,8 @@ const RUST_CONSTANTS: &[(&str, &str)] = &[
("(guint) GST_ANALYTICS_REL_TYPE_ANY", "2147483647"), ("(guint) GST_ANALYTICS_REL_TYPE_ANY", "2147483647"),
("(guint) GST_ANALYTICS_REL_TYPE_CONTAIN", "4"), ("(guint) GST_ANALYTICS_REL_TYPE_CONTAIN", "4"),
("(guint) GST_ANALYTICS_REL_TYPE_IS_PART_OF", "2"), ("(guint) GST_ANALYTICS_REL_TYPE_IS_PART_OF", "2"),
("(guint) GST_ANALYTICS_REL_TYPE_LAST", "16"),
("(guint) GST_ANALYTICS_REL_TYPE_NONE", "0"), ("(guint) GST_ANALYTICS_REL_TYPE_NONE", "0"),
("(guint) GST_ANALYTICS_REL_TYPE_N_TO_N", "16"),
("(guint) GST_ANALYTICS_REL_TYPE_RELATE_TO", "8"), ("(guint) GST_ANALYTICS_REL_TYPE_RELATE_TO", "8"),
("GST_INF_RELATION_SPAN", "-1"), ("GST_INF_RELATION_SPAN", "-1"),
("(gint) GST_SEGMENTATION_TYPE_INSTANCE", "1"), ("(gint) GST_SEGMENTATION_TYPE_INSTANCE", "1"),

View file

@ -33,8 +33,8 @@ int main() {
PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_ANY); PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_ANY);
PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_CONTAIN); PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_CONTAIN);
PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_IS_PART_OF); PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_IS_PART_OF);
PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_LAST);
PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_NONE); PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_NONE);
PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_N_TO_N);
PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_RELATE_TO); PRINT_CONSTANT((guint) GST_ANALYTICS_REL_TYPE_RELATE_TO);
PRINT_CONSTANT(GST_INF_RELATION_SPAN); PRINT_CONSTANT(GST_INF_RELATION_SPAN);
PRINT_CONSTANT((gint) GST_SEGMENTATION_TYPE_INSTANCE); PRINT_CONSTANT((gint) GST_SEGMENTATION_TYPE_INSTANCE);

View file

@ -245,7 +245,7 @@ impl AppSink {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::buffer-list\0".as_ptr() as *const _, c"notify::buffer-list".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_buffer_list_trampoline::<F> as *const (), notify_buffer_list_trampoline::<F> as *const (),
)), )),
@ -271,7 +271,7 @@ impl AppSink {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::caps\0".as_ptr() as *const _, c"notify::caps".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_caps_trampoline::<F> as *const (), notify_caps_trampoline::<F> as *const (),
)), )),
@ -297,7 +297,7 @@ impl AppSink {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::drop\0".as_ptr() as *const _, c"notify::drop".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_drop_trampoline::<F> as *const (), notify_drop_trampoline::<F> as *const (),
)), )),
@ -323,7 +323,7 @@ impl AppSink {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::eos\0".as_ptr() as *const _, c"notify::eos".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_eos_trampoline::<F> as *const (), notify_eos_trampoline::<F> as *const (),
)), )),
@ -351,7 +351,7 @@ impl AppSink {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-buffers\0".as_ptr() as *const _, c"notify::max-buffers".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_buffers_trampoline::<F> as *const (), notify_max_buffers_trampoline::<F> as *const (),
)), )),
@ -381,7 +381,7 @@ impl AppSink {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-bytes\0".as_ptr() as *const _, c"notify::max-bytes".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_bytes_trampoline::<F> as *const (), notify_max_bytes_trampoline::<F> as *const (),
)), )),
@ -409,7 +409,7 @@ impl AppSink {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-time\0".as_ptr() as *const _, c"notify::max-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_time_trampoline::<F> as *const (), notify_max_time_trampoline::<F> as *const (),
)), )),
@ -437,7 +437,7 @@ impl AppSink {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::wait-on-eos\0".as_ptr() as *const _, c"notify::wait-on-eos".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_wait_on_eos_trampoline::<F> as *const (), notify_wait_on_eos_trampoline::<F> as *const (),
)), )),

View file

@ -312,7 +312,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::block\0".as_ptr() as *const _, c"notify::block".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_block_trampoline::<F> as *const (), notify_block_trampoline::<F> as *const (),
)), )),
@ -338,7 +338,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::caps\0".as_ptr() as *const _, c"notify::caps".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_caps_trampoline::<F> as *const (), notify_caps_trampoline::<F> as *const (),
)), )),
@ -368,7 +368,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::current-level-buffers\0".as_ptr() as *const _, c"notify::current-level-buffers".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_current_level_buffers_trampoline::<F> as *const (), notify_current_level_buffers_trampoline::<F> as *const (),
)), )),
@ -396,7 +396,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::current-level-bytes\0".as_ptr() as *const _, c"notify::current-level-bytes".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_current_level_bytes_trampoline::<F> as *const (), notify_current_level_bytes_trampoline::<F> as *const (),
)), )),
@ -426,7 +426,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::current-level-time\0".as_ptr() as *const _, c"notify::current-level-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_current_level_time_trampoline::<F> as *const (), notify_current_level_time_trampoline::<F> as *const (),
)), )),
@ -452,7 +452,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::duration\0".as_ptr() as *const _, c"notify::duration".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_duration_trampoline::<F> as *const (), notify_duration_trampoline::<F> as *const (),
)), )),
@ -478,7 +478,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::format\0".as_ptr() as *const _, c"notify::format".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_format_trampoline::<F> as *const (), notify_format_trampoline::<F> as *const (),
)), )),
@ -508,7 +508,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::handle-segment-change\0".as_ptr() as *const _, c"notify::handle-segment-change".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_handle_segment_change_trampoline::<F> as *const (), notify_handle_segment_change_trampoline::<F> as *const (),
)), )),
@ -534,7 +534,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::is-live\0".as_ptr() as *const _, c"notify::is-live".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_is_live_trampoline::<F> as *const (), notify_is_live_trampoline::<F> as *const (),
)), )),
@ -564,7 +564,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::leaky-type\0".as_ptr() as *const _, c"notify::leaky-type".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_leaky_type_trampoline::<F> as *const (), notify_leaky_type_trampoline::<F> as *const (),
)), )),
@ -594,7 +594,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-buffers\0".as_ptr() as *const _, c"notify::max-buffers".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_buffers_trampoline::<F> as *const (), notify_max_buffers_trampoline::<F> as *const (),
)), )),
@ -620,7 +620,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-bytes\0".as_ptr() as *const _, c"notify::max-bytes".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_bytes_trampoline::<F> as *const (), notify_max_bytes_trampoline::<F> as *const (),
)), )),
@ -648,7 +648,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-latency\0".as_ptr() as *const _, c"notify::max-latency".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_latency_trampoline::<F> as *const (), notify_max_latency_trampoline::<F> as *const (),
)), )),
@ -676,7 +676,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-time\0".as_ptr() as *const _, c"notify::max-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_time_trampoline::<F> as *const (), notify_max_time_trampoline::<F> as *const (),
)), )),
@ -704,7 +704,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::min-latency\0".as_ptr() as *const _, c"notify::min-latency".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_min_latency_trampoline::<F> as *const (), notify_min_latency_trampoline::<F> as *const (),
)), )),
@ -732,7 +732,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::min-percent\0".as_ptr() as *const _, c"notify::min-percent".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_min_percent_trampoline::<F> as *const (), notify_min_percent_trampoline::<F> as *const (),
)), )),
@ -758,7 +758,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::size\0".as_ptr() as *const _, c"notify::size".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_size_trampoline::<F> as *const (), notify_size_trampoline::<F> as *const (),
)), )),
@ -786,7 +786,7 @@ impl AppSrc {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::stream-type\0".as_ptr() as *const _, c"notify::stream-type".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_stream_type_trampoline::<F> as *const (), notify_stream_type_trampoline::<F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -82,7 +82,7 @@ pub trait AudioAggregatorExt: IsA<AudioAggregator> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::alignment-threshold\0".as_ptr() as *const _, c"notify::alignment-threshold".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_alignment_threshold_trampoline::<Self, F> as *const (), notify_alignment_threshold_trampoline::<Self, F> as *const (),
)), )),
@ -111,7 +111,7 @@ pub trait AudioAggregatorExt: IsA<AudioAggregator> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::discont-wait\0".as_ptr() as *const _, c"notify::discont-wait".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_discont_wait_trampoline::<Self, F> as *const (), notify_discont_wait_trampoline::<Self, F> as *const (),
)), )),
@ -140,7 +140,7 @@ pub trait AudioAggregatorExt: IsA<AudioAggregator> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::output-buffer-duration\0".as_ptr() as *const _, c"notify::output-buffer-duration".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_output_buffer_duration_trampoline::<Self, F> as *const (), notify_output_buffer_duration_trampoline::<Self, F> as *const (),
)), )),

View file

@ -58,7 +58,7 @@ pub trait AudioAggregatorConvertPadExt: IsA<AudioAggregatorConvertPad> + 'static
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::converter-config\0".as_ptr() as *const _, c"notify::converter-config".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_converter_config_trampoline::<Self, F> as *const (), notify_converter_config_trampoline::<Self, F> as *const (),
)), )),

View file

@ -68,7 +68,7 @@ pub trait AudioAggregatorPadExt: IsA<AudioAggregatorPad> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::qos-messages\0".as_ptr() as *const _, c"notify::qos-messages".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_qos_messages_trampoline::<Self, F> as *const (), notify_qos_messages_trampoline::<Self, F> as *const (),
)), )),

View file

@ -194,7 +194,7 @@ pub trait AudioBaseSinkExt: IsA<AudioBaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::alignment-threshold\0".as_ptr() as *const _, c"notify::alignment-threshold".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_alignment_threshold_trampoline::<Self, F> as *const (), notify_alignment_threshold_trampoline::<Self, F> as *const (),
)), )),
@ -223,7 +223,7 @@ pub trait AudioBaseSinkExt: IsA<AudioBaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::buffer-time\0".as_ptr() as *const _, c"notify::buffer-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_buffer_time_trampoline::<Self, F> as *const (), notify_buffer_time_trampoline::<Self, F> as *const (),
)), )),
@ -252,7 +252,7 @@ pub trait AudioBaseSinkExt: IsA<AudioBaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::can-activate-pull\0".as_ptr() as *const _, c"notify::can-activate-pull".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_can_activate_pull_trampoline::<Self, F> as *const (), notify_can_activate_pull_trampoline::<Self, F> as *const (),
)), )),
@ -281,7 +281,7 @@ pub trait AudioBaseSinkExt: IsA<AudioBaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::discont-wait\0".as_ptr() as *const _, c"notify::discont-wait".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_discont_wait_trampoline::<Self, F> as *const (), notify_discont_wait_trampoline::<Self, F> as *const (),
)), )),
@ -310,7 +310,7 @@ pub trait AudioBaseSinkExt: IsA<AudioBaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::drift-tolerance\0".as_ptr() as *const _, c"notify::drift-tolerance".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_drift_tolerance_trampoline::<Self, F> as *const (), notify_drift_tolerance_trampoline::<Self, F> as *const (),
)), )),
@ -339,7 +339,7 @@ pub trait AudioBaseSinkExt: IsA<AudioBaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::latency-time\0".as_ptr() as *const _, c"notify::latency-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_latency_time_trampoline::<Self, F> as *const (), notify_latency_time_trampoline::<Self, F> as *const (),
)), )),
@ -368,7 +368,7 @@ pub trait AudioBaseSinkExt: IsA<AudioBaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::provide-clock\0".as_ptr() as *const _, c"notify::provide-clock".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_provide_clock_trampoline::<Self, F> as *const (), notify_provide_clock_trampoline::<Self, F> as *const (),
)), )),
@ -397,7 +397,7 @@ pub trait AudioBaseSinkExt: IsA<AudioBaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::slave-method\0".as_ptr() as *const _, c"notify::slave-method".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_slave_method_trampoline::<Self, F> as *const (), notify_slave_method_trampoline::<Self, F> as *const (),
)), )),

View file

@ -118,7 +118,7 @@ pub trait AudioBaseSrcExt: IsA<AudioBaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::actual-buffer-time\0".as_ptr() as *const _, c"notify::actual-buffer-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_actual_buffer_time_trampoline::<Self, F> as *const (), notify_actual_buffer_time_trampoline::<Self, F> as *const (),
)), )),
@ -147,7 +147,7 @@ pub trait AudioBaseSrcExt: IsA<AudioBaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::actual-latency-time\0".as_ptr() as *const _, c"notify::actual-latency-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_actual_latency_time_trampoline::<Self, F> as *const (), notify_actual_latency_time_trampoline::<Self, F> as *const (),
)), )),
@ -176,7 +176,7 @@ pub trait AudioBaseSrcExt: IsA<AudioBaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::buffer-time\0".as_ptr() as *const _, c"notify::buffer-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_buffer_time_trampoline::<Self, F> as *const (), notify_buffer_time_trampoline::<Self, F> as *const (),
)), )),
@ -205,7 +205,7 @@ pub trait AudioBaseSrcExt: IsA<AudioBaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::latency-time\0".as_ptr() as *const _, c"notify::latency-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_latency_time_trampoline::<Self, F> as *const (), notify_latency_time_trampoline::<Self, F> as *const (),
)), )),
@ -234,7 +234,7 @@ pub trait AudioBaseSrcExt: IsA<AudioBaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::provide-clock\0".as_ptr() as *const _, c"notify::provide-clock".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_provide_clock_trampoline::<Self, F> as *const (), notify_provide_clock_trampoline::<Self, F> as *const (),
)), )),
@ -263,7 +263,7 @@ pub trait AudioBaseSrcExt: IsA<AudioBaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::slave-method\0".as_ptr() as *const _, c"notify::slave-method".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_slave_method_trampoline::<Self, F> as *const (), notify_slave_method_trampoline::<Self, F> as *const (),
)), )),

View file

@ -337,7 +337,7 @@ pub trait AudioDecoderExt: IsA<AudioDecoder> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-errors\0".as_ptr() as *const _, c"notify::max-errors".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_errors_trampoline::<Self, F> as *const (), notify_max_errors_trampoline::<Self, F> as *const (),
)), )),
@ -366,7 +366,7 @@ pub trait AudioDecoderExt: IsA<AudioDecoder> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::min-latency\0".as_ptr() as *const _, c"notify::min-latency".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_min_latency_trampoline::<Self, F> as *const (), notify_min_latency_trampoline::<Self, F> as *const (),
)), )),
@ -392,7 +392,7 @@ pub trait AudioDecoderExt: IsA<AudioDecoder> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::plc\0".as_ptr() as *const _, c"notify::plc".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_plc_trampoline::<Self, F> as *const (), notify_plc_trampoline::<Self, F> as *const (),
)), )),
@ -421,7 +421,7 @@ pub trait AudioDecoderExt: IsA<AudioDecoder> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::tolerance\0".as_ptr() as *const _, c"notify::tolerance".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_tolerance_trampoline::<Self, F> as *const (), notify_tolerance_trampoline::<Self, F> as *const (),
)), )),

View file

@ -323,7 +323,7 @@ pub trait AudioEncoderExt: IsA<AudioEncoder> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::hard-resync\0".as_ptr() as *const _, c"notify::hard-resync".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_hard_resync_trampoline::<Self, F> as *const (), notify_hard_resync_trampoline::<Self, F> as *const (),
)), )),
@ -352,7 +352,7 @@ pub trait AudioEncoderExt: IsA<AudioEncoder> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::mark-granule\0".as_ptr() as *const _, c"notify::mark-granule".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_mark_granule_trampoline::<Self, F> as *const (), notify_mark_granule_trampoline::<Self, F> as *const (),
)), )),
@ -381,7 +381,7 @@ pub trait AudioEncoderExt: IsA<AudioEncoder> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::perfect-timestamp\0".as_ptr() as *const _, c"notify::perfect-timestamp".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_perfect_timestamp_trampoline::<Self, F> as *const (), notify_perfect_timestamp_trampoline::<Self, F> as *const (),
)), )),
@ -410,7 +410,7 @@ pub trait AudioEncoderExt: IsA<AudioEncoder> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::tolerance\0".as_ptr() as *const _, c"notify::tolerance".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_tolerance_trampoline::<Self, F> as *const (), notify_tolerance_trampoline::<Self, F> as *const (),
)), )),

View file

@ -90,7 +90,7 @@ pub trait StreamVolumeExt: IsA<StreamVolume> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::mute\0".as_ptr() as *const _, c"notify::mute".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_mute_trampoline::<Self, F> as *const (), notify_mute_trampoline::<Self, F> as *const (),
)), )),
@ -116,7 +116,7 @@ pub trait StreamVolumeExt: IsA<StreamVolume> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::volume\0".as_ptr() as *const _, c"notify::volume".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_volume_trampoline::<Self, F> as *const (), notify_volume_trampoline::<Self, F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -253,7 +253,7 @@ pub trait AggregatorExt: IsA<Aggregator> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::emit-signals\0".as_ptr() as *const _, c"notify::emit-signals".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_emit_signals_trampoline::<Self, F> as *const (), notify_emit_signals_trampoline::<Self, F> as *const (),
)), )),
@ -282,7 +282,7 @@ pub trait AggregatorExt: IsA<Aggregator> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::latency\0".as_ptr() as *const _, c"notify::latency".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_latency_trampoline::<Self, F> as *const (), notify_latency_trampoline::<Self, F> as *const (),
)), )),
@ -311,7 +311,7 @@ pub trait AggregatorExt: IsA<Aggregator> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::start-time\0".as_ptr() as *const _, c"notify::start-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_start_time_trampoline::<Self, F> as *const (), notify_start_time_trampoline::<Self, F> as *const (),
)), )),
@ -342,7 +342,7 @@ pub trait AggregatorExt: IsA<Aggregator> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::start-time-selection\0".as_ptr() as *const _, c"notify::start-time-selection".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_start_time_selection_trampoline::<Self, F> as *const (), notify_start_time_selection_trampoline::<Self, F> as *const (),
)), )),

View file

@ -123,7 +123,7 @@ pub trait AggregatorPadExt: IsA<AggregatorPad> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"buffer-consumed\0".as_ptr() as *const _, c"buffer-consumed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
buffer_consumed_trampoline::<Self, F> as *const (), buffer_consumed_trampoline::<Self, F> as *const (),
)), )),
@ -154,7 +154,7 @@ pub trait AggregatorPadExt: IsA<AggregatorPad> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::emit-signals\0".as_ptr() as *const _, c"notify::emit-signals".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_emit_signals_trampoline::<Self, F> as *const (), notify_emit_signals_trampoline::<Self, F> as *const (),
)), )),

View file

@ -169,7 +169,7 @@ pub trait BaseParseExt: IsA<BaseParse> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::disable-passthrough\0".as_ptr() as *const _, c"notify::disable-passthrough".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_disable_passthrough_trampoline::<Self, F> as *const (), notify_disable_passthrough_trampoline::<Self, F> as *const (),
)), )),

View file

@ -308,7 +308,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::async\0".as_ptr() as *const _, c"notify::async".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_async_trampoline::<Self, F> as *const (), notify_async_trampoline::<Self, F> as *const (),
)), )),
@ -337,7 +337,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::blocksize\0".as_ptr() as *const _, c"notify::blocksize".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_blocksize_trampoline::<Self, F> as *const (), notify_blocksize_trampoline::<Self, F> as *const (),
)), )),
@ -366,7 +366,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::enable-last-sample\0".as_ptr() as *const _, c"notify::enable-last-sample".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_enable_last_sample_trampoline::<Self, F> as *const (), notify_enable_last_sample_trampoline::<Self, F> as *const (),
)), )),
@ -395,7 +395,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::last-sample\0".as_ptr() as *const _, c"notify::last-sample".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_last_sample_trampoline::<Self, F> as *const (), notify_last_sample_trampoline::<Self, F> as *const (),
)), )),
@ -424,7 +424,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-bitrate\0".as_ptr() as *const _, c"notify::max-bitrate".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_bitrate_trampoline::<Self, F> as *const (), notify_max_bitrate_trampoline::<Self, F> as *const (),
)), )),
@ -453,7 +453,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-lateness\0".as_ptr() as *const _, c"notify::max-lateness".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_lateness_trampoline::<Self, F> as *const (), notify_max_lateness_trampoline::<Self, F> as *const (),
)), )),
@ -484,7 +484,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::processing-deadline\0".as_ptr() as *const _, c"notify::processing-deadline".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_processing_deadline_trampoline::<Self, F> as *const (), notify_processing_deadline_trampoline::<Self, F> as *const (),
)), )),
@ -510,7 +510,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::qos\0".as_ptr() as *const _, c"notify::qos".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_qos_trampoline::<Self, F> as *const (), notify_qos_trampoline::<Self, F> as *const (),
)), )),
@ -539,7 +539,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::render-delay\0".as_ptr() as *const _, c"notify::render-delay".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_render_delay_trampoline::<Self, F> as *const (), notify_render_delay_trampoline::<Self, F> as *const (),
)), )),
@ -567,7 +567,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::stats\0".as_ptr() as *const _, c"notify::stats".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_stats_trampoline::<Self, F> as *const (), notify_stats_trampoline::<Self, F> as *const (),
)), )),
@ -593,7 +593,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::sync\0".as_ptr() as *const _, c"notify::sync".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_sync_trampoline::<Self, F> as *const (), notify_sync_trampoline::<Self, F> as *const (),
)), )),
@ -622,7 +622,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::throttle-time\0".as_ptr() as *const _, c"notify::throttle-time".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_throttle_time_trampoline::<Self, F> as *const (), notify_throttle_time_trampoline::<Self, F> as *const (),
)), )),
@ -651,7 +651,7 @@ pub trait BaseSinkExt: IsA<BaseSink> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::ts-offset\0".as_ptr() as *const _, c"notify::ts-offset".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_ts_offset_trampoline::<Self, F> as *const (), notify_ts_offset_trampoline::<Self, F> as *const (),
)), )),

View file

@ -253,7 +253,7 @@ pub trait BaseSrcExt: IsA<BaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::automatic-eos\0".as_ptr() as *const _, c"notify::automatic-eos".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_automatic_eos_trampoline::<Self, F> as *const (), notify_automatic_eos_trampoline::<Self, F> as *const (),
)), )),
@ -282,7 +282,7 @@ pub trait BaseSrcExt: IsA<BaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::blocksize\0".as_ptr() as *const _, c"notify::blocksize".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_blocksize_trampoline::<Self, F> as *const (), notify_blocksize_trampoline::<Self, F> as *const (),
)), )),
@ -311,7 +311,7 @@ pub trait BaseSrcExt: IsA<BaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::do-timestamp\0".as_ptr() as *const _, c"notify::do-timestamp".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_do_timestamp_trampoline::<Self, F> as *const (), notify_do_timestamp_trampoline::<Self, F> as *const (),
)), )),
@ -340,7 +340,7 @@ pub trait BaseSrcExt: IsA<BaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::num-buffers\0".as_ptr() as *const _, c"notify::num-buffers".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_num_buffers_trampoline::<Self, F> as *const (), notify_num_buffers_trampoline::<Self, F> as *const (),
)), )),
@ -369,7 +369,7 @@ pub trait BaseSrcExt: IsA<BaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::typefind\0".as_ptr() as *const _, c"notify::typefind".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_typefind_trampoline::<Self, F> as *const (), notify_typefind_trampoline::<Self, F> as *const (),
)), )),

View file

@ -171,7 +171,7 @@ pub trait BaseTransformExt: IsA<BaseTransform> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::qos\0".as_ptr() as *const _, c"notify::qos".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_qos_trampoline::<Self, F> as *const (), notify_qos_trampoline::<Self, F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -119,7 +119,7 @@ impl TestClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::clock-type\0".as_ptr() as *const _, c"notify::clock-type".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_clock_type_trampoline::<F> as *const (), notify_clock_type_trampoline::<F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -111,7 +111,7 @@ pub trait ARGBControlBindingExt: IsA<ARGBControlBinding> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::control-source-a\0".as_ptr() as *const _, c"notify::control-source-a".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_control_source_a_trampoline::<Self, F> as *const (), notify_control_source_a_trampoline::<Self, F> as *const (),
)), )),
@ -140,7 +140,7 @@ pub trait ARGBControlBindingExt: IsA<ARGBControlBinding> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::control-source-b\0".as_ptr() as *const _, c"notify::control-source-b".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_control_source_b_trampoline::<Self, F> as *const (), notify_control_source_b_trampoline::<Self, F> as *const (),
)), )),
@ -169,7 +169,7 @@ pub trait ARGBControlBindingExt: IsA<ARGBControlBinding> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::control-source-g\0".as_ptr() as *const _, c"notify::control-source-g".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_control_source_g_trampoline::<Self, F> as *const (), notify_control_source_g_trampoline::<Self, F> as *const (),
)), )),
@ -198,7 +198,7 @@ pub trait ARGBControlBindingExt: IsA<ARGBControlBinding> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::control-source-r\0".as_ptr() as *const _, c"notify::control-source-r".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_control_source_r_trampoline::<Self, F> as *const (), notify_control_source_r_trampoline::<Self, F> as *const (),
)), )),

View file

@ -96,7 +96,7 @@ pub trait DirectControlBindingExt: IsA<DirectControlBinding> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::control-source\0".as_ptr() as *const _, c"notify::control-source".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_control_source_trampoline::<Self, F> as *const (), notify_control_source_trampoline::<Self, F> as *const (),
)), )),

View file

@ -68,7 +68,7 @@ pub trait InterpolationControlSourceExt: IsA<InterpolationControlSource> + 'stat
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::mode\0".as_ptr() as *const _, c"notify::mode".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_mode_trampoline::<Self, F> as *const (), notify_mode_trampoline::<Self, F> as *const (),
)), )),

View file

@ -102,7 +102,7 @@ pub trait LFOControlSourceExt: IsA<LFOControlSource> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::amplitude\0".as_ptr() as *const _, c"notify::amplitude".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_amplitude_trampoline::<Self, F> as *const (), notify_amplitude_trampoline::<Self, F> as *const (),
)), )),
@ -131,7 +131,7 @@ pub trait LFOControlSourceExt: IsA<LFOControlSource> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::frequency\0".as_ptr() as *const _, c"notify::frequency".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_frequency_trampoline::<Self, F> as *const (), notify_frequency_trampoline::<Self, F> as *const (),
)), )),
@ -157,7 +157,7 @@ pub trait LFOControlSourceExt: IsA<LFOControlSource> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::offset\0".as_ptr() as *const _, c"notify::offset".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_offset_trampoline::<Self, F> as *const (), notify_offset_trampoline::<Self, F> as *const (),
)), )),
@ -186,7 +186,7 @@ pub trait LFOControlSourceExt: IsA<LFOControlSource> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::timeshift\0".as_ptr() as *const _, c"notify::timeshift".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_timeshift_trampoline::<Self, F> as *const (), notify_timeshift_trampoline::<Self, F> as *const (),
)), )),
@ -215,7 +215,7 @@ pub trait LFOControlSourceExt: IsA<LFOControlSource> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::waveform\0".as_ptr() as *const _, c"notify::waveform".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_waveform_trampoline::<Self, F> as *const (), notify_waveform_trampoline::<Self, F> as *const (),
)), )),

View file

@ -101,7 +101,7 @@ pub trait TimedValueControlSourceExt: IsA<TimedValueControlSource> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"value-added\0".as_ptr() as *const _, c"value-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
value_added_trampoline::<Self, F> as *const (), value_added_trampoline::<Self, F> as *const (),
)), )),
@ -133,7 +133,7 @@ pub trait TimedValueControlSourceExt: IsA<TimedValueControlSource> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"value-changed\0".as_ptr() as *const _, c"value-changed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
value_changed_trampoline::<Self, F> as *const (), value_changed_trampoline::<Self, F> as *const (),
)), )),
@ -165,7 +165,7 @@ pub trait TimedValueControlSourceExt: IsA<TimedValueControlSource> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"value-removed\0".as_ptr() as *const _, c"value-removed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
value_removed_trampoline::<Self, F> as *const (), value_removed_trampoline::<Self, F> as *const (),
)), )),

View file

@ -70,7 +70,7 @@ pub trait TriggerControlSourceExt: IsA<TriggerControlSource> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::tolerance\0".as_ptr() as *const _, c"notify::tolerance".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_tolerance_trampoline::<Self, F> as *const (), notify_tolerance_trampoline::<Self, F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -238,7 +238,7 @@ pub trait AssetExt: IsA<Asset> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::proxy\0".as_ptr() as *const _, c"notify::proxy".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_proxy_trampoline::<Self, F> as *const (), notify_proxy_trampoline::<Self, F> as *const (),
)), )),
@ -267,7 +267,7 @@ pub trait AssetExt: IsA<Asset> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::proxy-target\0".as_ptr() as *const _, c"notify::proxy-target".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_proxy_target_trampoline::<Self, F> as *const (), notify_proxy_target_trampoline::<Self, F> as *const (),
)), )),

View file

@ -423,7 +423,7 @@ pub trait ClipExt: IsA<Clip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::duration-limit\0".as_ptr() as *const _, c"notify::duration-limit".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_duration_limit_trampoline::<Self, F> as *const (), notify_duration_limit_trampoline::<Self, F> as *const (),
)), )),
@ -446,7 +446,7 @@ pub trait ClipExt: IsA<Clip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::layer\0".as_ptr() as *const _, c"notify::layer".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_layer_trampoline::<Self, F> as *const (), notify_layer_trampoline::<Self, F> as *const (),
)), )),
@ -472,7 +472,7 @@ pub trait ClipExt: IsA<Clip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::supported-formats\0".as_ptr() as *const _, c"notify::supported-formats".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_supported_formats_trampoline::<Self, F> as *const (), notify_supported_formats_trampoline::<Self, F> as *const (),
)), )),

View file

@ -107,7 +107,7 @@ pub trait ClipAssetExt: IsA<ClipAsset> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::supported-formats\0".as_ptr() as *const _, c"notify::supported-formats".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_supported_formats_trampoline::<Self, F> as *const (), notify_supported_formats_trampoline::<Self, F> as *const (),
)), )),

View file

@ -132,7 +132,7 @@ pub trait GESContainerExt: IsA<Container> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"child-added\0".as_ptr() as *const _, c"child-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
child_added_trampoline::<Self, F> as *const (), child_added_trampoline::<Self, F> as *const (),
)), )),
@ -164,7 +164,7 @@ pub trait GESContainerExt: IsA<Container> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"child-removed\0".as_ptr() as *const _, c"child-removed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
child_removed_trampoline::<Self, F> as *const (), child_removed_trampoline::<Self, F> as *const (),
)), )),
@ -187,7 +187,7 @@ pub trait GESContainerExt: IsA<Container> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::height\0".as_ptr() as *const _, c"notify::height".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_height_trampoline::<Self, F> as *const (), notify_height_trampoline::<Self, F> as *const (),
)), )),

View file

@ -113,7 +113,7 @@ impl DiscovererManager {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"discovered\0".as_ptr() as *const _, c"discovered".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
discovered_trampoline::<F> as *const (), discovered_trampoline::<F> as *const (),
)), )),
@ -149,7 +149,7 @@ impl DiscovererManager {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"load-serialized-info\0".as_ptr() as *const _, c"load-serialized-info".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
load_serialized_info_trampoline::<F> as *const (), load_serialized_info_trampoline::<F> as *const (),
)), )),
@ -179,7 +179,7 @@ impl DiscovererManager {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"source-setup\0".as_ptr() as *const _, c"source-setup".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
source_setup_trampoline::<F> as *const (), source_setup_trampoline::<F> as *const (),
)), )),
@ -204,7 +204,7 @@ impl DiscovererManager {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::timeout\0".as_ptr() as *const _, c"notify::timeout".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_timeout_trampoline::<F> as *const (), notify_timeout_trampoline::<F> as *const (),
)), )),
@ -227,7 +227,7 @@ impl DiscovererManager {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::use-cache\0".as_ptr() as *const _, c"notify::use-cache".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_use_cache_trampoline::<F> as *const (), notify_use_cache_trampoline::<F> as *const (),
)), )),

View file

@ -283,7 +283,7 @@ pub trait LayerExt: IsA<Layer> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"clip-added\0".as_ptr() as *const _, c"clip-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
clip_added_trampoline::<Self, F> as *const (), clip_added_trampoline::<Self, F> as *const (),
)), )),
@ -309,7 +309,7 @@ pub trait LayerExt: IsA<Layer> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"clip-removed\0".as_ptr() as *const _, c"clip-removed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
clip_removed_trampoline::<Self, F> as *const (), clip_removed_trampoline::<Self, F> as *const (),
)), )),
@ -335,7 +335,7 @@ pub trait LayerExt: IsA<Layer> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::auto-transition\0".as_ptr() as *const _, c"notify::auto-transition".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_auto_transition_trampoline::<Self, F> as *const (), notify_auto_transition_trampoline::<Self, F> as *const (),
)), )),
@ -359,7 +359,7 @@ pub trait LayerExt: IsA<Layer> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::priority\0".as_ptr() as *const _, c"notify::priority".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_priority_trampoline::<Self, F> as *const (), notify_priority_trampoline::<Self, F> as *const (),
)), )),

View file

@ -43,7 +43,7 @@ impl Marker {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::position\0".as_ptr() as *const _, c"notify::position".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_position_trampoline::<F> as *const (), notify_position_trampoline::<F> as *const (),
)), )),

View file

@ -109,7 +109,7 @@ impl MarkerList {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"marker-added\0".as_ptr() as *const _, c"marker-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
marker_added_trampoline::<F> as *const (), marker_added_trampoline::<F> as *const (),
)), )),
@ -146,7 +146,7 @@ impl MarkerList {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"marker-moved\0".as_ptr() as *const _, c"marker-moved".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
marker_moved_trampoline::<F> as *const (), marker_moved_trampoline::<F> as *const (),
)), )),
@ -171,7 +171,7 @@ impl MarkerList {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"marker-removed\0".as_ptr() as *const _, c"marker-removed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
marker_removed_trampoline::<F> as *const (), marker_removed_trampoline::<F> as *const (),
)), )),
@ -196,7 +196,7 @@ impl MarkerList {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::flags\0".as_ptr() as *const _, c"notify::flags".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_flags_trampoline::<F> as *const (), notify_flags_trampoline::<F> as *const (),
)), )),

View file

@ -235,7 +235,7 @@ pub trait GESPipelineExt: IsA<Pipeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::audio-filter\0".as_ptr() as *const _, c"notify::audio-filter".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_audio_filter_trampoline::<Self, F> as *const (), notify_audio_filter_trampoline::<Self, F> as *const (),
)), )),
@ -258,7 +258,7 @@ pub trait GESPipelineExt: IsA<Pipeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::audio-sink\0".as_ptr() as *const _, c"notify::audio-sink".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_audio_sink_trampoline::<Self, F> as *const (), notify_audio_sink_trampoline::<Self, F> as *const (),
)), )),
@ -281,7 +281,7 @@ pub trait GESPipelineExt: IsA<Pipeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::mode\0".as_ptr() as *const _, c"notify::mode".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_mode_trampoline::<Self, F> as *const (), notify_mode_trampoline::<Self, F> as *const (),
)), )),
@ -304,7 +304,7 @@ pub trait GESPipelineExt: IsA<Pipeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::timeline\0".as_ptr() as *const _, c"notify::timeline".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_timeline_trampoline::<Self, F> as *const (), notify_timeline_trampoline::<Self, F> as *const (),
)), )),
@ -330,7 +330,7 @@ pub trait GESPipelineExt: IsA<Pipeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::video-filter\0".as_ptr() as *const _, c"notify::video-filter".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_video_filter_trampoline::<Self, F> as *const (), notify_video_filter_trampoline::<Self, F> as *const (),
)), )),
@ -353,7 +353,7 @@ pub trait GESPipelineExt: IsA<Pipeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::video-sink\0".as_ptr() as *const _, c"notify::video-sink".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_video_sink_trampoline::<Self, F> as *const (), notify_video_sink_trampoline::<Self, F> as *const (),
)), )),

View file

@ -230,7 +230,7 @@ pub trait ProjectExt: IsA<Project> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"asset-added\0".as_ptr() as *const _, c"asset-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
asset_added_trampoline::<Self, F> as *const (), asset_added_trampoline::<Self, F> as *const (),
)), )),
@ -259,7 +259,7 @@ pub trait ProjectExt: IsA<Project> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"asset-loading\0".as_ptr() as *const _, c"asset-loading".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
asset_loading_trampoline::<Self, F> as *const (), asset_loading_trampoline::<Self, F> as *const (),
)), )),
@ -288,7 +288,7 @@ pub trait ProjectExt: IsA<Project> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"asset-removed\0".as_ptr() as *const _, c"asset-removed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
asset_removed_trampoline::<Self, F> as *const (), asset_removed_trampoline::<Self, F> as *const (),
)), )),
@ -324,7 +324,7 @@ pub trait ProjectExt: IsA<Project> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"error-loading\0".as_ptr() as *const _, c"error-loading".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
error_loading_trampoline::<Self, F> as *const (), error_loading_trampoline::<Self, F> as *const (),
)), )),
@ -362,7 +362,7 @@ pub trait ProjectExt: IsA<Project> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"error-loading-asset\0".as_ptr() as *const _, c"error-loading-asset".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
error_loading_asset_trampoline::<Self, F> as *const (), error_loading_asset_trampoline::<Self, F> as *const (),
)), )),
@ -388,7 +388,7 @@ pub trait ProjectExt: IsA<Project> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"loaded\0".as_ptr() as *const _, c"loaded".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
loaded_trampoline::<Self, F> as *const (), loaded_trampoline::<Self, F> as *const (),
)), )),
@ -416,7 +416,7 @@ pub trait ProjectExt: IsA<Project> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"loading\0".as_ptr() as *const _, c"loading".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
loading_trampoline::<Self, F> as *const (), loading_trampoline::<Self, F> as *const (),
)), )),
@ -453,7 +453,7 @@ pub trait ProjectExt: IsA<Project> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"missing-uri\0".as_ptr() as *const _, c"missing-uri".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
missing_uri_trampoline::<Self, F> as *const (), missing_uri_trampoline::<Self, F> as *const (),
)), )),

View file

@ -120,7 +120,7 @@ pub trait TestClipExt: IsA<TestClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::freq\0".as_ptr() as *const _, c"notify::freq".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_freq_trampoline::<Self, F> as *const (), notify_freq_trampoline::<Self, F> as *const (),
)), )),
@ -143,7 +143,7 @@ pub trait TestClipExt: IsA<TestClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::mute\0".as_ptr() as *const _, c"notify::mute".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_mute_trampoline::<Self, F> as *const (), notify_mute_trampoline::<Self, F> as *const (),
)), )),
@ -166,7 +166,7 @@ pub trait TestClipExt: IsA<TestClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::volume\0".as_ptr() as *const _, c"notify::volume".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_volume_trampoline::<Self, F> as *const (), notify_volume_trampoline::<Self, F> as *const (),
)), )),
@ -189,7 +189,7 @@ pub trait TestClipExt: IsA<TestClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::vpattern\0".as_ptr() as *const _, c"notify::vpattern".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_vpattern_trampoline::<Self, F> as *const (), notify_vpattern_trampoline::<Self, F> as *const (),
)), )),

View file

@ -184,7 +184,7 @@ pub trait TextOverlayClipExt: IsA<TextOverlayClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::color\0".as_ptr() as *const _, c"notify::color".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_color_trampoline::<Self, F> as *const (), notify_color_trampoline::<Self, F> as *const (),
)), )),
@ -210,7 +210,7 @@ pub trait TextOverlayClipExt: IsA<TextOverlayClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::font-desc\0".as_ptr() as *const _, c"notify::font-desc".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_font_desc_trampoline::<Self, F> as *const (), notify_font_desc_trampoline::<Self, F> as *const (),
)), )),
@ -236,7 +236,7 @@ pub trait TextOverlayClipExt: IsA<TextOverlayClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::halignment\0".as_ptr() as *const _, c"notify::halignment".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_halignment_trampoline::<Self, F> as *const (), notify_halignment_trampoline::<Self, F> as *const (),
)), )),
@ -262,7 +262,7 @@ pub trait TextOverlayClipExt: IsA<TextOverlayClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::text\0".as_ptr() as *const _, c"notify::text".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_text_trampoline::<Self, F> as *const (), notify_text_trampoline::<Self, F> as *const (),
)), )),
@ -288,7 +288,7 @@ pub trait TextOverlayClipExt: IsA<TextOverlayClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::valignment\0".as_ptr() as *const _, c"notify::valignment".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_valignment_trampoline::<Self, F> as *const (), notify_valignment_trampoline::<Self, F> as *const (),
)), )),
@ -314,7 +314,7 @@ pub trait TextOverlayClipExt: IsA<TextOverlayClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::xpos\0".as_ptr() as *const _, c"notify::xpos".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_xpos_trampoline::<Self, F> as *const (), notify_xpos_trampoline::<Self, F> as *const (),
)), )),
@ -340,7 +340,7 @@ pub trait TextOverlayClipExt: IsA<TextOverlayClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::ypos\0".as_ptr() as *const _, c"notify::ypos".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_ypos_trampoline::<Self, F> as *const (), notify_ypos_trampoline::<Self, F> as *const (),
)), )),

View file

@ -433,7 +433,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"commited\0".as_ptr() as *const _, c"commited".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
commited_trampoline::<Self, F> as *const (), commited_trampoline::<Self, F> as *const (),
)), )),
@ -462,7 +462,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"group-added\0".as_ptr() as *const _, c"group-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
group_added_trampoline::<Self, F> as *const (), group_added_trampoline::<Self, F> as *const (),
)), )),
@ -496,7 +496,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"layer-added\0".as_ptr() as *const _, c"layer-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
layer_added_trampoline::<Self, F> as *const (), layer_added_trampoline::<Self, F> as *const (),
)), )),
@ -525,7 +525,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"layer-removed\0".as_ptr() as *const _, c"layer-removed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
layer_removed_trampoline::<Self, F> as *const (), layer_removed_trampoline::<Self, F> as *const (),
)), )),
@ -564,7 +564,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"select-element-track\0".as_ptr() as *const _, c"select-element-track".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
select_element_track_trampoline::<Self, F> as *const (), select_element_track_trampoline::<Self, F> as *const (),
)), )),
@ -605,7 +605,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"snapping-ended\0".as_ptr() as *const _, c"snapping-ended".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
snapping_ended_trampoline::<Self, F> as *const (), snapping_ended_trampoline::<Self, F> as *const (),
)), )),
@ -641,7 +641,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"snapping-started\0".as_ptr() as *const _, c"snapping-started".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
snapping_started_trampoline::<Self, F> as *const (), snapping_started_trampoline::<Self, F> as *const (),
)), )),
@ -670,7 +670,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"track-added\0".as_ptr() as *const _, c"track-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
track_added_trampoline::<Self, F> as *const (), track_added_trampoline::<Self, F> as *const (),
)), )),
@ -699,7 +699,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"track-removed\0".as_ptr() as *const _, c"track-removed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
track_removed_trampoline::<Self, F> as *const (), track_removed_trampoline::<Self, F> as *const (),
)), )),
@ -725,7 +725,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::auto-transition\0".as_ptr() as *const _, c"notify::auto-transition".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_auto_transition_trampoline::<Self, F> as *const (), notify_auto_transition_trampoline::<Self, F> as *const (),
)), )),
@ -748,7 +748,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::duration\0".as_ptr() as *const _, c"notify::duration".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_duration_trampoline::<Self, F> as *const (), notify_duration_trampoline::<Self, F> as *const (),
)), )),
@ -774,7 +774,7 @@ pub trait TimelineExt: IsA<Timeline> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::snapping-distance\0".as_ptr() as *const _, c"notify::snapping-distance".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_snapping_distance_trampoline::<Self, F> as *const (), notify_snapping_distance_trampoline::<Self, F> as *const (),
)), )),

View file

@ -609,7 +609,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"child-property-added\0".as_ptr() as *const _, c"child-property-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
child_property_added_trampoline::<Self, F> as *const (), child_property_added_trampoline::<Self, F> as *const (),
)), )),
@ -645,7 +645,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"child-property-removed\0".as_ptr() as *const _, c"child-property-removed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
child_property_removed_trampoline::<Self, F> as *const (), child_property_removed_trampoline::<Self, F> as *const (),
)), )),
@ -710,7 +710,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::duration\0".as_ptr() as *const _, c"notify::duration".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_duration_trampoline::<Self, F> as *const (), notify_duration_trampoline::<Self, F> as *const (),
)), )),
@ -736,7 +736,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::in-point\0".as_ptr() as *const _, c"notify::in-point".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_in_point_trampoline::<Self, F> as *const (), notify_in_point_trampoline::<Self, F> as *const (),
)), )),
@ -762,7 +762,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::max-duration\0".as_ptr() as *const _, c"notify::max-duration".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_max_duration_trampoline::<Self, F> as *const (), notify_max_duration_trampoline::<Self, F> as *const (),
)), )),
@ -788,7 +788,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::name\0".as_ptr() as *const _, c"notify::name".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_name_trampoline::<Self, F> as *const (), notify_name_trampoline::<Self, F> as *const (),
)), )),
@ -814,7 +814,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::parent\0".as_ptr() as *const _, c"notify::parent".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_parent_trampoline::<Self, F> as *const (), notify_parent_trampoline::<Self, F> as *const (),
)), )),
@ -841,7 +841,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::priority\0".as_ptr() as *const _, c"notify::priority".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_priority_trampoline::<Self, F> as *const (), notify_priority_trampoline::<Self, F> as *const (),
)), )),
@ -867,7 +867,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::serialize\0".as_ptr() as *const _, c"notify::serialize".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_serialize_trampoline::<Self, F> as *const (), notify_serialize_trampoline::<Self, F> as *const (),
)), )),
@ -893,7 +893,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::start\0".as_ptr() as *const _, c"notify::start".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_start_trampoline::<Self, F> as *const (), notify_start_trampoline::<Self, F> as *const (),
)), )),
@ -919,7 +919,7 @@ pub trait TimelineElementExt: IsA<TimelineElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::timeline\0".as_ptr() as *const _, c"notify::timeline".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_timeline_trampoline::<Self, F> as *const (), notify_timeline_trampoline::<Self, F> as *const (),
)), )),

View file

@ -232,7 +232,7 @@ pub trait GESTrackExt: IsA<Track> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"commited\0".as_ptr() as *const _, c"commited".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
commited_trampoline::<Self, F> as *const (), commited_trampoline::<Self, F> as *const (),
)), )),
@ -264,7 +264,7 @@ pub trait GESTrackExt: IsA<Track> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"track-element-added\0".as_ptr() as *const _, c"track-element-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
track_element_added_trampoline::<Self, F> as *const (), track_element_added_trampoline::<Self, F> as *const (),
)), )),
@ -296,7 +296,7 @@ pub trait GESTrackExt: IsA<Track> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"track-element-removed\0".as_ptr() as *const _, c"track-element-removed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
track_element_removed_trampoline::<Self, F> as *const (), track_element_removed_trampoline::<Self, F> as *const (),
)), )),
@ -319,7 +319,7 @@ pub trait GESTrackExt: IsA<Track> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::duration\0".as_ptr() as *const _, c"notify::duration".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_duration_trampoline::<Self, F> as *const (), notify_duration_trampoline::<Self, F> as *const (),
)), )),
@ -344,7 +344,7 @@ pub trait GESTrackExt: IsA<Track> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::id\0".as_ptr() as *const _, c"notify::id".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_id_trampoline::<Self, F> as *const (), notify_id_trampoline::<Self, F> as *const (),
)), )),
@ -367,7 +367,7 @@ pub trait GESTrackExt: IsA<Track> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::mixing\0".as_ptr() as *const _, c"notify::mixing".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_mixing_trampoline::<Self, F> as *const (), notify_mixing_trampoline::<Self, F> as *const (),
)), )),
@ -393,7 +393,7 @@ pub trait GESTrackExt: IsA<Track> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::restriction-caps\0".as_ptr() as *const _, c"notify::restriction-caps".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_restriction_caps_trampoline::<Self, F> as *const (), notify_restriction_caps_trampoline::<Self, F> as *const (),
)), )),

View file

@ -414,7 +414,7 @@ pub trait TrackElementExt: IsA<TrackElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"control-binding-added\0".as_ptr() as *const _, c"control-binding-added".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
control_binding_added_trampoline::<Self, F> as *const (), control_binding_added_trampoline::<Self, F> as *const (),
)), )),
@ -446,7 +446,7 @@ pub trait TrackElementExt: IsA<TrackElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"control-binding-removed\0".as_ptr() as *const _, c"control-binding-removed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
control_binding_removed_trampoline::<Self, F> as *const (), control_binding_removed_trampoline::<Self, F> as *const (),
)), )),
@ -469,7 +469,7 @@ pub trait TrackElementExt: IsA<TrackElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::active\0".as_ptr() as *const _, c"notify::active".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_active_trampoline::<Self, F> as *const (), notify_active_trampoline::<Self, F> as *const (),
)), )),
@ -500,7 +500,7 @@ pub trait TrackElementExt: IsA<TrackElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::auto-clamp-control-sources\0".as_ptr() as *const _, c"notify::auto-clamp-control-sources".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_auto_clamp_control_sources_trampoline::<Self, F> as *const (), notify_auto_clamp_control_sources_trampoline::<Self, F> as *const (),
)), )),
@ -528,7 +528,7 @@ pub trait TrackElementExt: IsA<TrackElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::has-internal-source\0".as_ptr() as *const _, c"notify::has-internal-source".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_has_internal_source_trampoline::<Self, F> as *const (), notify_has_internal_source_trampoline::<Self, F> as *const (),
)), )),
@ -551,7 +551,7 @@ pub trait TrackElementExt: IsA<TrackElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::track\0".as_ptr() as *const _, c"notify::track".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_track_trampoline::<Self, F> as *const (), notify_track_trampoline::<Self, F> as *const (),
)), )),
@ -577,7 +577,7 @@ pub trait TrackElementExt: IsA<TrackElement> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::track-type\0".as_ptr() as *const _, c"notify::track-type".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_track_type_trampoline::<Self, F> as *const (), notify_track_type_trampoline::<Self, F> as *const (),
)), )),

View file

@ -91,7 +91,7 @@ pub trait TrackElementAssetExt: IsA<TrackElementAsset> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::track-type\0".as_ptr() as *const _, c"notify::track-type".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_track_type_trampoline::<Self, F> as *const (), notify_track_type_trampoline::<Self, F> as *const (),
)), )),

View file

@ -66,7 +66,7 @@ pub trait TransitionClipExt: IsA<TransitionClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::vtype\0".as_ptr() as *const _, c"notify::vtype".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_vtype_trampoline::<Self, F> as *const (), notify_vtype_trampoline::<Self, F> as *const (),
)), )),

View file

@ -80,7 +80,7 @@ pub trait UriClipExt: IsA<UriClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::is-image\0".as_ptr() as *const _, c"notify::is-image".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_is_image_trampoline::<Self, F> as *const (), notify_is_image_trampoline::<Self, F> as *const (),
)), )),
@ -103,7 +103,7 @@ pub trait UriClipExt: IsA<UriClip> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::mute\0".as_ptr() as *const _, c"notify::mute".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_mute_trampoline::<Self, F> as *const (), notify_mute_trampoline::<Self, F> as *const (),
)), )),

View file

@ -148,7 +148,7 @@ pub trait UriClipAssetExt: IsA<UriClipAsset> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::duration\0".as_ptr() as *const _, c"notify::duration".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_duration_trampoline::<Self, F> as *const (), notify_duration_trampoline::<Self, F> as *const (),
)), )),
@ -179,7 +179,7 @@ pub trait UriClipAssetExt: IsA<UriClipAsset> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::is-nested-timeline\0".as_ptr() as *const _, c"notify::is-nested-timeline".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_is_nested_timeline_trampoline::<Self, F> as *const (), notify_is_nested_timeline_trampoline::<Self, F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -131,7 +131,7 @@ pub trait VideoTransitionExt: IsA<VideoTransition> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::border\0".as_ptr() as *const _, c"notify::border".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_border_trampoline::<Self, F> as *const (), notify_border_trampoline::<Self, F> as *const (),
)), )),
@ -158,7 +158,7 @@ pub trait VideoTransitionExt: IsA<VideoTransition> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::invert\0".as_ptr() as *const _, c"notify::invert".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_invert_trampoline::<Self, F> as *const (), notify_invert_trampoline::<Self, F> as *const (),
)), )),
@ -184,7 +184,7 @@ pub trait VideoTransitionExt: IsA<VideoTransition> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::transition-type\0".as_ptr() as *const _, c"notify::transition-type".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_transition_type_trampoline::<Self, F> as *const (), notify_transition_type_trampoline::<Self, F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -17,6 +17,20 @@ pub fn gl_check_extension(name: &str, ext: &str) -> bool {
} }
} }
//#[cfg(feature = "v1_26")]
//#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
//#[doc(alias = "gst_gl_dma_buf_transform_drm_formats_to_gst_formats")]
//pub fn gl_dma_buf_transform_drm_formats_to_gst_formats(context: &impl IsA<GLContext>, src: &glib::Value, flags: /*Ignored*/GLDrmFormatFlags, dst: /*Unimplemented*/glib::Value) -> bool {
// unsafe { TODO: call ffi:gst_gl_dma_buf_transform_drm_formats_to_gst_formats() }
//}
//#[cfg(feature = "v1_26")]
//#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
//#[doc(alias = "gst_gl_dma_buf_transform_gst_formats_to_drm_formats")]
//pub fn gl_dma_buf_transform_gst_formats_to_drm_formats(context: &impl IsA<GLContext>, src: &glib::Value, flags: /*Ignored*/GLDrmFormatFlags, dst: /*Unimplemented*/glib::Value) -> bool {
// unsafe { TODO: call ffi:gst_gl_dma_buf_transform_gst_formats_to_drm_formats() }
//}
#[doc(alias = "gst_gl_element_propagate_display_context")] #[doc(alias = "gst_gl_element_propagate_display_context")]
pub fn gl_element_propagate_display_context( pub fn gl_element_propagate_display_context(
element: &impl IsA<gst::Element>, element: &impl IsA<gst::Element>,

View file

@ -75,7 +75,7 @@ pub trait GLBaseFilterExt: IsA<GLBaseFilter> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::context\0".as_ptr() as *const _, c"notify::context".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_context_trampoline::<Self, F> as *const (), notify_context_trampoline::<Self, F> as *const (),
)), )),

View file

@ -58,7 +58,7 @@ pub trait GLBaseSrcExt: IsA<GLBaseSrc> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::timestamp-offset\0".as_ptr() as *const _, c"notify::timestamp-offset".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_timestamp_offset_trampoline::<Self, F> as *const (), notify_timestamp_offset_trampoline::<Self, F> as *const (),
)), )),

View file

@ -142,7 +142,7 @@ pub trait GLDisplayExt: IsA<GLDisplay> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"create-context\0".as_ptr() as *const _, c"create-context".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
create_context_trampoline::<Self, F> as *const (), create_context_trampoline::<Self, F> as *const (),
)), )),

View file

@ -89,7 +89,7 @@ impl GLOverlayCompositor {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::yinvert\0".as_ptr() as *const _, c"notify::yinvert".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_yinvert_trampoline::<F> as *const (), notify_yinvert_trampoline::<F> as *const (),
)), )),

View file

@ -442,7 +442,7 @@ impl GLShader {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::linked\0".as_ptr() as *const _, c"notify::linked".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_linked_trampoline::<F> as *const (), notify_linked_trampoline::<F> as *const (),
)), )),

View file

@ -158,7 +158,7 @@ impl GLViewConvert {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::downmix-mode\0".as_ptr() as *const _, c"notify::downmix-mode".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_downmix_mode_trampoline::<F> as *const (), notify_downmix_mode_trampoline::<F> as *const (),
)), )),
@ -186,7 +186,7 @@ impl GLViewConvert {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::input-flags-override\0".as_ptr() as *const _, c"notify::input-flags-override".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_input_flags_override_trampoline::<F> as *const (), notify_input_flags_override_trampoline::<F> as *const (),
)), )),
@ -214,7 +214,7 @@ impl GLViewConvert {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::input-mode-override\0".as_ptr() as *const _, c"notify::input-mode-override".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_input_mode_override_trampoline::<F> as *const (), notify_input_mode_override_trampoline::<F> as *const (),
)), )),
@ -242,7 +242,7 @@ impl GLViewConvert {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::output-flags-override\0".as_ptr() as *const _, c"notify::output-flags-override".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_output_flags_override_trampoline::<F> as *const (), notify_output_flags_override_trampoline::<F> as *const (),
)), )),
@ -270,7 +270,7 @@ impl GLViewConvert {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::output-mode-override\0".as_ptr() as *const _, c"notify::output-mode-override".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_output_mode_override_trampoline::<F> as *const (), notify_output_mode_override_trampoline::<F> as *const (),
)), )),

View file

@ -226,7 +226,7 @@ pub trait GLWindowExt: IsA<GLWindow> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"key-event\0".as_ptr() as *const _, c"key-event".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
key_event_trampoline::<Self, F> as *const (), key_event_trampoline::<Self, F> as *const (),
)), )),
@ -264,7 +264,7 @@ pub trait GLWindowExt: IsA<GLWindow> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"mouse-event\0".as_ptr() as *const _, c"mouse-event".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
mouse_event_trampoline::<Self, F> as *const (), mouse_event_trampoline::<Self, F> as *const (),
)), )),
@ -304,7 +304,7 @@ pub trait GLWindowExt: IsA<GLWindow> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"scroll-event\0".as_ptr() as *const _, c"scroll-event".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
scroll_event_trampoline::<Self, F> as *const (), scroll_event_trampoline::<Self, F> as *const (),
)), )),
@ -334,7 +334,7 @@ pub trait GLWindowExt: IsA<GLWindow> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"window-handle-changed\0".as_ptr() as *const _, c"window-handle-changed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
window_handle_changed_trampoline::<Self, F> as *const (), window_handle_changed_trampoline::<Self, F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -210,6 +210,17 @@ pub const GST_GL_DISPLAY_TYPE_ANDROID: GstGLDisplayType = 2048;
pub const GST_GL_DISPLAY_TYPE_EGL_SURFACELESS: GstGLDisplayType = 4096; pub const GST_GL_DISPLAY_TYPE_EGL_SURFACELESS: GstGLDisplayType = 4096;
pub const GST_GL_DISPLAY_TYPE_ANY: GstGLDisplayType = 4294967295; pub const GST_GL_DISPLAY_TYPE_ANY: GstGLDisplayType = 4294967295;
pub type GstGLDrmFormatFlags = c_uint;
#[cfg(feature = "v1_26")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
pub const GST_GL_DRM_FORMAT_INCLUDE_EXTERNAL: GstGLDrmFormatFlags = 1;
#[cfg(feature = "v1_26")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
pub const GST_GL_DRM_FORMAT_LINEAR_ONLY: GstGLDrmFormatFlags = 2;
#[cfg(feature = "v1_26")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
pub const GST_GL_DRM_FORMAT_INCLUDE_EMULATED: GstGLDrmFormatFlags = 4;
pub type GstGLPlatform = c_uint; pub type GstGLPlatform = c_uint;
pub const GST_GL_PLATFORM_NONE: GstGLPlatform = 0; pub const GST_GL_PLATFORM_NONE: GstGLPlatform = 0;
pub const GST_GL_PLATFORM_EGL: GstGLPlatform = 1; pub const GST_GL_PLATFORM_EGL: GstGLPlatform = 1;
@ -1805,6 +1816,13 @@ extern "C" {
//========================================================================= //=========================================================================
pub fn gst_gl_display_type_get_type() -> GType; pub fn gst_gl_display_type_get_type() -> GType;
//=========================================================================
// GstGLDrmFormatFlags
//=========================================================================
#[cfg(feature = "v1_26")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
pub fn gst_gl_drm_format_flags_get_type() -> GType;
//========================================================================= //=========================================================================
// GstGLPlatform // GstGLPlatform
//========================================================================= //=========================================================================
@ -2998,6 +3016,22 @@ extern "C" {
) -> gboolean; ) -> gboolean;
pub fn gst_context_set_gl_display(context: *mut gst::GstContext, display: *mut GstGLDisplay); pub fn gst_context_set_gl_display(context: *mut gst::GstContext, display: *mut GstGLDisplay);
pub fn gst_gl_check_extension(name: *const c_char, ext: *const c_char) -> gboolean; pub fn gst_gl_check_extension(name: *const c_char, ext: *const c_char) -> gboolean;
#[cfg(feature = "v1_26")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
pub fn gst_gl_dma_buf_transform_drm_formats_to_gst_formats(
context: *mut GstGLContext,
src: *const gobject::GValue,
flags: GstGLDrmFormatFlags,
dst: *mut gobject::GValue,
) -> gboolean;
#[cfg(feature = "v1_26")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
pub fn gst_gl_dma_buf_transform_gst_formats_to_drm_formats(
context: *mut GstGLContext,
src: *const gobject::GValue,
flags: GstGLDrmFormatFlags,
dst: *mut gobject::GValue,
) -> gboolean;
pub fn gst_gl_element_propagate_display_context( pub fn gst_gl_element_propagate_display_context(
element: *mut gst::GstElement, element: *mut gst::GstElement,
display: *mut GstGLDisplay, display: *mut GstGLDisplay,

View file

@ -426,6 +426,13 @@ const RUST_LAYOUTS: &[(&str, Layout)] = &[
alignment: align_of::<GstGLDisplayType>(), alignment: align_of::<GstGLDisplayType>(),
}, },
), ),
(
"GstGLDrmFormatFlags",
Layout {
size: size_of::<GstGLDrmFormatFlags>(),
alignment: align_of::<GstGLDrmFormatFlags>(),
},
),
( (
"GstGLFilter", "GstGLFilter",
Layout { Layout {
@ -837,6 +844,9 @@ const RUST_CONSTANTS: &[(&str, &str)] = &[
("(guint) GST_GL_DISPLAY_TYPE_WIN32", "8"), ("(guint) GST_GL_DISPLAY_TYPE_WIN32", "8"),
("(guint) GST_GL_DISPLAY_TYPE_WINRT", "1024"), ("(guint) GST_GL_DISPLAY_TYPE_WINRT", "1024"),
("(guint) GST_GL_DISPLAY_TYPE_X11", "1"), ("(guint) GST_GL_DISPLAY_TYPE_X11", "1"),
("(guint) GST_GL_DRM_FORMAT_INCLUDE_EMULATED", "4"),
("(guint) GST_GL_DRM_FORMAT_INCLUDE_EXTERNAL", "1"),
("(guint) GST_GL_DRM_FORMAT_LINEAR_ONLY", "2"),
("(gint) GST_GL_LUMINANCE", "6409"), ("(gint) GST_GL_LUMINANCE", "6409"),
("(gint) GST_GL_LUMINANCE_ALPHA", "6410"), ("(gint) GST_GL_LUMINANCE_ALPHA", "6410"),
("GST_GL_MEMORY_ALLOCATOR_NAME", "GLMemory"), ("GST_GL_MEMORY_ALLOCATOR_NAME", "GLMemory"),

View file

@ -121,6 +121,9 @@ int main() {
PRINT_CONSTANT((guint) GST_GL_DISPLAY_TYPE_WIN32); PRINT_CONSTANT((guint) GST_GL_DISPLAY_TYPE_WIN32);
PRINT_CONSTANT((guint) GST_GL_DISPLAY_TYPE_WINRT); PRINT_CONSTANT((guint) GST_GL_DISPLAY_TYPE_WINRT);
PRINT_CONSTANT((guint) GST_GL_DISPLAY_TYPE_X11); PRINT_CONSTANT((guint) GST_GL_DISPLAY_TYPE_X11);
PRINT_CONSTANT((guint) GST_GL_DRM_FORMAT_INCLUDE_EMULATED);
PRINT_CONSTANT((guint) GST_GL_DRM_FORMAT_INCLUDE_EXTERNAL);
PRINT_CONSTANT((guint) GST_GL_DRM_FORMAT_LINEAR_ONLY);
PRINT_CONSTANT((gint) GST_GL_LUMINANCE); PRINT_CONSTANT((gint) GST_GL_LUMINANCE);
PRINT_CONSTANT((gint) GST_GL_LUMINANCE_ALPHA); PRINT_CONSTANT((gint) GST_GL_LUMINANCE_ALPHA);
PRINT_CONSTANT(GST_GL_MEMORY_ALLOCATOR_NAME); PRINT_CONSTANT(GST_GL_MEMORY_ALLOCATOR_NAME);

View file

@ -40,6 +40,7 @@ int main() {
printf("%s;%zu;%zu\n", "GstGLDisplay", sizeof(GstGLDisplay), alignof(GstGLDisplay)); printf("%s;%zu;%zu\n", "GstGLDisplay", sizeof(GstGLDisplay), alignof(GstGLDisplay));
printf("%s;%zu;%zu\n", "GstGLDisplayClass", sizeof(GstGLDisplayClass), alignof(GstGLDisplayClass)); printf("%s;%zu;%zu\n", "GstGLDisplayClass", sizeof(GstGLDisplayClass), alignof(GstGLDisplayClass));
printf("%s;%zu;%zu\n", "GstGLDisplayType", sizeof(GstGLDisplayType), alignof(GstGLDisplayType)); printf("%s;%zu;%zu\n", "GstGLDisplayType", sizeof(GstGLDisplayType), alignof(GstGLDisplayType));
printf("%s;%zu;%zu\n", "GstGLDrmFormatFlags", sizeof(GstGLDrmFormatFlags), alignof(GstGLDrmFormatFlags));
printf("%s;%zu;%zu\n", "GstGLFilter", sizeof(GstGLFilter), alignof(GstGLFilter)); printf("%s;%zu;%zu\n", "GstGLFilter", sizeof(GstGLFilter), alignof(GstGLFilter));
printf("%s;%zu;%zu\n", "GstGLFilterClass", sizeof(GstGLFilterClass), alignof(GstGLFilterClass)); printf("%s;%zu;%zu\n", "GstGLFilterClass", sizeof(GstGLFilterClass), alignof(GstGLFilterClass));
printf("%s;%zu;%zu\n", "GstGLFormat", sizeof(GstGLFormat), alignof(GstGLFormat)); printf("%s;%zu;%zu\n", "GstGLFormat", sizeof(GstGLFormat), alignof(GstGLFormat));

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -123,7 +123,7 @@ impl NetClientClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::address\0".as_ptr() as *const _, c"notify::address".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_address_trampoline::<F> as *const (), notify_address_trampoline::<F> as *const (),
)), )),
@ -151,7 +151,7 @@ impl NetClientClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::bus\0".as_ptr() as *const _, c"notify::bus".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_bus_trampoline::<F> as *const (), notify_bus_trampoline::<F> as *const (),
)), )),
@ -179,7 +179,7 @@ impl NetClientClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::internal-clock\0".as_ptr() as *const _, c"notify::internal-clock".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_internal_clock_trampoline::<F> as *const (), notify_internal_clock_trampoline::<F> as *const (),
)), )),
@ -207,7 +207,7 @@ impl NetClientClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::minimum-update-interval\0".as_ptr() as *const _, c"notify::minimum-update-interval".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_minimum_update_interval_trampoline::<F> as *const (), notify_minimum_update_interval_trampoline::<F> as *const (),
)), )),
@ -235,7 +235,7 @@ impl NetClientClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::port\0".as_ptr() as *const _, c"notify::port".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_port_trampoline::<F> as *const (), notify_port_trampoline::<F> as *const (),
)), )),
@ -263,7 +263,7 @@ impl NetClientClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::qos-dscp\0".as_ptr() as *const _, c"notify::qos-dscp".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_qos_dscp_trampoline::<F> as *const (), notify_qos_dscp_trampoline::<F> as *const (),
)), )),
@ -291,7 +291,7 @@ impl NetClientClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::round-trip-limit\0".as_ptr() as *const _, c"notify::round-trip-limit".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_round_trip_limit_trampoline::<F> as *const (), notify_round_trip_limit_trampoline::<F> as *const (),
)), )),

View file

@ -87,7 +87,7 @@ impl NetTimeProvider {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::active\0".as_ptr() as *const _, c"notify::active".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_active_trampoline::<F> as *const (), notify_active_trampoline::<F> as *const (),
)), )),
@ -115,7 +115,7 @@ impl NetTimeProvider {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::qos-dscp\0".as_ptr() as *const _, c"notify::qos-dscp".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_qos_dscp_trampoline::<F> as *const (), notify_qos_dscp_trampoline::<F> as *const (),
)), )),

View file

@ -72,7 +72,7 @@ impl PtpClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::grandmaster-clock-id\0".as_ptr() as *const _, c"notify::grandmaster-clock-id".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_grandmaster_clock_id_trampoline::<F> as *const (), notify_grandmaster_clock_id_trampoline::<F> as *const (),
)), )),
@ -100,7 +100,7 @@ impl PtpClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::internal-clock\0".as_ptr() as *const _, c"notify::internal-clock".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_internal_clock_trampoline::<F> as *const (), notify_internal_clock_trampoline::<F> as *const (),
)), )),
@ -128,7 +128,7 @@ impl PtpClock {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::master-clock-id\0".as_ptr() as *const _, c"notify::master-clock-id".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_master_clock_id_trampoline::<F> as *const (), notify_master_clock_id_trampoline::<F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -66,7 +66,7 @@ pub trait AudioVisualizerExt: IsA<AudioVisualizer> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::shade-amount\0".as_ptr() as *const _, c"notify::shade-amount".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_shade_amount_trampoline::<Self, F> as *const (), notify_shade_amount_trampoline::<Self, F> as *const (),
)), )),
@ -92,7 +92,7 @@ pub trait AudioVisualizerExt: IsA<AudioVisualizer> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::shader\0".as_ptr() as *const _, c"notify::shader".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_shader_trampoline::<Self, F> as *const (), notify_shader_trampoline::<Self, F> as *const (),
)), )),

View file

@ -118,7 +118,7 @@ impl Discoverer {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"discovered\0".as_ptr() as *const _, c"discovered".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
discovered_trampoline::<F> as *const (), discovered_trampoline::<F> as *const (),
)), )),
@ -140,7 +140,7 @@ impl Discoverer {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"finished\0".as_ptr() as *const _, c"finished".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
finished_trampoline::<F> as *const (), finished_trampoline::<F> as *const (),
)), )),
@ -176,7 +176,7 @@ impl Discoverer {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"load-serialized-info\0".as_ptr() as *const _, c"load-serialized-info".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
load_serialized_info_trampoline::<F> as *const (), load_serialized_info_trampoline::<F> as *const (),
)), )),
@ -204,7 +204,7 @@ impl Discoverer {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"source-setup\0".as_ptr() as *const _, c"source-setup".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
source_setup_trampoline::<F> as *const (), source_setup_trampoline::<F> as *const (),
)), )),
@ -226,7 +226,7 @@ impl Discoverer {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"starting\0".as_ptr() as *const _, c"starting".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
starting_trampoline::<F> as *const (), starting_trampoline::<F> as *const (),
)), )),
@ -256,7 +256,7 @@ impl Discoverer {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::use-cache\0".as_ptr() as *const _, c"notify::use-cache".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_use_cache_trampoline::<F> as *const (), notify_use_cache_trampoline::<F> as *const (),
)), )),

View file

@ -251,7 +251,7 @@ pub trait EncodingProfileExt: IsA<EncodingProfile> + 'static {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::element-properties\0".as_ptr() as *const _, c"notify::element-properties".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_element_properties_trampoline::<Self, F> as *const (), notify_element_properties_trampoline::<Self, F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

View file

@ -445,7 +445,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::audio-video-offset\0".as_ptr() as *const _, c"notify::audio-video-offset".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_audio_video_offset_trampoline::<F> as *const (), notify_audio_video_offset_trampoline::<F> as *const (),
)), )),
@ -473,7 +473,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::current-audio-track\0".as_ptr() as *const _, c"notify::current-audio-track".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_current_audio_track_trampoline::<F> as *const (), notify_current_audio_track_trampoline::<F> as *const (),
)), )),
@ -501,7 +501,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::current-subtitle-track\0".as_ptr() as *const _, c"notify::current-subtitle-track".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_current_subtitle_track_trampoline::<F> as *const (), notify_current_subtitle_track_trampoline::<F> as *const (),
)), )),
@ -529,7 +529,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::current-video-track\0".as_ptr() as *const _, c"notify::current-video-track".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_current_video_track_trampoline::<F> as *const (), notify_current_video_track_trampoline::<F> as *const (),
)), )),
@ -555,7 +555,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::duration\0".as_ptr() as *const _, c"notify::duration".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_duration_trampoline::<F> as *const (), notify_duration_trampoline::<F> as *const (),
)), )),
@ -581,7 +581,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::media-info\0".as_ptr() as *const _, c"notify::media-info".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_media_info_trampoline::<F> as *const (), notify_media_info_trampoline::<F> as *const (),
)), )),
@ -607,7 +607,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::mute\0".as_ptr() as *const _, c"notify::mute".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_mute_trampoline::<F> as *const (), notify_mute_trampoline::<F> as *const (),
)), )),
@ -633,7 +633,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::pipeline\0".as_ptr() as *const _, c"notify::pipeline".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_pipeline_trampoline::<F> as *const (), notify_pipeline_trampoline::<F> as *const (),
)), )),
@ -659,7 +659,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::position\0".as_ptr() as *const _, c"notify::position".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_position_trampoline::<F> as *const (), notify_position_trampoline::<F> as *const (),
)), )),
@ -685,7 +685,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::rate\0".as_ptr() as *const _, c"notify::rate".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_rate_trampoline::<F> as *const (), notify_rate_trampoline::<F> as *const (),
)), )),
@ -713,7 +713,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::subtitle-video-offset\0".as_ptr() as *const _, c"notify::subtitle-video-offset".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_subtitle_video_offset_trampoline::<F> as *const (), notify_subtitle_video_offset_trampoline::<F> as *const (),
)), )),
@ -739,7 +739,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::suburi\0".as_ptr() as *const _, c"notify::suburi".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_suburi_trampoline::<F> as *const (), notify_suburi_trampoline::<F> as *const (),
)), )),
@ -765,7 +765,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::uri\0".as_ptr() as *const _, c"notify::uri".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_uri_trampoline::<F> as *const (), notify_uri_trampoline::<F> as *const (),
)), )),
@ -793,7 +793,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::video-multiview-flags\0".as_ptr() as *const _, c"notify::video-multiview-flags".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_video_multiview_flags_trampoline::<F> as *const (), notify_video_multiview_flags_trampoline::<F> as *const (),
)), )),
@ -821,7 +821,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::video-multiview-mode\0".as_ptr() as *const _, c"notify::video-multiview-mode".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_video_multiview_mode_trampoline::<F> as *const (), notify_video_multiview_mode_trampoline::<F> as *const (),
)), )),
@ -849,7 +849,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::video-renderer\0".as_ptr() as *const _, c"notify::video-renderer".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_video_renderer_trampoline::<F> as *const (), notify_video_renderer_trampoline::<F> as *const (),
)), )),
@ -875,7 +875,7 @@ impl Play {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::volume\0".as_ptr() as *const _, c"notify::volume".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_volume_trampoline::<F> as *const (), notify_volume_trampoline::<F> as *const (),
)), )),

View file

@ -71,7 +71,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"buffering\0".as_ptr() as *const _, c"buffering".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
buffering_trampoline::<F> as *const (), buffering_trampoline::<F> as *const (),
)), )),
@ -95,7 +95,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"end-of-stream\0".as_ptr() as *const _, c"end-of-stream".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
end_of_stream_trampoline::<F> as *const (), end_of_stream_trampoline::<F> as *const (),
)), )),
@ -130,7 +130,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"error\0".as_ptr() as *const _, c"error".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
error_trampoline::<F> as *const (), error_trampoline::<F> as *const (),
)), )),
@ -158,7 +158,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"media-info-updated\0".as_ptr() as *const _, c"media-info-updated".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
media_info_updated_trampoline::<F> as *const (), media_info_updated_trampoline::<F> as *const (),
)), )),
@ -186,7 +186,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"mute-changed\0".as_ptr() as *const _, c"mute-changed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
mute_changed_trampoline::<F> as *const (), mute_changed_trampoline::<F> as *const (),
)), )),
@ -214,7 +214,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"state-changed\0".as_ptr() as *const _, c"state-changed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
state_changed_trampoline::<F> as *const (), state_changed_trampoline::<F> as *const (),
)), )),
@ -242,7 +242,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"uri-loaded\0".as_ptr() as *const _, c"uri-loaded".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
uri_loaded_trampoline::<F> as *const (), uri_loaded_trampoline::<F> as *const (),
)), )),
@ -271,7 +271,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"video-dimensions-changed\0".as_ptr() as *const _, c"video-dimensions-changed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
video_dimensions_changed_trampoline::<F> as *const (), video_dimensions_changed_trampoline::<F> as *const (),
)), )),
@ -299,7 +299,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"volume-changed\0".as_ptr() as *const _, c"volume-changed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
volume_changed_trampoline::<F> as *const (), volume_changed_trampoline::<F> as *const (),
)), )),
@ -334,7 +334,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"warning\0".as_ptr() as *const _, c"warning".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
warning_trampoline::<F> as *const (), warning_trampoline::<F> as *const (),
)), )),
@ -362,7 +362,7 @@ impl PlaySignalAdapter {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::play\0".as_ptr() as *const _, c"notify::play".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_play_trampoline::<F> as *const (), notify_play_trampoline::<F> as *const (),
)), )),

View file

@ -94,7 +94,7 @@ impl PlayVideoOverlayVideoRenderer {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::video-sink\0".as_ptr() as *const _, c"notify::video-sink".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_video_sink_trampoline::<F> as *const (), notify_video_sink_trampoline::<F> as *const (),
)), )),
@ -122,7 +122,7 @@ impl PlayVideoOverlayVideoRenderer {
let f: Box_<F> = Box_::new(f); let f: Box_<F> = Box_::new(f);
connect_raw( connect_raw(
self.as_ptr() as *mut _, self.as_ptr() as *mut _,
b"notify::window-handle\0".as_ptr() as *const _, c"notify::window-handle".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>( Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_window_handle_trampoline::<F> as *const (), notify_window_handle_trampoline::<F> as *const (),
)), )),

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb) Generated by gir (https://github.com/gtk-rs/gir @ 8c3c93b02091)
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7) from gir-files (https://github.com/gtk-rs/gir-files @ b19fc8902d65)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 997055bae2a2) from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 038f3b86ef06)

Some files were not shown because too many files have changed in this diff Show more