mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
add dedicated line-up level for IEC1/DIN meter (15dbFS)
This commit is contained in:
parent
d4c864d803
commit
ff9296e17c
3 changed files with 24 additions and 4 deletions
|
|
@ -1930,10 +1930,25 @@ RCOptionEditor::RCOptionEditor ()
|
|||
mlu->add (MeteringLineUp18, _("-18dBFS (EBU, BBC)"));
|
||||
mlu->add (MeteringLineUp15, _("-15dBFS (DIN)"));
|
||||
|
||||
Gtkmm2ext::UI::instance()->set_tip (mlu->tip_widget(), _("Configure meter-ticks and color-knee point for dBFS scale DPM, set reference/offset level for IEC PPM."));
|
||||
Gtkmm2ext::UI::instance()->set_tip (mlu->tip_widget(), _("Configure meter-marks and color-knee point for dBFS scale DPM, set reference level for IEC1/Nordic, IEC2 PPM and VU meter."));
|
||||
|
||||
add_option (S_("Preferences|GUI"), mlu);
|
||||
|
||||
ComboOption<MeterLineUp>* mld = new ComboOption<MeterLineUp> (
|
||||
"meter-line-up-din",
|
||||
_("IEC1/DIN Meter line-up level; 0dBu"),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::get_meter_line_up_din),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::set_meter_line_up_din)
|
||||
);
|
||||
|
||||
mld->add (MeteringLineUp24, _("-24dBFS (SMPTE US: 4dBu = -20dBFS)"));
|
||||
mld->add (MeteringLineUp20, _("-20dBFS (SMPTE RP.0155)"));
|
||||
mld->add (MeteringLineUp18, _("-18dBFS (EBU, BBC)"));
|
||||
mld->add (MeteringLineUp15, _("-15dBFS (DIN)"));
|
||||
|
||||
Gtkmm2ext::UI::instance()->set_tip (mld->tip_widget(), _("Reference level for IEC1/DIN meter."));
|
||||
|
||||
add_option (S_("Preferences|GUI"), mld);
|
||||
|
||||
ComboOption<VUMeterStandard>* mvu = new ComboOption<VUMeterStandard> (
|
||||
"meter-vu-standard",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue