mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-09 08:53:23 +02:00
Fix for bug 1364
This commit is contained in:
parent
ff6a82ae8c
commit
85bd752de7
@ -54,7 +54,7 @@
|
|||||||
|
|
||||||
#include "../PlatformCompatibility.h"
|
#include "../PlatformCompatibility.h"
|
||||||
|
|
||||||
#define DB_MIN_LIMIT -60.0 // Minimum dB level that we measure.
|
#define DB_MIN_LIMIT -600.0 // Minimum dB level that we measure.
|
||||||
#define DB_MAX_LIMIT 0.0 // TODO: We should probably fail WCAG2 if audio is massively distorted.
|
#define DB_MAX_LIMIT 0.0 // TODO: We should probably fail WCAG2 if audio is massively distorted.
|
||||||
#define WCAG2_PASS 20.0 // dB difference required to pass WCAG2 test.
|
#define WCAG2_PASS 20.0 // dB difference required to pass WCAG2 test.
|
||||||
|
|
||||||
@ -119,7 +119,6 @@ bool ContrastDialog::GetDB(float &dB)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: WHY?? 1.0E-30 linear is -600 dB !
|
|
||||||
dB = (rms < 1.0E-30)? DB_MIN_LIMIT : LINEAR_TO_DB(rms);
|
dB = (rms < 1.0E-30)? DB_MIN_LIMIT : LINEAR_TO_DB(rms);
|
||||||
wxLogDebug(wxT("RMS = %g"), rms);
|
wxLogDebug(wxT("RMS = %g"), rms);
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user