mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-12-22 16:16:37 +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.
|
# is broken.
|
||||||
manual = true
|
manual = true
|
||||||
|
|
||||||
|
[[object.function]]
|
||||||
|
name = "get_info"
|
||||||
|
# Result is not nullable, function does effectively the same
|
||||||
|
# as AudioFormatInfo::from_format()
|
||||||
|
ignore = true
|
||||||
|
|
||||||
[[object]]
|
[[object]]
|
||||||
name = "GstAudio.AudioStreamAlign"
|
name = "GstAudio.AudioStreamAlign"
|
||||||
status = "generate"
|
status = "generate"
|
||||||
|
|
|
@ -394,6 +394,12 @@ status = "generate"
|
||||||
[object.function.return]
|
[object.function.return]
|
||||||
nullable = false
|
nullable = false
|
||||||
|
|
||||||
|
[[object.function]]
|
||||||
|
name = "get_info"
|
||||||
|
# Result is not nullable, function does effectively the same
|
||||||
|
# as VideoFormatInfo::from_format()
|
||||||
|
ignore = true
|
||||||
|
|
||||||
[[object]]
|
[[object]]
|
||||||
name = "GstVideo.VideoSink"
|
name = "GstVideo.VideoSink"
|
||||||
status = "generate"
|
status = "generate"
|
||||||
|
|
Loading…
Reference in a new issue