ardour/gtk2_ardour/loudness_dialog.cc

521 lines
18 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2020 Robin Gareus <robin@gareus.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <gtkmm/label.h>
#include <gtkmm/stock.h>
2020-07-22 20:58:59 -04:00
#include "pbd/unwind.h"
#include "ardour/dB.h"
#include "ardour/session.h"
#include "ardour/export_channel_configuration.h"
#include "ardour/export_filename.h"
#include "ardour/export_format_base.h"
#include "ardour/export_format_specification.h"
#include "ardour/export_handler.h"
#include "ardour/export_status.h"
#include "ardour/export_timespan.h"
2020-07-22 20:58:59 -04:00
#include "gtkmm2ext/menu_elems.h"
#include "gtkmm2ext/utils.h"
2020-07-20 22:45:46 -04:00
#include "widgets/ardour_spacer.h"
#include "export_report.h"
#include "loudness_dialog.h"
#include "ui_config.h"
#include "pbd/i18n.h"
using namespace Gtk;
using namespace ARDOUR;
2020-07-20 22:45:46 -04:00
using namespace ArdourWidgets;
2020-07-22 20:58:59 -04:00
LoudnessDialog::LoudnessPreset LoudnessDialog::presets[] =
{
{"EBU", { false, true, true, false, false}, { 0, -1, -23, 0, 0 }},
{"Digital Peak", { true, false, false, false, false}, { 0, 0, 0, 0, 0 }},
{"Bach", { false, true, false, true, false}, { 0, -1, 0, -16, 0 }},
};
LoudnessDialog::LoudnessPreset LoudnessDialog::_preset = LoudnessDialog::presets [0];
2020-07-20 22:45:46 -04:00
LoudnessDialog::LoudnessDialog (Session* s, AudioRange const& ar, bool as)
: ArdourDialog (as ? _("Loudness Assistant") : _("Loudness Analyzer and Normalizer"))
, _session (s)
, _range (ar)
, _status (s->get_export_status ())
2020-07-20 22:45:46 -04:00
, _autostart (as)
, _dbfs_btn (_("Peak:"), ArdourButton::led_default_elements, true)
, _dbtp_btn (_("True Peak:"), ArdourButton::led_default_elements, true)
, _lufs_i_btn (_("Integrated Loudness:"), ArdourButton::led_default_elements, true)
, _lufs_s_btn (_("Max. Short Loudness:"), ArdourButton::led_default_elements, true)
, _lufs_m_btn (_("Max. Momentary Loudness:"), ArdourButton::led_default_elements, true)
2020-07-20 22:45:46 -04:00
, _rt_analysis_button (_("Realtime"), ArdourButton::led_default_elements, true)
, _start_analysis_button (_("Analyze"))
, _show_report_button (_("Show Detailed Report"))
, _dbfs_adjustment ( 0.00, -90.00, 0.00, 0.1, 0.2)
, _dbtp_adjustment ( -1.0, -90.00, 0.00, 0.1, 0.2)
2020-07-20 22:45:46 -04:00
, _lufs_i_adjustment (-23.0, -90.00, 0.00, 0.1, 1.0)
, _lufs_s_adjustment (-20.0, -90.00, 0.00, 0.1, 1.0)
, _lufs_m_adjustment (-17.0, -90.00, 0.00, 0.1, 1.0)
, _dbfs_spinbutton (_dbfs_adjustment, 0.1, 1)
, _dbtp_spinbutton (_dbtp_adjustment, 0.1, 1)
2020-07-20 22:45:46 -04:00
, _lufs_i_spinbutton (_lufs_i_adjustment, 0.1, 1)
, _lufs_s_spinbutton (_lufs_s_adjustment, 0.1, 1)
, _lufs_m_spinbutton (_lufs_m_adjustment, 0.1, 1)
, _gain_init (0)
, _gain_norm (0)
2020-07-22 20:58:59 -04:00
, _ignore_change (false)
{
2020-07-20 22:45:46 -04:00
_start_analysis_button.set_name ("generic button");
_rt_analysis_button.set_name ("generic button");
_show_report_button.set_name ("generic button");
_dbfs_btn.set_name ("generic button");
_dbtp_btn.set_name ("generic button");
_lufs_i_btn.set_name ("generic button");
_lufs_s_btn.set_name ("generic button");
_lufs_m_btn.set_name ("generic button");
_dbfs_btn.set_led_left (true);
_dbtp_btn.set_led_left (true);
_lufs_i_btn.set_led_left (true);
_lufs_s_btn.set_led_left (true);
_lufs_m_btn.set_led_left (true);
_dbfs_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_dbtp_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_lufs_i_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_lufs_s_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_lufs_m_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_delta_dbfs_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_delta_dbtp_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_delta_lufs_i_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_delta_lufs_s_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_delta_lufs_m_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_gain_init_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_gain_norm_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
_gain_total_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
2020-07-20 22:45:46 -04:00
Label* l;
2020-07-22 20:58:59 -04:00
Table* t = manage (new Table (12, 4, false));
t->set_spacings (4);
2020-07-20 22:45:46 -04:00
l = manage (new Label (_("<b>Analysis Results</b>"), ALIGN_LEFT));
l->set_use_markup (true);
t->attach (*l, 0, 1, 0, 1);
t->attach (_show_report_button, 1, 4, 0, 1);
l = manage (new Label (_("<b>Measured</b>"), ALIGN_CENTER));
l->set_use_markup (true);
t->attach (*l, 1, 2, 1, 2);
l = manage (new Label (_("<b>Target</b>"), ALIGN_CENTER));
l->set_use_markup (true);
2020-07-20 22:45:46 -04:00
t->attach (*l, 2, 3, 1, 2);
l = manage (new Label (_("<b>Delta</b>"), ALIGN_CENTER));
l->set_use_markup (true);
2020-07-20 22:45:46 -04:00
t->attach (*l, 3, 4, 1, 2);
t->attach (_dbfs_btn, 0, 1, 2, 3);
t->attach (_dbtp_btn, 0, 1, 3, 4);
t->attach (_lufs_i_btn, 0, 1, 4, 5);
t->attach (_lufs_s_btn, 0, 1, 5, 6);
t->attach (_lufs_m_btn, 0, 1, 6, 7);
l = manage (new Label (_("Gain to normalize:"), ALIGN_LEFT));
2020-07-20 22:45:46 -04:00
t->attach (*l, 0, 1, 8, 9);
l = manage (new Label (_("Previously applied gain:"), ALIGN_LEFT));
t->attach (*l, 0, 1, 9, 10);
l = manage (new Label (_("Total gain:"), ALIGN_LEFT));
t->attach (*l, 0, 1, 10, 11);
2020-07-22 20:58:59 -04:00
l = manage (new Label (_("Preset:"), ALIGN_LEFT));
t->attach (*l, 0, 1, 11, 12);
2020-07-20 22:45:46 -04:00
t->attach (_dbfs_label, 1, 2, 2, 3);
t->attach (_dbtp_label, 1, 2, 3, 4);
t->attach (_lufs_i_label, 1, 2, 4, 5);
t->attach (_lufs_s_label, 1, 2, 5, 6);
t->attach (_lufs_m_label, 1, 2, 6, 7);
t->attach (_dbfs_spinbutton, 2, 3, 2, 3, EXPAND|FILL, EXPAND|FILL, 8, 0);
t->attach (_dbtp_spinbutton, 2, 3, 3, 4, EXPAND|FILL, EXPAND|FILL, 8, 0);
t->attach (_lufs_i_spinbutton, 2, 3, 4, 5, EXPAND|FILL, EXPAND|FILL, 8, 0);
t->attach (_lufs_s_spinbutton, 2, 3, 5, 6, EXPAND|FILL, EXPAND|FILL, 8, 0);
t->attach (_lufs_m_spinbutton, 2, 3, 6, 7, EXPAND|FILL, EXPAND|FILL, 8, 0);
2020-07-20 22:45:46 -04:00
t->attach (_delta_dbfs_label, 3, 4, 2, 3);
t->attach (_delta_dbtp_label, 3, 4, 3, 4);
t->attach (_delta_lufs_i_label, 3, 4, 4, 5);
t->attach (_delta_lufs_s_label, 3, 4, 5, 6);
t->attach (_delta_lufs_m_label, 3, 4, 6, 7);
ArdourHSpacer* spc = manage (new ArdourHSpacer (1.0));
t->attach (*spc , 1, 4, 7, 8);
t->attach (_gain_norm_label, 3, 4, 8, 9);
t->attach (_gain_init_label, 3, 4, 9, 10);
t->attach (_gain_total_label, 3, 4, 10, 11);
2020-07-22 20:58:59 -04:00
t->attach (_preset_dropdown, 1, 3, 11, 12);
_dbfs_label.set_alignment (ALIGN_RIGHT);
_dbtp_label.set_alignment (ALIGN_RIGHT);
_lufs_i_label.set_alignment (ALIGN_RIGHT);
_lufs_s_label.set_alignment (ALIGN_RIGHT);
_lufs_m_label.set_alignment (ALIGN_RIGHT);
_delta_dbfs_label.set_alignment (ALIGN_RIGHT);
_delta_dbtp_label.set_alignment (ALIGN_RIGHT);
_delta_lufs_i_label.set_alignment (ALIGN_RIGHT);
_delta_lufs_s_label.set_alignment (ALIGN_RIGHT);
_delta_lufs_m_label.set_alignment (ALIGN_RIGHT);
_gain_norm_label.set_alignment (ALIGN_RIGHT);
_gain_init_label.set_alignment (ALIGN_RIGHT);
_gain_total_label.set_alignment (ALIGN_RIGHT);
_result_box.pack_start (*t, false, false, 6);
_progress_box.pack_start (_progress_bar, false, false, 6);
2020-07-20 22:45:46 -04:00
t = manage (new Table (2, 3, false));
t->set_spacings (4);
l = manage (new Label ());
l->set_line_wrap ();
l->set_markup (_(
"<b>Loudness Analysis</b>\n\n"
"This allows to analyze the loudness of of the signal at the master-bus "
"output of the complete session, as it would be exported.\n"
"The result an be used to interactively normalize the session's loudnless level "
"(as opposed to automatical normalization during export).\n"
"By default a faster than realtime export is is used to asses the loudness of the "
"session. If any outboard gear is used, a <i>realtime</i> export is available, to "
"play at normal speed.\n"
));
2020-07-22 20:58:59 -04:00
t->attach (*l, 0, 3, 0, 1, EXPAND|FILL, EXPAND|FILL, 0, 8);
2020-07-20 22:45:46 -04:00
l = manage (new Label (""));
2020-07-22 20:58:59 -04:00
t->attach (*l, 0, 1, 1, 2);
t->attach (_rt_analysis_button, 1, 2, 1, 2, FILL, SHRINK);
t->attach (_start_analysis_button, 2, 3, 1, 2, FILL, SHRINK);
2020-07-20 22:45:46 -04:00
_setup_box.pack_start (*t, false, false, 6);
get_vbox()->pack_start (_setup_box);
get_vbox()->pack_start (_progress_box);
get_vbox()->pack_start (_result_box);
_progress_box.set_size_request (400,-1);
2020-07-20 22:45:46 -04:00
_ok_button = add_button (Stock::APPLY, RESPONSE_APPLY);
_cancel_button = add_button (Stock::CANCEL, RESPONSE_CANCEL);
2020-07-22 20:58:59 -04:00
for (size_t i = 0; i < sizeof (presets) / sizeof (LoudnessDialog::LoudnessPreset); ++i) {
using namespace Gtkmm2ext;
_preset_dropdown.AddMenuElem (MenuElemNoMnemonic (presets[i].name, sigc::bind (sigc::mem_fun (*this, &LoudnessDialog::load_preset), i)));
}
_preset_dropdown.disable_scrolling ();
_initial_preset_name = _preset.name;
apply_preset ();
_cancel_button->signal_clicked().connect (sigc::mem_fun (this, &LoudnessDialog::cancel_analysis));
2020-07-22 20:58:59 -04:00
_dbfs_spinbutton.signal_value_changed().connect (mem_fun (*this, &LoudnessDialog::update_settings));
_dbtp_spinbutton.signal_value_changed().connect (mem_fun (*this, &LoudnessDialog::update_settings));
_lufs_i_spinbutton.signal_value_changed().connect (mem_fun (*this, &LoudnessDialog::update_settings));
_lufs_s_spinbutton.signal_value_changed().connect (mem_fun (*this, &LoudnessDialog::update_settings));
_lufs_m_spinbutton.signal_value_changed().connect (mem_fun (*this, &LoudnessDialog::update_settings));
2020-07-20 22:45:46 -04:00
_show_report_button.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::display_report));
_start_analysis_button.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::start_analysis));
2020-07-22 20:58:59 -04:00
_dbfs_btn.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::update_settings));
_dbtp_btn.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::update_settings));
_lufs_i_btn.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::update_settings));
_lufs_s_btn.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::update_settings));
_lufs_m_btn.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::update_settings));
_ok_button->set_sensitive (false);
2020-07-20 22:45:46 -04:00
_show_report_button.set_sensitive (false);
2020-07-22 20:58:59 -04:00
show_all_children ();
2020-07-20 22:45:46 -04:00
_result_box.hide ();
2020-07-20 22:45:46 -04:00
_progress_box.hide ();
}
void
LoudnessDialog::cancel_analysis ()
{
if (_status->running ()) {
_status->abort();
}
}
2020-07-20 22:45:46 -04:00
void
LoudnessDialog::start_analysis ()
{
if (0 == analyze ()) {
display_results ();
} else {
_setup_box.show ();
}
}
bool
2020-07-21 18:00:29 -04:00
LoudnessDialog::on_delete_event (GdkEventAny* ev)
{
cancel_analysis ();
2020-07-21 18:00:29 -04:00
return ArdourDialog::on_delete_event (ev);
}
int
LoudnessDialog::run ()
{
2020-07-20 22:45:46 -04:00
if (_autostart) {
show ();
if (0 == analyze ()) {
display_results ();
2020-07-20 22:45:46 -04:00
} else {
return RESPONSE_CANCEL;
2020-07-20 22:45:46 -04:00
}
}
int const r = ArdourDialog::run ();
cancel_analysis ();
2020-07-22 20:58:59 -04:00
if (r == RESPONSE_APPLY) {
_preset.level[0] = _dbfs_spinbutton.get_value();
_preset.level[1] = _dbtp_spinbutton.get_value();
_preset.level[2] = _lufs_i_spinbutton.get_value();
_preset.level[3] = _lufs_s_spinbutton.get_value();
_preset.level[4] = _lufs_m_spinbutton.get_value();
_preset.enable[0] = _dbfs_btn.get_active ();
_preset.enable[1] = _dbtp_btn.get_active ();
_preset.enable[2] = _lufs_i_btn.get_active ();
_preset.enable[3] = _lufs_s_btn.get_active ();
_preset.enable[4] = _lufs_m_btn.get_active ();
} else {
/* retore preset name, in case user has changed it */
_preset.name = _initial_preset_name;
}
return r;
}
gint
LoudnessDialog::progress_timeout ()
{
float progress = ((float) _status->processed_samples_current_timespan) / _status->total_samples_current_timespan;
_progress_bar.set_text ("Analyzing");
_progress_bar.set_fraction (progress);
return true;
}
int
LoudnessDialog::analyze ()
{
2020-07-20 22:45:46 -04:00
/* These are ensured in Editor::measure_master_loudness () */
assert (_session->master_out());
assert (_session->master_out()->output());
assert (_session->master_out()->output()->n_ports().n_audio() == 2);
assert (_range.start < _range.end);
ExportTimespanPtr tsp = _session->get_export_handler()->add_timespan();
boost::shared_ptr<ExportChannelConfiguration> ccp = _session->get_export_handler()->add_channel_config();
boost::shared_ptr<ARDOUR::ExportFilename> fnp = _session->get_export_handler()->add_filename();
boost::shared_ptr<ExportFormatSpecification> fmp = _session->get_export_handler()->add_format();
/* setup format */
fmp->set_tag (false);
fmp->set_sample_format (ExportFormatBase::SF_Float);
fmp->set_sample_rate (ExportFormatBase::SR_Session);
fmp->set_format_id (ExportFormatBase::F_None);
fmp->set_type (ExportFormatBase::T_None);
fmp->set_extension ("wav");
fmp->set_soundcloud_upload (false);
fmp->set_analyse (true);
/* setup range */
tsp->set_range (_range.start, _range.end);
tsp->set_range_id ("selection");
2020-07-20 22:45:46 -04:00
tsp->set_realtime (_rt_analysis_button.get_active ());
tsp->set_name ("master");
/* setup channels, use master out */
2020-07-20 22:45:46 -04:00
IO* master_out = _session->master_out()->output().get();
for (uint32_t n = 0; n < master_out->n_ports().n_audio(); ++n) {
PortExportChannel * channel = new PortExportChannel ();
channel->add_port (master_out->audio (n));
ExportChannelPtr chan_ptr (channel);
ccp->register_channel (chan_ptr);
}
/* do audio export */
boost::shared_ptr<AudioGrapher::BroadcastInfo> b;
_session->get_export_handler()->reset ();
_session->get_export_handler()->add_export_config (tsp, ccp, fmp, fnp, b);
_session->get_export_handler()->do_export();
/* show progress */
2020-07-20 22:45:46 -04:00
_setup_box.hide ();
_progress_box.show_all ();
/* shrink window height (setup box) */
Gtk::Requisition wr;
get_size (wr.width, wr.height);
resize (wr.width, 60);
sigc::connection progress_connection = Glib::signal_timeout().connect (sigc::mem_fun(*this, &LoudnessDialog::progress_timeout), 100);
while (_status->running ()) {
if (gtk_events_pending()) {
gtk_main_iteration ();
} else {
Glib::usleep (10000);
}
}
progress_connection.disconnect();
_progress_box.hide_all ();
/* done */
_status->finish (TRS_UI);
return _status->aborted() ? 1 : 0;
}
void
LoudnessDialog::display_report ()
{
ExportReport er ("Export Loudness Report", _status->result_map);
2020-07-21 18:00:29 -04:00
er.set_transient_for (*this);
er.run();
}
2020-07-22 20:58:59 -04:00
void
LoudnessDialog::load_preset (size_t n)
{
_preset = presets[n];
apply_preset ();
calculate_gain ();
}
void
LoudnessDialog::apply_preset ()
{
PBD::Unwinder<bool> uw (_ignore_change, true);
_preset_dropdown.set_text (_preset.name);
_dbfs_btn.set_active (_preset.enable[0]);
_dbtp_btn.set_active (_preset.enable[1]);
_lufs_i_btn.set_active (_preset.enable[2]);
_lufs_s_btn.set_active (_preset.enable[3]);
_lufs_m_btn.set_active (_preset.enable[4]);
_dbfs_spinbutton.set_value (_preset.level[0]);
_dbtp_spinbutton.set_value (_preset.level[1]);
_lufs_i_spinbutton.set_value (_preset.level[2]);
_lufs_s_spinbutton.set_value (_preset.level[3]);
_lufs_m_spinbutton.set_value (_preset.level[4]);
}
void
LoudnessDialog::update_settings ()
{
if (_ignore_change) {
return;
}
_preset.name = "User";
_preset_dropdown.set_text (_preset.name);
calculate_gain ();
}
void
LoudnessDialog::display_results ()
{
AnalysisResults const& ar (_status->result_map);
assert (ar.size () == 1);
ExportAnalysisPtr p = ar.begin()->second;
2020-07-20 22:45:46 -04:00
_dbfs = accurate_coefficient_to_dB (p->peak);
_dbtp = accurate_coefficient_to_dB (p->truepeak);
_lufs_i = p->integrated_loudness;
_lufs_s = p->max_loudness_short;
_lufs_m = p->max_loudness_momentary;
_dbfs_label.set_text (string_compose (_("%1 dBFS"), std::setprecision (1), std::fixed, _dbfs));
_dbtp_label.set_text (string_compose (_("%1 dBTP"), std::setprecision (1), std::fixed, _dbtp));
2020-07-20 22:45:46 -04:00
_lufs_i_label.set_text (string_compose (_("%1 LUFS"), std::setprecision (1), std::fixed, _lufs_i));
_lufs_s_label.set_text (string_compose (_("%1 LUFS"), std::setprecision (1), std::fixed, _lufs_s));
_lufs_m_label.set_text (string_compose (_("%1 LUFS"), std::setprecision (1), std::fixed, _lufs_m));
calculate_gain ();
_result_box.show_all ();
_ok_button->set_sensitive (true);
2020-07-20 22:45:46 -04:00
_show_report_button.set_sensitive (true);
}
void
LoudnessDialog::calculate_gain ()
{
2020-07-20 22:45:46 -04:00
float dbfs = _dbfs_spinbutton.get_value();
float dbtp = _dbtp_spinbutton.get_value();
float lufs_i = _lufs_i_spinbutton.get_value();
float lufs_s = _lufs_s_spinbutton.get_value();
float lufs_m = _lufs_m_spinbutton.get_value();
float gain = 0;
bool set = false;
#define MIN_IF_SET(A, B) \
{ if (set) { gain = std::min (gain, (A) - (B));} else { gain = (A) - (B); } set = true; }
2020-07-20 22:45:46 -04:00
if (_dbfs_btn.get_active ()) {
MIN_IF_SET (dbfs, _dbfs);
}
if (_dbtp_btn.get_active ()) {
MIN_IF_SET (dbtp, _dbtp);
}
if (_lufs_i_btn.get_active ()) {
MIN_IF_SET (lufs_i, _lufs_i);
}
if (_lufs_s_btn.get_active ()) {
MIN_IF_SET (lufs_s, _lufs_s);
}
if (_lufs_m_btn.get_active ()) {
MIN_IF_SET (lufs_m, _lufs_m);
}
_delta_dbfs_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::showpos, std::fixed, dbfs - _dbfs));
_delta_dbtp_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::showpos, std::fixed, dbtp - _dbtp));
_delta_lufs_i_label.set_text (string_compose (_("%1 LU"), std::setprecision (2), std::showpos, std::fixed, lufs_i - _lufs_i));
_delta_lufs_s_label.set_text (string_compose (_("%1 LU"), std::setprecision (2), std::showpos, std::fixed, lufs_s - _lufs_s));
_delta_lufs_m_label.set_text (string_compose (_("%1 LU"), std::setprecision (2), std::showpos, std::fixed, lufs_m - _lufs_m));
_delta_dbfs_label.set_sensitive (_dbfs_btn.get_active ());
_delta_dbtp_label.set_sensitive (_dbtp_btn.get_active ());
_delta_lufs_i_label.set_sensitive (_lufs_i_btn.get_active ());
_delta_lufs_s_label.set_sensitive (_lufs_s_btn.get_active ());
_delta_lufs_m_label.set_sensitive (_lufs_m_btn.get_active ());
_gain_norm = gain;
_gain_norm_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::showpos, std::fixed, _gain_norm));
_gain_init_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::showpos, std::fixed, _gain_init));
_gain_total_label.set_markup (string_compose (_("<b>%1 dB</b>"), std::setw(7), std::setprecision (2), std::showpos, std::fixed, gain_db ()));
}