Set default mic gain to 2.0 and remove loopback monitor gain

This commit is contained in:
Kai
2026-02-13 16:20:44 +01:00
parent bd3b73e387
commit 2ce87e8cce
2 changed files with 3 additions and 9 deletions

View File

@@ -27,9 +27,7 @@ static constexpr bool EVS_SERIAL_COMMAND_ECHO = true;
static constexpr bool EVS_MIC_USE_RIGHT_CHANNEL = false;
// 24-bit sample to 16-bit conversion shift. Start with 8.
static constexpr int EVS_MIC_S24_TO_S16_SHIFT = 8;
// Digital mic gain (avoid clipping). Typical 0.2 .. 0.8.
static constexpr float EVS_MIC_GAIN = 0.35f;
// Extra gain only for local loopback monitor path.
static constexpr float EVS_LOOPBACK_MONITOR_GAIN = 0.35f;
// Digital mic gain (project default).
static constexpr float EVS_MIC_GAIN = 2.0f;
#endif // EVS_SECRETS_H