Regenerate with latest gir

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1244>
This commit is contained in:
Sebastian Dröge 2023-04-06 15:19:03 +03:00
parent 8b0398aa32
commit ce0ddc7be0
111 changed files with 237 additions and 237 deletions

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -176,7 +176,7 @@ impl AppSink {
#[doc(alias = "buffer-list")]
pub fn set_buffer_list(&self, buffer_list: bool) {
glib::ObjectExt::set_property(self, "buffer-list", &buffer_list)
glib::ObjectExt::set_property(self, "buffer-list", buffer_list)
}
#[doc(alias = "buffer-list")]

View file

@ -214,7 +214,7 @@ impl AppSrc {
}
pub fn set_block(&self, block: bool) {
glib::ObjectExt::set_property(self, "block", &block)
glib::ObjectExt::set_property(self, "block", block)
}
pub fn format(&self) -> gst::Format {
@ -222,7 +222,7 @@ impl AppSrc {
}
pub fn set_format(&self, format: gst::Format) {
glib::ObjectExt::set_property(self, "format", &format)
glib::ObjectExt::set_property(self, "format", format)
}
#[cfg(any(feature = "v1_18", feature = "dox"))]
@ -236,7 +236,7 @@ impl AppSrc {
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
#[doc(alias = "handle-segment-change")]
pub fn set_handle_segment_change(&self, handle_segment_change: bool) {
glib::ObjectExt::set_property(self, "handle-segment-change", &handle_segment_change)
glib::ObjectExt::set_property(self, "handle-segment-change", handle_segment_change)
}
#[doc(alias = "is-live")]
@ -246,7 +246,7 @@ impl AppSrc {
#[doc(alias = "is-live")]
pub fn set_is_live(&self, is_live: bool) {
glib::ObjectExt::set_property(self, "is-live", &is_live)
glib::ObjectExt::set_property(self, "is-live", is_live)
}
#[doc(alias = "max-latency")]
@ -256,7 +256,7 @@ impl AppSrc {
#[doc(alias = "max-latency")]
pub fn set_max_latency(&self, max_latency: i64) {
glib::ObjectExt::set_property(self, "max-latency", &max_latency)
glib::ObjectExt::set_property(self, "max-latency", max_latency)
}
#[doc(alias = "min-latency")]
@ -266,7 +266,7 @@ impl AppSrc {
#[doc(alias = "min-latency")]
pub fn set_min_latency(&self, min_latency: i64) {
glib::ObjectExt::set_property(self, "min-latency", &min_latency)
glib::ObjectExt::set_property(self, "min-latency", min_latency)
}
#[doc(alias = "min-percent")]
@ -276,7 +276,7 @@ impl AppSrc {
#[doc(alias = "min-percent")]
pub fn set_min_percent(&self, min_percent: u32) {
glib::ObjectExt::set_property(self, "min-percent", &min_percent)
glib::ObjectExt::set_property(self, "min-percent", min_percent)
}
#[doc(alias = "block")]

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -70,7 +70,7 @@ impl<O: IsA<AudioAggregator>> AudioAggregatorExt for O {
}
fn set_alignment_threshold(&self, alignment_threshold: u64) {
glib::ObjectExt::set_property(self.as_ref(), "alignment-threshold", &alignment_threshold)
glib::ObjectExt::set_property(self.as_ref(), "alignment-threshold", alignment_threshold)
}
fn discont_wait(&self) -> u64 {
@ -78,7 +78,7 @@ impl<O: IsA<AudioAggregator>> AudioAggregatorExt for O {
}
fn set_discont_wait(&self, discont_wait: u64) {
glib::ObjectExt::set_property(self.as_ref(), "discont-wait", &discont_wait)
glib::ObjectExt::set_property(self.as_ref(), "discont-wait", discont_wait)
}
fn output_buffer_duration(&self) -> u64 {
@ -89,7 +89,7 @@ impl<O: IsA<AudioAggregator>> AudioAggregatorExt for O {
glib::ObjectExt::set_property(
self.as_ref(),
"output-buffer-duration",
&output_buffer_duration,
output_buffer_duration,
)
}

View file

@ -47,7 +47,7 @@ impl<O: IsA<AudioAggregatorConvertPad>> AudioAggregatorConvertPadExt for O {
//}
//fn set_converter_config(&self, converter_config: /*Ignored*/Option<&gst::Structure>) {
// glib::ObjectExt::set_property(self.as_ref(),"converter-config", &converter_config)
// glib::ObjectExt::set_property(self.as_ref(),"converter-config", converter_config)
//}
fn connect_converter_config_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -60,7 +60,7 @@ impl<O: IsA<AudioAggregatorPad>> AudioAggregatorPadExt for O {
#[cfg(any(feature = "v1_20", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))]
fn set_qos_messages(&self, qos_messages: bool) {
glib::ObjectExt::set_property(self.as_ref(), "qos-messages", &qos_messages)
glib::ObjectExt::set_property(self.as_ref(), "qos-messages", qos_messages)
}
#[cfg(any(feature = "v1_20", feature = "dox"))]

View file

@ -232,7 +232,7 @@ impl<O: IsA<AudioBaseSink>> AudioBaseSinkExt for O {
}
fn set_buffer_time(&self, buffer_time: i64) {
glib::ObjectExt::set_property(self.as_ref(), "buffer-time", &buffer_time)
glib::ObjectExt::set_property(self.as_ref(), "buffer-time", buffer_time)
}
fn can_activate_pull(&self) -> bool {
@ -240,7 +240,7 @@ impl<O: IsA<AudioBaseSink>> AudioBaseSinkExt for O {
}
fn set_can_activate_pull(&self, can_activate_pull: bool) {
glib::ObjectExt::set_property(self.as_ref(), "can-activate-pull", &can_activate_pull)
glib::ObjectExt::set_property(self.as_ref(), "can-activate-pull", can_activate_pull)
}
fn latency_time(&self) -> i64 {
@ -248,7 +248,7 @@ impl<O: IsA<AudioBaseSink>> AudioBaseSinkExt for O {
}
fn set_latency_time(&self, latency_time: i64) {
glib::ObjectExt::set_property(self.as_ref(), "latency-time", &latency_time)
glib::ObjectExt::set_property(self.as_ref(), "latency-time", latency_time)
}
fn connect_alignment_threshold_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -142,7 +142,7 @@ impl<O: IsA<AudioBaseSrc>> AudioBaseSrcExt for O {
}
fn set_buffer_time(&self, buffer_time: i64) {
glib::ObjectExt::set_property(self.as_ref(), "buffer-time", &buffer_time)
glib::ObjectExt::set_property(self.as_ref(), "buffer-time", buffer_time)
}
fn latency_time(&self) -> i64 {
@ -150,7 +150,7 @@ impl<O: IsA<AudioBaseSrc>> AudioBaseSrcExt for O {
}
fn set_latency_time(&self, latency_time: i64) {
glib::ObjectExt::set_property(self.as_ref(), "latency-time", &latency_time)
glib::ObjectExt::set_property(self.as_ref(), "latency-time", latency_time)
}
fn connect_actual_buffer_time_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -291,7 +291,7 @@ impl<O: IsA<Aggregator>> AggregatorExt for O {
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
fn set_emit_signals(&self, emit_signals: bool) {
glib::ObjectExt::set_property(self.as_ref(), "emit-signals", &emit_signals)
glib::ObjectExt::set_property(self.as_ref(), "emit-signals", emit_signals)
}
fn start_time(&self) -> u64 {
@ -299,7 +299,7 @@ impl<O: IsA<Aggregator>> AggregatorExt for O {
}
fn set_start_time(&self, start_time: u64) {
glib::ObjectExt::set_property(self.as_ref(), "start-time", &start_time)
glib::ObjectExt::set_property(self.as_ref(), "start-time", start_time)
}
#[cfg(any(feature = "v1_18", feature = "dox"))]
@ -311,7 +311,7 @@ impl<O: IsA<Aggregator>> AggregatorExt for O {
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
fn set_start_time_selection(&self, start_time_selection: AggregatorStartTimeSelection) {
glib::ObjectExt::set_property(self.as_ref(), "start-time-selection", &start_time_selection)
glib::ObjectExt::set_property(self.as_ref(), "start-time-selection", start_time_selection)
}
#[cfg(any(feature = "v1_18", feature = "dox"))]

View file

@ -136,7 +136,7 @@ impl<O: IsA<AggregatorPad>> AggregatorPadExt for O {
#[cfg(any(feature = "v1_16", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
fn set_emit_signals(&self, emit_signals: bool) {
glib::ObjectExt::set_property(self.as_ref(), "emit-signals", &emit_signals)
glib::ObjectExt::set_property(self.as_ref(), "emit-signals", emit_signals)
}
fn connect_buffer_consumed<F: Fn(&Self, &gst::Buffer) + Send + Sync + 'static>(

View file

@ -185,7 +185,7 @@ impl<O: IsA<BaseParse>> BaseParseExt for O {
}
fn set_disable_passthrough(&self, disable_passthrough: bool) {
glib::ObjectExt::set_property(self.as_ref(), "disable-passthrough", &disable_passthrough)
glib::ObjectExt::set_property(self.as_ref(), "disable-passthrough", disable_passthrough)
}
fn connect_disable_passthrough_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -404,7 +404,7 @@ impl<O: IsA<BaseSink>> BaseSinkExt for O {
}
fn set_async(&self, async_: bool) {
glib::ObjectExt::set_property(self.as_ref(), "async", &async_)
glib::ObjectExt::set_property(self.as_ref(), "async", async_)
}
fn enables_last_sample(&self) -> bool {
@ -412,7 +412,7 @@ impl<O: IsA<BaseSink>> BaseSinkExt for O {
}
fn set_enable_last_sample(&self, enable_last_sample: bool) {
glib::ObjectExt::set_property(self.as_ref(), "enable-last-sample", &enable_last_sample)
glib::ObjectExt::set_property(self.as_ref(), "enable-last-sample", enable_last_sample)
}
fn is_qos(&self) -> bool {
@ -420,7 +420,7 @@ impl<O: IsA<BaseSink>> BaseSinkExt for O {
}
fn set_qos(&self, qos: bool) {
glib::ObjectExt::set_property(self.as_ref(), "qos", &qos)
glib::ObjectExt::set_property(self.as_ref(), "qos", qos)
}
fn connect_async_notify<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {

View file

@ -254,7 +254,7 @@ impl<O: IsA<BaseSrc>> BaseSrcExt for O {
}
fn set_num_buffers(&self, num_buffers: i32) {
glib::ObjectExt::set_property(self.as_ref(), "num-buffers", &num_buffers)
glib::ObjectExt::set_property(self.as_ref(), "num-buffers", num_buffers)
}
fn is_typefind(&self) -> bool {
@ -262,7 +262,7 @@ impl<O: IsA<BaseSrc>> BaseSrcExt for O {
}
fn set_typefind(&self, typefind: bool) {
glib::ObjectExt::set_property(self.as_ref(), "typefind", &typefind)
glib::ObjectExt::set_property(self.as_ref(), "typefind", typefind)
}
fn connect_blocksize_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -185,7 +185,7 @@ impl<O: IsA<BaseTransform>> BaseTransformExt for O {
}
fn set_qos(&self, qos: bool) {
glib::ObjectExt::set_property(self.as_ref(), "qos", &qos)
glib::ObjectExt::set_property(self.as_ref(), "qos", qos)
}
fn connect_qos_notify<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -86,7 +86,7 @@ impl TestClock {
#[doc(alias = "clock-type")]
pub fn set_clock_type(&self, clock_type: gst::ClockType) {
glib::ObjectExt::set_property(self, "clock-type", &clock_type)
glib::ObjectExt::set_property(self, "clock-type", clock_type)
}
#[doc(alias = "start-time")]

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -105,7 +105,7 @@ impl<O: IsA<ARGBControlBinding>> ARGBControlBindingExt for O {
}
fn set_control_source_a<P: IsA<gst::ControlSource>>(&self, control_source_a: Option<&P>) {
glib::ObjectExt::set_property(self.as_ref(), "control-source-a", &control_source_a)
glib::ObjectExt::set_property(self.as_ref(), "control-source-a", control_source_a)
}
fn control_source_b(&self) -> Option<gst::ControlSource> {
@ -113,7 +113,7 @@ impl<O: IsA<ARGBControlBinding>> ARGBControlBindingExt for O {
}
fn set_control_source_b<P: IsA<gst::ControlSource>>(&self, control_source_b: Option<&P>) {
glib::ObjectExt::set_property(self.as_ref(), "control-source-b", &control_source_b)
glib::ObjectExt::set_property(self.as_ref(), "control-source-b", control_source_b)
}
fn control_source_g(&self) -> Option<gst::ControlSource> {
@ -121,7 +121,7 @@ impl<O: IsA<ARGBControlBinding>> ARGBControlBindingExt for O {
}
fn set_control_source_g<P: IsA<gst::ControlSource>>(&self, control_source_g: Option<&P>) {
glib::ObjectExt::set_property(self.as_ref(), "control-source-g", &control_source_g)
glib::ObjectExt::set_property(self.as_ref(), "control-source-g", control_source_g)
}
fn control_source_r(&self) -> Option<gst::ControlSource> {
@ -129,7 +129,7 @@ impl<O: IsA<ARGBControlBinding>> ARGBControlBindingExt for O {
}
fn set_control_source_r<P: IsA<gst::ControlSource>>(&self, control_source_r: Option<&P>) {
glib::ObjectExt::set_property(self.as_ref(), "control-source-r", &control_source_r)
glib::ObjectExt::set_property(self.as_ref(), "control-source-r", control_source_r)
}
fn connect_control_source_a_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -86,7 +86,7 @@ impl<O: IsA<DirectControlBinding>> DirectControlBindingExt for O {
}
fn set_control_source<P: IsA<gst::ControlSource>>(&self, control_source: Option<&P>) {
glib::ObjectExt::set_property(self.as_ref(), "control-source", &control_source)
glib::ObjectExt::set_property(self.as_ref(), "control-source", control_source)
}
fn connect_control_source_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -57,7 +57,7 @@ impl<O: IsA<InterpolationControlSource>> InterpolationControlSourceExt for O {
}
fn set_mode(&self, mode: InterpolationMode) {
glib::ObjectExt::set_property(self.as_ref(), "mode", &mode)
glib::ObjectExt::set_property(self.as_ref(), "mode", mode)
}
fn connect_mode_notify<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {

View file

@ -96,7 +96,7 @@ impl<O: IsA<LFOControlSource>> LFOControlSourceExt for O {
}
fn set_amplitude(&self, amplitude: f64) {
glib::ObjectExt::set_property(self.as_ref(), "amplitude", &amplitude)
glib::ObjectExt::set_property(self.as_ref(), "amplitude", amplitude)
}
fn frequency(&self) -> f64 {
@ -104,7 +104,7 @@ impl<O: IsA<LFOControlSource>> LFOControlSourceExt for O {
}
fn set_frequency(&self, frequency: f64) {
glib::ObjectExt::set_property(self.as_ref(), "frequency", &frequency)
glib::ObjectExt::set_property(self.as_ref(), "frequency", frequency)
}
fn offset(&self) -> f64 {
@ -112,7 +112,7 @@ impl<O: IsA<LFOControlSource>> LFOControlSourceExt for O {
}
fn set_offset(&self, offset: f64) {
glib::ObjectExt::set_property(self.as_ref(), "offset", &offset)
glib::ObjectExt::set_property(self.as_ref(), "offset", offset)
}
fn timeshift(&self) -> u64 {
@ -120,7 +120,7 @@ impl<O: IsA<LFOControlSource>> LFOControlSourceExt for O {
}
fn set_timeshift(&self, timeshift: u64) {
glib::ObjectExt::set_property(self.as_ref(), "timeshift", &timeshift)
glib::ObjectExt::set_property(self.as_ref(), "timeshift", timeshift)
}
fn waveform(&self) -> LFOWaveform {
@ -128,7 +128,7 @@ impl<O: IsA<LFOControlSource>> LFOControlSourceExt for O {
}
fn set_waveform(&self, waveform: LFOWaveform) {
glib::ObjectExt::set_property(self.as_ref(), "waveform", &waveform)
glib::ObjectExt::set_property(self.as_ref(), "waveform", waveform)
}
fn connect_amplitude_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -59,7 +59,7 @@ impl<O: IsA<TriggerControlSource>> TriggerControlSourceExt for O {
}
fn set_tolerance(&self, tolerance: i64) {
glib::ObjectExt::set_property(self.as_ref(), "tolerance", &tolerance)
glib::ObjectExt::set_property(self.as_ref(), "tolerance", tolerance)
}
fn connect_tolerance_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -86,7 +86,7 @@ impl MarkerList {
#[cfg(any(feature = "v1_20", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))]
pub fn set_flags(&self, flags: MarkerFlags) {
glib::ObjectExt::set_property(self, "flags", &flags)
glib::ObjectExt::set_property(self, "flags", flags)
}
#[cfg(any(feature = "v1_18", feature = "dox"))]

View file

@ -255,7 +255,7 @@ impl<O: IsA<Pipeline>> GESPipelineExt for O {
}
fn set_audio_filter<P: IsA<gst::Element>>(&self, audio_filter: Option<&P>) {
glib::ObjectExt::set_property(self.as_ref(), "audio-filter", &audio_filter)
glib::ObjectExt::set_property(self.as_ref(), "audio-filter", audio_filter)
}
fn audio_sink(&self) -> Option<gst::Element> {
@ -263,7 +263,7 @@ impl<O: IsA<Pipeline>> GESPipelineExt for O {
}
fn set_audio_sink<P: IsA<gst::Element>>(&self, audio_sink: Option<&P>) {
glib::ObjectExt::set_property(self.as_ref(), "audio-sink", &audio_sink)
glib::ObjectExt::set_property(self.as_ref(), "audio-sink", audio_sink)
}
fn timeline(&self) -> Option<Timeline> {
@ -275,7 +275,7 @@ impl<O: IsA<Pipeline>> GESPipelineExt for O {
}
fn set_video_filter<P: IsA<gst::Element>>(&self, video_filter: Option<&P>) {
glib::ObjectExt::set_property(self.as_ref(), "video-filter", &video_filter)
glib::ObjectExt::set_property(self.as_ref(), "video-filter", video_filter)
}
fn video_sink(&self) -> Option<gst::Element> {
@ -283,7 +283,7 @@ impl<O: IsA<Pipeline>> GESPipelineExt for O {
}
fn set_video_sink<P: IsA<gst::Element>>(&self, video_sink: Option<&P>) {
glib::ObjectExt::set_property(self.as_ref(), "video-sink", &video_sink)
glib::ObjectExt::set_property(self.as_ref(), "video-sink", video_sink)
}
fn connect_audio_filter_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {

View file

@ -134,7 +134,7 @@ impl<O: IsA<TestClip>> TestClipExt for O {
}
fn set_freq(&self, freq: f64) {
glib::ObjectExt::set_property(self.as_ref(), "freq", &freq)
glib::ObjectExt::set_property(self.as_ref(), "freq", freq)
}
fn connect_freq_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {

View file

@ -209,11 +209,11 @@ impl<O: IsA<TextOverlayClip>> TextOverlayClipExt for O {
}
fn set_halignment(&self, halignment: TextHAlign) {
glib::ObjectExt::set_property(self.as_ref(), "halignment", &halignment)
glib::ObjectExt::set_property(self.as_ref(), "halignment", halignment)
}
fn set_valignment(&self, valignment: TextVAlign) {
glib::ObjectExt::set_property(self.as_ref(), "valignment", &valignment)
glib::ObjectExt::set_property(self.as_ref(), "valignment", valignment)
}
fn connect_color_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {

View file

@ -747,7 +747,7 @@ impl<O: IsA<TimelineElement>> TimelineElementExt for O {
}
fn set_in_point(&self, in_point: u64) {
glib::ObjectExt::set_property(self.as_ref(), "in-point", &in_point)
glib::ObjectExt::set_property(self.as_ref(), "in-point", in_point)
}
fn is_serialize(&self) -> bool {
@ -755,7 +755,7 @@ impl<O: IsA<TimelineElement>> TimelineElementExt for O {
}
fn set_serialize(&self, serialize: bool) {
glib::ObjectExt::set_property(self.as_ref(), "serialize", &serialize)
glib::ObjectExt::set_property(self.as_ref(), "serialize", serialize)
}
#[cfg(any(feature = "v1_18", feature = "dox"))]

View file

@ -287,7 +287,7 @@ impl<O: IsA<Track>> GESTrackExt for O {
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
fn set_id(&self, id: Option<&str>) {
glib::ObjectExt::set_property(self.as_ref(), "id", &id)
glib::ObjectExt::set_property(self.as_ref(), "id", id)
}
fn get_property_restriction_caps(&self) -> Option<gst::Caps> {

View file

@ -55,7 +55,7 @@ impl<O: IsA<TransitionClip>> TransitionClipExt for O {
}
fn set_vtype(&self, vtype: VideoStandardTransitionType) {
glib::ObjectExt::set_property(self.as_ref(), "vtype", &vtype)
glib::ObjectExt::set_property(self.as_ref(), "vtype", vtype)
}
fn connect_vtype_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {

View file

@ -151,7 +151,7 @@ impl<O: IsA<UriClipAsset>> UriClipAssetExt for O {
}
fn set_duration(&self, duration: u64) {
glib::ObjectExt::set_property(self.as_ref(), "duration", &duration)
glib::ObjectExt::set_property(self.as_ref(), "duration", duration)
}
#[cfg(any(feature = "v1_18", feature = "dox"))]

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -140,7 +140,7 @@ impl<O: IsA<VideoTransition>> VideoTransitionExt for O {
}
fn set_invert(&self, invert: bool) {
glib::ObjectExt::set_property(self.as_ref(), "invert", &invert)
glib::ObjectExt::set_property(self.as_ref(), "invert", invert)
}
fn connect_border_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -46,7 +46,7 @@ impl<O: IsA<GLBaseSrc>> GLBaseSrcExt for O {
}
fn set_timestamp_offset(&self, timestamp_offset: i64) {
glib::ObjectExt::set_property(self.as_ref(), "timestamp-offset", &timestamp_offset)
glib::ObjectExt::set_property(self.as_ref(), "timestamp-offset", timestamp_offset)
}
fn connect_timestamp_offset_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -55,7 +55,7 @@ impl GLOverlayCompositor {
#[cfg(any(feature = "v1_16", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
pub fn set_yinvert(&self, yinvert: bool) {
glib::ObjectExt::set_property(self, "yinvert", &yinvert)
glib::ObjectExt::set_property(self, "yinvert", yinvert)
}
#[doc(alias = "gst_gl_overlay_compositor_add_caps")]

View file

@ -96,7 +96,7 @@ impl GLViewConvert {
#[doc(alias = "downmix-mode")]
pub fn set_downmix_mode(&self, downmix_mode: GLStereoDownmix) {
glib::ObjectExt::set_property(self, "downmix-mode", &downmix_mode)
glib::ObjectExt::set_property(self, "downmix-mode", downmix_mode)
}
#[doc(alias = "input-flags-override")]
@ -106,7 +106,7 @@ impl GLViewConvert {
#[doc(alias = "input-flags-override")]
pub fn set_input_flags_override(&self, input_flags_override: gst_video::VideoMultiviewFlags) {
glib::ObjectExt::set_property(self, "input-flags-override", &input_flags_override)
glib::ObjectExt::set_property(self, "input-flags-override", input_flags_override)
}
#[doc(alias = "input-mode-override")]
@ -116,7 +116,7 @@ impl GLViewConvert {
#[doc(alias = "input-mode-override")]
pub fn set_input_mode_override(&self, input_mode_override: gst_video::VideoMultiviewMode) {
glib::ObjectExt::set_property(self, "input-mode-override", &input_mode_override)
glib::ObjectExt::set_property(self, "input-mode-override", input_mode_override)
}
#[doc(alias = "output-flags-override")]
@ -126,7 +126,7 @@ impl GLViewConvert {
#[doc(alias = "output-flags-override")]
pub fn set_output_flags_override(&self, output_flags_override: gst_video::VideoMultiviewFlags) {
glib::ObjectExt::set_property(self, "output-flags-override", &output_flags_override)
glib::ObjectExt::set_property(self, "output-flags-override", output_flags_override)
}
#[doc(alias = "output-mode-override")]
@ -136,7 +136,7 @@ impl GLViewConvert {
#[doc(alias = "output-mode-override")]
pub fn set_output_mode_override(&self, output_mode_override: gst_video::VideoMultiviewMode) {
glib::ObjectExt::set_property(self, "output-mode-override", &output_mode_override)
glib::ObjectExt::set_property(self, "output-mode-override", output_mode_override)
}
#[doc(alias = "downmix-mode")]

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -44,7 +44,7 @@ impl NetClientClock {
}
pub fn set_address(&self, address: Option<&str>) {
glib::ObjectExt::set_property(self, "address", &address)
glib::ObjectExt::set_property(self, "address", address)
}
#[doc(alias = "base-time")]
@ -57,7 +57,7 @@ impl NetClientClock {
}
pub fn set_bus<P: IsA<gst::Bus>>(&self, bus: Option<&P>) {
glib::ObjectExt::set_property(self, "bus", &bus)
glib::ObjectExt::set_property(self, "bus", bus)
}
#[doc(alias = "internal-clock")]
@ -72,7 +72,7 @@ impl NetClientClock {
#[doc(alias = "minimum-update-interval")]
pub fn set_minimum_update_interval(&self, minimum_update_interval: u64) {
glib::ObjectExt::set_property(self, "minimum-update-interval", &minimum_update_interval)
glib::ObjectExt::set_property(self, "minimum-update-interval", minimum_update_interval)
}
pub fn port(&self) -> i32 {
@ -80,7 +80,7 @@ impl NetClientClock {
}
pub fn set_port(&self, port: i32) {
glib::ObjectExt::set_property(self, "port", &port)
glib::ObjectExt::set_property(self, "port", port)
}
#[doc(alias = "qos-dscp")]
@ -90,7 +90,7 @@ impl NetClientClock {
#[doc(alias = "qos-dscp")]
pub fn set_qos_dscp(&self, qos_dscp: i32) {
glib::ObjectExt::set_property(self, "qos-dscp", &qos_dscp)
glib::ObjectExt::set_property(self, "qos-dscp", qos_dscp)
}
#[doc(alias = "round-trip-limit")]
@ -100,7 +100,7 @@ impl NetClientClock {
#[doc(alias = "round-trip-limit")]
pub fn set_round_trip_limit(&self, round_trip_limit: u64) {
glib::ObjectExt::set_property(self, "round-trip-limit", &round_trip_limit)
glib::ObjectExt::set_property(self, "round-trip-limit", round_trip_limit)
}
#[doc(alias = "address")]

View file

@ -42,7 +42,7 @@ impl NetTimeProvider {
}
pub fn set_active(&self, active: bool) {
glib::ObjectExt::set_property(self, "active", &active)
glib::ObjectExt::set_property(self, "active", active)
}
pub fn address(&self) -> Option<glib::GString> {
@ -64,7 +64,7 @@ impl NetTimeProvider {
#[doc(alias = "qos-dscp")]
pub fn set_qos_dscp(&self, qos_dscp: i32) {
glib::ObjectExt::set_property(self, "qos-dscp", &qos_dscp)
glib::ObjectExt::set_property(self, "qos-dscp", qos_dscp)
}
#[doc(alias = "active")]

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -54,7 +54,7 @@ impl<O: IsA<AudioVisualizer>> AudioVisualizerExt for O {
}
fn set_shade_amount(&self, shade_amount: u32) {
glib::ObjectExt::set_property(self.as_ref(), "shade-amount", &shade_amount)
glib::ObjectExt::set_property(self.as_ref(), "shade-amount", shade_amount)
}
fn shader(&self) -> AudioVisualizerShader {
@ -62,7 +62,7 @@ impl<O: IsA<AudioVisualizer>> AudioVisualizerExt for O {
}
fn set_shader(&self, shader: AudioVisualizerShader) {
glib::ObjectExt::set_property(self.as_ref(), "shader", &shader)
glib::ObjectExt::set_property(self.as_ref(), "shader", shader)
}
fn connect_shade_amount_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -87,7 +87,7 @@ impl Discoverer {
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
#[doc(alias = "use-cache")]
pub fn set_use_cache(&self, use_cache: bool) {
glib::ObjectExt::set_property(self, "use-cache", &use_cache)
glib::ObjectExt::set_property(self, "use-cache", use_cache)
}
#[doc(alias = "discovered")]

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -332,7 +332,7 @@ impl Play {
}
pub fn set_suburi(&self, suburi: Option<&str>) {
glib::ObjectExt::set_property(self, "suburi", &suburi)
glib::ObjectExt::set_property(self, "suburi", suburi)
}
#[doc(alias = "video-multiview-flags")]
@ -342,7 +342,7 @@ impl Play {
#[doc(alias = "video-multiview-flags")]
pub fn set_video_multiview_flags(&self, video_multiview_flags: gst_video::VideoMultiviewFlags) {
glib::ObjectExt::set_property(self, "video-multiview-flags", &video_multiview_flags)
glib::ObjectExt::set_property(self, "video-multiview-flags", video_multiview_flags)
}
#[doc(alias = "video-multiview-mode")]
@ -355,7 +355,7 @@ impl Play {
&self,
video_multiview_mode: gst_video::VideoMultiviewFramePacking,
) {
glib::ObjectExt::set_property(self, "video-multiview-mode", &video_multiview_mode)
glib::ObjectExt::set_property(self, "video-multiview-mode", video_multiview_mode)
}
#[doc(alias = "video-renderer")]
@ -365,7 +365,7 @@ impl Play {
#[doc(alias = "video-renderer")]
pub fn set_video_renderer<P: IsA<PlayVideoRenderer>>(&self, video_renderer: Option<&P>) {
glib::ObjectExt::set_property(self, "video-renderer", &video_renderer)
glib::ObjectExt::set_property(self, "video-renderer", video_renderer)
}
#[doc(alias = "gst_play_get_audio_streams")]

View file

@ -72,7 +72,7 @@ impl PlayVideoOverlayVideoRenderer {
#[doc(alias = "video-sink")]
pub fn set_video_sink<P: IsA<gst::Element>>(&self, video_sink: Option<&P>) {
glib::ObjectExt::set_property(self, "video-sink", &video_sink)
glib::ObjectExt::set_property(self, "video-sink", video_sink)
}
#[doc(alias = "video-sink")]

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -342,7 +342,7 @@ impl Player {
}
pub fn set_suburi(&self, suburi: Option<&str>) {
glib::ObjectExt::set_property(self, "suburi", &suburi)
glib::ObjectExt::set_property(self, "suburi", suburi)
}
#[doc(alias = "video-multiview-flags")]
@ -352,7 +352,7 @@ impl Player {
#[doc(alias = "video-multiview-flags")]
pub fn set_video_multiview_flags(&self, video_multiview_flags: gst_video::VideoMultiviewFlags) {
glib::ObjectExt::set_property(self, "video-multiview-flags", &video_multiview_flags)
glib::ObjectExt::set_property(self, "video-multiview-flags", video_multiview_flags)
}
#[doc(alias = "video-multiview-mode")]
@ -365,7 +365,7 @@ impl Player {
&self,
video_multiview_mode: gst_video::VideoMultiviewFramePacking,
) {
glib::ObjectExt::set_property(self, "video-multiview-mode", &video_multiview_mode)
glib::ObjectExt::set_property(self, "video-multiview-mode", video_multiview_mode)
}
#[doc(alias = "video-renderer")]

View file

@ -72,7 +72,7 @@ impl PlayerVideoOverlayVideoRenderer {
#[doc(alias = "video-sink")]
pub fn set_video_sink<P: IsA<gst::Element>>(&self, video_sink: Option<&P>) {
glib::ObjectExt::set_property(self, "video-sink", &video_sink)
glib::ObjectExt::set_property(self, "video-sink", video_sink)
}
#[doc(alias = "video-sink")]

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -192,7 +192,7 @@ impl<O: IsA<RTPBaseDepayload>> RTPBaseDepayloadExt for O {
glib::ObjectExt::set_property(
self.as_ref(),
"auto-header-extension",
&auto_header_extension,
auto_header_extension,
)
}
@ -205,7 +205,7 @@ impl<O: IsA<RTPBaseDepayload>> RTPBaseDepayloadExt for O {
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
fn set_max_reorder(&self, max_reorder: i32) {
glib::ObjectExt::set_property(self.as_ref(), "max-reorder", &max_reorder)
glib::ObjectExt::set_property(self.as_ref(), "max-reorder", max_reorder)
}
#[cfg(any(feature = "v1_16", feature = "dox"))]
@ -217,7 +217,7 @@ impl<O: IsA<RTPBaseDepayload>> RTPBaseDepayloadExt for O {
#[cfg(any(feature = "v1_16", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
fn set_source_info(&self, source_info: bool) {
glib::ObjectExt::set_property(self.as_ref(), "source-info", &source_info)
glib::ObjectExt::set_property(self.as_ref(), "source-info", source_info)
}
fn stats(&self) -> Option<gst::Structure> {

View file

@ -379,7 +379,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
glib::ObjectExt::set_property(
self.as_ref(),
"auto-header-extension",
&auto_header_extension,
auto_header_extension,
)
}
@ -388,7 +388,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
}
fn set_max_ptime(&self, max_ptime: i64) {
glib::ObjectExt::set_property(self.as_ref(), "max-ptime", &max_ptime)
glib::ObjectExt::set_property(self.as_ref(), "max-ptime", max_ptime)
}
fn min_ptime(&self) -> i64 {
@ -396,7 +396,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
}
fn set_min_ptime(&self, min_ptime: i64) {
glib::ObjectExt::set_property(self.as_ref(), "min-ptime", &min_ptime)
glib::ObjectExt::set_property(self.as_ref(), "min-ptime", min_ptime)
}
fn mtu(&self) -> u32 {
@ -404,7 +404,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
}
fn set_mtu(&self, mtu: u32) {
glib::ObjectExt::set_property(self.as_ref(), "mtu", &mtu)
glib::ObjectExt::set_property(self.as_ref(), "mtu", mtu)
}
#[cfg(any(feature = "v1_16", feature = "dox"))]
@ -419,7 +419,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
glib::ObjectExt::set_property(
self.as_ref(),
"onvif-no-rate-control",
&onvif_no_rate_control,
onvif_no_rate_control,
)
}
@ -428,7 +428,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
}
fn set_perfect_rtptime(&self, perfect_rtptime: bool) {
glib::ObjectExt::set_property(self.as_ref(), "perfect-rtptime", &perfect_rtptime)
glib::ObjectExt::set_property(self.as_ref(), "perfect-rtptime", perfect_rtptime)
}
fn pt(&self) -> u32 {
@ -436,7 +436,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
}
fn set_pt(&self, pt: u32) {
glib::ObjectExt::set_property(self.as_ref(), "pt", &pt)
glib::ObjectExt::set_property(self.as_ref(), "pt", pt)
}
fn ptime_multiple(&self) -> i64 {
@ -444,7 +444,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
}
fn set_ptime_multiple(&self, ptime_multiple: i64) {
glib::ObjectExt::set_property(self.as_ref(), "ptime-multiple", &ptime_multiple)
glib::ObjectExt::set_property(self.as_ref(), "ptime-multiple", ptime_multiple)
}
#[cfg(any(feature = "v1_18", feature = "dox"))]
@ -456,7 +456,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
fn set_scale_rtptime(&self, scale_rtptime: bool) {
glib::ObjectExt::set_property(self.as_ref(), "scale-rtptime", &scale_rtptime)
glib::ObjectExt::set_property(self.as_ref(), "scale-rtptime", scale_rtptime)
}
fn seqnum(&self) -> u32 {
@ -468,7 +468,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
}
fn set_seqnum_offset(&self, seqnum_offset: i32) {
glib::ObjectExt::set_property(self.as_ref(), "seqnum-offset", &seqnum_offset)
glib::ObjectExt::set_property(self.as_ref(), "seqnum-offset", seqnum_offset)
}
#[cfg(any(feature = "v1_16", feature = "dox"))]
@ -480,7 +480,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
#[cfg(any(feature = "v1_16", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
fn set_source_info(&self, source_info: bool) {
glib::ObjectExt::set_property(self.as_ref(), "source-info", &source_info)
glib::ObjectExt::set_property(self.as_ref(), "source-info", source_info)
}
fn ssrc(&self) -> u32 {
@ -488,7 +488,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
}
fn set_ssrc(&self, ssrc: u32) {
glib::ObjectExt::set_property(self.as_ref(), "ssrc", &ssrc)
glib::ObjectExt::set_property(self.as_ref(), "ssrc", ssrc)
}
fn stats(&self) -> Option<gst::Structure> {
@ -504,7 +504,7 @@ impl<O: IsA<RTPBasePayload>> RTPBasePayloadExt for O {
}
fn set_timestamp_offset(&self, timestamp_offset: u32) {
glib::ObjectExt::set_property(self.as_ref(), "timestamp-offset", &timestamp_offset)
glib::ObjectExt::set_property(self.as_ref(), "timestamp-offset", timestamp_offset)
}
#[cfg(any(feature = "v1_20", feature = "dox"))]

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -484,7 +484,7 @@ impl<O: IsA<RTSPClient>> RTSPClientExt for O {
}
fn set_drop_backlog(&self, drop_backlog: bool) {
glib::ObjectExt::set_property(self.as_ref(), "drop-backlog", &drop_backlog)
glib::ObjectExt::set_property(self.as_ref(), "drop-backlog", drop_backlog)
}
fn post_session_timeout(&self) -> i32 {
@ -492,7 +492,7 @@ impl<O: IsA<RTSPClient>> RTSPClientExt for O {
}
fn set_post_session_timeout(&self, post_session_timeout: i32) {
glib::ObjectExt::set_property(self.as_ref(), "post-session-timeout", &post_session_timeout)
glib::ObjectExt::set_property(self.as_ref(), "post-session-timeout", post_session_timeout)
}
fn connect_announce_request<F: Fn(&Self, &RTSPContext) + Send + Sync + 'static>(

View file

@ -1040,7 +1040,7 @@ impl<O: IsA<RTSPMedia>> RTSPMediaExt for O {
}
fn set_property_bind_mcast_address(&self, bind_mcast_address: bool) {
glib::ObjectExt::set_property(self.as_ref(), "bind-mcast-address", &bind_mcast_address)
glib::ObjectExt::set_property(self.as_ref(), "bind-mcast-address", bind_mcast_address)
}
fn get_property_dscp_qos(&self) -> i32 {
@ -1048,7 +1048,7 @@ impl<O: IsA<RTSPMedia>> RTSPMediaExt for O {
}
fn set_property_dscp_qos(&self, dscp_qos: i32) {
glib::ObjectExt::set_property(self.as_ref(), "dscp-qos", &dscp_qos)
glib::ObjectExt::set_property(self.as_ref(), "dscp-qos", dscp_qos)
}
fn get_property_max_mcast_ttl(&self) -> u32 {
@ -1056,11 +1056,11 @@ impl<O: IsA<RTSPMedia>> RTSPMediaExt for O {
}
fn set_property_max_mcast_ttl(&self, max_mcast_ttl: u32) {
glib::ObjectExt::set_property(self.as_ref(), "max-mcast-ttl", &max_mcast_ttl)
glib::ObjectExt::set_property(self.as_ref(), "max-mcast-ttl", max_mcast_ttl)
}
fn set_time_provider(&self, time_provider: bool) {
glib::ObjectExt::set_property(self.as_ref(), "time-provider", &time_provider)
glib::ObjectExt::set_property(self.as_ref(), "time-provider", time_provider)
}
#[cfg(any(feature = "v1_22", feature = "dox"))]

View file

@ -723,7 +723,7 @@ impl<O: IsA<RTSPMediaFactory>> RTSPMediaFactoryExt for O {
}
fn set_property_bind_mcast_address(&self, bind_mcast_address: bool) {
glib::ObjectExt::set_property(self.as_ref(), "bind-mcast-address", &bind_mcast_address)
glib::ObjectExt::set_property(self.as_ref(), "bind-mcast-address", bind_mcast_address)
}
fn get_property_dscp_qos(&self) -> i32 {
@ -731,7 +731,7 @@ impl<O: IsA<RTSPMediaFactory>> RTSPMediaFactoryExt for O {
}
fn set_property_dscp_qos(&self, dscp_qos: i32) {
glib::ObjectExt::set_property(self.as_ref(), "dscp-qos", &dscp_qos)
glib::ObjectExt::set_property(self.as_ref(), "dscp-qos", dscp_qos)
}
fn get_property_max_mcast_ttl(&self) -> u32 {
@ -739,7 +739,7 @@ impl<O: IsA<RTSPMediaFactory>> RTSPMediaFactoryExt for O {
}
fn set_property_max_mcast_ttl(&self, max_mcast_ttl: u32) {
glib::ObjectExt::set_property(self.as_ref(), "max-mcast-ttl", &max_mcast_ttl)
glib::ObjectExt::set_property(self.as_ref(), "max-mcast-ttl", max_mcast_ttl)
}
fn is_stop_on_disconnect(&self) -> bool {

View file

@ -86,7 +86,7 @@ impl<O: IsA<RTSPMediaFactoryURI>> RTSPMediaFactoryURIExt for O {
}
fn set_use_gstpay(&self, use_gstpay: bool) {
glib::ObjectExt::set_property(self.as_ref(), "use-gstpay", &use_gstpay)
glib::ObjectExt::set_property(self.as_ref(), "use-gstpay", use_gstpay)
}
fn connect_uri_notify<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {

View file

@ -437,7 +437,7 @@ impl<O: IsA<RTSPServer>> RTSPServerExt for O {
}
fn set_property_content_length_limit(&self, content_length_limit: u32) {
glib::ObjectExt::set_property(self.as_ref(), "content-length-limit", &content_length_limit)
glib::ObjectExt::set_property(self.as_ref(), "content-length-limit", content_length_limit)
}
fn connect_client_connected<F: Fn(&Self, &RTSPClient) + Send + Sync + 'static>(

View file

@ -245,7 +245,7 @@ impl<O: IsA<RTSPSession>> RTSPSessionExt for O {
}
fn set_extra_timeout(&self, extra_timeout: u32) {
glib::ObjectExt::set_property(self.as_ref(), "extra-timeout", &extra_timeout)
glib::ObjectExt::set_property(self.as_ref(), "extra-timeout", extra_timeout)
}
fn is_timeout_always_visible(&self) -> bool {
@ -256,7 +256,7 @@ impl<O: IsA<RTSPSession>> RTSPSessionExt for O {
glib::ObjectExt::set_property(
self.as_ref(),
"timeout-always-visible",
&timeout_always_visible,
timeout_always_visible,
)
}

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -136,7 +136,7 @@ impl<O: IsA<Monitor>> MonitorExt for O {
}
fn set_pipeline<P: IsA<gst::Pipeline>>(&self, pipeline: Option<&P>) {
glib::ObjectExt::set_property(self.as_ref(), "pipeline", &pipeline)
glib::ObjectExt::set_property(self.as_ref(), "pipeline", pipeline)
}
fn validate_parent(&self) -> Option<Monitor> {
@ -148,7 +148,7 @@ impl<O: IsA<Monitor>> MonitorExt for O {
//}
//fn set_verbosity(&self, verbosity: /*Ignored*/VerbosityFlags) {
// glib::ObjectExt::set_property(self.as_ref(),"verbosity", &verbosity)
// glib::ObjectExt::set_property(self.as_ref(),"verbosity", verbosity)
//}
fn connect_pipeline_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -120,7 +120,7 @@ impl<O: IsA<Scenario>> ScenarioExt for O {
}
fn set_execute_on_idle(&self, execute_on_idle: bool) {
glib::ObjectExt::set_property(self.as_ref(), "execute-on-idle", &execute_on_idle)
glib::ObjectExt::set_property(self.as_ref(), "execute-on-idle", execute_on_idle)
}
fn is_handles_states(&self) -> bool {

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -80,7 +80,7 @@ impl<O: IsA<VideoAggregatorPad>> VideoAggregatorPadExt for O {
glib::ObjectExt::set_property(
self.as_ref(),
"max-last-buffer-repeat",
&max_last_buffer_repeat,
max_last_buffer_repeat,
)
}
@ -89,7 +89,7 @@ impl<O: IsA<VideoAggregatorPad>> VideoAggregatorPadExt for O {
}
fn set_repeat_after_eos(&self, repeat_after_eos: bool) {
glib::ObjectExt::set_property(self.as_ref(), "repeat-after-eos", &repeat_after_eos)
glib::ObjectExt::set_property(self.as_ref(), "repeat-after-eos", repeat_after_eos)
}
fn zorder(&self) -> u32 {
@ -97,7 +97,7 @@ impl<O: IsA<VideoAggregatorPad>> VideoAggregatorPadExt for O {
}
fn set_zorder(&self, zorder: u32) {
glib::ObjectExt::set_property(self.as_ref(), "zorder", &zorder)
glib::ObjectExt::set_property(self.as_ref(), "zorder", zorder)
}
fn connect_max_last_buffer_repeat_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -516,7 +516,7 @@ impl<O: IsA<VideoDecoder>> VideoDecoderExt for O {
glib::ObjectExt::set_property(
self.as_ref(),
"automatic-request-sync-point-flags",
&automatic_request_sync_point_flags,
automatic_request_sync_point_flags,
)
}
@ -532,7 +532,7 @@ impl<O: IsA<VideoDecoder>> VideoDecoderExt for O {
glib::ObjectExt::set_property(
self.as_ref(),
"automatic-request-sync-points",
&automatic_request_sync_points,
automatic_request_sync_points,
)
}
@ -548,7 +548,7 @@ impl<O: IsA<VideoDecoder>> VideoDecoderExt for O {
glib::ObjectExt::set_property(
self.as_ref(),
"discard-corrupted-frames",
&discard_corrupted_frames,
discard_corrupted_frames,
)
}
@ -564,7 +564,7 @@ impl<O: IsA<VideoDecoder>> VideoDecoderExt for O {
glib::ObjectExt::set_property(
self.as_ref(),
"min-force-key-unit-interval",
&min_force_key_unit_interval,
min_force_key_unit_interval,
)
}
@ -577,7 +577,7 @@ impl<O: IsA<VideoDecoder>> VideoDecoderExt for O {
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
fn set_qos(&self, qos: bool) {
glib::ObjectExt::set_property(self.as_ref(), "qos", &qos)
glib::ObjectExt::set_property(self.as_ref(), "qos", qos)
}
#[cfg(any(feature = "v1_20", feature = "dox"))]

View file

@ -180,7 +180,7 @@ impl<O: IsA<VideoEncoder>> VideoEncoderExt for O {
}
fn set_qos(&self, qos: bool) {
glib::ObjectExt::set_property(self.as_ref(), "qos", &qos)
glib::ObjectExt::set_property(self.as_ref(), "qos", qos)
}
#[cfg(any(feature = "v1_18", feature = "dox"))]

View file

@ -47,7 +47,7 @@ impl<O: IsA<VideoSink>> VideoSinkExt for O {
}
fn set_show_preroll_frame(&self, show_preroll_frame: bool) {
glib::ObjectExt::set_property(self.as_ref(), "show-preroll-frame", &show_preroll_frame)
glib::ObjectExt::set_property(self.as_ref(), "show-preroll-frame", show_preroll_frame)
}
fn connect_show_preroll_frame_notify<F: Fn(&Self) + Send + Sync + 'static>(

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -1,3 +1,3 @@
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
Generated by gir (https://github.com/gtk-rs/gir @ 2358cc24efd2)
from gir-files (https://github.com/gtk-rs/gir-files @ 1254daed0202)
from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git @ 8dd059f42a8d)

View file

@ -100,7 +100,7 @@ impl WebRTCDataChannel {
glib::ObjectExt::set_property(
self,
"buffered-amount-low-threshold",
&buffered_amount_low_threshold,
buffered_amount_low_threshold,
)
}

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