summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-11-30 23:38:15 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-11-30 23:38:15 +0000
commit776eb23e8b1cfa538b0ed20599ef4a61de05fcd0 (patch)
treebde0b082cb358b45cc7a742cb3a6a789c5165825 /libs
parent202788ea18ddff1754da0b77d1d77ca6ef6fbca1 (diff)
still more debugging output
git-svn-id: svn://localhost/ardour2/branches/3.0@13579 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/evoral/src/Curve.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/evoral/src/Curve.cpp b/libs/evoral/src/Curve.cpp
index 4f9d30775d..b59d4735bf 100644
--- a/libs/evoral/src/Curve.cpp
+++ b/libs/evoral/src/Curve.cpp
@@ -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);