1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 09:20:16 +01:00

More members of Mixer are const

This commit is contained in:
Paul Licameli
2020-11-30 18:25:01 -05:00
parent c9a9f0f906
commit 55ad1b43b8
3 changed files with 20 additions and 25 deletions

View File

@@ -1953,8 +1953,11 @@ bool AudioIO::AllocateBuffers(
1,
std::max( mPlaybackSamplesToCopy, mPlaybackQueueMinimum ),
false,
mRate, floatSample, false);
mPlaybackMixers[i]->ApplyTrackGains(false);
mRate, floatSample,
false, // low quality dithering and resampling
nullptr,
false // don't apply track gains
);
}
}