mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-13 23:46:29 +02:00
parent
0c05713955
commit
f0642f1d11
1 changed files with 2 additions and 7 deletions
|
@ -142,7 +142,7 @@ void *sendBuffer(void *args)
|
|||
? otherAgentBuffer->getBuffer() + RING_BUFFER_SAMPLES - numSamplesDelay
|
||||
: otherAgentBuffer->getNextOutput() - numSamplesDelay;
|
||||
|
||||
|
||||
int16_t *lowPassFrame = new int16_t[(BUFFER_LENGTH_SAMPLES_PER_CHANNEL * 2) / 4];
|
||||
// calculate the low-pass filter intensity
|
||||
float lowPassIntensity = ((agentBearing - otherAgentBuffer->getBearing()) * BEARING_LOW_PASS_FACTOR) +
|
||||
(fabsf(angleToSource) * ANGLE_TO_SOURCE_LOW_PASS_FACTOR);
|
||||
|
@ -162,11 +162,7 @@ void *sendBuffer(void *args)
|
|||
if (s + numSamplesDelay < BUFFER_LENGTH_SAMPLES_PER_CHANNEL) {
|
||||
delayedChannel[s + numSamplesDelay] = currentSample;
|
||||
}
|
||||
}
|
||||
|
||||
int16_t lowPassFrame[(BUFFER_LENGTH_SAMPLES_PER_CHANNEL * 2) / 4];
|
||||
|
||||
for (int s = 0; s < BUFFER_LENGTH_SAMPLES_PER_CHANNEL; s++) {
|
||||
|
||||
if ((s + 1) % 4 == 0) {
|
||||
int sampleIndex = ((s + 1) / 4) - 1;
|
||||
// this will be a sample in the lowPassFrame
|
||||
|
@ -175,7 +171,6 @@ void *sendBuffer(void *args)
|
|||
}
|
||||
|
||||
clientMix[s] = lowPassFrame[s / 4];
|
||||
clientMix[s + BUFFER_LENGTH_SAMPLES_PER_CHANNEL] = lowPassFrame[(s + BUFFER_LENGTH_SAMPLES_PER_CHANNEL) / 4];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue