mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
add "0VU = +8dBu" VU meter config
This commit is contained in:
parent
f2b547a14d
commit
6706f45b95
4 changed files with 11 additions and 6 deletions
|
|
@ -104,12 +104,14 @@ static float meter_lineup(float offset) {
|
|||
static float vu_standard() {
|
||||
// note - default meter config is +2dB (france)
|
||||
switch (Config->get_meter_vu_standard()) {
|
||||
case MeteringVUfrench: // +2dB
|
||||
case MeteringVUfrench: // 0VU = -2dBu
|
||||
return 0;
|
||||
case MeteringVUamerican: // 0dB
|
||||
case MeteringVUamerican: // 0VU = 0dBu
|
||||
return -2;
|
||||
case MeteringVUstandard: // -4dB
|
||||
case MeteringVUstandard: // 0VU = +4dBu
|
||||
return -6;
|
||||
case MeteringVUeight: // 0VU = +8dBu
|
||||
return -10;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue