summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2013-01-24 16:18:13 +0100
committerJohn Glover <j@johnglover.net>2013-01-24 16:18:13 +0100
commitc010347e4f84647ad33dde4df7be09ec74239a58 (patch)
tree6eef07e02b4820b6e91aaf6f256c342c0ff9f6c0 /tests
parent0fbfa61da91408154b49d38834f8e5e51d7da54f (diff)
downloadsimpl-c010347e4f84647ad33dde4df7be09ec74239a58.tar.gz
simpl-c010347e4f84647ad33dde4df7be09ec74239a58.tar.bz2
simpl-c010347e4f84647ad33dde4df7be09ec74239a58.zip
[tests] Fix bug in peak detection tests.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_peak_detection.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_peak_detection.cpp b/tests/test_peak_detection.cpp
index 2f668bc..3cb9c1a 100644
--- a/tests/test_peak_detection.cpp
+++ b/tests/test_peak_detection.cpp
@@ -63,8 +63,7 @@ void TestMQPeakDetection::test_find_peaks_change_hop_frame_size() {
_pd.frame_size(256);
_pd.hop_size(256);
- Frames frames = _pd.find_peaks(num_samples,
- &(audio[(int)_sf.frames() / 2]));
+ Frames frames = _pd.find_peaks(num_samples, &audio[0]);
CPPUNIT_ASSERT(frames.size() == 4);
for(int i = 0; i < frames.size(); i++) {
CPPUNIT_ASSERT(frames[i]->num_peaks() == 0);
@@ -133,8 +132,7 @@ void TestLorisPeakDetection::test_find_peaks_change_hop_frame_size() {
_pd.frame_size(256);
_pd.hop_size(256);
- Frames frames = _pd.find_peaks(num_samples,
- &(audio[(int)_sf.frames() / 2]));
+ Frames frames = _pd.find_peaks(num_samples, &audio[0]);
CPPUNIT_ASSERT(frames.size() == 4);
for(int i = 0; i < frames.size(); i++) {
CPPUNIT_ASSERT(frames[i]->num_peaks() == 0);