* Add centre-focus option (mid/side processing)
* Simplify RingBuffer and add explicit memory locks * Fix hang with certain unfortunate combinations of parameters * Bump version to 1.7
This commit is contained in:
@@ -23,6 +23,7 @@
|
||||
#include "dsp/CompoundAudioCurve.h"
|
||||
|
||||
#include "base/RingBuffer.h"
|
||||
#include "base/Scavenger.h"
|
||||
#include "system/Thread.h"
|
||||
#include "system/sysutils.h"
|
||||
|
||||
@@ -96,8 +97,10 @@ protected:
|
||||
size_t m_sampleRate;
|
||||
size_t m_channels;
|
||||
|
||||
size_t consumeChannel(size_t channel, const float *input,
|
||||
size_t samples, bool final);
|
||||
void prepareChannelMS(size_t channel, const float *const *inputs,
|
||||
size_t offset, size_t samples, float *prepared);
|
||||
size_t consumeChannel(size_t channel, const float *const *inputs,
|
||||
size_t offset, size_t samples, bool final);
|
||||
void processChunks(size_t channel, bool &any, bool &last);
|
||||
bool processOneChunk(); // across all channels, for real time use
|
||||
bool processChunkForChannel(size_t channel, size_t phaseIncrement,
|
||||
|
||||
Reference in New Issue
Block a user