summaryrefslogtreecommitdiff
path: root/libs/ardour/tests/interpolation-test.cc
blob: 5a559cc830ae0e55468923f92dd74b0daf5eb62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <sigc++/sigc++.h>
#include "interpolation-test.h"

CPPUNIT_TEST_SUITE_REGISTRATION( InterpolationTest );

using namespace std;
using namespace ARDOUR;

void
InterpolationTest::linearInterpolationTest ()
{
	cout << "\nLinear Interpolation Test\n";
	cout << "\nSpeed: 1.0";
	linear.set_speed (1.0);
	linear.set_target_speed (linear.speed());
	nframes_t result = linear.interpolate (NUM_SAMPLES, input, output);
	CPPUNIT_ASSERT_EQUAL ((uint32_t)(NUM_SAMPLES * linear.speed()), result);	
	for (int i = 0; i < NUM_SAMPLES; i += INTERVAL) {
		CPPUNIT_ASSERT_EQUAL (1.0f, output[i]);
	}
	
	cout << "\nSpeed: 0.5";
	linear.set_speed (0.5);
	linear.set_target_speed (linear.speed());
	result = linear.interpolate (NUM_SAMPLES, input, output);
	CPPUNIT_ASSERT_EQUAL ((uint32_t)(NUM_SAMPLES * linear.speed()), result);
	for (int i = 0; i < NUM_SAMPLES; i += (INTERVAL / linear.speed() +0.5)) {
		CPPUNIT_ASSERT_EQUAL (1.0f, output[i]);
	}
	
	cout << "\nSpeed: 0.2";
	linear.set_speed (0.2);
	linear.set_target_speed (linear.speed());
	result = linear.interpolate (NUM_SAMPLES, input, output);
	CPPUNIT_ASSERT_EQUAL ((uint32_t)(NUM_SAMPLES * linear.speed()), result);

	cout << "\nSpeed: 0.02";
	linear.set_speed (0.02);
	linear.set_target_speed (linear.speed());
	result = linear.interpolate (NUM_SAMPLES, input, output);
	CPPUNIT_ASSERT_EQUAL ((uint32_t)(NUM_SAMPLES * linear.speed()), result);
	
	cout << "\nSpeed: 0.002";
	linear.set_speed (0.002);
	linear.set_target_speed (linear.speed());
	result = linear.interpolate (NUM_SAMPLES, input, output);
	CPPUNIT_ASSERT_EQUAL ((uint32_t)(NUM_SAMPLES * linear.speed()), result);
	
	cout << "\nSpeed: 2.0";
	linear.set_speed (2.0);
	linear.set_target_speed (linear.speed());
	result = linear.interpolate (NUM_SAMPLES / 2, input, output);
	CPPUNIT_ASSERT_EQUAL ((uint32_t)(NUM_SAMPLES / 2 * linear.speed()), result);
	for (int i = 0; i < NUM_SAMPLES / 2; i += (INTERVAL / linear.speed() +0.5)) {
		CPPUNIT_ASSERT_EQUAL (1.0f, output[i]);
	}

	cout << "\nSpeed: 10.0";
	linear.set_speed (10.0);
	linear.set_target_speed (linear.speed());
	result = linear.interpolate (NUM_SAMPLES / 10, input, output);
	CPPUNIT_ASSERT_EQUAL ((uint32_t)(NUM_SAMPLES / 10 * linear.speed()), result);
	for (int i = 0; i < NUM_SAMPLES / 10; i += (INTERVAL / linear.speed() +0.5)) {
		CPPUNIT_ASSERT_EQUAL (1.0f, output[i]);
	}
	/*
	for (int i=0; i < NUM_SAMPLES; ++i) {
        cout << "input[" << i << "] = " << input[i] << "  output[" << i << "] = " << output[i] << endl;	
    }
    */		
}