mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 01:24:03 +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);
|
||||
plateauAdditionOfSamples(goodChannel[s], currentSample);
|
||||
|
||||
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]);
|
||||
|
||||
if (s + numSamplesDelay < BUFFER_LENGTH_SAMPLES_PER_CHANNEL) {
|
||||
plateauAdditionOfSamples(delayedChannel[s + numSamplesDelay],
|
||||
currentSample * weakChannelAmplitudeRatio);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue