mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 07:38:16 +00:00
interpolationcontrolsource: fix cubic interpolation for arrays
This commit is contained in:
parent
3ba0ab5331
commit
3ebd639d34
1 changed files with 1 additions and 1 deletions
|
@ -437,7 +437,7 @@ interpolate_cubic_get_value_array (GstTimedValueControlSource * self,
|
|||
}
|
||||
if (cp1) {
|
||||
val = _interpolate_cubic (self, cp1, cp1->value, cp2,
|
||||
(cp2 ? cp2->value : 0.0), timestamp);
|
||||
(cp2 ? cp2->value : 0.0), ts);
|
||||
ret = TRUE;
|
||||
GST_LOG ("values[%3d]=%lf", i, val);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue