summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2013-06-22[residual] Add basic test for SMSResidualJohn Glover
2013-06-22[tests] Refactor partial tracking tests.John Glover
2013-06-21[tests] Add basic SndObjSynthesis testsJohn Glover
2013-06-15Add basic tests for SndObjPartialTracking.John Glover
Fix reading invalid memory address when looping over partials.
2013-06-14Add basic SndObjPeakDetection tests. Fix memory leaks.John Glover
2013-06-12Make add_peak, add_partial and partial methods on Frame objects take Peak ↵John Glover
parameters instead of Peak object pointers. Update Python objects to return void from find_peaks_in_frame and update_partials.
2013-06-12Make Frame objects able to accept a single hop-size buffer of audio. Samples ↵John Glover
are rotated internally.
2013-06-07Fix memory leaks in partial tracking processesJohn Glover
2013-06-07Fix memory leaks in peak detection processesJohn Glover
2013-02-16[mq] Add C++ implementation of TWMJohn Glover
2013-01-25[tests] Add basic tests for SMS synthesisJohn Glover
2013-01-25[tests] Add test for changing frame sizes with LorisSynthesis.John Glover
2013-01-25[tests] Add synthesis test for changing frame sizes.John Glover
Refactor synthesis tests so code for generic test cases isn't duplicated.
2013-01-24[tests] Fix bug in peak detection tests.John Glover
2013-01-21[tests] Add SMS partial tracking test_peaks.John Glover
Was accidently commented out in previous commit.
2013-01-21[partial_tracking,sms] Fix bug in SMS partial tracking.John Glover
GetNextClosestPeak was missing peaks in some situations. Some general tidy up of SMS partial tracking code.
2013-01-15[tests] Add test audio sample (flute.wav) to repo.John Glover
2013-01-11[tests] Tidy up test C++ tests.John Glover
All tests can now be run from a single executable called 'tests' (created in the build directory).
2013-01-11Remove unused test Makefile and valgrind suppression fileJohn Glover
2012-10-28[tests] Remove unused test files.John Glover
2012-10-25[mq] Add C++ MQSynthesis class.John Glover
2012-10-24[mq] Add C++ MQPartialTracking classJohn Glover
2012-10-24Add MQ peak detection C++ basic test fileJohn Glover
2012-09-24[tests] Use inharmonic mode when creating SMS test dataJohn Glover
2012-09-24[partial_tracking] Default to inharmonic partialJohn Glover
tracking mode in SMSPartialTracking. Add methods to SMSPartialTracking to allow realtime mode and harmonic mode to be switched on/off.
2012-09-12[partial_tracking] Bug fix: Add custom implementation of John Glover
Loris PartialBuilder::buildPartials that works in real-time.
2012-09-12[base, synthesis] Allow synthesis sample arraysJohn Glover
to be created and destroyed independently of input audio sample arrays in Frame objects. Fix bug in Cython synthesis wrapper that prevented the hop size from being changed correctly. Don't create memory in non-real-time synthesis function as it is now managed by the Frame object itself.
2012-08-23[loris] Add C++ implementation of LorisSynthesis.John Glover
2012-08-23[sndobj] Fix bug in SndObjSynthesis. Partial IDs were not being handled ↵John Glover
correctly, added new class based on AdSyn that does not rely on IDs.
2012-08-22[loris] Add C++ implementation of LorisPartialTracking.John Glover
2012-08-22[loris] LorisPeakDetection updates and fixes (save bandwidth to simpl Peak ↵John Glover
objects).
2012-08-22[loris] Add C++ LorisPeakDetection.John Glover
2012-08-11[sndobj] Add C++ implementation of SndObjPartialTracking.John Glover
2012-08-11[base, synthesis] Allow synth size to be independent from frame size. Call ↵John Glover
synth_frame from Cython Synthesis.synth so that derived classes synth_frame methods are called.
2012-07-29[base] Clear new peak and partial lists with Frame.clearJohn Glover
2012-07-29[peak_detection] Make PeakDetection.find_peaksJohn Glover
return 1 frame per hop size (zero pad frames at the end of the signal if necessary).
2012-07-29[partial_tracking] Call Cython PartialTracking.update_partialsJohn Glover
instead of C++ method so that Python classes can inherit it. Save frame partials as a Python list instead of getting a list of peaks from the C++ object. Update partial tracking tests.
2012-07-29[peak_detection] Call C++ find_peaks function inJohn Glover
SMSPeakDetection.find_peaks. Check for _static_frame_size in SMSPeakDetection.find_peaks. Create new analysis object when changing frame size in SndObjPeakDetection. Update PeakDetection tests for new frame.peaks object and find_peaks changes.
2012-07-20[tests] Remove plot from test_residual. Add sndobj partial tracking test ↵John Glover
data script.
2012-07-20[peak_detection] Add C++ implementation of SndObj peak detection.John Glover
2012-07-12[tests] Don't run old sndobj tests.John Glover
2012-07-12[tests] Rename create_libsms_test_data.py to create_test_data.py.John Glover
2012-07-10[residual] Update residual so that it just requiresJohn Glover
a frame of audio (calculates harmonic component itself).
2012-07-08[peak_detection] Bug fix: add peaks to frame object inJohn Glover
find_peaks_in_frame instead of in find_peaks. Set SMSAnalysisParams.iSizeSound to be the hop size, so some value is set when used in real-time.
2012-07-06[residual] Add C++ implementation of SMSResidual.John Glover
2012-07-06[tests] Remove unnecessary code from test_synthesis.John Glover
2012-07-06[tests] Rename testbase.cpp to test_base.cpp for consistency.John Glover
2012-07-06[tests] Remove old test files. Ignore libsms residual waveform.John Glover
2012-07-03[synthesis] Fix SMSSynthesis (was using Peak data instead of tracked ↵John Glover
Partials). Add test for harmonic synthesis using sum of sines.
2012-07-02[synthesis] Add C++ implemention of SMSSynthesis.John Glover