- port to minGw
git-svn-id: http://moon:8086/svn/software/trunk/projects/JaySynth@235 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
|
||||
#include "PluginProcessor.h"
|
||||
#include "JaySynthAudioProcessorEditor.h"
|
||||
#include "vector_utils.h"
|
||||
#include "synth/vector_utils.h"
|
||||
|
||||
JaySynthAudioProcessorEditor* getEditor(JaySynthAudioProcessor *pThis)
|
||||
{
|
||||
@@ -510,8 +510,8 @@ void JaySynthAudioProcessor::processBlock (AudioSampleBuffer& buffer, MidiBuffer
|
||||
{
|
||||
const int numSamples = buffer.getNumSamples();
|
||||
int i;
|
||||
float *buf1 = buffer.getSampleData (0, 0);
|
||||
float *buf2 = buffer.getSampleData (1, 0);
|
||||
float *buf1 = buffer.getWritePointer (0, 0);
|
||||
float *buf2 = buffer.getWritePointer (1, 0);
|
||||
synth_float_t limiter_env[SYNTH_MAX_BUFSIZE];
|
||||
synth_float_t limiter_gain[SYNTH_MAX_BUFSIZE];
|
||||
synth_float_t buf[2][SYNTH_MAX_BUFSIZE];
|
||||
|
||||
Reference in New Issue
Block a user