1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-15 15:49:36 +02:00

Noise Reduction smoothing now default 3 Max 12

After the freeze, but only just, and as RM I made the call that this matters enough to be worth doing.
This commit is contained in:
James Crook 2015-09-07 21:03:31 +01:00
parent ea12134549
commit 4dbcd73ca5

View File

@ -520,7 +520,7 @@ bool EffectNoiseReduction::Settings::PrefsIO(bool read)
{ &Settings::mNoiseGain, wxT("Gain"), 12.0 },
{ &Settings::mAttackTime, wxT("AttackTime"), 0.02 },
{ &Settings::mReleaseTime, wxT("ReleaseTime"), 0.10 },
{ &Settings::mFreqSmoothingBands, wxT("FreqSmoothing"), 6.0 },
{ &Settings::mFreqSmoothingBands, wxT("FreqSmoothing"), 3.0 },
// Advanced settings
{ &Settings::mOldSensitivity, wxT("OldSensitivity"), DEFAULT_OLD_SENSITIVITY },
@ -1467,7 +1467,7 @@ const ControlInfo *controlInfo() {
XO("R&elease time (secs):"), XO("Release time")),
#endif
ControlInfo(&EffectNoiseReduction::Settings::mFreqSmoothingBands,
0, 6, 6, wxT("%d"), true,
0, 12, 12, wxT("%d"), true,
XO("&Frequency smoothing (bands):"), XO("Frequency smoothing")),
#ifdef ADVANCED_SETTINGS