Skip to content

Commit

Permalink
UI: Change clip level to 0.0 dB
Browse files Browse the repository at this point in the history
This changes the clip level of the volume meters from -0.5 dB to 0.0 dB.
  • Loading branch information
cg2121 committed Sep 3, 2024
1 parent d4e4b5f commit 5d5d19c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/volume-control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ VolumeMeter::VolumeMeter(QWidget *parent, obs_volmeter_t *obs_volmeter,
minimumLevel = -60.0; // -60 dB
warningLevel = -20.0; // -20 dB
errorLevel = -9.0; // -9 dB
clipLevel = -0.5; // -0.5 dB
clipLevel = 0.0; // 0 dB
minimumInputLevel = -50.0; // -50 dB
peakDecayRate = 11.76; // 20 dB / 1.7 sec
magnitudeIntegrationTime = 0.3; // 99% in 300 ms
Expand Down

0 comments on commit 5d5d19c

Please sign in to comment.