mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-13 13:01:07 +00:00
Adapt to removed alias config for enum members
As it does the same thing as ignore Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1452>
This commit is contained in:
parent
e6ed67cbc5
commit
bc96d439d0
2 changed files with 14 additions and 28 deletions
|
@ -42,46 +42,46 @@ name = "GstAudio.AudioFormat"
|
|||
status = "generate"
|
||||
[[object.member]]
|
||||
name = "f32"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "f64"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "s16"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "s18"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "s20"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "s24"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "s24_32"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "s32"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "u16"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "u18"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "u20"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "u24"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "u24_32"
|
||||
alias = true
|
||||
ignore = true
|
||||
[[object.member]]
|
||||
name = "u32"
|
||||
alias = true
|
||||
ignore = true
|
||||
|
||||
[[object]]
|
||||
name = "GstAudio.*"
|
||||
|
|
|
@ -126,20 +126,6 @@ pub const GST_AUDIO_FORMAT_F32LE: GstAudioFormat = 28;
|
|||
pub const GST_AUDIO_FORMAT_F32BE: GstAudioFormat = 29;
|
||||
pub const GST_AUDIO_FORMAT_F64LE: GstAudioFormat = 30;
|
||||
pub const GST_AUDIO_FORMAT_F64BE: GstAudioFormat = 31;
|
||||
pub const GST_AUDIO_FORMAT_S16: GstAudioFormat = 4;
|
||||
pub const GST_AUDIO_FORMAT_U16: GstAudioFormat = 6;
|
||||
pub const GST_AUDIO_FORMAT_S24_32: GstAudioFormat = 8;
|
||||
pub const GST_AUDIO_FORMAT_U24_32: GstAudioFormat = 10;
|
||||
pub const GST_AUDIO_FORMAT_S32: GstAudioFormat = 12;
|
||||
pub const GST_AUDIO_FORMAT_U32: GstAudioFormat = 14;
|
||||
pub const GST_AUDIO_FORMAT_S24: GstAudioFormat = 16;
|
||||
pub const GST_AUDIO_FORMAT_U24: GstAudioFormat = 18;
|
||||
pub const GST_AUDIO_FORMAT_S20: GstAudioFormat = 20;
|
||||
pub const GST_AUDIO_FORMAT_U20: GstAudioFormat = 22;
|
||||
pub const GST_AUDIO_FORMAT_S18: GstAudioFormat = 24;
|
||||
pub const GST_AUDIO_FORMAT_U18: GstAudioFormat = 26;
|
||||
pub const GST_AUDIO_FORMAT_F32: GstAudioFormat = 28;
|
||||
pub const GST_AUDIO_FORMAT_F64: GstAudioFormat = 30;
|
||||
|
||||
pub type GstAudioLayout = c_int;
|
||||
pub const GST_AUDIO_LAYOUT_INTERLEAVED: GstAudioLayout = 0;
|
||||
|
|
Loading…
Reference in a new issue