forked from mirrors/gstreamer-rs
ges: BaseEffect is available since 1.2 even if all its functions are only since 1.18
There's a heuristic in the code generator to base the version on the functions' versions if the type itself has none, simply because too many libraries get this wrong. Let's override that here.
This commit is contained in:
parent
d216757c23
commit
843fd923af
1 changed files with 6 additions and 1 deletions
|
@ -42,7 +42,6 @@ generate = [
|
|||
"GES.Edge",
|
||||
"GES.FrameNumber",
|
||||
"GES.TrackType",
|
||||
"GES.BaseEffect",
|
||||
"GES.Group",
|
||||
"GES.UriClipAsset",
|
||||
"GES.UriSourceAsset",
|
||||
|
@ -78,6 +77,12 @@ name = "Gst.ClockTime"
|
|||
status = "manual"
|
||||
conversion_type = "scalar"
|
||||
|
||||
[[object]]
|
||||
name = "GES.BaseEffect"
|
||||
status = "generate"
|
||||
# Actually available since 1.2 even if all functions are new in 1.18
|
||||
version = "1.2"
|
||||
|
||||
[[object]]
|
||||
name = "GES.Effect"
|
||||
status = "generate"
|
||||
|
|
Loading…
Reference in a new issue