From 0bb334e14c41bd5c235b8cc1ca1d539ac0a54ff4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laignel?= Date: Tue, 30 Apr 2024 08:22:44 +0200 Subject: [PATCH] regen Part-of: --- gstreamer-editing-services/sys/src/lib.rs | 32 ------------------- gstreamer-editing-services/sys/tests/abi.rs | 14 -------- gstreamer-editing-services/sys/tests/layout.c | 2 -- 3 files changed, 48 deletions(-) diff --git a/gstreamer-editing-services/sys/src/lib.rs b/gstreamer-editing-services/sys/src/lib.rs index 73b39d4ac..e9403875d 100644 --- a/gstreamer-editing-services/sys/src/lib.rs +++ b/gstreamer-editing-services/sys/src/lib.rs @@ -1138,20 +1138,6 @@ pub struct _GESPipelinePrivate { pub type GESPipelinePrivate = _GESPipelinePrivate; -#[derive(Copy, Clone)] -#[repr(C)] -pub struct GESPitiviFormatterClass { - pub parent_class: GESFormatterClass, - pub _ges_reserved: [gpointer; 4], -} - -impl ::std::fmt::Debug for GESPitiviFormatterClass { - fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { - f.debug_struct(&format!("GESPitiviFormatterClass @ {self:p}")) - .finish() - } -} - #[repr(C)] pub struct _GESPitiviFormatterPrivate { _data: [u8; 0], @@ -2392,22 +2378,6 @@ impl ::std::fmt::Debug for GESPipeline { } } -#[derive(Copy, Clone)] -#[repr(C)] -pub struct GESPitiviFormatter { - pub parent: GESFormatter, - pub priv_: *mut GESPitiviFormatterPrivate, - pub _ges_reserved: [gpointer; 4], -} - -impl ::std::fmt::Debug for GESPitiviFormatter { - fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { - f.debug_struct(&format!("GESPitiviFormatter @ {self:p}")) - .field("parent", &self.parent) - .finish() - } -} - #[derive(Copy, Clone)] #[repr(C)] pub struct GESProject { @@ -3469,8 +3439,6 @@ extern "C" { //========================================================================= // GESPitiviFormatter //========================================================================= - pub fn ges_pitivi_formatter_get_type() -> GType; - pub fn ges_pitivi_formatter_new() -> *mut GESPitiviFormatter; //========================================================================= // GESProject diff --git a/gstreamer-editing-services/sys/tests/abi.rs b/gstreamer-editing-services/sys/tests/abi.rs index 593430f18..6652b1029 100644 --- a/gstreamer-editing-services/sys/tests/abi.rs +++ b/gstreamer-editing-services/sys/tests/abi.rs @@ -671,20 +671,6 @@ const RUST_LAYOUTS: &[(&str, Layout)] = &[ alignment: align_of::(), }, ), - ( - "GESPitiviFormatter", - Layout { - size: size_of::(), - alignment: align_of::(), - }, - ), - ( - "GESPitiviFormatterClass", - Layout { - size: size_of::(), - alignment: align_of::(), - }, - ), ( "GESProject", Layout { diff --git a/gstreamer-editing-services/sys/tests/layout.c b/gstreamer-editing-services/sys/tests/layout.c index 8dac706b3..52353fac3 100644 --- a/gstreamer-editing-services/sys/tests/layout.c +++ b/gstreamer-editing-services/sys/tests/layout.c @@ -75,8 +75,6 @@ int main() { printf("%s;%zu;%zu\n", "GESPipeline", sizeof(GESPipeline), alignof(GESPipeline)); printf("%s;%zu;%zu\n", "GESPipelineClass", sizeof(GESPipelineClass), alignof(GESPipelineClass)); printf("%s;%zu;%zu\n", "GESPipelineFlags", sizeof(GESPipelineFlags), alignof(GESPipelineFlags)); - printf("%s;%zu;%zu\n", "GESPitiviFormatter", sizeof(GESPitiviFormatter), alignof(GESPitiviFormatter)); - printf("%s;%zu;%zu\n", "GESPitiviFormatterClass", sizeof(GESPitiviFormatterClass), alignof(GESPitiviFormatterClass)); printf("%s;%zu;%zu\n", "GESProject", sizeof(GESProject), alignof(GESProject)); printf("%s;%zu;%zu\n", "GESProjectClass", sizeof(GESProjectClass), alignof(GESProjectClass)); printf("%s;%zu;%zu\n", "GESSource", sizeof(GESSource), alignof(GESSource));