summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sndobj/FFT.cpp16
-rw-r--r--src/sndobj/IFGram.cpp9
-rw-r--r--tests/test_peak_detection.cpp69
-rw-r--r--tests/test_peak_detection.h25
-rw-r--r--tests/tests.cpp1
5 files changed, 117 insertions, 3 deletions
diff --git a/src/sndobj/FFT.cpp b/src/sndobj/FFT.cpp
index 666fe88..d527ea5 100644
--- a/src/sndobj/FFT.cpp
+++ b/src/sndobj/FFT.cpp
@@ -108,8 +108,20 @@ FFT::~FFT(){
fftw_destroy_plan(m_plan);
fftw_free(m_fftIn);
fftw_free(m_fftOut);
- delete[] m_counter;
- delete[] m_sigframe;
+ if(m_counter){
+ delete[] m_counter;
+ m_counter = NULL;
+ }
+ for(int i = 0; i < m_frames; i++){
+ if(m_sigframe[i]){
+ delete[] m_sigframe[i];
+ m_sigframe[i] = NULL;
+ }
+ }
+ if(m_sigframe){
+ delete[] m_sigframe;
+ m_sigframe = NULL;
+ }
}
void
diff --git a/src/sndobj/IFGram.cpp b/src/sndobj/IFGram.cpp
index a5b374d..fb4cfa7 100644
--- a/src/sndobj/IFGram.cpp
+++ b/src/sndobj/IFGram.cpp
@@ -60,7 +60,14 @@ IFGram::IFGram(Table* window, SndObj* input, double scale,
}
IFGram::~IFGram(){
- delete[] m_diffwin;
+ if(m_diffwin){
+ delete[] m_diffwin;
+ m_diffwin = NULL;
+ }
+ if(m_pdiff){
+ delete[] m_pdiff;
+ m_pdiff = NULL;
+ }
fftw_destroy_plan(m_diffplan);
fftw_free(m_diffsig);
diff --git a/tests/test_peak_detection.cpp b/tests/test_peak_detection.cpp
index 5aeca75..23480ba 100644
--- a/tests/test_peak_detection.cpp
+++ b/tests/test_peak_detection.cpp
@@ -160,3 +160,72 @@ void TestLorisPeakDetection::test_find_peaks_change_hop_frame_size() {
CPPUNIT_ASSERT(frames[i]->num_peaks() == 0);
}
}
+
+
+// ---------------------------------------------------------------------------
+// TestSndObjPeakDetection
+// ---------------------------------------------------------------------------
+void TestSndObjPeakDetection::setUp() {
+ _sf = SndfileHandle(TEST_AUDIO_FILE);
+
+ if(_sf.error() > 0) {
+ throw Exception(std::string("Could not open audio file: ") +
+ std::string(TEST_AUDIO_FILE));
+ }
+}
+
+void TestSndObjPeakDetection::test_find_peaks_in_frame_basic() {
+ int frame_size = 2048;
+
+ _pd.clear();
+ _pd.frame_size(frame_size);
+
+ Frame f = Frame(frame_size, true);
+ _pd.find_peaks_in_frame(&f);
+ CPPUNIT_ASSERT(f.num_peaks() == 0);
+}
+
+void TestSndObjPeakDetection::test_find_peaks_basic() {
+ int frame_size = 512;
+ std::vector<sample> audio(frame_size * 2, 0.0);
+
+ _pd.clear();
+ _pd.frame_size(frame_size);
+
+ Frames frames = _pd.find_peaks(audio.size(), &audio[0]);
+
+ CPPUNIT_ASSERT(frames.size() == 2);
+ for(int i = 0; i < frames.size(); i++) {
+ CPPUNIT_ASSERT(frames[i]->num_peaks() == 0);
+ }
+}
+
+void TestSndObjPeakDetection::test_find_peaks_audio() {
+ int num_frames = 5;
+ int num_samples = _pd.frame_size() + (_pd.hop_size() * num_frames);
+
+ std::vector<sample> audio(_sf.frames(), 0.0);
+ _sf.read(&audio[0], (int)_sf.frames());
+
+ _pd.clear();
+ Frames frames = _pd.find_peaks(num_samples,
+ &(audio[(int)_sf.frames() / 2]));
+ for(int i = 0; i < frames.size(); i++) {
+ CPPUNIT_ASSERT(frames[i]->num_peaks() > 0);
+ }
+}
+
+void TestSndObjPeakDetection::test_find_peaks_change_hop_frame_size() {
+ int num_samples = 1024;
+ std::vector<sample> audio(num_samples, 0.0);
+
+ _pd.clear();
+ _pd.frame_size(256);
+ _pd.hop_size(256);
+
+ 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);
+ }
+}
diff --git a/tests/test_peak_detection.h b/tests/test_peak_detection.h
index 2b574cb..a107ee8 100644
--- a/tests/test_peak_detection.h
+++ b/tests/test_peak_detection.h
@@ -73,6 +73,31 @@ protected:
void test_find_peaks_change_hop_frame_size();
};
+
+// ---------------------------------------------------------------------------
+// TestSndObjPeakDetection
+// ---------------------------------------------------------------------------
+class TestSndObjPeakDetection : public CPPUNIT_NS::TestCase {
+ CPPUNIT_TEST_SUITE(TestSndObjPeakDetection);
+ CPPUNIT_TEST(test_find_peaks_in_frame_basic);
+ CPPUNIT_TEST(test_find_peaks_basic);
+ CPPUNIT_TEST(test_find_peaks_audio);
+ CPPUNIT_TEST(test_find_peaks_change_hop_frame_size);
+ CPPUNIT_TEST_SUITE_END();
+
+public:
+ void setUp();
+
+protected:
+ SndObjPeakDetection _pd;
+ SndfileHandle _sf;
+
+ void test_find_peaks_in_frame_basic();
+ void test_find_peaks_basic();
+ void test_find_peaks_audio();
+ void test_find_peaks_change_hop_frame_size();
+};
+
} // end of namespace simpl
#endif
diff --git a/tests/tests.cpp b/tests/tests.cpp
index d185923..e52653d 100644
--- a/tests/tests.cpp
+++ b/tests/tests.cpp
@@ -10,6 +10,7 @@
CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestPeak);
CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestFrame);
CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestMQPeakDetection);
+CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestSndObjPeakDetection);
CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestTWM);
CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestLorisPeakDetection);
CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestMQPartialTracking);