Skeleton tests for BBT_Time.
[ardour.git] / libs / ardour / test / interpolation-test.h
1 /* 
2  * Copyright(C) 2000-2008 Paul Davis
3  * Author: Hans Baier
4  * 
5  * Evoral is free software; you can redistribute it and/or modify it under the
6  * terms of the GNU General Public License as published by the Free Software
7  * Foundation; either version 2 of the License, or(at your option) any later
8  * version.
9  * 
10  * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
11  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for details.
13  * 
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include <cassert>
20 #include <stdint.h>
21 #include <cppunit/TestFixture.h>
22 #include <cppunit/extensions/HelperMacros.h>
23
24 #include "ardour/interpolation.h"
25
26 class InterpolationTest : public CppUnit::TestFixture
27 {
28     CPPUNIT_TEST_SUITE(InterpolationTest);
29     CPPUNIT_TEST(cubicInterpolationTest);
30     CPPUNIT_TEST(linearInterpolationTest);
31     CPPUNIT_TEST_SUITE_END();
32     
33     #define NUM_SAMPLES 1000000
34     #define INTERVAL 100
35     
36     ARDOUR::Sample  input[NUM_SAMPLES];
37     ARDOUR::Sample output[NUM_SAMPLES];
38     
39     ARDOUR::LinearInterpolation linear;
40     ARDOUR::CubicInterpolation  cubic;
41
42     public:
43         
44         void setUp() {
45             for (int i = 0; i < NUM_SAMPLES; ++i) {
46                 if (i % INTERVAL == 0) {
47                     input[i] = 1.0f;
48                 } else {
49                     input[i] = 0.0f;
50                 }
51                 output[i] = 0.0f;
52             }
53             linear.add_channel_to (NUM_SAMPLES, NUM_SAMPLES);
54             cubic.add_channel_to (NUM_SAMPLES, NUM_SAMPLES);
55         }
56         
57         void tearDown() {
58         }
59
60         void linearInterpolationTest();
61         void cubicInterpolationTest();
62 };