diff --git a/gstreamer-app/src/auto/versions.txt b/gstreamer-app/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-app/src/auto/versions.txt +++ b/gstreamer-app/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-app/sys/build.rs b/gstreamer-app/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-app/sys/build.rs +++ b/gstreamer-app/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-app/sys/src/lib.rs b/gstreamer-app/sys/src/lib.rs index f7991e5ad..6058351cb 100644 --- a/gstreamer-app/sys/src/lib.rs +++ b/gstreamer-app/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-app/sys/tests/abi.rs b/gstreamer-app/sys/tests/abi.rs index b626a2ea2..e3b4c186f 100644 --- a/gstreamer-app/sys/tests/abi.rs +++ b/gstreamer-app/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_app_sys::*; diff --git a/gstreamer-app/sys/tests/constant.c b/gstreamer-app/sys/tests/constant.c index 4ee916b92..e849170a1 100644 --- a/gstreamer-app/sys/tests/constant.c +++ b/gstreamer-app/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-app/sys/tests/layout.c b/gstreamer-app/sys/tests/layout.c index 7b58e363b..a25c3eea5 100644 --- a/gstreamer-app/sys/tests/layout.c +++ b/gstreamer-app/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-audio/Gir.toml b/gstreamer-audio/Gir.toml index 1be7d03e8..fe4c503f4 100644 --- a/gstreamer-audio/Gir.toml +++ b/gstreamer-audio/Gir.toml @@ -17,6 +17,9 @@ external_libraries = [ ] generate = [ + "GstAudio.AudioDitherMethod", + "GstAudio.AudioNoiseShapingMethod", + "GstAudio.AudioResamplerMethod", "GstAudio.AudioFormatFlags", "GstAudio.AudioLayout", "GstAudio.AudioChannelPosition", diff --git a/gstreamer-audio/src/audio_converter.rs b/gstreamer-audio/src/audio_converter.rs new file mode 100644 index 000000000..6f6134753 --- /dev/null +++ b/gstreamer-audio/src/audio_converter.rs @@ -0,0 +1,167 @@ +// Take a look at the license at the top of the repository in the LICENSE file. + +use glib::prelude::*; + +use std::convert; +use std::ops; + +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct AudioConverterConfig(gst::Structure); + +impl ops::Deref for AudioConverterConfig { + type Target = gst::StructureRef; + + fn deref(&self) -> &gst::StructureRef { + self.0.deref() + } +} + +impl ops::DerefMut for AudioConverterConfig { + fn deref_mut(&mut self) -> &mut gst::StructureRef { + self.0.deref_mut() + } +} + +impl AsRef for AudioConverterConfig { + fn as_ref(&self) -> &gst::StructureRef { + self.0.as_ref() + } +} + +impl AsMut for AudioConverterConfig { + fn as_mut(&mut self) -> &mut gst::StructureRef { + self.0.as_mut() + } +} + +impl Default for AudioConverterConfig { + fn default() -> Self { + AudioConverterConfig::new() + } +} + +impl convert::TryFrom for AudioConverterConfig { + type Error = glib::BoolError; + + fn try_from(v: gst::Structure) -> Result { + skip_assert_initialized!(); + if v.get_name() == "GstAudioConverter" { + Ok(AudioConverterConfig(v)) + } else { + Err(glib::bool_error!("Structure is no AudioConverterConfig")) + } + } +} + +impl<'a> convert::TryFrom<&'a gst::StructureRef> for AudioConverterConfig { + type Error = glib::BoolError; + + fn try_from(v: &'a gst::StructureRef) -> Result { + skip_assert_initialized!(); + AudioConverterConfig::try_from(v.to_owned()) + } +} + +impl From for gst::Structure { + fn from(v: AudioConverterConfig) -> gst::Structure { + skip_assert_initialized!(); + v.0 + } +} + +impl AudioConverterConfig { + pub fn new() -> Self { + AudioConverterConfig(gst::Structure::new_empty("GstAudioConverter")) + } + + pub fn set_dither_method(&mut self, v: crate::AudioDitherMethod) { + self.0.set("GstAudioConverter.dither-method", &v); + } + + pub fn get_dither_method(&self) -> crate::AudioDitherMethod { + self.0 + .get_optional("GstAudioConverter.dither-method") + .expect("Wrong type") + .unwrap_or(crate::AudioDitherMethod::None) + } + + pub fn set_noise_shaping_method(&mut self, v: crate::AudioNoiseShapingMethod) { + self.0.set("GstAudioConverter.noise-shaping-method", &v); + } + + pub fn get_noise_shaping_method(&self) -> crate::AudioNoiseShapingMethod { + self.0 + .get_optional("GstAudioConverter.noise-shaping-method") + .expect("Wrong type") + .unwrap_or(crate::AudioNoiseShapingMethod::None) + } + + pub fn set_quantization(&mut self, v: u32) { + self.0.set("GstAudioConverter.dither-quantization", &v); + } + + pub fn get_quantization(&self) -> u32 { + self.0 + .get_optional("GstAudioConverter.quantization") + .expect("Wrong type") + .unwrap_or(1) + } + + #[cfg(any(feature = "v1_10", feature = "dox"))] + #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))] + pub fn set_resampler_method(&mut self, v: crate::AudioResamplerMethod) { + self.0.set("GstAudioConverter.resampler-method", &v); + } + + #[cfg(any(feature = "v1_10", feature = "dox"))] + #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))] + pub fn get_resampler_method(&self) -> crate::AudioResamplerMethod { + self.0 + .get_optional("GstAudioConverter.resampler-method") + .expect("Wrong type") + .unwrap_or(crate::AudioResamplerMethod::BlackmanNuttall) + } + + pub fn set_mix_matrix(&mut self, v: &[&[f64]]) { + let length = v.get(0).map(|v| v.len()).unwrap_or(0); + let array = gst::Array::from_owned( + v.iter() + .map(|val| { + assert_eq!(val.len(), length); + gst::Array::from_owned( + val.iter() + .map(|val| val.to_send_value()) + .collect::>(), + ) + .to_send_value() + }) + .collect::>(), + ); + self.0.set("GstAudioConverter.mix-matrix", &array); + } + + pub fn get_mix_matrix(&self) -> Vec> { + self.0 + .get_optional::("GstAudioConverter.mix-matrix") + .expect("Wrong type") + .map(|array| { + array + .as_slice() + .iter() + .map(|val| { + let array = val + .get::() + .expect("Wrong type") + .unwrap_or_else(|| gst::Array::from_owned(Vec::new())); + + array + .as_slice() + .iter() + .map(|val| val.get_some::().expect("Wrong type")) + .collect::>() + }) + .collect::>() + }) + .unwrap_or_else(Vec::new) + } +} diff --git a/gstreamer-audio/src/auto/enums.rs b/gstreamer-audio/src/auto/enums.rs index bc25a0d05..1a3c83599 100644 --- a/gstreamer-audio/src/auto/enums.rs +++ b/gstreamer-audio/src/auto/enums.rs @@ -199,6 +199,75 @@ impl SetValue for AudioChannelPosition { } } +#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)] +#[non_exhaustive] +#[doc(alias = "GstAudioDitherMethod")] +pub enum AudioDitherMethod { + #[doc(alias = "GST_AUDIO_DITHER_NONE")] + None, + #[doc(alias = "GST_AUDIO_DITHER_RPDF")] + Rpdf, + #[doc(alias = "GST_AUDIO_DITHER_TPDF")] + Tpdf, + #[doc(alias = "GST_AUDIO_DITHER_TPDF_HF")] + TpdfHf, + #[doc(hidden)] + __Unknown(i32), +} + +#[doc(hidden)] +impl ToGlib for AudioDitherMethod { + type GlibType = ffi::GstAudioDitherMethod; + + fn to_glib(&self) -> ffi::GstAudioDitherMethod { + match *self { + AudioDitherMethod::None => ffi::GST_AUDIO_DITHER_NONE, + AudioDitherMethod::Rpdf => ffi::GST_AUDIO_DITHER_RPDF, + AudioDitherMethod::Tpdf => ffi::GST_AUDIO_DITHER_TPDF, + AudioDitherMethod::TpdfHf => ffi::GST_AUDIO_DITHER_TPDF_HF, + AudioDitherMethod::__Unknown(value) => value, + } + } +} + +#[doc(hidden)] +impl FromGlib for AudioDitherMethod { + unsafe fn from_glib(value: ffi::GstAudioDitherMethod) -> Self { + skip_assert_initialized!(); + match value { + 0 => AudioDitherMethod::None, + 1 => AudioDitherMethod::Rpdf, + 2 => AudioDitherMethod::Tpdf, + 3 => AudioDitherMethod::TpdfHf, + value => AudioDitherMethod::__Unknown(value), + } + } +} + +impl StaticType for AudioDitherMethod { + fn static_type() -> Type { + unsafe { from_glib(ffi::gst_audio_dither_method_get_type()) } + } +} + +impl<'a> FromValueOptional<'a> for AudioDitherMethod { + unsafe fn from_value_optional(value: &glib::Value) -> Option { + Some(FromValue::from_value(value)) + } +} + +impl<'a> FromValue<'a> for AudioDitherMethod { + unsafe fn from_value(value: &glib::Value) -> Self { + from_glib(glib::gobject_ffi::g_value_get_enum(value.to_glib_none().0)) + } +} + +impl SetValue for AudioDitherMethod { + unsafe fn set_value(value: &mut glib::Value, this: &Self) { + glib::gobject_ffi::g_value_set_enum(value.to_glib_none_mut().0, this.to_glib()) + } +} + #[derive(Debug, Eq, PartialEq, Hash, Clone, Copy)] #[non_exhaustive] #[doc(alias = "GstAudioFormat")] @@ -456,6 +525,168 @@ impl SetValue for AudioLayout { } } +#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)] +#[non_exhaustive] +#[doc(alias = "GstAudioNoiseShapingMethod")] +pub enum AudioNoiseShapingMethod { + #[doc(alias = "GST_AUDIO_NOISE_SHAPING_NONE")] + None, + #[doc(alias = "GST_AUDIO_NOISE_SHAPING_ERROR_FEEDBACK")] + ErrorFeedback, + #[doc(alias = "GST_AUDIO_NOISE_SHAPING_SIMPLE")] + Simple, + #[doc(alias = "GST_AUDIO_NOISE_SHAPING_MEDIUM")] + Medium, + #[doc(alias = "GST_AUDIO_NOISE_SHAPING_HIGH")] + High, + #[doc(hidden)] + __Unknown(i32), +} + +#[doc(hidden)] +impl ToGlib for AudioNoiseShapingMethod { + type GlibType = ffi::GstAudioNoiseShapingMethod; + + fn to_glib(&self) -> ffi::GstAudioNoiseShapingMethod { + match *self { + AudioNoiseShapingMethod::None => ffi::GST_AUDIO_NOISE_SHAPING_NONE, + AudioNoiseShapingMethod::ErrorFeedback => ffi::GST_AUDIO_NOISE_SHAPING_ERROR_FEEDBACK, + AudioNoiseShapingMethod::Simple => ffi::GST_AUDIO_NOISE_SHAPING_SIMPLE, + AudioNoiseShapingMethod::Medium => ffi::GST_AUDIO_NOISE_SHAPING_MEDIUM, + AudioNoiseShapingMethod::High => ffi::GST_AUDIO_NOISE_SHAPING_HIGH, + AudioNoiseShapingMethod::__Unknown(value) => value, + } + } +} + +#[doc(hidden)] +impl FromGlib for AudioNoiseShapingMethod { + unsafe fn from_glib(value: ffi::GstAudioNoiseShapingMethod) -> Self { + skip_assert_initialized!(); + match value { + 0 => AudioNoiseShapingMethod::None, + 1 => AudioNoiseShapingMethod::ErrorFeedback, + 2 => AudioNoiseShapingMethod::Simple, + 3 => AudioNoiseShapingMethod::Medium, + 4 => AudioNoiseShapingMethod::High, + value => AudioNoiseShapingMethod::__Unknown(value), + } + } +} + +impl StaticType for AudioNoiseShapingMethod { + fn static_type() -> Type { + unsafe { from_glib(ffi::gst_audio_noise_shaping_method_get_type()) } + } +} + +impl<'a> FromValueOptional<'a> for AudioNoiseShapingMethod { + unsafe fn from_value_optional(value: &glib::Value) -> Option { + Some(FromValue::from_value(value)) + } +} + +impl<'a> FromValue<'a> for AudioNoiseShapingMethod { + unsafe fn from_value(value: &glib::Value) -> Self { + from_glib(glib::gobject_ffi::g_value_get_enum(value.to_glib_none().0)) + } +} + +impl SetValue for AudioNoiseShapingMethod { + unsafe fn set_value(value: &mut glib::Value, this: &Self) { + glib::gobject_ffi::g_value_set_enum(value.to_glib_none_mut().0, this.to_glib()) + } +} + +#[cfg(any(feature = "v1_10", feature = "dox"))] +#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))] +#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)] +#[non_exhaustive] +#[doc(alias = "GstAudioResamplerMethod")] +pub enum AudioResamplerMethod { + #[doc(alias = "GST_AUDIO_RESAMPLER_METHOD_NEAREST")] + Nearest, + #[doc(alias = "GST_AUDIO_RESAMPLER_METHOD_LINEAR")] + Linear, + #[doc(alias = "GST_AUDIO_RESAMPLER_METHOD_CUBIC")] + Cubic, + #[doc(alias = "GST_AUDIO_RESAMPLER_METHOD_BLACKMAN_NUTTALL")] + BlackmanNuttall, + #[doc(alias = "GST_AUDIO_RESAMPLER_METHOD_KAISER")] + Kaiser, + #[doc(hidden)] + __Unknown(i32), +} + +#[cfg(any(feature = "v1_10", feature = "dox"))] +#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))] +#[doc(hidden)] +impl ToGlib for AudioResamplerMethod { + type GlibType = ffi::GstAudioResamplerMethod; + + fn to_glib(&self) -> ffi::GstAudioResamplerMethod { + match *self { + AudioResamplerMethod::Nearest => ffi::GST_AUDIO_RESAMPLER_METHOD_NEAREST, + AudioResamplerMethod::Linear => ffi::GST_AUDIO_RESAMPLER_METHOD_LINEAR, + AudioResamplerMethod::Cubic => ffi::GST_AUDIO_RESAMPLER_METHOD_CUBIC, + AudioResamplerMethod::BlackmanNuttall => { + ffi::GST_AUDIO_RESAMPLER_METHOD_BLACKMAN_NUTTALL + } + AudioResamplerMethod::Kaiser => ffi::GST_AUDIO_RESAMPLER_METHOD_KAISER, + AudioResamplerMethod::__Unknown(value) => value, + } + } +} + +#[cfg(any(feature = "v1_10", feature = "dox"))] +#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))] +#[doc(hidden)] +impl FromGlib for AudioResamplerMethod { + unsafe fn from_glib(value: ffi::GstAudioResamplerMethod) -> Self { + skip_assert_initialized!(); + match value { + 0 => AudioResamplerMethod::Nearest, + 1 => AudioResamplerMethod::Linear, + 2 => AudioResamplerMethod::Cubic, + 3 => AudioResamplerMethod::BlackmanNuttall, + 4 => AudioResamplerMethod::Kaiser, + value => AudioResamplerMethod::__Unknown(value), + } + } +} + +#[cfg(any(feature = "v1_10", feature = "dox"))] +#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))] +impl StaticType for AudioResamplerMethod { + fn static_type() -> Type { + unsafe { from_glib(ffi::gst_audio_resampler_method_get_type()) } + } +} + +#[cfg(any(feature = "v1_10", feature = "dox"))] +#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))] +impl<'a> FromValueOptional<'a> for AudioResamplerMethod { + unsafe fn from_value_optional(value: &glib::Value) -> Option { + Some(FromValue::from_value(value)) + } +} + +#[cfg(any(feature = "v1_10", feature = "dox"))] +#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))] +impl<'a> FromValue<'a> for AudioResamplerMethod { + unsafe fn from_value(value: &glib::Value) -> Self { + from_glib(glib::gobject_ffi::g_value_get_enum(value.to_glib_none().0)) + } +} + +#[cfg(any(feature = "v1_10", feature = "dox"))] +#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))] +impl SetValue for AudioResamplerMethod { + unsafe fn set_value(value: &mut glib::Value, this: &Self) { + glib::gobject_ffi::g_value_set_enum(value.to_glib_none_mut().0, this.to_glib()) + } +} + #[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)] #[non_exhaustive] #[doc(alias = "GstAudioRingBufferFormatType")] diff --git a/gstreamer-audio/src/auto/mod.rs b/gstreamer-audio/src/auto/mod.rs index 755680d63..7d20eba22 100644 --- a/gstreamer-audio/src/auto/mod.rs +++ b/gstreamer-audio/src/auto/mod.rs @@ -37,8 +37,13 @@ pub use self::audio_stream_align::AudioStreamAlign; mod enums; pub use self::enums::AudioChannelPosition; +pub use self::enums::AudioDitherMethod; pub use self::enums::AudioFormat; pub use self::enums::AudioLayout; +pub use self::enums::AudioNoiseShapingMethod; +#[cfg(any(feature = "v1_10", feature = "dox"))] +#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))] +pub use self::enums::AudioResamplerMethod; pub use self::enums::AudioRingBufferFormatType; pub use self::enums::StreamVolumeFormat; diff --git a/gstreamer-audio/src/auto/versions.txt b/gstreamer-audio/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-audio/src/auto/versions.txt +++ b/gstreamer-audio/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-audio/src/lib.rs b/gstreamer-audio/src/lib.rs index e4692c116..53c7c1604 100644 --- a/gstreamer-audio/src/lib.rs +++ b/gstreamer-audio/src/lib.rs @@ -54,6 +54,9 @@ pub use crate::audio_decoder::AudioDecoderExtManual; mod audio_encoder; pub use crate::audio_encoder::AudioEncoderExtManual; +mod audio_converter; +pub use crate::audio_converter::AudioConverterConfig; + // Re-export all the traits in a prelude module, so that applications // can always "use gst::prelude::*" without getting conflicts pub mod prelude { diff --git a/gstreamer-audio/sys/build.rs b/gstreamer-audio/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-audio/sys/build.rs +++ b/gstreamer-audio/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-audio/sys/src/lib.rs b/gstreamer-audio/sys/src/lib.rs index b36f4287c..b7e8201f0 100644 --- a/gstreamer-audio/sys/src/lib.rs +++ b/gstreamer-audio/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-audio/sys/tests/abi.rs b/gstreamer-audio/sys/tests/abi.rs index 588349069..565af46e5 100644 --- a/gstreamer-audio/sys/tests/abi.rs +++ b/gstreamer-audio/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_audio_sys::*; diff --git a/gstreamer-audio/sys/tests/constant.c b/gstreamer-audio/sys/tests/constant.c index 1e85de6b8..7a8c71465 100644 --- a/gstreamer-audio/sys/tests/constant.c +++ b/gstreamer-audio/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-audio/sys/tests/layout.c b/gstreamer-audio/sys/tests/layout.c index 514328ab3..83199241f 100644 --- a/gstreamer-audio/sys/tests/layout.c +++ b/gstreamer-audio/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-base/src/auto/versions.txt b/gstreamer-base/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-base/src/auto/versions.txt +++ b/gstreamer-base/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-base/sys/build.rs b/gstreamer-base/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-base/sys/build.rs +++ b/gstreamer-base/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-base/sys/src/lib.rs b/gstreamer-base/sys/src/lib.rs index e3310ddc3..1d9da4a64 100644 --- a/gstreamer-base/sys/src/lib.rs +++ b/gstreamer-base/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-base/sys/tests/abi.rs b/gstreamer-base/sys/tests/abi.rs index 56f0a02de..5f0243d76 100644 --- a/gstreamer-base/sys/tests/abi.rs +++ b/gstreamer-base/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_base_sys::*; diff --git a/gstreamer-base/sys/tests/constant.c b/gstreamer-base/sys/tests/constant.c index 02902aee8..f8531d3b6 100644 --- a/gstreamer-base/sys/tests/constant.c +++ b/gstreamer-base/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-base/sys/tests/layout.c b/gstreamer-base/sys/tests/layout.c index 90b84b225..f68651440 100644 --- a/gstreamer-base/sys/tests/layout.c +++ b/gstreamer-base/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-check/src/auto/versions.txt b/gstreamer-check/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-check/src/auto/versions.txt +++ b/gstreamer-check/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-check/sys/build.rs b/gstreamer-check/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-check/sys/build.rs +++ b/gstreamer-check/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-check/sys/src/lib.rs b/gstreamer-check/sys/src/lib.rs index 2afdb5c77..7238f11fb 100644 --- a/gstreamer-check/sys/src/lib.rs +++ b/gstreamer-check/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-check/sys/tests/abi.rs b/gstreamer-check/sys/tests/abi.rs index 3a4bcfa75..e3dbb0cd3 100644 --- a/gstreamer-check/sys/tests/abi.rs +++ b/gstreamer-check/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_check_sys::*; diff --git a/gstreamer-check/sys/tests/constant.c b/gstreamer-check/sys/tests/constant.c index 2b54f6198..4a4d570e5 100644 --- a/gstreamer-check/sys/tests/constant.c +++ b/gstreamer-check/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-check/sys/tests/layout.c b/gstreamer-check/sys/tests/layout.c index 8a25a2a0e..1ab3e041e 100644 --- a/gstreamer-check/sys/tests/layout.c +++ b/gstreamer-check/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-controller/src/auto/versions.txt b/gstreamer-controller/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-controller/src/auto/versions.txt +++ b/gstreamer-controller/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-controller/sys/build.rs b/gstreamer-controller/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-controller/sys/build.rs +++ b/gstreamer-controller/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-controller/sys/src/lib.rs b/gstreamer-controller/sys/src/lib.rs index b82911e87..1af7148d9 100644 --- a/gstreamer-controller/sys/src/lib.rs +++ b/gstreamer-controller/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-controller/sys/tests/abi.rs b/gstreamer-controller/sys/tests/abi.rs index a98c42dbd..34c429432 100644 --- a/gstreamer-controller/sys/tests/abi.rs +++ b/gstreamer-controller/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_controller_sys::*; diff --git a/gstreamer-controller/sys/tests/constant.c b/gstreamer-controller/sys/tests/constant.c index eaeea1bd4..422fb10c0 100644 --- a/gstreamer-controller/sys/tests/constant.c +++ b/gstreamer-controller/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-controller/sys/tests/layout.c b/gstreamer-controller/sys/tests/layout.c index db8cee471..0f170089b 100644 --- a/gstreamer-controller/sys/tests/layout.c +++ b/gstreamer-controller/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-editing-services/src/auto/versions.txt b/gstreamer-editing-services/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-editing-services/src/auto/versions.txt +++ b/gstreamer-editing-services/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-editing-services/sys/build.rs b/gstreamer-editing-services/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-editing-services/sys/build.rs +++ b/gstreamer-editing-services/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-editing-services/sys/src/lib.rs b/gstreamer-editing-services/sys/src/lib.rs index a5df211fa..ac76e11e8 100644 --- a/gstreamer-editing-services/sys/src/lib.rs +++ b/gstreamer-editing-services/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-editing-services/sys/tests/abi.rs b/gstreamer-editing-services/sys/tests/abi.rs index e33f469a2..c1c574bd3 100644 --- a/gstreamer-editing-services/sys/tests/abi.rs +++ b/gstreamer-editing-services/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_editing_services_sys::*; diff --git a/gstreamer-editing-services/sys/tests/constant.c b/gstreamer-editing-services/sys/tests/constant.c index 4df6e859a..690b1870e 100644 --- a/gstreamer-editing-services/sys/tests/constant.c +++ b/gstreamer-editing-services/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-editing-services/sys/tests/layout.c b/gstreamer-editing-services/sys/tests/layout.c index 9c101af23..40dfc67a1 100644 --- a/gstreamer-editing-services/sys/tests/layout.c +++ b/gstreamer-editing-services/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-gl/egl/src/auto/versions.txt b/gstreamer-gl/egl/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-gl/egl/src/auto/versions.txt +++ b/gstreamer-gl/egl/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-gl/egl/sys/build.rs b/gstreamer-gl/egl/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-gl/egl/sys/build.rs +++ b/gstreamer-gl/egl/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-gl/egl/sys/src/lib.rs b/gstreamer-gl/egl/sys/src/lib.rs index 2406e8445..f0e6e8aef 100644 --- a/gstreamer-gl/egl/sys/src/lib.rs +++ b/gstreamer-gl/egl/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-gl/egl/sys/tests/abi.rs b/gstreamer-gl/egl/sys/tests/abi.rs index 127d1a5df..31387d8d8 100644 --- a/gstreamer-gl/egl/sys/tests/abi.rs +++ b/gstreamer-gl/egl/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_gl_egl_sys::*; diff --git a/gstreamer-gl/egl/sys/tests/constant.c b/gstreamer-gl/egl/sys/tests/constant.c index 4dbdacd04..d985136a2 100644 --- a/gstreamer-gl/egl/sys/tests/constant.c +++ b/gstreamer-gl/egl/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-gl/egl/sys/tests/layout.c b/gstreamer-gl/egl/sys/tests/layout.c index b423f27fc..f085aefc0 100644 --- a/gstreamer-gl/egl/sys/tests/layout.c +++ b/gstreamer-gl/egl/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-gl/src/auto/versions.txt b/gstreamer-gl/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-gl/src/auto/versions.txt +++ b/gstreamer-gl/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-gl/sys/build.rs b/gstreamer-gl/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-gl/sys/build.rs +++ b/gstreamer-gl/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-gl/sys/src/lib.rs b/gstreamer-gl/sys/src/lib.rs index cb7754415..67b8f539f 100644 --- a/gstreamer-gl/sys/src/lib.rs +++ b/gstreamer-gl/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-gl/sys/tests/abi.rs b/gstreamer-gl/sys/tests/abi.rs index 9a034ca66..012b6cd82 100644 --- a/gstreamer-gl/sys/tests/abi.rs +++ b/gstreamer-gl/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_gl_sys::*; diff --git a/gstreamer-gl/sys/tests/constant.c b/gstreamer-gl/sys/tests/constant.c index e2a455385..662c407b4 100644 --- a/gstreamer-gl/sys/tests/constant.c +++ b/gstreamer-gl/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-gl/sys/tests/layout.c b/gstreamer-gl/sys/tests/layout.c index 021700463..d67e2895f 100644 --- a/gstreamer-gl/sys/tests/layout.c +++ b/gstreamer-gl/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-gl/wayland/src/auto/versions.txt b/gstreamer-gl/wayland/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-gl/wayland/src/auto/versions.txt +++ b/gstreamer-gl/wayland/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-gl/wayland/sys/build.rs b/gstreamer-gl/wayland/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-gl/wayland/sys/build.rs +++ b/gstreamer-gl/wayland/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-gl/wayland/sys/src/lib.rs b/gstreamer-gl/wayland/sys/src/lib.rs index a117c85bb..1ae3f2567 100644 --- a/gstreamer-gl/wayland/sys/src/lib.rs +++ b/gstreamer-gl/wayland/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-gl/wayland/sys/tests/abi.rs b/gstreamer-gl/wayland/sys/tests/abi.rs index b11539d5c..01db53d51 100644 --- a/gstreamer-gl/wayland/sys/tests/abi.rs +++ b/gstreamer-gl/wayland/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_gl_wayland_sys::*; diff --git a/gstreamer-gl/wayland/sys/tests/constant.c b/gstreamer-gl/wayland/sys/tests/constant.c index 2b54f6198..4a4d570e5 100644 --- a/gstreamer-gl/wayland/sys/tests/constant.c +++ b/gstreamer-gl/wayland/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-gl/wayland/sys/tests/layout.c b/gstreamer-gl/wayland/sys/tests/layout.c index 59b1904e9..ceb6fdf6a 100644 --- a/gstreamer-gl/wayland/sys/tests/layout.c +++ b/gstreamer-gl/wayland/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-gl/x11/src/auto/versions.txt b/gstreamer-gl/x11/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-gl/x11/src/auto/versions.txt +++ b/gstreamer-gl/x11/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-gl/x11/sys/build.rs b/gstreamer-gl/x11/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-gl/x11/sys/build.rs +++ b/gstreamer-gl/x11/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-gl/x11/sys/src/lib.rs b/gstreamer-gl/x11/sys/src/lib.rs index 038725f8f..274cab2d1 100644 --- a/gstreamer-gl/x11/sys/src/lib.rs +++ b/gstreamer-gl/x11/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-gl/x11/sys/tests/abi.rs b/gstreamer-gl/x11/sys/tests/abi.rs index b6b0e09cb..576402dd3 100644 --- a/gstreamer-gl/x11/sys/tests/abi.rs +++ b/gstreamer-gl/x11/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_gl_x11_sys::*; diff --git a/gstreamer-gl/x11/sys/tests/constant.c b/gstreamer-gl/x11/sys/tests/constant.c index 2b54f6198..4a4d570e5 100644 --- a/gstreamer-gl/x11/sys/tests/constant.c +++ b/gstreamer-gl/x11/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-gl/x11/sys/tests/layout.c b/gstreamer-gl/x11/sys/tests/layout.c index e0fd32a2d..b8d4c941d 100644 --- a/gstreamer-gl/x11/sys/tests/layout.c +++ b/gstreamer-gl/x11/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-mpegts/sys/build.rs b/gstreamer-mpegts/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-mpegts/sys/build.rs +++ b/gstreamer-mpegts/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-mpegts/sys/src/lib.rs b/gstreamer-mpegts/sys/src/lib.rs index fb8d4feb9..b488e9a1d 100644 --- a/gstreamer-mpegts/sys/src/lib.rs +++ b/gstreamer-mpegts/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-mpegts/sys/tests/abi.rs b/gstreamer-mpegts/sys/tests/abi.rs index 99d5db5cf..50f7429f8 100644 --- a/gstreamer-mpegts/sys/tests/abi.rs +++ b/gstreamer-mpegts/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_mpegts_sys::*; diff --git a/gstreamer-mpegts/sys/tests/constant.c b/gstreamer-mpegts/sys/tests/constant.c index eadd96be3..82c311fd6 100644 --- a/gstreamer-mpegts/sys/tests/constant.c +++ b/gstreamer-mpegts/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-mpegts/sys/tests/layout.c b/gstreamer-mpegts/sys/tests/layout.c index c4d6f04a0..31d24e548 100644 --- a/gstreamer-mpegts/sys/tests/layout.c +++ b/gstreamer-mpegts/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-net/src/auto/versions.txt b/gstreamer-net/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-net/src/auto/versions.txt +++ b/gstreamer-net/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-net/sys/build.rs b/gstreamer-net/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-net/sys/build.rs +++ b/gstreamer-net/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-net/sys/src/lib.rs b/gstreamer-net/sys/src/lib.rs index be38c21bf..1e4fb79f9 100644 --- a/gstreamer-net/sys/src/lib.rs +++ b/gstreamer-net/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-net/sys/tests/abi.rs b/gstreamer-net/sys/tests/abi.rs index 439bec4bd..0e9845b6f 100644 --- a/gstreamer-net/sys/tests/abi.rs +++ b/gstreamer-net/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_net_sys::*; diff --git a/gstreamer-net/sys/tests/constant.c b/gstreamer-net/sys/tests/constant.c index 952566dc9..ab293a92b 100644 --- a/gstreamer-net/sys/tests/constant.c +++ b/gstreamer-net/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-net/sys/tests/layout.c b/gstreamer-net/sys/tests/layout.c index 1ae047f6a..3ad887f82 100644 --- a/gstreamer-net/sys/tests/layout.c +++ b/gstreamer-net/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-pbutils/src/auto/versions.txt b/gstreamer-pbutils/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-pbutils/src/auto/versions.txt +++ b/gstreamer-pbutils/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-pbutils/sys/build.rs b/gstreamer-pbutils/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-pbutils/sys/build.rs +++ b/gstreamer-pbutils/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-pbutils/sys/src/lib.rs b/gstreamer-pbutils/sys/src/lib.rs index 0a5a9367f..f40eefe32 100644 --- a/gstreamer-pbutils/sys/src/lib.rs +++ b/gstreamer-pbutils/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-pbutils/sys/tests/abi.rs b/gstreamer-pbutils/sys/tests/abi.rs index 76dc69338..b3a95045e 100644 --- a/gstreamer-pbutils/sys/tests/abi.rs +++ b/gstreamer-pbutils/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_pbutils_sys::*; diff --git a/gstreamer-pbutils/sys/tests/constant.c b/gstreamer-pbutils/sys/tests/constant.c index 3bd54d05a..d3d8c7d4b 100644 --- a/gstreamer-pbutils/sys/tests/constant.c +++ b/gstreamer-pbutils/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-pbutils/sys/tests/layout.c b/gstreamer-pbutils/sys/tests/layout.c index aa9c287da..f6732af39 100644 --- a/gstreamer-pbutils/sys/tests/layout.c +++ b/gstreamer-pbutils/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-player/src/auto/versions.txt b/gstreamer-player/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-player/src/auto/versions.txt +++ b/gstreamer-player/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-player/sys/build.rs b/gstreamer-player/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-player/sys/build.rs +++ b/gstreamer-player/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-player/sys/src/lib.rs b/gstreamer-player/sys/src/lib.rs index f7263b64a..007db750c 100644 --- a/gstreamer-player/sys/src/lib.rs +++ b/gstreamer-player/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-player/sys/tests/abi.rs b/gstreamer-player/sys/tests/abi.rs index 3235317c1..b11ccd252 100644 --- a/gstreamer-player/sys/tests/abi.rs +++ b/gstreamer-player/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_player_sys::*; diff --git a/gstreamer-player/sys/tests/constant.c b/gstreamer-player/sys/tests/constant.c index ed0a307a0..f69ad42f0 100644 --- a/gstreamer-player/sys/tests/constant.c +++ b/gstreamer-player/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-player/sys/tests/layout.c b/gstreamer-player/sys/tests/layout.c index f044a322f..c3ccbf778 100644 --- a/gstreamer-player/sys/tests/layout.c +++ b/gstreamer-player/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-rtp/src/auto/versions.txt b/gstreamer-rtp/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-rtp/src/auto/versions.txt +++ b/gstreamer-rtp/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-rtp/sys/build.rs b/gstreamer-rtp/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-rtp/sys/build.rs +++ b/gstreamer-rtp/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-rtp/sys/src/lib.rs b/gstreamer-rtp/sys/src/lib.rs index c0af4aeff..18730c189 100644 --- a/gstreamer-rtp/sys/src/lib.rs +++ b/gstreamer-rtp/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-rtp/sys/tests/abi.rs b/gstreamer-rtp/sys/tests/abi.rs index 15803db45..ffccd172b 100644 --- a/gstreamer-rtp/sys/tests/abi.rs +++ b/gstreamer-rtp/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_rtp_sys::*; diff --git a/gstreamer-rtp/sys/tests/constant.c b/gstreamer-rtp/sys/tests/constant.c index a119c7131..cb664ccae 100644 --- a/gstreamer-rtp/sys/tests/constant.c +++ b/gstreamer-rtp/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-rtp/sys/tests/layout.c b/gstreamer-rtp/sys/tests/layout.c index 8a67fdc44..b7061c158 100644 --- a/gstreamer-rtp/sys/tests/layout.c +++ b/gstreamer-rtp/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-rtsp-server/src/auto/versions.txt b/gstreamer-rtsp-server/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-rtsp-server/src/auto/versions.txt +++ b/gstreamer-rtsp-server/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-rtsp-server/sys/build.rs b/gstreamer-rtsp-server/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-rtsp-server/sys/build.rs +++ b/gstreamer-rtsp-server/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-rtsp-server/sys/src/lib.rs b/gstreamer-rtsp-server/sys/src/lib.rs index c0b3aedc8..19cce0f61 100644 --- a/gstreamer-rtsp-server/sys/src/lib.rs +++ b/gstreamer-rtsp-server/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-rtsp-server/sys/tests/abi.rs b/gstreamer-rtsp-server/sys/tests/abi.rs index ba8cb054c..7464e0bdb 100644 --- a/gstreamer-rtsp-server/sys/tests/abi.rs +++ b/gstreamer-rtsp-server/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_rtsp_server_sys::*; diff --git a/gstreamer-rtsp-server/sys/tests/constant.c b/gstreamer-rtsp-server/sys/tests/constant.c index 1ba59e58e..020e1a60d 100644 --- a/gstreamer-rtsp-server/sys/tests/constant.c +++ b/gstreamer-rtsp-server/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-rtsp-server/sys/tests/layout.c b/gstreamer-rtsp-server/sys/tests/layout.c index 755a2593a..5c8ca2aeb 100644 --- a/gstreamer-rtsp-server/sys/tests/layout.c +++ b/gstreamer-rtsp-server/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-rtsp/src/auto/versions.txt b/gstreamer-rtsp/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-rtsp/src/auto/versions.txt +++ b/gstreamer-rtsp/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-rtsp/sys/build.rs b/gstreamer-rtsp/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-rtsp/sys/build.rs +++ b/gstreamer-rtsp/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-rtsp/sys/src/lib.rs b/gstreamer-rtsp/sys/src/lib.rs index 8303035d7..392710bc2 100644 --- a/gstreamer-rtsp/sys/src/lib.rs +++ b/gstreamer-rtsp/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-rtsp/sys/tests/abi.rs b/gstreamer-rtsp/sys/tests/abi.rs index dfff7b11c..7b072c757 100644 --- a/gstreamer-rtsp/sys/tests/abi.rs +++ b/gstreamer-rtsp/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_rtsp_sys::*; diff --git a/gstreamer-rtsp/sys/tests/constant.c b/gstreamer-rtsp/sys/tests/constant.c index 3b0f8ef7e..2b2d39f98 100644 --- a/gstreamer-rtsp/sys/tests/constant.c +++ b/gstreamer-rtsp/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-rtsp/sys/tests/layout.c b/gstreamer-rtsp/sys/tests/layout.c index 0bef153eb..156260db2 100644 --- a/gstreamer-rtsp/sys/tests/layout.c +++ b/gstreamer-rtsp/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-sdp/src/auto/versions.txt b/gstreamer-sdp/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-sdp/src/auto/versions.txt +++ b/gstreamer-sdp/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-sdp/sys/build.rs b/gstreamer-sdp/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-sdp/sys/build.rs +++ b/gstreamer-sdp/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-sdp/sys/src/lib.rs b/gstreamer-sdp/sys/src/lib.rs index d1ae7c655..743721421 100644 --- a/gstreamer-sdp/sys/src/lib.rs +++ b/gstreamer-sdp/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-sdp/sys/tests/abi.rs b/gstreamer-sdp/sys/tests/abi.rs index 9938d660f..80dc6ab29 100644 --- a/gstreamer-sdp/sys/tests/abi.rs +++ b/gstreamer-sdp/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_sdp_sys::*; diff --git a/gstreamer-sdp/sys/tests/constant.c b/gstreamer-sdp/sys/tests/constant.c index 7936bf76a..7237acf69 100644 --- a/gstreamer-sdp/sys/tests/constant.c +++ b/gstreamer-sdp/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-sdp/sys/tests/layout.c b/gstreamer-sdp/sys/tests/layout.c index 4db3e4ffd..8c8b8b261 100644 --- a/gstreamer-sdp/sys/tests/layout.c +++ b/gstreamer-sdp/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-tag/sys/build.rs b/gstreamer-tag/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-tag/sys/build.rs +++ b/gstreamer-tag/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-tag/sys/src/lib.rs b/gstreamer-tag/sys/src/lib.rs index 0f3b2344e..d3cb7dc3b 100644 --- a/gstreamer-tag/sys/src/lib.rs +++ b/gstreamer-tag/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-tag/sys/tests/abi.rs b/gstreamer-tag/sys/tests/abi.rs index fc9a66f82..5c7006508 100644 --- a/gstreamer-tag/sys/tests/abi.rs +++ b/gstreamer-tag/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_tag_sys::*; diff --git a/gstreamer-tag/sys/tests/constant.c b/gstreamer-tag/sys/tests/constant.c index 8013a694f..3234d66ba 100644 --- a/gstreamer-tag/sys/tests/constant.c +++ b/gstreamer-tag/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-tag/sys/tests/layout.c b/gstreamer-tag/sys/tests/layout.c index 38ed73daa..0b45456d1 100644 --- a/gstreamer-tag/sys/tests/layout.c +++ b/gstreamer-tag/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-video/src/auto/versions.txt b/gstreamer-video/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-video/src/auto/versions.txt +++ b/gstreamer-video/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-video/sys/build.rs b/gstreamer-video/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-video/sys/build.rs +++ b/gstreamer-video/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-video/sys/src/lib.rs b/gstreamer-video/sys/src/lib.rs index fe4dada8a..bb59aaad8 100644 --- a/gstreamer-video/sys/src/lib.rs +++ b/gstreamer-video/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-video/sys/tests/abi.rs b/gstreamer-video/sys/tests/abi.rs index 163cbf2f9..84824dc5b 100644 --- a/gstreamer-video/sys/tests/abi.rs +++ b/gstreamer-video/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_video_sys::*; diff --git a/gstreamer-video/sys/tests/constant.c b/gstreamer-video/sys/tests/constant.c index f5ac4b366..597e389d5 100644 --- a/gstreamer-video/sys/tests/constant.c +++ b/gstreamer-video/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-video/sys/tests/layout.c b/gstreamer-video/sys/tests/layout.c index eb5b0f1d9..b496d9af2 100644 --- a/gstreamer-video/sys/tests/layout.c +++ b/gstreamer-video/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-webrtc/src/auto/versions.txt b/gstreamer-webrtc/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer-webrtc/src/auto/versions.txt +++ b/gstreamer-webrtc/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer-webrtc/sys/build.rs b/gstreamer-webrtc/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer-webrtc/sys/build.rs +++ b/gstreamer-webrtc/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer-webrtc/sys/src/lib.rs b/gstreamer-webrtc/sys/src/lib.rs index a83d5419f..895a6d075 100644 --- a/gstreamer-webrtc/sys/src/lib.rs +++ b/gstreamer-webrtc/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer-webrtc/sys/tests/abi.rs b/gstreamer-webrtc/sys/tests/abi.rs index 1b9c57b10..4ff82b401 100644 --- a/gstreamer-webrtc/sys/tests/abi.rs +++ b/gstreamer-webrtc/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_webrtc_sys::*; diff --git a/gstreamer-webrtc/sys/tests/constant.c b/gstreamer-webrtc/sys/tests/constant.c index ed32770e1..c521ba20d 100644 --- a/gstreamer-webrtc/sys/tests/constant.c +++ b/gstreamer-webrtc/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer-webrtc/sys/tests/layout.c b/gstreamer-webrtc/sys/tests/layout.c index 7c19372ef..70ff6f3c7 100644 --- a/gstreamer-webrtc/sys/tests/layout.c +++ b/gstreamer-webrtc/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer/src/auto/versions.txt b/gstreamer/src/auto/versions.txt index 3b681567e..15a504bb4 100644 --- a/gstreamer/src/auto/versions.txt +++ b/gstreamer/src/auto/versions.txt @@ -1,2 +1,2 @@ Generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) diff --git a/gstreamer/sys/build.rs b/gstreamer/sys/build.rs index bdcb058d9..be8544dff 100644 --- a/gstreamer/sys/build.rs +++ b/gstreamer/sys/build.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #[cfg(not(feature = "dox"))] diff --git a/gstreamer/sys/src/lib.rs b/gstreamer/sys/src/lib.rs index ac5abf4e4..a7b3029b5 100644 --- a/gstreamer/sys/src/lib.rs +++ b/gstreamer/sys/src/lib.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] diff --git a/gstreamer/sys/tests/abi.rs b/gstreamer/sys/tests/abi.rs index c5b0fa103..aefee8414 100644 --- a/gstreamer/sys/tests/abi.rs +++ b/gstreamer/sys/tests/abi.rs @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT use gstreamer_sys::*; diff --git a/gstreamer/sys/tests/constant.c b/gstreamer/sys/tests/constant.c index 759c3d47a..475fbb787 100644 --- a/gstreamer/sys/tests/constant.c +++ b/gstreamer/sys/tests/constant.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h" diff --git a/gstreamer/sys/tests/layout.c b/gstreamer/sys/tests/layout.c index e9969cf6c..75dc121e3 100644 --- a/gstreamer/sys/tests/layout.c +++ b/gstreamer/sys/tests/layout.c @@ -1,5 +1,5 @@ // This file was generated by gir (https://github.com/gtk-rs/gir @ 1c7b41a) -// from gir-files (https://github.com/gtk-rs/gir-files @ 31b68201) +// from gir-files (https://github.com/gtk-rs/gir-files @ 3c0281db) // DO NOT EDIT #include "manual.h"