]> git.sesse.net Git - nageru/blob - mainwindow.cpp
f59824cabd053364246c22558df64147ed5991a8
[nageru] / mainwindow.cpp
1 #include "mainwindow.h"
2
3 #include <math.h>
4 #include <stdio.h>
5 #include <signal.h>
6 #include <algorithm>
7 #include <chrono>
8 #include <string>
9 #include <vector>
10 #include <QBoxLayout>
11 #include <QInputDialog>
12 #include <QKeySequence>
13 #include <QLabel>
14 #include <QMetaType>
15 #include <QPushButton>
16 #include <QResizeEvent>
17 #include <QShortcut>
18 #include <QSize>
19 #include <QString>
20
21 #include "aboutdialog.h"
22 #include "disk_space_estimator.h"
23 #include "flags.h"
24 #include "glwidget.h"
25 #include "input_mapping_dialog.h"
26 #include "lrameter.h"
27 #include "mixer.h"
28 #include "post_to_main_thread.h"
29 #include "ui_audio_miniview.h"
30 #include "ui_audio_expanded_view.h"
31 #include "ui_display.h"
32 #include "ui_mainwindow.h"
33 #include "vumeter.h"
34
35 class QResizeEvent;
36
37 using namespace std;
38 using namespace std::chrono;
39 using namespace std::placeholders;
40
41 Q_DECLARE_METATYPE(std::string);
42 Q_DECLARE_METATYPE(std::vector<std::string>);
43
44 MainWindow *global_mainwindow = nullptr;
45
46 namespace {
47
48 void schedule_cut_signal(int ignored)
49 {
50         global_mixer->schedule_cut();
51 }
52
53 void quit_signal(int ignored)
54 {
55         global_mainwindow->close();
56 }
57
58 void slave_knob(QDial *master, QDial *slave)
59 {
60         QWidget::connect(master, &QDial::valueChanged, [slave](int value){
61                 slave->blockSignals(true);
62                 slave->setValue(value);
63                 slave->blockSignals(false);
64         });
65         QWidget::connect(slave, &QDial::valueChanged, [master](int value){
66                 master->setValue(value);
67         });
68 }
69
70 void slave_checkbox(QCheckBox *master, QCheckBox *slave)
71 {
72         QWidget::connect(master, &QCheckBox::stateChanged, [slave](int state){
73                 slave->blockSignals(true);
74                 slave->setCheckState(Qt::CheckState(state));
75                 slave->blockSignals(false);
76         });
77         QWidget::connect(slave, &QCheckBox::stateChanged, [master](int state){
78                 master->setCheckState(Qt::CheckState(state));
79         });
80 }
81
82 void slave_fader(NonLinearFader *master, NonLinearFader *slave)
83 {
84         QWidget::connect(master, &NonLinearFader::dbValueChanged, [slave](double value) {
85                 slave->blockSignals(true);
86                 slave->setDbValue(value);
87                 slave->blockSignals(false);
88         });
89         QWidget::connect(slave, &NonLinearFader::dbValueChanged, [master](double value){
90                 master->setDbValue(value);
91         });
92 }
93
94 constexpr unsigned DB_NO_FLAGS = 0x0;
95 constexpr unsigned DB_WITH_SIGN = 0x1;
96 constexpr unsigned DB_BARE = 0x2;
97
98 string format_db(double db, unsigned flags)
99 {
100         string text;
101         if (flags & DB_WITH_SIGN) {
102                 if (isfinite(db)) {
103                         char buf[256];
104                         snprintf(buf, sizeof(buf), "%+.1f", db);
105                         text = buf;
106                 } else if (db < 0.0) {
107                         text = "-∞";
108                 } else {
109                         // Should never happen, really.
110                         text = "+∞";
111                 }
112         } else {
113                 if (isfinite(db)) {
114                         char buf[256];
115                         snprintf(buf, sizeof(buf), "%.1f", db);
116                         text = buf;
117                 } else if (db < 0.0) {
118                         text = "-∞";
119                 } else {
120                         // Should never happen, really.
121                         text = "∞";
122                 }
123         }
124         if (!(flags & DB_BARE)) {
125                 text += " dB";
126         }
127         return text;
128 }
129
130 void set_peak_label(QLabel *peak_label, float peak_db)
131 {
132         peak_label->setText(QString::fromStdString(format_db(peak_db, DB_BARE)));
133
134         // -0.1 dBFS is EBU peak limit. We use it consistently, even for the bus meters
135         // (which don't calculate interpolate peak, and in general don't follow EBU recommendations).
136         if (peak_db > -0.1f) {
137                 peak_label->setStyleSheet("QLabel { background-color: red; color: white; }");
138         } else {
139                 peak_label->setStyleSheet("");
140         }
141 }
142
143 }  // namespace
144
145 MainWindow::MainWindow()
146         : ui(new Ui::MainWindow)
147 {
148         global_mainwindow = this;
149         ui->setupUi(this);
150
151         global_disk_space_estimator = new DiskSpaceEstimator(bind(&MainWindow::report_disk_space, this, _1, _2));
152         disk_free_label = new QLabel(this);
153         disk_free_label->setStyleSheet("QLabel {padding-right: 5px;}");
154         ui->menuBar->setCornerWidget(disk_free_label);
155
156         ui->me_live->set_output(Mixer::OUTPUT_LIVE);
157         ui->me_preview->set_output(Mixer::OUTPUT_PREVIEW);
158
159         // The menus.
160         connect(ui->cut_action, &QAction::triggered, this, &MainWindow::cut_triggered);
161         connect(ui->exit_action, &QAction::triggered, this, &MainWindow::exit_triggered);
162         connect(ui->about_action, &QAction::triggered, this, &MainWindow::about_triggered);
163         connect(ui->input_mapping_action, &QAction::triggered, this, &MainWindow::input_mapping_triggered);
164
165         if (global_flags.x264_video_to_http) {
166                 connect(ui->x264_bitrate_action, &QAction::triggered, this, &MainWindow::x264_bitrate_triggered);
167         } else {
168                 ui->x264_bitrate_action->setEnabled(false);
169         }
170
171         // Hook up the transition buttons. (Keyboard shortcuts are set in set_transition_names().)
172         // TODO: Make them dynamic.
173         connect(ui->transition_btn1, &QPushButton::clicked, bind(&MainWindow::transition_clicked, this, 0));
174         connect(ui->transition_btn2, &QPushButton::clicked, bind(&MainWindow::transition_clicked, this, 1));
175         connect(ui->transition_btn3, &QPushButton::clicked, bind(&MainWindow::transition_clicked, this, 2));
176
177         // Aiee...
178         transition_btn1 = ui->transition_btn1;
179         transition_btn2 = ui->transition_btn2;
180         transition_btn3 = ui->transition_btn3;
181         qRegisterMetaType<string>("std::string");
182         qRegisterMetaType<vector<string>>("std::vector<std::string>");
183         connect(ui->me_live, &GLWidget::transition_names_updated, this, &MainWindow::set_transition_names);
184         qRegisterMetaType<Mixer::Output>("Mixer::Output");
185
186         // Hook up the prev/next buttons on the audio views.
187         connect(ui->compact_prev_page, &QAbstractButton::clicked, bind(&QStackedWidget::setCurrentIndex, ui->audio_views, 1));
188         connect(ui->compact_next_page, &QAbstractButton::clicked, bind(&QStackedWidget::setCurrentIndex, ui->audio_views, 1));
189         connect(ui->full_prev_page, &QAbstractButton::clicked, bind(&QStackedWidget::setCurrentIndex, ui->audio_views, 0));
190         connect(ui->full_next_page, &QAbstractButton::clicked, bind(&QStackedWidget::setCurrentIndex, ui->audio_views, 0));
191
192         last_audio_level_callback = steady_clock::now() - seconds(1);
193 }
194
195 void MainWindow::resizeEvent(QResizeEvent* event)
196 {
197         QMainWindow::resizeEvent(event);
198
199         // Ask for a relayout, but only after the event loop is done doing relayout
200         // on everything else.
201         QMetaObject::invokeMethod(this, "relayout", Qt::QueuedConnection);
202 }
203
204 void MainWindow::mixer_created(Mixer *mixer)
205 {
206         // Make the previews.
207         unsigned num_previews = mixer->get_num_channels();
208
209         for (unsigned i = 0; i < num_previews; ++i) {
210                 Mixer::Output output = Mixer::Output(Mixer::OUTPUT_INPUT0 + i);
211
212                 QWidget *preview = new QWidget(this);
213                 Ui::Display *ui_display = new Ui::Display;
214                 ui_display->setupUi(preview);
215                 ui_display->label->setText(mixer->get_channel_name(output).c_str());
216                 ui_display->display->set_output(output);
217                 ui->preview_displays->insertWidget(previews.size(), preview, 1);
218                 previews.push_back(ui_display);
219
220                 // Hook up the click.
221                 connect(ui_display->display, &GLWidget::clicked, bind(&MainWindow::channel_clicked, this, i));
222
223                 // Let the theme update the text whenever the resolution or color changed.
224                 connect(ui_display->display, &GLWidget::name_updated, this, &MainWindow::update_channel_name);
225                 connect(ui_display->display, &GLWidget::color_updated, this, &MainWindow::update_channel_color);
226
227                 // Hook up the keyboard key.
228                 QShortcut *shortcut = new QShortcut(QKeySequence(Qt::Key_1 + i), this);
229                 connect(shortcut, &QShortcut::activated, bind(&MainWindow::channel_clicked, this, i));
230
231                 // Hook up the white balance button (irrelevant if invisible).
232                 ui_display->wb_button->setVisible(mixer->get_supports_set_wb(output));
233                 connect(ui_display->wb_button, &QPushButton::clicked, bind(&MainWindow::wb_button_clicked, this, i));
234         }
235
236         setup_audio_miniview();
237         setup_audio_expanded_view();
238
239         slave_knob(ui->locut_cutoff_knob, ui->locut_cutoff_knob_2);
240         slave_knob(ui->limiter_threshold_knob, ui->limiter_threshold_knob_2);
241         slave_knob(ui->makeup_gain_knob, ui->makeup_gain_knob_2);
242         slave_checkbox(ui->makeup_gain_auto_checkbox, ui->makeup_gain_auto_checkbox_2);
243         slave_checkbox(ui->limiter_enabled, ui->limiter_enabled_2);
244
245         // TODO: Fetch all of the values these for completeness,
246         // not just the enable knobs implied by flags.
247 #if 0
248         // TODO: Reenable for simple audio.
249         ui->locut_enabled->setChecked(global_mixer->get_audio_mixer()->get_locut_enabled(0));
250         connect(ui->locut_enabled, &QCheckBox::stateChanged, [this](int state){
251                 global_mixer->get_audio_mixer()->set_locut_enabled(0, state == Qt::Checked);
252         });
253         ui->gainstaging_knob->setValue(global_mixer->get_audio_mixer()->get_gain_staging_db());
254         ui->gainstaging_auto_checkbox->setChecked(global_mixer->get_audio_mixer()->get_gain_staging_auto());
255         ui->compressor_enabled->setChecked(global_mixer->get_audio_mixer()->get_compressor_enabled());
256         connect(ui->gainstaging_knob, &QAbstractSlider::valueChanged, this, &MainWindow::gain_staging_knob_changed);
257         connect(ui->gainstaging_auto_checkbox, &QCheckBox::stateChanged, [this](int state){
258                 global_mixer->get_audio_mixer()->set_gain_staging_auto(state == Qt::Checked);
259         });
260         ui->compressor_threshold_db_display->setText(
261                 QString::fromStdString(format_db(mixer->get_audio_mixer()->get_compressor_threshold_dbfs(), DB_WITH_SIGN)));
262         ui->compressor_threshold_db_display->setText(buf);
263         connect(ui->compressor_threshold_knob, &QDial::valueChanged, this, &MainWindow::compressor_threshold_knob_changed);
264         connect(ui->compressor_enabled, &QCheckBox::stateChanged, [this](int state){
265                 global_mixer->get_audio_mixer()->set_compressor_enabled(state == Qt::Checked);
266         });
267 #else
268         ui->locut_enabled->setVisible(false);
269         ui->gainstaging_label->setVisible(false);
270         ui->gainstaging_knob->setVisible(false);
271         ui->gainstaging_db_display->setVisible(false);
272         ui->gainstaging_auto_checkbox->setVisible(false);
273         ui->compressor_threshold_label->setVisible(false);
274         ui->compressor_threshold_knob->setVisible(false);
275         ui->compressor_threshold_db_display->setVisible(false);
276         ui->compressor_enabled->setVisible(false);
277 #endif
278         ui->limiter_enabled->setChecked(global_mixer->get_audio_mixer()->get_limiter_enabled());
279         ui->makeup_gain_auto_checkbox->setChecked(global_mixer->get_audio_mixer()->get_final_makeup_gain_auto());
280
281         QString limiter_threshold_label(
282                 QString::fromStdString(format_db(mixer->get_audio_mixer()->get_limiter_threshold_dbfs(), DB_WITH_SIGN)));
283         ui->limiter_threshold_db_display->setText(limiter_threshold_label);
284         ui->limiter_threshold_db_display_2->setText(limiter_threshold_label);
285
286         connect(ui->locut_cutoff_knob, &QDial::valueChanged, this, &MainWindow::cutoff_knob_changed);
287         cutoff_knob_changed(ui->locut_cutoff_knob->value());
288
289         connect(ui->makeup_gain_knob, &QAbstractSlider::valueChanged, this, &MainWindow::final_makeup_gain_knob_changed);
290         connect(ui->makeup_gain_auto_checkbox, &QCheckBox::stateChanged, [this](int state){
291                 global_mixer->get_audio_mixer()->set_final_makeup_gain_auto(state == Qt::Checked);
292         });
293
294         connect(ui->limiter_threshold_knob, &QDial::valueChanged, this, &MainWindow::limiter_threshold_knob_changed);
295         connect(ui->limiter_enabled, &QCheckBox::stateChanged, [this](int state){
296                 global_mixer->get_audio_mixer()->set_limiter_enabled(state == Qt::Checked);
297         });
298         connect(ui->reset_meters_button, &QPushButton::clicked, this, &MainWindow::reset_meters_button_clicked);
299         mixer->get_audio_mixer()->set_audio_level_callback(bind(&MainWindow::audio_level_callback, this, _1, _2, _3, _4, _5, _6, _7, _8));
300
301         struct sigaction act;
302         memset(&act, 0, sizeof(act));
303         act.sa_handler = schedule_cut_signal;
304         act.sa_flags = SA_RESTART;
305         sigaction(SIGHUP, &act, nullptr);
306
307         // Mostly for debugging. Don't override SIGINT, that's so evil if
308         // shutdown isn't instant.
309         memset(&act, 0, sizeof(act));
310         act.sa_handler = quit_signal;
311         act.sa_flags = SA_RESTART;
312         sigaction(SIGUSR1, &act, nullptr);
313 }
314
315 void MainWindow::setup_audio_miniview()
316 {
317         // Remove any existing channels.
318         for (QLayoutItem *item; (item = ui->faders->takeAt(0)) != nullptr; ) {
319                 delete item->widget();
320                 delete item;
321         }
322         audio_miniviews.clear();
323
324         // Set up brand new ones from the input mapping.
325         InputMapping mapping = global_mixer->get_audio_mixer()->get_input_mapping();
326         audio_miniviews.resize(mapping.buses.size());
327         for (unsigned bus_index = 0; bus_index < mapping.buses.size(); ++bus_index) {
328                 QWidget *channel = new QWidget(this);
329                 Ui::AudioMiniView *ui_audio_miniview = new Ui::AudioMiniView;
330                 ui_audio_miniview->setupUi(channel);
331                 ui_audio_miniview->bus_desc_label->setFullText(
332                         QString::fromStdString(mapping.buses[bus_index].name));
333                 audio_miniviews[bus_index] = ui_audio_miniview;
334
335                 // Set up the peak meter.
336                 VUMeter *peak_meter = ui_audio_miniview->peak_meter;
337                 peak_meter->set_min_level(-30.0f);
338                 peak_meter->set_max_level(0.0f);
339                 peak_meter->set_ref_level(0.0f);
340
341                 // TODO: Set the fader position.
342                 ui->faders->addWidget(channel);
343
344                 connect(ui_audio_miniview->fader, &NonLinearFader::dbValueChanged,
345                         bind(&MainWindow::mini_fader_changed, this, bus_index, _1));
346                 connect(ui_audio_miniview->peak_display_label, &ClickableLabel::clicked,
347                         [bus_index]() {
348                                 global_mixer->get_audio_mixer()->reset_peak(bus_index);
349                         });
350         }
351 }
352
353 void MainWindow::setup_audio_expanded_view()
354 {
355         // Remove any existing channels.
356         for (QLayoutItem *item; (item = ui->buses->takeAt(0)) != nullptr; ) {
357                 delete item->widget();
358                 delete item;
359         }
360         audio_expanded_views.clear();
361
362         // Set up brand new ones from the input mapping.
363         InputMapping mapping = global_mixer->get_audio_mixer()->get_input_mapping();
364         audio_expanded_views.resize(mapping.buses.size());
365         for (unsigned bus_index = 0; bus_index < mapping.buses.size(); ++bus_index) {
366                 QWidget *channel = new QWidget(this);
367                 Ui::AudioExpandedView *ui_audio_expanded_view = new Ui::AudioExpandedView;
368                 ui_audio_expanded_view->setupUi(channel);
369                 ui_audio_expanded_view->bus_desc_label->setFullText(
370                         QString::fromStdString(mapping.buses[bus_index].name));
371                 audio_expanded_views[bus_index] = ui_audio_expanded_view;
372                 update_eq_label(bus_index, EQ_BAND_TREBLE, global_mixer->get_audio_mixer()->get_eq(bus_index, EQ_BAND_TREBLE));
373                 update_eq_label(bus_index, EQ_BAND_MID, global_mixer->get_audio_mixer()->get_eq(bus_index, EQ_BAND_MID));
374                 update_eq_label(bus_index, EQ_BAND_BASS, global_mixer->get_audio_mixer()->get_eq(bus_index, EQ_BAND_BASS));
375                 // TODO: Set the fader position.
376                 ui->buses->addWidget(channel);
377
378                 ui_audio_expanded_view->locut_enabled->setChecked(global_mixer->get_audio_mixer()->get_locut_enabled(bus_index));
379                 connect(ui_audio_expanded_view->locut_enabled, &QCheckBox::stateChanged, [this, bus_index](int state){
380                         global_mixer->get_audio_mixer()->set_locut_enabled(bus_index, state == Qt::Checked);
381                 });
382
383                 connect(ui_audio_expanded_view->treble_knob, &QDial::valueChanged,
384                         bind(&MainWindow::eq_knob_changed, this, bus_index, EQ_BAND_TREBLE, _1));
385                 connect(ui_audio_expanded_view->mid_knob, &QDial::valueChanged,
386                         bind(&MainWindow::eq_knob_changed, this, bus_index, EQ_BAND_MID, _1));
387                 connect(ui_audio_expanded_view->bass_knob, &QDial::valueChanged,
388                         bind(&MainWindow::eq_knob_changed, this, bus_index, EQ_BAND_BASS, _1));
389
390                 ui_audio_expanded_view->gainstaging_knob->setValue(global_mixer->get_audio_mixer()->get_gain_staging_db(bus_index));
391                 ui_audio_expanded_view->gainstaging_auto_checkbox->setChecked(global_mixer->get_audio_mixer()->get_gain_staging_auto(bus_index));
392                 ui_audio_expanded_view->compressor_enabled->setChecked(global_mixer->get_audio_mixer()->get_compressor_enabled(bus_index));
393
394                 connect(ui_audio_expanded_view->gainstaging_knob, &QAbstractSlider::valueChanged, bind(&MainWindow::gain_staging_knob_changed, this, bus_index, _1));
395                 connect(ui_audio_expanded_view->gainstaging_auto_checkbox, &QCheckBox::stateChanged, [this, bus_index](int state){
396                         global_mixer->get_audio_mixer()->set_gain_staging_auto(bus_index, state == Qt::Checked);
397                 });
398
399                 connect(ui_audio_expanded_view->compressor_threshold_knob, &QDial::valueChanged, bind(&MainWindow::compressor_threshold_knob_changed, this, bus_index, _1));
400                 connect(ui_audio_expanded_view->compressor_enabled, &QCheckBox::stateChanged, [this, bus_index](int state){
401                         global_mixer->get_audio_mixer()->set_compressor_enabled(bus_index, state == Qt::Checked);
402                 });
403
404                 slave_fader(audio_miniviews[bus_index]->fader, ui_audio_expanded_view->fader);
405
406                 // Set up the peak meter.
407                 VUMeter *peak_meter = ui_audio_expanded_view->peak_meter;
408                 peak_meter->set_min_level(-30.0f);
409                 peak_meter->set_max_level(0.0f);
410                 peak_meter->set_ref_level(0.0f);
411
412                 connect(ui_audio_expanded_view->peak_display_label, &ClickableLabel::clicked,
413                         [bus_index]() {
414                                 global_mixer->get_audio_mixer()->reset_peak(bus_index);
415                         });
416
417                 // Set up the compression attenuation meter.
418                 VUMeter *reduction_meter = ui_audio_expanded_view->reduction_meter;
419                 reduction_meter->set_min_level(0.0f);
420                 reduction_meter->set_max_level(10.0f);
421                 reduction_meter->set_ref_level(0.0f);
422                 reduction_meter->set_flip(true);
423         }
424
425         update_cutoff_labels(global_mixer->get_audio_mixer()->get_locut_cutoff());
426 }
427
428 void MainWindow::mixer_shutting_down()
429 {
430         ui->me_live->clean_context();
431         ui->me_preview->clean_context();
432         for (Ui::Display *display : previews) {
433                 display->display->clean_context();
434         }
435 }
436
437 void MainWindow::cut_triggered()
438 {
439         global_mixer->schedule_cut();
440 }
441
442 void MainWindow::x264_bitrate_triggered()
443 {
444         bool ok;
445         int new_bitrate = QInputDialog::getInt(this, "Change x264 bitrate", "Choose new bitrate for x264 HTTP output (from 100–100,000 kbit/sec):", global_flags.x264_bitrate, /*min=*/100, /*max=*/100000, /*step=*/100, &ok);
446         if (ok && new_bitrate >= 100 && new_bitrate <= 100000) {
447                 global_flags.x264_bitrate = new_bitrate;
448                 global_mixer->change_x264_bitrate(new_bitrate);
449         }
450 }
451
452 void MainWindow::exit_triggered()
453 {
454         close();
455 }
456
457 void MainWindow::about_triggered()
458 {
459         AboutDialog().exec();
460 }
461
462 void MainWindow::input_mapping_triggered()
463 {
464         if (InputMappingDialog().exec() == QDialog::Accepted) {
465                 setup_audio_miniview();
466                 setup_audio_expanded_view();
467         }
468 }
469
470 void MainWindow::gain_staging_knob_changed(unsigned bus_index, int value)
471 {
472         if (bus_index == 0) {
473                 ui->gainstaging_auto_checkbox->setCheckState(Qt::Unchecked);
474         }
475         if (bus_index < audio_expanded_views.size()) {
476                 audio_expanded_views[bus_index]->gainstaging_auto_checkbox->setCheckState(Qt::Unchecked);
477         }
478
479         float gain_db = value * 0.1f;
480         global_mixer->get_audio_mixer()->set_gain_staging_db(bus_index, gain_db);
481
482         // The label will be updated by the audio level callback.
483 }
484
485 void MainWindow::final_makeup_gain_knob_changed(int value)
486 {
487         ui->makeup_gain_auto_checkbox->setCheckState(Qt::Unchecked);
488
489         float gain_db = value * 0.1f;
490         global_mixer->get_audio_mixer()->set_final_makeup_gain_db(gain_db);
491
492         // The label will be updated by the audio level callback.
493 }
494
495 void MainWindow::cutoff_knob_changed(int value)
496 {
497         float octaves = value * 0.1f;
498         float cutoff_hz = 20.0 * pow(2.0, octaves);
499         global_mixer->get_audio_mixer()->set_locut_cutoff(cutoff_hz);
500         update_cutoff_labels(cutoff_hz);
501 }
502
503 void MainWindow::update_cutoff_labels(float cutoff_hz)
504 {
505         char buf[256];
506         snprintf(buf, sizeof(buf), "%ld Hz", lrintf(cutoff_hz));
507         ui->locut_cutoff_display->setText(buf);
508         ui->locut_cutoff_display_2->setText(buf);
509
510         for (unsigned bus_index = 0; bus_index < audio_expanded_views.size(); ++bus_index) {
511                 audio_expanded_views[bus_index]->locut_enabled->setText(
512                         QString("Lo-cut: ") + buf);
513         }
514 }
515
516 void MainWindow::report_disk_space(off_t free_bytes, double estimated_seconds_left)
517 {
518         char time_str[256];
519         if (estimated_seconds_left < 60.0) {
520                 strcpy(time_str, "<font color=\"red\">Less than a minute</font>");
521         } else if (estimated_seconds_left < 1800.0) {  // Less than half an hour: Xm Ys (red).
522                 int s = lrintf(estimated_seconds_left);
523                 int m = s / 60;
524                 s %= 60;
525                 snprintf(time_str, sizeof(time_str), "<font color=\"red\">%dm %ds</font>", m, s);
526         } else if (estimated_seconds_left < 3600.0) {  // Less than an hour: Xm.
527                 int m = lrintf(estimated_seconds_left / 60.0);
528                 snprintf(time_str, sizeof(time_str), "%dm", m);
529         } else if (estimated_seconds_left < 36000.0) {  // Less than ten hours: Xh Ym.
530                 int m = lrintf(estimated_seconds_left / 60.0);
531                 int h = m / 60;
532                 m %= 60;
533                 snprintf(time_str, sizeof(time_str), "%dh %dm", h, m);
534         } else {  // More than ten hours: Xh.
535                 int h = lrintf(estimated_seconds_left / 3600.0);
536                 snprintf(time_str, sizeof(time_str), "%dh", h);
537         }
538         char buf[256];
539         snprintf(buf, sizeof(buf), "Disk free: %'.0f MB (approx. %s)", free_bytes / 1048576.0, time_str);
540
541         std::string label = buf;
542
543         post_to_main_thread([this, label]{
544                 disk_free_label->setText(QString::fromStdString(label));
545                 ui->menuBar->setCornerWidget(disk_free_label);  // Need to set this again for the sizing to get right.
546         });
547 }
548
549 void MainWindow::eq_knob_changed(unsigned bus_index, EQBand band, int value)
550 {
551         float gain_db = value * 0.1f;
552         global_mixer->get_audio_mixer()->set_eq(bus_index, band, gain_db);
553
554         update_eq_label(bus_index, band, gain_db);
555 }
556
557 void MainWindow::update_eq_label(unsigned bus_index, EQBand band, float gain_db)
558 {
559         Ui::AudioExpandedView *view = audio_expanded_views[bus_index];
560         string db_string = format_db(gain_db, DB_WITH_SIGN);
561         switch (band) {
562         case EQ_BAND_TREBLE:
563                 view->treble_label->setText(QString::fromStdString("Treble: " + db_string));
564                 break;
565         case EQ_BAND_MID:
566                 view->mid_label->setText(QString::fromStdString("Mid: " + db_string));
567                 break;
568         case EQ_BAND_BASS:
569                 view->bass_label->setText(QString::fromStdString("Bass: " + db_string));
570                 break;
571         default:
572                 assert(false);
573         }
574 }
575
576 void MainWindow::limiter_threshold_knob_changed(int value)
577 {
578         float threshold_dbfs = value * 0.1f;
579         global_mixer->get_audio_mixer()->set_limiter_threshold_dbfs(threshold_dbfs);
580         ui->limiter_threshold_db_display->setText(
581                 QString::fromStdString(format_db(threshold_dbfs, DB_WITH_SIGN)));
582         ui->limiter_threshold_db_display_2->setText(
583                 QString::fromStdString(format_db(threshold_dbfs, DB_WITH_SIGN)));
584 }
585
586 void MainWindow::compressor_threshold_knob_changed(unsigned bus_index, int value)
587 {
588         float threshold_dbfs = value * 0.1f;
589         global_mixer->get_audio_mixer()->set_compressor_threshold_dbfs(bus_index, threshold_dbfs);
590
591         QString label(QString::fromStdString(format_db(threshold_dbfs, DB_WITH_SIGN)));
592         if (bus_index == 0) {
593                 ui->compressor_threshold_db_display->setText(label);
594         }
595         if (bus_index < audio_expanded_views.size()) {
596                 audio_expanded_views[bus_index]->compressor_threshold_db_display->setText(label);
597         }
598 }
599
600 void MainWindow::mini_fader_changed(int bus, double volume_db)
601 {
602         QString label(QString::fromStdString(format_db(volume_db, DB_WITH_SIGN)));
603         audio_miniviews[bus]->fader_label->setText(label);
604         audio_expanded_views[bus]->fader_label->setText(label);
605
606         global_mixer->get_audio_mixer()->set_fader_volume(bus, volume_db);
607 }
608
609 void MainWindow::reset_meters_button_clicked()
610 {
611         global_mixer->get_audio_mixer()->reset_meters();
612         ui->peak_display->setText(QString::fromStdString(format_db(-HUGE_VAL, DB_WITH_SIGN | DB_BARE)));
613         ui->peak_display->setStyleSheet("");
614 }
615
616 void MainWindow::audio_level_callback(float level_lufs, float peak_db, vector<AudioMixer::BusLevel> bus_levels,
617                                       float global_level_lufs,
618                                       float range_low_lufs, float range_high_lufs,
619                                       float final_makeup_gain_db,
620                                       float correlation)
621 {
622         steady_clock::time_point now = steady_clock::now();
623
624         // The meters are somewhat inefficient to update. Only update them
625         // every 100 ms or so (we get updates every 5–20 ms). Note that this
626         // means that the digital peak meters are ever so slightly too low
627         // (each update won't be a faithful representation of the highest peak
628         // since the previous update, since there are frames we won't draw),
629         // but the _peak_ of the peak meters will be correct (it's tracked in
630         // AudioMixer, not here), and that's much more important.
631         double last_update_age = duration<double>(now - last_audio_level_callback).count();
632         if (last_update_age < 0.100) {
633                 return;
634         }
635         last_audio_level_callback = now;
636
637         post_to_main_thread([=]() {
638                 ui->vu_meter->set_level(level_lufs);
639                 for (unsigned bus_index = 0; bus_index < bus_levels.size(); ++bus_index) {
640                         if (bus_index < audio_miniviews.size()) {
641                                 const AudioMixer::BusLevel &level = bus_levels[bus_index];
642                                 Ui::AudioMiniView *miniview = audio_miniviews[bus_index];
643                                 miniview->peak_meter->set_level(
644                                         level.current_level_dbfs[0], level.current_level_dbfs[1]);
645                                 miniview->peak_meter->set_peak(
646                                         level.peak_level_dbfs[0], level.peak_level_dbfs[1]);
647                                 set_peak_label(miniview->peak_display_label, level.historic_peak_dbfs);
648
649                                 Ui::AudioExpandedView *view = audio_expanded_views[bus_index];
650                                 view->peak_meter->set_level(
651                                         level.current_level_dbfs[0], level.current_level_dbfs[1]);
652                                 view->peak_meter->set_peak(
653                                         level.peak_level_dbfs[0], level.peak_level_dbfs[1]);
654                                 view->reduction_meter->set_level(level.compressor_attenuation_db);
655                                 view->gainstaging_knob->blockSignals(true);
656                                 view->gainstaging_knob->setValue(lrintf(level.gain_staging_db * 10.0f));
657                                 view->gainstaging_knob->blockSignals(false);
658                                 view->gainstaging_db_display->setText(
659                                         QString("Gain: ") +
660                                         QString::fromStdString(format_db(level.gain_staging_db, DB_WITH_SIGN)));
661                                 set_peak_label(view->peak_display_label, level.historic_peak_dbfs);
662                         }
663                 }
664                 ui->lra_meter->set_levels(global_level_lufs, range_low_lufs, range_high_lufs);
665                 ui->correlation_meter->set_correlation(correlation);
666
667                 ui->peak_display->setText(QString::fromStdString(format_db(peak_db, DB_BARE)));
668                 set_peak_label(ui->peak_display, peak_db);
669
670                 // NOTE: Will be invisible when using multitrack audio.
671                 ui->gainstaging_knob->blockSignals(true);
672                 ui->gainstaging_knob->setValue(lrintf(bus_levels[0].gain_staging_db * 10.0f));
673                 ui->gainstaging_knob->blockSignals(false);
674                 ui->gainstaging_db_display->setText(
675                         QString::fromStdString(format_db(bus_levels[0].gain_staging_db, DB_WITH_SIGN)));
676
677                 ui->makeup_gain_knob->blockSignals(true);
678                 ui->makeup_gain_knob->setValue(lrintf(final_makeup_gain_db * 10.0f));
679                 ui->makeup_gain_knob->blockSignals(false);
680                 ui->makeup_gain_db_display->setText(
681                         QString::fromStdString(format_db(final_makeup_gain_db, DB_WITH_SIGN)));
682                 ui->makeup_gain_db_display_2->setText(
683                         QString::fromStdString(format_db(final_makeup_gain_db, DB_WITH_SIGN)));
684         });
685 }
686
687 void MainWindow::relayout()
688 {
689         int height = ui->vertical_layout->geometry().height();
690
691         double remaining_height = height;
692
693         // Allocate the height; the most important part is to keep the main displays
694         // at 16:9 if at all possible.
695         double me_width = ui->me_preview->width();
696         double me_height = me_width * 9.0 / 16.0 + ui->label_preview->height() + ui->preview_vertical_layout->spacing();
697
698         // TODO: Scale the widths when we need to do this.
699         if (me_height / double(height) > 0.8) {
700                 me_height = height * 0.8;
701         }
702         remaining_height -= me_height + ui->vertical_layout->spacing();
703
704         // Space between the M/E displays and the audio strip.
705         remaining_height -= ui->vertical_layout->spacing();
706
707         // The label above the audio strip.
708         double compact_label_height = ui->compact_label->geometry().height() +
709                 ui->compact_audio_layout->spacing();
710         remaining_height -= compact_label_height;
711
712         // The previews will be constrained by the remaining height, and the width.
713         double preview_label_height = previews[0]->title_bar->geometry().height() +
714                 previews[0]->main_vertical_layout->spacing();
715         int preview_total_width = ui->preview_displays->geometry().width() - (previews.size() - 1) * ui->preview_displays->spacing();
716         double preview_height = min(remaining_height - preview_label_height, (preview_total_width / double(previews.size())) * 9.0 / 16.0);
717         remaining_height -= preview_height + preview_label_height + ui->vertical_layout->spacing();
718
719         ui->vertical_layout->setStretch(0, lrintf(me_height));
720         ui->vertical_layout->setStretch(1,
721                 lrintf(compact_label_height) +
722                 lrintf(remaining_height) +
723                 lrintf(preview_height + preview_label_height));  // Audio strip and previews together.
724
725         ui->compact_audio_layout->setStretch(0, lrintf(compact_label_height));
726         ui->compact_audio_layout->setStretch(1, lrintf(remaining_height));  // Audio strip.
727         ui->compact_audio_layout->setStretch(2, lrintf(preview_height + preview_label_height));
728
729         // Set the widths for the previews.
730         double preview_width = preview_height * 16.0 / 9.0;
731         for (unsigned i = 0; i < previews.size(); ++i) {
732                 ui->preview_displays->setStretch(i, lrintf(preview_width));
733         }
734
735         // The preview horizontal spacer.
736         double remaining_preview_width = preview_total_width - previews.size() * preview_width;
737         ui->preview_displays->setStretch(previews.size(), lrintf(remaining_preview_width));
738 }
739
740 void MainWindow::set_transition_names(vector<string> transition_names)
741 {
742         if (transition_names.size() < 1 || transition_names[0].empty()) {
743                 transition_btn1->setText(QString(""));
744         } else {
745                 transition_btn1->setText(QString::fromStdString(transition_names[0] + " (J)"));
746                 ui->transition_btn1->setShortcut(QKeySequence("J"));
747         }
748         if (transition_names.size() < 2 || transition_names[1].empty()) {
749                 transition_btn2->setText(QString(""));
750         } else {
751                 transition_btn2->setText(QString::fromStdString(transition_names[1] + " (K)"));
752                 ui->transition_btn2->setShortcut(QKeySequence("K"));
753         }
754         if (transition_names.size() < 3 || transition_names[2].empty()) {
755                 transition_btn3->setText(QString(""));
756         } else {
757                 transition_btn3->setText(QString::fromStdString(transition_names[2] + " (L)"));
758                 ui->transition_btn3->setShortcut(QKeySequence("L"));
759         }
760 }
761
762 void MainWindow::update_channel_name(Mixer::Output output, const string &name)
763 {
764         if (output >= Mixer::OUTPUT_INPUT0) {
765                 unsigned channel = output - Mixer::OUTPUT_INPUT0;
766                 previews[channel]->label->setText(name.c_str());
767         }
768 }
769
770 void MainWindow::update_channel_color(Mixer::Output output, const string &color)
771 {
772         if (output >= Mixer::OUTPUT_INPUT0) {
773                 unsigned channel = output - Mixer::OUTPUT_INPUT0;
774                 previews[channel]->frame->setStyleSheet(QString::fromStdString("background-color:" + color));
775         }
776 }
777
778 void MainWindow::transition_clicked(int transition_number)
779 {
780         global_mixer->transition_clicked(transition_number);
781 }
782
783 void MainWindow::channel_clicked(int channel_number)
784 {
785         if (current_wb_pick_display == channel_number) {
786                 // The picking was already done from eventFilter(), since we don't get
787                 // the mouse pointer here.
788         } else {
789                 global_mixer->channel_clicked(channel_number);
790         }
791 }
792
793 void MainWindow::wb_button_clicked(int channel_number)
794 {
795         current_wb_pick_display = channel_number;
796         QApplication::setOverrideCursor(Qt::CrossCursor);
797 }
798
799 bool MainWindow::eventFilter(QObject *watched, QEvent *event)
800 {
801         if (current_wb_pick_display != -1 &&
802             event->type() == QEvent::MouseButtonRelease &&
803             watched->isWidgetType()) {
804                 QApplication::restoreOverrideCursor();
805                 if (watched == previews[current_wb_pick_display]->display) {
806                         const QMouseEvent *mouse_event = (QMouseEvent *)event;
807                         set_white_balance(current_wb_pick_display, mouse_event->x(), mouse_event->y());
808                 } else {
809                         // The user clicked on something else, give up.
810                         // (The click goes through, which might not be ideal, but, yes.)
811                         current_wb_pick_display = -1;
812                 }
813         }
814         return false;
815 }
816
817 namespace {
818
819 double srgb_to_linear(double x)
820 {
821         if (x < 0.04045) {
822                 return x / 12.92;
823         } else {
824                 return pow((x + 0.055) / 1.055, 2.4);
825         }
826 }
827
828 }  // namespace
829
830 void MainWindow::set_white_balance(int channel_number, int x, int y)
831 {
832         // Set the white balance to neutral for the grab. It's probably going to
833         // flicker a bit, but hopefully this display is not live anyway.
834         global_mixer->set_wb(Mixer::OUTPUT_INPUT0 + channel_number, 0.5, 0.5, 0.5);
835         previews[channel_number]->display->updateGL();
836         QRgb reference_color = previews[channel_number]->display->grabFrameBuffer().pixel(x, y);
837
838         double r = srgb_to_linear(qRed(reference_color) / 255.0);
839         double g = srgb_to_linear(qGreen(reference_color) / 255.0);
840         double b = srgb_to_linear(qBlue(reference_color) / 255.0);
841         global_mixer->set_wb(Mixer::OUTPUT_INPUT0 + channel_number, r, g, b);
842         previews[channel_number]->display->updateGL();
843 }