interpolationcontrolsource: fix write over the array size

The '++' got incidentially added during the refactoring in
2fe3939ce7.
This commit is contained in:
Stefan Sauer 2015-10-01 22:09:58 +02:00
parent 8487133114
commit 9a30399e4f

View file

@ -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;