13
0

still more debugging output

git-svn-id: svn://localhost/ardour2/branches/3.0@13579 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-11-30 23:38:15 +00:00
parent 202788ea18
commit 776eb23e8b

View File

@ -255,6 +255,10 @@ Curve::_get_vector (double x0, double x1, float *vec, int32_t veclen)
/* fill some end section of the array with the default or final value */
double frac = (x1 - max_x) / (x1 - x0);
cerr << "compute subveclen from " << original_veclen << " * " << frac
<< " taken from " << x0 << " .. " << x0
<< endl;
int64_t subveclen = (int64_t) floor (original_veclen * frac);