We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b2906f2 + 323b46a commit 12ab303Copy full SHA for 12ab303
src/Audio.cpp
@@ -2366,13 +2366,13 @@ void Audio::playChunk() {
2366
IIR_filterChain2(*sample);
2367
}
2368
//------------------------------------------------------------------
2369
- Gain(*sample);
2370
-
2371
if(m_f_forceMono){
2372
int32_t xy = ((*sample)[RIGHTCHANNEL] + (*sample)[LEFTCHANNEL]) / 2;
2373
(*sample)[RIGHTCHANNEL] = (int16_t)xy;
2374
(*sample)[LEFTCHANNEL] = (int16_t)xy;
2375
+
+ Gain(*sample);
2376
2377
if(m_f_internalDAC) {
2378
s2 = *sample;
0 commit comments