mirror of
https://github.com/got-feedBack/feedBack-desktop.git
synced 2026-09-11 02:34:10 +00:00
fix(audio): sanitize input/chain/output/backing gains at the engine setters
NaN/Inf from any JS caller (audio:setGain does no validation) previously reached the gain atomics raw; a NaN master gain multiplies the whole device output to NaN and poisons the peak meters (TLC deep-read §2). Clamp at the four setters — the single choke point covering the legacy facade, the source-indexed API, and the audio-effects executor. Bounds 0..32 match the executor's clampGain (Phase 0.b compat pin); stream/ renderer-bus keep their historical 0..8 via the same JUCE-free helper, now testable in the new tests/engine_units target (Phase 0.c harness). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5
parent
bbb3b58db8
commit
3c8dd62ecb
@@ -13,6 +13,7 @@ endif()
|
||||
|
||||
# Pure-helper tests (no JUCE / no platform deps) build everywhere.
|
||||
add_subdirectory(audio_sanitize)
|
||||
add_subdirectory(engine_units)
|
||||
|
||||
# Note: enable_testing() lives in the top-level CMakeLists.txt — calling it
|
||||
# only here would register tests in build/tests/CTestTestfile.cmake but
|
||||
|
||||
Reference in New Issue
Block a user