mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-12-22 08:07:07 +00:00
audio,video: Ignore *Format::get_info
The result is not nullable, and this function call can be substituted by *FormatInfo::from_format().
This commit is contained in:
parent
18d6823dd8
commit
604902ed7c
2 changed files with 12 additions and 0 deletions
|
@ -148,6 +148,12 @@ status = "generate"
|
|||
# is broken.
|
||||
manual = true
|
||||
|
||||
[[object.function]]
|
||||
name = "get_info"
|
||||
# Result is not nullable, function does effectively the same
|
||||
# as AudioFormatInfo::from_format()
|
||||
ignore = true
|
||||
|
||||
[[object]]
|
||||
name = "GstAudio.AudioStreamAlign"
|
||||
status = "generate"
|
||||
|
|
|
@ -394,6 +394,12 @@ status = "generate"
|
|||
[object.function.return]
|
||||
nullable = false
|
||||
|
||||
[[object.function]]
|
||||
name = "get_info"
|
||||
# Result is not nullable, function does effectively the same
|
||||
# as VideoFormatInfo::from_format()
|
||||
ignore = true
|
||||
|
||||
[[object]]
|
||||
name = "GstVideo.VideoSink"
|
||||
status = "generate"
|
||||
|
|
Loading…
Reference in a new issue