Build fixes for Boost >= 1.73
[dcpomatic.git] / src / wx / audio_panel.cc
1 /*
2     Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "audio_panel.h"
22 #include "audio_mapping_view.h"
23 #include "wx_util.h"
24 #include "gain_calculator_dialog.h"
25 #include "content_panel.h"
26 #include "audio_dialog.h"
27 #include "static_text.h"
28 #include "check_box.h"
29 #include "dcpomatic_button.h"
30 #include "lib/config.h"
31 #include "lib/ffmpeg_audio_stream.h"
32 #include "lib/ffmpeg_content.h"
33 #include "lib/cinema_sound_processor.h"
34 #include "lib/job_manager.h"
35 #include "lib/dcp_content.h"
36 #include "lib/audio_content.h"
37 #include <wx/spinctrl.h>
38 #include <boost/foreach.hpp>
39 #include <iostream>
40
41 using std::vector;
42 using std::cout;
43 using std::string;
44 using std::list;
45 using std::pair;
46 using boost::dynamic_pointer_cast;
47 using boost::shared_ptr;
48 using boost::optional;
49 #if BOOST_VERSION >= 106100
50 using namespace boost::placeholders;
51 #endif
52
53 AudioPanel::AudioPanel (ContentPanel* p)
54         : ContentSubPanel (p, _("Audio"))
55         , _audio_dialog (0)
56 {
57         _reference = new CheckBox (this, _("Use this DCP's audio as OV and make VF"));
58         _reference_note = new StaticText (this, wxT(""));
59         _reference_note->Wrap (200);
60         wxFont font = _reference_note->GetFont();
61         font.SetStyle(wxFONTSTYLE_ITALIC);
62         font.SetPointSize(font.GetPointSize() - 1);
63         _reference_note->SetFont(font);
64
65         _show = new Button (this, _("Show graph of audio levels..."));
66         _peak = new StaticText (this, wxT (""));
67
68         _gain_label = create_label (this, _("Gain"), true);
69         _gain = new ContentSpinCtrlDouble<AudioContent> (
70                 this,
71                 new wxSpinCtrlDouble (this),
72                 AudioContentProperty::GAIN,
73                 &Content::audio,
74                 boost::mem_fn (&AudioContent::gain),
75                 boost::mem_fn (&AudioContent::set_gain)
76                 );
77
78         _gain_db_label = create_label (this, _("dB"), false);
79         _gain_calculate_button = new Button (this, _("Calculate..."));
80
81         _delay_label = create_label (this, _("Delay"), true);
82         _delay = new ContentSpinCtrl<AudioContent> (
83                 this,
84                 new wxSpinCtrl (this),
85                 AudioContentProperty::DELAY,
86                 &Content::audio,
87                 boost::mem_fn (&AudioContent::delay),
88                 boost::mem_fn (&AudioContent::set_delay)
89                 );
90
91         /// TRANSLATORS: this is an abbreviation for milliseconds, the unit of time
92         _delay_ms_label = create_label (this, _("ms"), false);
93
94         _mapping = new AudioMappingView (this);
95         _sizer->Add (_mapping, 1, wxEXPAND | wxALL, 6);
96
97         _description = new StaticText (this, wxT(" \n"), wxDefaultPosition, wxDefaultSize);
98         _sizer->Add (_description, 0, wxALL, 12);
99         _description->SetFont (font);
100
101         _gain->wrapped()->SetRange (-60, 60);
102         _gain->wrapped()->SetDigits (1);
103         _gain->wrapped()->SetIncrement (0.5);
104         _delay->wrapped()->SetRange (-1000, 1000);
105
106         content_selection_changed ();
107         film_changed (Film::AUDIO_CHANNELS);
108         film_changed (Film::VIDEO_FRAME_RATE);
109         film_changed (Film::REEL_TYPE);
110
111         _reference->Bind             (wxEVT_CHECKBOX, boost::bind (&AudioPanel::reference_clicked, this));
112         _show->Bind                  (wxEVT_BUTTON,   boost::bind (&AudioPanel::show_clicked, this));
113         _gain_calculate_button->Bind (wxEVT_BUTTON,   boost::bind (&AudioPanel::gain_calculate_button_clicked, this));
114
115         _mapping_connection = _mapping->Changed.connect (boost::bind (&AudioPanel::mapping_changed, this, _1));
116         _active_jobs_connection = JobManager::instance()->ActiveJobsChanged.connect (boost::bind (&AudioPanel::active_jobs_changed, this, _1, _2));
117
118         add_to_grid ();
119 }
120
121 void
122 AudioPanel::add_to_grid ()
123 {
124         bool const full = Config::instance()->interface_complexity() == Config::INTERFACE_FULL;
125
126         int r = 0;
127
128         _reference->Show (full);
129         _reference_note->Show (full);
130
131         if (full) {
132                 wxBoxSizer* reference_sizer = new wxBoxSizer (wxVERTICAL);
133                 reference_sizer->Add (_reference, 0);
134                 reference_sizer->Add (_reference_note, 0);
135                 _grid->Add (reference_sizer, wxGBPosition(r, 0), wxGBSpan(1, 4));
136                 ++r;
137         }
138
139         _grid->Add (_show, wxGBPosition (r, 0), wxGBSpan (1, 2));
140         _grid->Add (_peak, wxGBPosition (r, 2), wxGBSpan (1, 2), wxALIGN_CENTER_VERTICAL);
141         ++r;
142
143         add_label_to_sizer (_grid, _gain_label, true, wxGBPosition(r, 0));
144         {
145                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
146                 s->Add (_gain->wrapped(), 1, wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
147                 s->Add (_gain_db_label, 0, wxALIGN_CENTER_VERTICAL);
148                 _grid->Add (s, wxGBPosition(r, 1));
149         }
150
151         _gain_calculate_button->Show (full);
152
153         if (full) {
154                 _grid->Add (_gain_calculate_button, wxGBPosition(r, 2), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
155                 ++r;
156         }
157
158         _delay_label->Show (full);
159         _delay->show (full);
160         _delay_ms_label->Show (full);
161
162         if (full) {
163                 add_label_to_sizer (_grid, _delay_label, true, wxGBPosition(r, 0));
164                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
165                 s->Add (_delay->wrapped(), 1, wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
166                 s->Add (_delay_ms_label, 0, wxALIGN_CENTER_VERTICAL);
167                 _grid->Add (s, wxGBPosition(r, 1));
168                 ++r;
169         }
170 }
171
172 AudioPanel::~AudioPanel ()
173 {
174         if (_audio_dialog) {
175                 _audio_dialog->Destroy ();
176                 _audio_dialog = 0;
177         }
178 }
179
180 void
181 AudioPanel::film_changed (Film::Property property)
182 {
183         if (!_parent->film()) {
184                 return;
185         }
186
187         switch (property) {
188         case Film::AUDIO_CHANNELS:
189         case Film::AUDIO_PROCESSOR:
190                 _mapping->set_output_channels (_parent->film()->audio_output_names ());
191                 setup_peak ();
192                 break;
193         case Film::VIDEO_FRAME_RATE:
194                 setup_description ();
195                 break;
196         case Film::REEL_TYPE:
197         case Film::INTEROP:
198                 setup_sensitivity ();
199                 break;
200         default:
201                 break;
202         }
203 }
204
205 void
206 AudioPanel::film_content_changed (int property)
207 {
208         ContentList ac = _parent->selected_audio ();
209         if (property == AudioContentProperty::STREAMS) {
210                 if (ac.size() == 1) {
211                         _mapping->set (ac.front()->audio->mapping());
212                         _mapping->set_input_channels (ac.front()->audio->channel_names ());
213
214                         vector<AudioMappingView::Group> groups;
215                         int c = 0;
216                         BOOST_FOREACH (shared_ptr<const AudioStream> i, ac.front()->audio->streams()) {
217                                 shared_ptr<const FFmpegAudioStream> f = dynamic_pointer_cast<const FFmpegAudioStream> (i);
218                                 string name = "";
219                                 if (f) {
220                                         name = f->name;
221                                         if (f->codec_name) {
222                                                 name += " (" + f->codec_name.get() + ")";
223                                         }
224                                 }
225                                 groups.push_back (AudioMappingView::Group (c, c + i->channels() - 1, name));
226                                 c += i->channels ();
227                         }
228                         _mapping->set_input_groups (groups);
229
230                 } else {
231                         _mapping->set (AudioMapping ());
232                 }
233                 setup_description ();
234                 setup_peak ();
235                 _sizer->Layout ();
236         } else if (property == AudioContentProperty::GAIN) {
237                 setup_peak ();
238         } else if (property == DCPContentProperty::REFERENCE_AUDIO) {
239                 if (ac.size() == 1) {
240                         shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (ac.front ());
241                         checked_set (_reference, dcp ? dcp->reference_audio () : false);
242                 } else {
243                         checked_set (_reference, false);
244                 }
245
246                 setup_sensitivity ();
247         } else if (property == ContentProperty::VIDEO_FRAME_RATE) {
248                 setup_description ();
249         }
250 }
251
252 void
253 AudioPanel::gain_calculate_button_clicked ()
254 {
255         GainCalculatorDialog* d = new GainCalculatorDialog (this);
256         int const r = d->ShowModal ();
257
258         if (r == wxID_CANCEL || d->wanted_fader() == 0 || d->actual_fader() == 0) {
259                 d->Destroy ();
260                 return;
261         }
262
263         _gain->wrapped()->SetValue (
264                 Config::instance()->cinema_sound_processor()->db_for_fader_change (
265                         d->wanted_fader (),
266                         d->actual_fader ()
267                         )
268                 );
269
270         /* This appears to be necessary, as the change is not signalled,
271            I think.
272         */
273         _gain->view_changed ();
274
275         d->Destroy ();
276 }
277
278 void
279 AudioPanel::setup_description ()
280 {
281         ContentList ac = _parent->selected_audio ();
282         if (ac.size () != 1) {
283                 checked_set (_description, wxT (""));
284                 return;
285         }
286
287         checked_set (_description, ac.front()->audio->processing_description(_parent->film()));
288 }
289
290 void
291 AudioPanel::mapping_changed (AudioMapping m)
292 {
293         ContentList c = _parent->selected_audio ();
294         if (c.size() == 1) {
295                 c.front()->audio->set_mapping (m);
296         }
297 }
298
299 void
300 AudioPanel::content_selection_changed ()
301 {
302         ContentList sel = _parent->selected_audio ();
303
304         _gain->set_content (sel);
305         _delay->set_content (sel);
306
307         film_content_changed (AudioContentProperty::STREAMS);
308         film_content_changed (AudioContentProperty::GAIN);
309         film_content_changed (DCPContentProperty::REFERENCE_AUDIO);
310
311         setup_sensitivity ();
312 }
313
314 void
315 AudioPanel::setup_sensitivity ()
316 {
317         ContentList sel = _parent->selected_audio ();
318
319         shared_ptr<DCPContent> dcp;
320         if (sel.size() == 1) {
321                 dcp = dynamic_pointer_cast<DCPContent> (sel.front ());
322         }
323
324         string why_not;
325         bool const can_reference = dcp && dcp->can_reference_audio (_parent->film(), why_not);
326         setup_refer_button (_reference, _reference_note, dcp, can_reference, why_not);
327
328         if (_reference->GetValue ()) {
329                 _gain->wrapped()->Enable (false);
330                 _gain_calculate_button->Enable (false);
331                 _show->Enable (true);
332                 _peak->Enable (false);
333                 _delay->wrapped()->Enable (false);
334                 _mapping->Enable (false);
335                 _description->Enable (false);
336         } else {
337                 _gain->wrapped()->Enable (sel.size() == 1);
338                 _gain_calculate_button->Enable (sel.size() == 1);
339                 _show->Enable (sel.size() == 1);
340                 _peak->Enable (sel.size() == 1);
341                 _delay->wrapped()->Enable (sel.size() == 1);
342                 _mapping->Enable (sel.size() == 1);
343                 _description->Enable (sel.size() == 1);
344         }
345 }
346
347 void
348 AudioPanel::show_clicked ()
349 {
350         if (_audio_dialog) {
351                 _audio_dialog->Destroy ();
352                 _audio_dialog = 0;
353         }
354
355         ContentList ac = _parent->selected_audio ();
356         if (ac.size() != 1) {
357                 return;
358         }
359
360         _audio_dialog = new AudioDialog (this, _parent->film (), ac.front ());
361         _audio_dialog->Show ();
362 }
363
364 void
365 AudioPanel::setup_peak ()
366 {
367         ContentList sel = _parent->selected_audio ();
368         optional<float> peak_dB;
369
370         if (sel.size() != 1) {
371                 _peak->SetLabel (wxT (""));
372         } else {
373                 shared_ptr<Playlist> playlist (new Playlist);
374                 playlist->add (_parent->film(), sel.front());
375                 try {
376                         shared_ptr<AudioAnalysis> analysis (new AudioAnalysis (_parent->film()->audio_analysis_path (playlist)));
377                         peak_dB = 20 * log10 (analysis->overall_sample_peak().first.peak) + analysis->gain_correction (playlist);
378                         _peak->SetLabel (wxString::Format (_("Peak: %.2fdB"), *peak_dB));
379                 } catch (...) {
380                         _peak->SetLabel (_("Peak: unknown"));
381                 }
382         }
383
384         static wxColour normal = _peak->GetForegroundColour ();
385
386         if (peak_dB && *peak_dB > -0.5) {
387                 _peak->SetForegroundColour (wxColour (255, 0, 0));
388         } else if (peak_dB && *peak_dB > -3) {
389                 _peak->SetForegroundColour (wxColour (186, 120, 0));
390         } else {
391                 _peak->SetForegroundColour (normal);
392         }
393 }
394
395 void
396 AudioPanel::active_jobs_changed (optional<string> old_active, optional<string> new_active)
397 {
398         if (old_active && *old_active == "analyse_audio") {
399                 setup_peak ();
400                 _mapping->Enable (true);
401         } else if (new_active && *new_active == "analyse_audio") {
402                 _mapping->Enable (false);
403         }
404 }
405
406 void
407 AudioPanel::reference_clicked ()
408 {
409         ContentList c = _parent->selected ();
410         if (c.size() != 1) {
411                 return;
412         }
413
414         shared_ptr<DCPContent> d = dynamic_pointer_cast<DCPContent> (c.front ());
415         if (!d) {
416                 return;
417         }
418
419         d->set_reference_audio (_reference->GetValue ());
420 }
421
422 void
423 AudioPanel::set_film (shared_ptr<Film>)
424 {
425         /* We are changing film, so destroy any audio dialog for the old one */
426         if (_audio_dialog) {
427                 _audio_dialog->Destroy ();
428                 _audio_dialog = 0;
429         }
430 }