add binding to unset all scheduled control source values

This commit is contained in:
RSWilli
2023-10-27 11:10:04 +02:00
parent bea1b98ef1
commit 9c148b46d2

View File

@@ -43,3 +43,7 @@ func (cs *InterpolationControlSource) SetInterpolationMode(mode InterpolationMod
func (cs *InterpolationControlSource) SetTimedValue(time ClockTime, value float64) bool {
return gobool(C.gst_timed_value_control_source_set(C.toGstTimedValueControlSource(cs.Unsafe()), C.GstClockTime(time), C.double(value)))
}
func (cs *InterpolationControlSource) UnsetAll() {
C.gst_timed_value_control_source_unset_all(C.toGstTimedValueControlSource(cs.Unsafe()))
}