summaryrefslogtreecommitdiff
path: root/libs/ardour/tests/interpolation-test.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/tests/interpolation-test.h')
-rw-r--r--libs/ardour/tests/interpolation-test.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/tests/interpolation-test.h b/libs/ardour/tests/interpolation-test.h
index 3231f32464..0c1b0de6c2 100644
--- a/libs/ardour/tests/interpolation-test.h
+++ b/libs/ardour/tests/interpolation-test.h
@@ -35,7 +35,7 @@ class InterpolationTest : public CppUnit::TestFixture
ARDOUR::Sample input[NUM_SAMPLES];
ARDOUR::Sample output[NUM_SAMPLES];
- ARDOUR::LinearInterpolation linear;
+ ARDOUR::Interpolation interpolation;
public:
@@ -48,6 +48,7 @@ class InterpolationTest : public CppUnit::TestFixture
}
output[i] = 0.0f;
}
+ interpolation.add_channel_to (NUM_SAMPLES, NUM_SAMPLES);
}
void tearDown() {