mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 19:59:28 +02:00
remove debugging used to track down mixer crash
This commit is contained in:
parent
56e0e3882d
commit
76f7752f2f
1 changed files with 1 additions and 4 deletions
|
@ -246,10 +246,7 @@ int main(int argc, const char* argv[]) {
|
||||||
int16_t currentSample = (otherAgentBuffer->getNextOutput()[s] * attenuationCoefficient);
|
int16_t currentSample = (otherAgentBuffer->getNextOutput()[s] * attenuationCoefficient);
|
||||||
plateauAdditionOfSamples(goodChannel[s], currentSample);
|
plateauAdditionOfSamples(goodChannel[s], currentSample);
|
||||||
|
|
||||||
if (s + numSamplesDelay < BUFFER_LENGTH_SAMPLES_PER_CHANNEL) {
|
if (s + numSamplesDelay < BUFFER_LENGTH_SAMPLES_PER_CHANNEL) {
|
||||||
printf("Attemping to grab a sample at %d\n", s + numSamplesDelay);
|
|
||||||
printf("The sample here is %d\n", delayedChannel[s + numSamplesDelay]);
|
|
||||||
|
|
||||||
plateauAdditionOfSamples(delayedChannel[s + numSamplesDelay],
|
plateauAdditionOfSamples(delayedChannel[s + numSamplesDelay],
|
||||||
currentSample * weakChannelAmplitudeRatio);
|
currentSample * weakChannelAmplitudeRatio);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue