summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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[sms] Fix bug in SMSPeakDetection.find_peaks.John Glover
Memory for frame audio arrays should be managed by the Frame object.
2013-01-24[tests] Fix bug in peak detection tests.John Glover
2013-01-24[base] Array dealloc clean up.John Glover
Check that array pointers are not null before deleting. Set array pointers to null after delete.
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-11Make sure inherited overloaded methods are available.John Glover
Make Synthesis reset method public.
2012-10-26[partial_tracking] Make reset method a publicJohn Glover
method of all partial tracking classes.
2012-10-25[mq] Add C++ MQSynthesis class.John Glover
2012-10-24[mq] Add C++ MQPartialTracking classJohn Glover
2012-10-24[mq] Add MQPeakDetection C++ class.John Glover
2012-10-24[mq] Tidy up C++ MQ implementation.John Glover
2012-10-24[loris] Remove unused filesJohn Glover
2012-10-15[partial_tracking] Getters/setters for more SMS John Glover
partial tracking parameters.
2012-10-14Add some includes that were needed to get simplJohn Glover
to build on CentOS 6.3 (thanks to Ryan Wessels for pointing this out).
2012-10-03[base] Bug fix: don't assign peak and partialJohn Glover
pointer arrays to NULL when clear_peaks and clear_partials methods are called as the generated Cython code won't compile. Just set the num_peaks and num_partials values to 0.
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-24[sms] peakContinuation.c whitespace cleanup.John Glover
2012-09-24[base] Bug fix: set peak and partial vectors toJohn Glover
NULL when clearing rather than emptying the vectors. Check that current number of peaks/partials does not excede the max when adding new peaks/partials.
2012-09-19[residual] Bug fix: also set synth hop size whenJohn Glover
SMSResidual hop size is changed.
2012-09-19[sndobj] Bug fix: make sure that TWOPI is notJohn Glover
already defined elsewhere.
2012-09-13[sms] Allow SMSResidual objects to use differentJohn Glover
frame and hop sizes. Fix bug in SMSPeakDetection when operating in real-time mode (audio was not being copied to the analysis buffer correctly).
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-09-11[base] Bug fix: peaks and partial vectors shouldJohn Glover
be resized outside of data loss warning.
2012-09-11[base] Add warning for potential data loss whenJohn Glover
the max peaks/partials in a frame is changed.
2012-09-11[base] Clean up: remove old Partial object.John Glover
2012-09-11[residual] SMSResidual fix: don't call Frame.clearJohn Glover
as it now clears the audio buffer as well as peak/partial data. Remove some dead code.
2012-09-11[base] Add ability to clear all synthesisedJohn Glover
sample buffers in a Frame (but not the audio buffer).
2012-09-11[base, peak_detection] Allow blocks of samplesJohn Glover
smaller than the frame size to be copied to Frame objects. Remove unused code from Peak objects relating to old Partials objects. Manage memory for sample arrays in Frame objects if operating in non-real-time.
2012-09-11[exceptions] Remove unused Exception classes, addJohn Glover
exceptions.cpp to list of sources in Python extension.
2012-09-10[base] If Frames allocate their own memory, zeroJohn Glover
all sample arrays when clear function is called.
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-21[sndobj] Update SndObj to use FFTW v3 (was using v2). Remove unused SndObj ↵John Glover
files. Whitespace clean up.
2012-08-12[partial_tracking] Recreate SndObjs when changingJohn Glover
parameters instead of using Set<param> functions.
2012-08-12[synthesis] Add C++ implementation of SndObjSynthesis.John Glover
2012-08-11[sndobj] Add C++ implementation of SndObjPartialTracking.John Glover
2012-08-11[sndobj] Recreate SndObjs instead of using Set<param>John Glover
functions, safer as some Set functions were creating memory leaks.
2012-08-11[sndobj] Initialise arrays to zero in IFGram.cppJohn 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[sndobj] Whitespace cleanup.John Glover
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[peak_detection] Add C++ implementation of SndObj peak detection.John Glover