T15: drop WebAudio master for tracks - native master gain + track gain/pan IPC (SF/VST2/VST3 bridges), NativeAudioService + /api/v1/native router, native-first TrackInstrument, test matrix 8 passed

This commit is contained in:
2026-08-11 17:33:12 +07:00
parent 500384a226
commit 0af834a8fa
14 changed files with 1131 additions and 8 deletions
+4 -2
View File
@@ -82,8 +82,10 @@ void NativeMixer::processInPlace (float* outL, float* outR, int32 frames) const
else if (r < -1.0f)
r = -1.0f;
}
outL[i] = l;
outR[i] = r;
// Master fader (T15): sau limiter+clip, linear, khong re-clip — mirror
// WebAudio masterBus.output.gain (gain node cuoi cung sau mastering).
outL[i] = l * m_masterGain;
outR[i] = r * m_masterGain;
}
}