forked from mirrors/gstreamer-rs
regen
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1434>
This commit is contained in:
parent
46226106b4
commit
0bb334e14c
3 changed files with 0 additions and 48 deletions
|
@ -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
|
||||
|
|
|
@ -671,20 +671,6 @@ const RUST_LAYOUTS: &[(&str, Layout)] = &[
|
|||
alignment: align_of::<GESPipelineFlags>(),
|
||||
},
|
||||
),
|
||||
(
|
||||
"GESPitiviFormatter",
|
||||
Layout {
|
||||
size: size_of::<GESPitiviFormatter>(),
|
||||
alignment: align_of::<GESPitiviFormatter>(),
|
||||
},
|
||||
),
|
||||
(
|
||||
"GESPitiviFormatterClass",
|
||||
Layout {
|
||||
size: size_of::<GESPitiviFormatterClass>(),
|
||||
alignment: align_of::<GESPitiviFormatterClass>(),
|
||||
},
|
||||
),
|
||||
(
|
||||
"GESProject",
|
||||
Layout {
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue