aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-07Delete unneeded filesJamie Bullock
2014-11-07Tidy up .gitignoreJamie Bullock
2014-11-07Add "install" targetJamie Bullock
2014-11-07Move xtract inside "include" directoryJamie Bullock
2014-11-07Fix bug in pathsJamie Bullock
2014-11-07Add examples to new build systemJamie Bullock
2014-11-06Actually add Makefiles!Jamie Bullock
- Not added in previous commit due to being in .gitignore
2014-11-06Remove puredata and MaxMSP examplesJamie Bullock
2014-11-06Initial simplified build system based on GNU MakeJamie Bullock
2014-11-06Minor formatting changeJamie Bullock
2014-07-17Add documentation information to READMEJamie Bullock
2014-06-13Merge pull request #61 from seanlikeskites/masterJamie Bullock
MSVC fixes
2014-06-12some fixes to scalar.c so they work in MSVCSean Enderby
2014-06-06Add new helper function xtract_smoothed(), e.g. can be used to extract ↵Jamie Bullock
smoothed spectrum
2014-06-05Fix broken xtract_stateful.hJamie Bullock
2014-06-05Fix bug in xtract_last_n()Jamie Bullock
2014-06-05Fix bug in xtract_peak()Jamie Bullock
2014-06-05Update documentation for xtract_lnorm()Jamie Bullock
2014-06-05Add normalisation capability to xtract_lnorm()Jamie Bullock
2014-06-05Use AM_CPPFLAGS instead of AM_CFLAGSJamie Bullock
2014-06-05Fix bug in ringbufJamie Bullock
2014-06-05Add test wav fileJamie Bullock
2014-06-05Replace simpletest.c with simpletest.cppJamie Bullock
2014-06-04Support for CPP files in build systemJamie Bullock
2014-06-04Add WaveFile class for loading audio files in simpletestJamie Bullock
2014-06-04Add stdint includeJamie Bullock
2014-06-04Merge pull request #53 from seanlikeskites/tristimulusWorkJamie Bullock
Possible Corrections to Tristimulus Functions
2014-06-04Add stateful.c and ringbuf.c to build systemJamie Bullock
2014-06-04Autotools fix: allow subdir-objectsJamie Bullock
2014-06-04Replace deprecated INCLUDES directive with AM_CFLAGSJamie Bullock
2014-06-04Correct name for xtract_peak()Jamie Bullock
2014-06-04Fix conflict with Makefile.am for SWIG bindings and autotoolsJamie Bullock
2014-06-04Update SWIG bindings, to (for now) ignore new stageful functionsJamie Bullock
2014-06-03Add ring buffer implementationJamie Bullock
2014-06-03Add xtract_peak() determines whether the 'current' value is a peakJamie Bullock
2014-06-03Add "stateful" feature type with initial feature "last n"Jamie Bullock
Stateful feature extraction functions are functions that require state to be maintained between successive calls. This is necessary, for example when an accumulation of values is required, or changes need to be measured over time. The initial xtract_last_n() function accumulates the last N (single) values from *data and writes them to *result
2014-03-27Merge pull request #58 from q-depot/masterJamie Bullock
add VC2012 project to compile static and dynamic lib, also fix some C
2014-03-27remove *.tlog filesandrea@nocte.co.uk
2014-03-27add VC2012 project to compile static and dynamic lib, also fix some CQ
issues
2014-03-17Fixed bugs in xtract_failsafe_f0(). Should now actually be failsafe. Only ↵Jamie Bullock
exception is silent input.
2014-03-11Set result value before returnJamie Bullock
2014-03-11Set *result to note value in xtract_midicent(). Fixes bug.Jamie Bullock
2014-03-11Add MIDICENT to simpletestJamie Bullock
2014-03-11Add range checkJamie Bullock
2014-03-11Add xtract_midicent() convenience function to convert from frequency to MIDI ↵Jamie Bullock
cent
2014-03-07Return XTRACT_ARGUMENT_ERROR if we try to initialise an mel filter bank with ↵Jamie Bullock
less than 2 bands
2014-03-07Add additional error code XTRACT_ARGUMENT_ERRORJamie Bullock
2014-03-07Fix potential memory leakJamie Bullock
2014-02-25updated docs and removed commented out codeSean Enderby
2014-02-25tristimulus3 correctionSean Enderby