interpolationcontrolsource: fix write over the array size
The '++' got incidentially added during the refactoring in 2fe3939ce7ea84c45dd922e7f1097dd07f11fc5d.
This commit is contained in:
parent
8487133114
commit
9a30399e4f
@ -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…
x
Reference in New Issue
Block a user