diff options
| author | lucat <luca.trisciani@dcp-werkstatt.ch> | 2018-11-03 01:55:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-03 01:55:29 +0100 |
| commit | 42306b64d462e60fe29fe284e46d8bcfcca7d926 (patch) | |
| tree | ab48c258c13bdf3fe9a4cb4a10b4cdb7efe88a3a | |
| parent | f2a710eebcd4992291dcb43e9827f74994ea49aa (diff) | |
Changed Reference Level from -20dB RMS to -20bBFS
| -rw-r--r-- | src/leqm-nrt.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/leqm-nrt.c b/src/leqm-nrt.c index 45272a0..0d74ecd 100644 --- a/src/leqm-nrt.c +++ b/src/leqm-nrt.c @@ -903,11 +903,9 @@ int meanoverduration(struct Sum * oldsum) { oldsum->mean = pow(oldsum->sum / ((double) oldsum->nsamples), 0.500); oldsum->cmean = pow(oldsum->csum / ((double) oldsum->nsamples), 0.500); oldsum->rms = 20*log10(oldsum->mean); - oldsum->leqm = 20*log10(oldsum->cmean) + 110.600;// - // and this must be right because M filter is -5.6 @ 1k Hz that is -25.6 dBFS and to have 85.0 as reference level we must add 25.56 + 85.00 that is 110.6 dB. - //this value is obtained calibrating with a -20 dBFS Dolby Tone (RMS) I think this is correct - //But ISO 21727:2004(E) ask for a reference level "measured using an average responding meter". So reference level is not 0.707, but 0.637 = 2/pi - //This is only approximate as you should use a separate calibration according to the Dolby Format. Also for SW the tone should be 100Hz (?) + oldsum->leqm = 20*log10(oldsum->cmean) + 108.0851;// + //This must be right because M filter is -5.6 @ 1k Hz that is -25.6 dBFS and to have 85.0 as reference level we must add 25.56 + 85.00 that is 110.6 dB. + //this value is obtained calibrating with a -20 dBFS. return 0; } @@ -931,7 +929,7 @@ void logleqm(FILE * filehandle, double featuretimesec, struct Sum * oldsum) { } void logleqm10(FILE * filehandle, double featuretimesec, double longaverage) { - double leqm10 = 20*log10(pow(longaverage, 0.500)) + 110.600; + double leqm10 = 20*log10(pow(longaverage, 0.500)) + 108.0851; fprintf(filehandle, "%.4f", featuretimesec); fprintf(filehandle, "\t"); fprintf(filehandle, "%.4f\n", leqm10); |
