summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2012-07-02[tests] Remove JSON test data (can be recreated from ↵John Glover
create_libsms_test_data.py).
2012-07-02[partial_tracking] Add C++ implemention of SMS partial tracking.John Glover
Update libsms test data.
2012-07-02[tests] Use JSON libsms test data instead of recalculating each time. ↵John Glover
Importing libsms seems to create name clashes with simpl's modified sms functions.
2012-07-02[loris] Remove old test file.John Glover
2012-06-30[sms] Add C++ implementation of SMSPeakDetection.John Glover
2012-06-30Restructure class files. John Glover
Group classes by type (peak detection, partial tracking, etc) rather than by algorithm name. This is because Cython needs the full inheritance hierarchy to be in the same file.
2012-06-29[sms] Rename sms.py to pysms.py.John Glover
PEP8 cleanup of test_sms.py.
2012-06-28[base] Add C++ implementation of Synthesis and Residual.John Glover
2012-06-28[tests] Remove old SMS test file.John Glover
2012-06-28[base] Add C++ PartialTracking implementation.John Glover
2012-06-26[base] Add C++ implementation of PeakDetection.find_peaks_in_frame and ↵John Glover
PeakDetection.find_peaks
2012-06-25[base] Add C++/Cython PeakDetection.frames and Frame.peaksJohn Glover
2012-03-22[base] updating Cython Frame and PeakDetection classesJohn Glover
2012-03-16add Cython base.Peak classJohn Glover
2012-03-16add Cython version of simpl base frame classJohn Glover
2012-03-08[setup, tests] whitespace tidy upJohn Glover
2012-01-27Remove license info from individual source files.John Glover
Move main license file to project root.
2011-08-29Tidy up PeakDetection::find_peaksJohn Glover
2011-08-27Add frame peaks iterators and tidy up PeakDetectionJohn Glover
2011-08-26frame refactorJohn Glover
2011-08-26Add simpl valgrind suppression fileJohn Glover
Ignore valgrind errors due to a memory leak when throwing a std::exception
2011-08-26Add -gJohn Glover
2011-08-24Change frame objects to have pointers to number John Glover
arrays instead of having their own std::vector of samples
2011-08-21bugfix: remove .o files instead of *oJohn Glover
2011-08-21Add next_frame_size methodJohn Glover
2011-08-21Add PeakDetection C++ class and testsJohn Glover
2011-08-20Add C++ frame class and testsJohn Glover
2011-08-19Add initial C++ unit testsJohn Glover
2011-07-22add skeleton of loris test fileJohn Glover
2011-06-24Update test file namesJohn Glover
2011-06-24Change to using distutils.John Glover
Currently only builds the simplsndobj module
2011-01-06Fixed SMSResidual. Also removed blank frames produced by sms at the ↵John Glover
beginning of analysis which was causing synthesised audio to be out of sync with the original.
2010-12-30Updated test_sms_analyze to use the new Frame objectsJohn Glover
2010-12-24Fixed a bug in converting SMS peak amplitudes from DB to linearJohn Glover
2010-12-24Residual test is now runJohn Glover
2010-12-22Updated SMS to work with the simpl v0.2 APIJohn Glover
2010-12-21Fixed bug in SMSPartialTrackingJohn Glover
2010-12-17Fixed wrong method being called in test_residualJohn Glover
2010-12-17Updated test_residualJohn Glover
2010-12-13Fixed bug in SMSSynthesis, Partials were not being correctly linkedJohn Glover
2010-12-11Updating residual testJohn Glover
2010-12-09Fixed bug in SMS peak detection - find_peaks was leaking memory wen saving ↵John Glover
peaks, and a pointer assignment in find_peaks could lead to a double free in freeAnalysis/freeSpectralPeaks.
2010-12-09Updated test to use noseJohn Glover
2010-12-08Removed limitation on number of SMS instances that can be created at once. ↵John Glover
The new libsms memory management code in v1.15 fixes this issue
2010-12-08Fixed a SMS issue in sms_initSynth where having a hop size that was not a ↵John Glover
power of 2 would stop execution. Fixed another SMS test.
2010-12-03Fixed bug in harmDetection.c, added more SMS testsJohn Glover
2010-12-02Fixed some memory bugs in SMS caused by incorrect array boundary checkingJohn Glover
2010-12-01Fixed some memory management problems in the SMS analysis processJohn Glover
2010-11-24Updated libsms to the latest version (1.15), includes some memory management ↵John Glover
improvements/simplifications but the basic API is the same. Also started updating the unit tests, which will now use the nose framework
2010-11-11Added LP module and testsJohn Glover