summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-23Fix signed-unsigned comparison warning.Bent Bisballe Nyeng
2016-01-23Update LV2 test with new FreeWheel port.Bent Bisballe Nyeng
2016-01-23Add minimal preload buffer size (1024 samples).Bent Bisballe Nyeng
2016-01-23Fix samplerate for lv2 test. Fix indentation.Bent Bisballe Nyeng
2016-01-22Rename lockBent Bisballe Nyeng
2016-01-22Fixed more type mismatch warnings.Bent Bisballe Nyeng
2016-01-22Fix type in printf.Bent Bisballe Nyeng
2016-01-22Fix mismatching type in comparison.Bent Bisballe Nyeng
2016-01-21Add missing mutex lock guards to AudioCacheFiles get and release methods.Bent Bisballe Nyeng
2016-01-20fix merge conflicts.Bent Bisballe Nyeng
2016-01-20Fix Makefiles after rebase.Bent Bisballe Nyeng
2016-01-20Ignore test log output.Bent Bisballe Nyeng
2016-01-20Fix new method names.Bent Bisballe Nyeng
2016-01-20Check full initial_samples_needed range.Bent Bisballe Nyeng
2016-01-20Check for lock in setChunkSize. Remove lock in clearEvents.Bent Bisballe Nyeng
2016-01-20Fix some comments.Bent Bisballe Nyeng
2016-01-20Split CacheManager into several AudioCache classes and refactored the lot of ↵Bent Bisballe Nyeng
them. Unit tests added.
2016-01-20Add experimental 'silencing' of all active events on frame size change.Bent Bisballe Nyeng
2016-01-20Split internal CacheManager AFile class out into it's own file/class ↵Bent Bisballe Nyeng
CacheAudioFile and improve interface.
2016-01-20Add free-wheel mode for Jack (untested).Bent Bisballe Nyeng
2016-01-20Add free-wheel mode to VST (untested).Bent Bisballe Nyeng
2016-01-20Add free-wheel mode to LV2 and DrumGizmo class.Bent Bisballe Nyeng
2016-01-20Collapse LOADNEXT events if they share filename and position.Bent Bisballe Nyeng
2016-01-20Make cachemanager behave as if it isn't there when CHUNK_MULTIPLIER is big ↵Bent Bisballe Nyeng
enough to contain all data in an audio file. Add refcounted file handling in cachemanager.
2016-01-20The SIMD implementation is broken with the current cachemanager version and ↵Bent Bisballe Nyeng
does not add much to the performance anyway; so now it is disabled.
2016-01-20Added new nth argument to test input module which plays a note each nth ↵Bent Bisballe Nyeng
sample. Overrides/disables p argument.
2016-01-20Fix cachemanager test.Bent Bisballe Nyeng
2016-01-20Fix loading with num_samples==ALL_SAMPLES (-1).Bent Bisballe Nyeng
2016-01-20Fix compiling with -Wall/error but no hugin.Bent Bisballe Nyeng
2016-01-20Fix compiling with -Wall/error but no hugin.Bent Bisballe Nyeng
2016-01-20Fix channel swapping when playing samples after the initially loaded.Bent Bisballe Nyeng
2016-01-20Make test input module work in a more logical way.Bent Bisballe Nyeng
2016-01-20Fix unit tests to run with new setFramesize feature.Bent Bisballe Nyeng
2016-01-20Fix read of memory that was alreay freed. Fix misaligned SIMD copy.Bent Bisballe Nyeng
2016-01-20Fix warning.Bent Bisballe Nyeng
2016-01-20Fix warning.Bent Bisballe Nyeng
2016-01-20Added framesize control mechanism to the engine, and made us of it in the ↵Bent Bisballe Nyeng
cachemanager and drumkitloader.
2016-01-20Remove semaphore debug output.Bent Bisballe Nyeng
2016-01-20Ignore generated mingw32 makefile.Bent Bisballe Nyeng
2016-01-20New ignores.Bent Bisballe Nyeng
2016-01-20Simplify (and slightly optimize) buffer counter code.Bent Bisballe Nyeng
2016-01-20Fixed wrong position in buffer by adding buffer_offset to all inner loops.Jonas Suhr Christensen
2016-01-20Fixed wrong indexing in local buffer caused when FRAMESIZE is not divisible ↵Jonas Suhr Christensen
by initial_sample_size.
2016-01-20Fix invariant about c.pos. It shows the position from which the next read ↵Bent Bisballe Nyeng
call must be made.
2016-01-20Fix size checks in initial copy from preloaded data. Re-enable close event.Bent Bisballe Nyeng
2016-01-20Added run sempahore (wait until thread actually started). Fixed localpos ↵Bent Bisballe Nyeng
bug. Added 'threaded' argument to init that handles events either directly or in a thread when dispatched. Added cachemanager unit test (currently failing).
2016-01-20Added 'preloadedsize' to AudioFile to reflect how much data was loaded and ↵Bent Bisballe Nyeng
not just how big the entire file is.
2016-01-20Fix file loading.Bent Bisballe Nyeng
2016-01-20Fix partial loading of multichannel files.Bent Bisballe Nyeng
2016-01-20Added audiofile reading.Jonas Suhr Christensen