mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 05:26:23 +00:00
interpolationcontrolsource: fix write over the array size
The '++' got incidentially added during the refactoring in
2fe3939ce7
.
This commit is contained in:
parent
8487133114
commit
9a30399e4f
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ interpolate_linear_get_value_array (GstTimedValueControlSource * self,
|
|||
ret = TRUE;
|
||||
GST_LOG ("values[%3d]=%lf", i, *values);
|
||||
} else {
|
||||
*values++ = NAN;
|
||||
*values = NAN;
|
||||
GST_LOG ("values[%3d]=-", i);
|
||||
}
|
||||
ts += interval;
|
||||
|
|
Loading…
Reference in a new issue