Support encoding of MPEG2 DCPs.
[dcpomatic.git] / src / wx / dcp_panel.cc
1 /*
2     Copyright (C) 2012-2021 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
22 #include "audio_dialog.h"
23 #include "check_box.h"
24 #include "check_box.h"
25 #include "dcp_panel.h"
26 #include "dcp_timeline_dialog.h"
27 #include "dcpomatic_button.h"
28 #include "dcpomatic_choice.h"
29 #include "dcpomatic_spin_ctrl.h"
30 #include "focus_manager.h"
31 #include "interop_metadata_dialog.h"
32 #include "language_tag_dialog.h"
33 #include "markers_dialog.h"
34 #include "smpte_metadata_dialog.h"
35 #include "static_text.h"
36 #include "wx_util.h"
37 #include "lib/audio_content.h"
38 #include "lib/audio_processor.h"
39 #include "lib/config.h"
40 #include "lib/dcp_content.h"
41 #include "lib/dcp_content_type.h"
42 #include "lib/ffmpeg_content.h"
43 #include "lib/film.h"
44 #include "lib/ratio.h"
45 #include "lib/text_content.h"
46 #include "lib/util.h"
47 #include "lib/video_content.h"
48 #include <dcp/locale_convert.h>
49 #include <dcp/warnings.h>
50 LIBDCP_DISABLE_WARNINGS
51 #include <wx/gbsizer.h>
52 #include <wx/notebook.h>
53 #include <wx/spinctrl.h>
54 #include <wx/wx.h>
55 LIBDCP_ENABLE_WARNINGS
56 #include <boost/lexical_cast.hpp>
57
58
59 using std::list;
60 using std::make_pair;
61 using std::max;
62 using std::pair;
63 using std::shared_ptr;
64 using std::string;
65 using std::vector;
66 using std::weak_ptr;
67 using boost::lexical_cast;
68 #if BOOST_VERSION >= 106100
69 using namespace boost::placeholders;
70 #endif
71 using dcp::locale_convert;
72
73
74 DCPPanel::DCPPanel(wxNotebook* n, shared_ptr<Film> film, FilmViewer& viewer)
75         : _film (film)
76         , _viewer (viewer)
77         , _generally_sensitive (true)
78 {
79         _panel = new wxPanel (n);
80         _sizer = new wxBoxSizer (wxVERTICAL);
81         _panel->SetSizer (_sizer);
82
83         _grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
84         _sizer->Add (_grid, 0, wxEXPAND | wxALL, 8);
85
86         _name_label = create_label (_panel, _("Name"), true);
87         _name = new wxTextCtrl (_panel, wxID_ANY);
88         FocusManager::instance()->add(_name);
89
90         _use_isdcf_name = new CheckBox (_panel, _("Use ISDCF name"));
91         _copy_isdcf_name_button = new Button (_panel, _("Copy as name"));
92
93         /* wxST_ELLIPSIZE_MIDDLE works around a bug in GTK2 and/or wxWidgets, see
94            http://trac.wxwidgets.org/ticket/12539
95         */
96         _dcp_name = new StaticText (
97                 _panel, wxT (""), wxDefaultPosition, wxDefaultSize,
98                 wxALIGN_CENTRE_HORIZONTAL | wxST_NO_AUTORESIZE | wxST_ELLIPSIZE_MIDDLE
99                 );
100
101         _dcp_content_type_label = create_label (_panel, _("Content Type"), true);
102         _dcp_content_type = new Choice(_panel);
103
104         _encrypted = new CheckBox (_panel, _("Encrypted"));
105
106         wxClientDC dc (_panel);
107         auto size = dc.GetTextExtent (wxT ("GGGGGGGG..."));
108         size.SetHeight (-1);
109
110         _standard_label = create_label (_panel, _("Standard"), true);
111         _standard = new Choice(_panel);
112
113         _markers = new Button (_panel, _("Markers..."));
114         _metadata = new Button (_panel, _("Metadata..."));
115         _reels = new Button(_panel, _("Reels..."));
116
117         _notebook = new wxNotebook (_panel, wxID_ANY);
118         _sizer->Add (_notebook, 1, wxEXPAND | wxTOP, 6);
119
120         _notebook->AddPage (make_video_panel (), _("Video"), false);
121         _notebook->AddPage (make_audio_panel (), _("Audio"), false);
122
123         _name->Bind                  (wxEVT_TEXT,     boost::bind(&DCPPanel::name_changed, this));
124         _use_isdcf_name->bind(&DCPPanel::use_isdcf_name_toggled, this);
125         _copy_isdcf_name_button->Bind(wxEVT_BUTTON,   boost::bind(&DCPPanel::copy_isdcf_name_button_clicked, this));
126         _dcp_content_type->Bind      (wxEVT_CHOICE,   boost::bind(&DCPPanel::dcp_content_type_changed, this));
127         _encrypted->bind(&DCPPanel::encrypted_toggled, this);
128         _standard->Bind              (wxEVT_CHOICE,   boost::bind(&DCPPanel::standard_changed, this));
129         _markers->Bind               (wxEVT_BUTTON,   boost::bind(&DCPPanel::markers_clicked, this));
130         _metadata->Bind              (wxEVT_BUTTON,   boost::bind(&DCPPanel::metadata_clicked, this));
131         _reels->Bind(wxEVT_BUTTON, boost::bind(&DCPPanel::reels_clicked, this));
132
133         for (auto i: DCPContentType::all()) {
134                 _dcp_content_type->add(i->pretty_name());
135         }
136
137         add_standards();
138         _standard->SetToolTip(_("The standard that the DCP should use.  Interop is older, and SMPTE is the newer (current) standard.  If in doubt, choose 'SMPTE'"));
139
140         Config::instance()->Changed.connect (boost::bind(&DCPPanel::config_changed, this, _1));
141
142         add_to_grid ();
143 }
144
145
146 void
147 DCPPanel::add_standards()
148 {
149         _standard->add(_("SMPTE"), N_("smpte"));
150         if (Config::instance()->allow_smpte_bv20() || (_film && _film->limit_to_smpte_bv20())) {
151                 _standard->add(_("SMPTE (Bv2.0 only)"), N_("smpte-bv20"));
152         }
153         _standard->add(_("Interop"), N_("interop"));
154         _standard->add(_("MPEG2 Interop"), N_("mpeg2-interop"));
155         _sizer->Layout();
156 }
157
158
159 void
160 DCPPanel::set_standard()
161 {
162         DCPOMATIC_ASSERT(_film);
163         DCPOMATIC_ASSERT(!_film->limit_to_smpte_bv20() || _standard->GetCount() == 3);
164
165         if (_film->interop()) {
166                 if (_film->video_encoding() == VideoEncoding::JPEG2000) {
167                         checked_set(_standard, "interop");
168                 } else {
169                         checked_set(_standard, "mpeg2-interop");
170                 }
171         } else {
172                 checked_set(_standard, _film->limit_to_smpte_bv20() ? "smpte-bv20" : "smpte");
173         }
174 }
175
176
177 void
178 DCPPanel::standard_changed ()
179 {
180         if (!_film || !_standard->get()) {
181                 return;
182         }
183
184         auto const data = _standard->get_data();
185         if (!data) {
186                 return;
187         }
188
189         if (*data == N_("interop")) {
190                 _film->set_interop(true);
191                 _film->set_limit_to_smpte_bv20(false);
192                 _film->set_video_encoding(VideoEncoding::JPEG2000);
193         } else if (*data == N_("smpte")) {
194                 _film->set_interop(false);
195                 _film->set_limit_to_smpte_bv20(false);
196                 _film->set_video_encoding(VideoEncoding::JPEG2000);
197         } else if (*data == N_("smpte-bv20")) {
198                 _film->set_interop(false);
199                 _film->set_limit_to_smpte_bv20(true);
200                 _film->set_video_encoding(VideoEncoding::JPEG2000);
201         } else if (*data == N_("mpeg2-interop")) {
202                 _film->set_interop(true);
203                 _film->set_video_encoding(VideoEncoding::MPEG2);
204         }
205 }
206
207
208 void
209 DCPPanel::add_to_grid ()
210 {
211         int r = 0;
212
213         auto name_sizer = new wxBoxSizer (wxHORIZONTAL);
214         name_sizer->Add (_name_label, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
215         name_sizer->Add (_name, 1, wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
216         _grid->Add (name_sizer, wxGBPosition(r, 0), wxGBSpan(1, 2), wxRIGHT | wxEXPAND, DCPOMATIC_DIALOG_BORDER);
217         ++r;
218
219         int flags = wxALIGN_CENTER_VERTICAL;
220 #ifdef __WXOSX__
221         flags |= wxALIGN_RIGHT;
222 #endif
223
224         _grid->Add (_use_isdcf_name, wxGBPosition(r, 0), wxDefaultSpan, flags);
225         {
226                 auto s = new wxBoxSizer (wxHORIZONTAL);
227                 s->Add (_copy_isdcf_name_button, 0, wxLEFT, DCPOMATIC_SIZER_X_GAP);
228                 _grid->Add (s, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND | wxBOTTOM, DCPOMATIC_CHECKBOX_BOTTOM_PAD);
229         }
230         ++r;
231
232         _grid->Add (_dcp_name, wxGBPosition(r, 0), wxGBSpan(1, 2), wxALIGN_CENTER_VERTICAL | wxEXPAND);
233         ++r;
234
235         add_label_to_sizer (_grid, _dcp_content_type_label, true, wxGBPosition(r, 0));
236         _grid->Add (_dcp_content_type, wxGBPosition(r, 1));
237         ++r;
238
239         _grid->Add (_encrypted, wxGBPosition(r, 0), wxGBSpan(1, 2));
240         ++r;
241
242         add_label_to_sizer (_grid, _standard_label, true, wxGBPosition(r, 0));
243         _grid->Add (_standard, wxGBPosition(r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
244         ++r;
245
246         auto extra = new wxBoxSizer (wxHORIZONTAL);
247         extra->Add (_markers, 1, wxRIGHT, DCPOMATIC_SIZER_X_GAP);
248         extra->Add (_metadata, 1, wxRIGHT, DCPOMATIC_SIZER_X_GAP);
249         extra->Add(_reels, 1, wxRIGHT, DCPOMATIC_SIZER_X_GAP);
250         _grid->Add (extra, wxGBPosition(r, 0), wxGBSpan(1, 2));
251         ++r;
252 }
253
254
255 void
256 DCPPanel::name_changed ()
257 {
258         if (!_film) {
259                 return;
260         }
261
262         _film->set_name (string(_name->GetValue().mb_str()));
263 }
264
265
266 void
267 DCPPanel::video_bit_rate_changed()
268 {
269         if (!_film) {
270                 return;
271         }
272
273         _film->set_video_bit_rate(_video_bit_rate->GetValue() * 1000000);
274 }
275
276
277 void
278 DCPPanel::encrypted_toggled ()
279 {
280         if (!_film) {
281                 return;
282         }
283
284         _film->set_encrypted (_encrypted->GetValue());
285 }
286
287
288 /** Called when the frame rate choice widget has been changed */
289 void
290 DCPPanel::frame_rate_choice_changed ()
291 {
292         if (!_film || !_frame_rate_choice->get()) {
293                 return;
294         }
295
296         _film->set_video_frame_rate (
297                 boost::lexical_cast<int>(
298                         wx_to_std(_frame_rate_choice->GetString(*_frame_rate_choice->get()))
299                         ),
300                 true
301                 );
302 }
303
304
305 /** Called when the frame rate spin widget has been changed */
306 void
307 DCPPanel::frame_rate_spin_changed ()
308 {
309         if (!_film) {
310                 return;
311         }
312
313         _film->set_video_frame_rate (_frame_rate_spin->GetValue());
314 }
315
316
317 void
318 DCPPanel::audio_channels_changed ()
319 {
320         if (!_film) {
321                 return;
322         }
323
324         _film->set_audio_channels(locale_convert<int>(string_client_data(_audio_channels->GetClientObject(*_audio_channels->get()))));
325 }
326
327
328 void
329 DCPPanel::resolution_changed ()
330 {
331         if (!_film || !_resolution->get()) {
332                 return;
333         }
334
335         _film->set_resolution(*_resolution->get() == 0 ? Resolution::TWO_K : Resolution::FOUR_K);
336 }
337
338
339 void
340 DCPPanel::markers_clicked ()
341 {
342         _markers_dialog.reset(_panel, _film, _viewer);
343         _markers_dialog->Show();
344 }
345
346
347 void
348 DCPPanel::metadata_clicked ()
349 {
350         if (_film->interop()) {
351                 _interop_metadata_dialog.reset(_panel, _film);
352                 _interop_metadata_dialog->setup ();
353                 _interop_metadata_dialog->Show ();
354         } else {
355                 _smpte_metadata_dialog.reset(_panel, _film);
356                 _smpte_metadata_dialog->setup ();
357                 _smpte_metadata_dialog->Show ();
358         }
359 }
360
361
362 void
363 DCPPanel::reels_clicked()
364 {
365         _dcp_timeline.reset(_panel, _film);
366         _dcp_timeline->Show();
367 }
368
369
370 void
371 DCPPanel::film_changed(FilmProperty p)
372 {
373         switch (p) {
374         case FilmProperty::NONE:
375                 break;
376         case FilmProperty::CONTAINER:
377                 setup_container ();
378                 break;
379         case FilmProperty::NAME:
380                 checked_set (_name, _film->name());
381                 setup_dcp_name ();
382                 break;
383         case FilmProperty::DCP_CONTENT_TYPE:
384         {
385                 auto index = DCPContentType::as_index(_film->dcp_content_type());
386                 DCPOMATIC_ASSERT (index);
387                 checked_set (_dcp_content_type, *index);
388                 setup_dcp_name ();
389                 break;
390         }
391         case FilmProperty::ENCRYPTED:
392                 checked_set (_encrypted, _film->encrypted ());
393                 break;
394         case FilmProperty::RESOLUTION:
395                 checked_set (_resolution, _film->resolution() == Resolution::TWO_K ? 0 : 1);
396                 setup_container ();
397                 setup_dcp_name ();
398                 break;
399         case FilmProperty::VIDEO_BIT_RATE:
400                 checked_set(_video_bit_rate, _film->video_bit_rate() / 1000000);
401                 break;
402         case FilmProperty::USE_ISDCF_NAME:
403         {
404                 checked_set (_use_isdcf_name, _film->use_isdcf_name());
405                 if (_film->use_isdcf_name()) {
406                         /* We are going back to using an ISDCF name.  Remove anything after a _ in the current name,
407                            in case the user has clicked 'Copy as name' then re-ticked 'Use ISDCF name' (#1513).
408                         */
409                         string const name = _film->name ();
410                         string::size_type const u = name.find("_");
411                         if (u != string::npos) {
412                                 _film->set_name (name.substr(0, u));
413                         }
414                 }
415                 setup_dcp_name ();
416                 break;
417         }
418         case FilmProperty::VIDEO_FRAME_RATE:
419         {
420                 bool done = false;
421                 for (unsigned int i = 0; i < _frame_rate_choice->GetCount(); ++i) {
422                         if (wx_to_std(_frame_rate_choice->GetString(i)) == boost::lexical_cast<string>(_film->video_frame_rate())) {
423                                 checked_set (_frame_rate_choice, i);
424                                 done = true;
425                                 break;
426                         }
427                 }
428
429                 if (!done) {
430                         checked_set (_frame_rate_choice, -1);
431                 }
432
433                 checked_set (_frame_rate_spin, _film->video_frame_rate ());
434
435                 _best_frame_rate->Enable (_film->best_video_frame_rate () != _film->video_frame_rate ());
436                 setup_dcp_name ();
437                 break;
438         }
439         case FilmProperty::AUDIO_CHANNELS:
440                 if (_film->audio_channels() < minimum_allowed_audio_channels()) {
441                         _film->set_audio_channels (minimum_allowed_audio_channels());
442                 } else {
443                         checked_set (_audio_channels, locale_convert<string>(max(minimum_allowed_audio_channels(), _film->audio_channels())));
444                         setup_dcp_name ();
445                 }
446                 break;
447         case FilmProperty::THREE_D:
448                 checked_set (_three_d, _film->three_d());
449                 setup_dcp_name ();
450                 break;
451         case FilmProperty::REENCODE_J2K:
452                 checked_set (_reencode_j2k, _film->reencode_j2k());
453                 break;
454         case FilmProperty::INTEROP:
455                 set_standard();
456                 setup_dcp_name ();
457                 _markers->Enable (!_film->interop());
458                 break;
459         case FilmProperty::VIDEO_ENCODING:
460                 set_standard();
461                 break;
462         case FilmProperty::LIMIT_TO_SMPTE_BV20:
463                 set_standard();
464                 break;
465         case FilmProperty::AUDIO_PROCESSOR:
466                 if (_film->audio_processor()) {
467                         checked_set (_audio_processor, _film->audio_processor()->id());
468                 } else {
469                         checked_set (_audio_processor, 0);
470                 }
471                 setup_audio_channels_choice (_audio_channels, minimum_allowed_audio_channels());
472                 film_changed (FilmProperty::AUDIO_CHANNELS);
473                 break;
474         case FilmProperty::CONTENT:
475                 setup_dcp_name ();
476                 setup_sensitivity ();
477                 /* Maybe we now have ATMOS content which changes our minimum_allowed_audio_channels */
478                 setup_audio_channels_choice(_audio_channels, minimum_allowed_audio_channels());
479                 film_changed(FilmProperty::AUDIO_CHANNELS);
480                 break;
481         case FilmProperty::AUDIO_LANGUAGE:
482         {
483                 auto al = _film->audio_language();
484                 checked_set (_enable_audio_language, static_cast<bool>(al));
485                 checked_set (_audio_language, al ? std_to_wx(al->to_string()) : wxT(""));
486                 setup_dcp_name ();
487                 setup_sensitivity ();
488                 _audio_panel_sizer->Layout();
489                 break;
490         }
491         case FilmProperty::AUDIO_FRAME_RATE:
492                 if (_audio_sample_rate) {
493                         checked_set (_audio_sample_rate, _film->audio_frame_rate() == 48000 ? 0 : 1);
494                 }
495                 break;
496         case FilmProperty::CONTENT_VERSIONS:
497         case FilmProperty::VERSION_NUMBER:
498         case FilmProperty::RELEASE_TERRITORY:
499         case FilmProperty::RATINGS:
500         case FilmProperty::FACILITY:
501         case FilmProperty::STUDIO:
502         case FilmProperty::TEMP_VERSION:
503         case FilmProperty::PRE_RELEASE:
504         case FilmProperty::RED_BAND:
505         case FilmProperty::TWO_D_VERSION_OF_THREE_D:
506         case FilmProperty::CHAIN:
507         case FilmProperty::LUMINANCE:
508         case FilmProperty::TERRITORY_TYPE:
509                 setup_dcp_name ();
510                 break;
511         default:
512                 break;
513         }
514 }
515
516
517 void
518 DCPPanel::film_content_changed (int property)
519 {
520         if (property == AudioContentProperty::STREAMS ||
521             property == TextContentProperty::USE ||
522             property == TextContentProperty::BURN ||
523             property == TextContentProperty::LANGUAGE ||
524             property == TextContentProperty::LANGUAGE_IS_ADDITIONAL ||
525             property == TextContentProperty::TYPE ||
526             property == TextContentProperty::DCP_TRACK ||
527             property == VideoContentProperty::CUSTOM_RATIO ||
528             property == VideoContentProperty::CUSTOM_SIZE ||
529             property == VideoContentProperty::BURNT_SUBTITLE_LANGUAGE ||
530             property == VideoContentProperty::CROP ||
531             property == DCPContentProperty::REFERENCE_VIDEO ||
532             property == DCPContentProperty::REFERENCE_AUDIO ||
533             property == DCPContentProperty::REFERENCE_TEXT) {
534                 setup_dcp_name ();
535                 setup_sensitivity ();
536         }
537 }
538
539
540 void
541 DCPPanel::setup_container ()
542 {
543         int n = 0;
544         auto ratios = Ratio::containers ();
545         auto i = ratios.begin ();
546         while (i != ratios.end() && *i != _film->container()) {
547                 ++i;
548                 ++n;
549         }
550
551         if (i == ratios.end()) {
552                 checked_set (_container, -1);
553                 checked_set (_container_size, wxT(""));
554         } else {
555                 checked_set (_container, n);
556                 auto const size = fit_ratio_within (_film->container()->ratio(), _film->full_frame ());
557                 checked_set (_container_size, wxString::Format("%dx%d", size.width, size.height));
558         }
559
560         setup_dcp_name ();
561 }
562
563
564 /** Called when the container widget has been changed */
565 void
566 DCPPanel::container_changed ()
567 {
568         if (!_film) {
569                 return;
570         }
571
572         if (auto const container = _container->get()) {
573                 auto ratios = Ratio::containers ();
574                 DCPOMATIC_ASSERT(*container < int(ratios.size()));
575                 _film->set_container(ratios[*container]);
576         }
577 }
578
579
580 /** Called when the DCP content type widget has been changed */
581 void
582 DCPPanel::dcp_content_type_changed ()
583 {
584         if (!_film) {
585                 return;
586         }
587
588         if (auto const type = _dcp_content_type->get()) {
589                 _film->set_dcp_content_type(DCPContentType::from_index(*type));
590         }
591 }
592
593
594 void
595 DCPPanel::set_film (shared_ptr<Film> film)
596 {
597         /* We are changing film, so destroy any dialogs for the old one */
598         _audio_dialog.reset();
599         _markers_dialog.reset();
600         _interop_metadata_dialog.reset();
601         _smpte_metadata_dialog.reset();
602
603         _film = film;
604
605         if (!_film) {
606                 /* Really should all the film_changed below but this might be enough */
607                 checked_set (_dcp_name, wxT(""));
608                 set_general_sensitivity (false);
609                 return;
610         }
611
612         _standard->Clear();
613         add_standards();
614
615         film_changed(FilmProperty::NAME);
616         film_changed(FilmProperty::USE_ISDCF_NAME);
617         film_changed(FilmProperty::CONTENT);
618         film_changed(FilmProperty::DCP_CONTENT_TYPE);
619         film_changed(FilmProperty::CONTAINER);
620         film_changed(FilmProperty::RESOLUTION);
621         film_changed(FilmProperty::ENCRYPTED);
622         film_changed(FilmProperty::VIDEO_BIT_RATE);
623         film_changed(FilmProperty::VIDEO_FRAME_RATE);
624         film_changed(FilmProperty::AUDIO_CHANNELS);
625         film_changed(FilmProperty::SEQUENCE);
626         film_changed(FilmProperty::THREE_D);
627         film_changed(FilmProperty::INTEROP);
628         film_changed(FilmProperty::AUDIO_PROCESSOR);
629         film_changed(FilmProperty::REEL_TYPE);
630         film_changed(FilmProperty::REEL_LENGTH);
631         film_changed(FilmProperty::REENCODE_J2K);
632         film_changed(FilmProperty::AUDIO_LANGUAGE);
633         film_changed(FilmProperty::AUDIO_FRAME_RATE);
634         film_changed(FilmProperty::LIMIT_TO_SMPTE_BV20);
635
636         set_general_sensitivity(static_cast<bool>(_film));
637 }
638
639
640 void
641 DCPPanel::set_general_sensitivity (bool s)
642 {
643         _generally_sensitive = s;
644         setup_sensitivity ();
645 }
646
647
648 void
649 DCPPanel::setup_sensitivity ()
650 {
651         _name->Enable                   (_generally_sensitive);
652         _use_isdcf_name->Enable         (_generally_sensitive);
653         _dcp_content_type->Enable       (_generally_sensitive);
654         _copy_isdcf_name_button->Enable (_generally_sensitive);
655         _enable_audio_language->Enable  (_generally_sensitive);
656         _audio_language->Enable         (_enable_audio_language->GetValue());
657         _edit_audio_language->Enable    (_enable_audio_language->GetValue());
658         _encrypted->Enable              (_generally_sensitive);
659         _markers->Enable                (_generally_sensitive && _film && !_film->interop());
660         _metadata->Enable               (_generally_sensitive);
661         _reels->Enable                  (_generally_sensitive && _film);
662         _frame_rate_choice->Enable      (_generally_sensitive && _film && !_film->references_dcp_video() && !_film->contains_atmos_content());
663         _frame_rate_spin->Enable        (_generally_sensitive && _film && !_film->references_dcp_video() && !_film->contains_atmos_content());
664         _audio_channels->Enable         (_generally_sensitive && _film && !_film->references_dcp_audio());
665         _audio_processor->Enable        (_generally_sensitive && _film && !_film->references_dcp_audio());
666         _video_bit_rate->Enable         (_generally_sensitive && _film && !_film->references_dcp_video());
667         _container->Enable              (_generally_sensitive && _film && !_film->references_dcp_video());
668         _best_frame_rate->Enable (
669                 _generally_sensitive &&
670                 _film &&
671                 _film->best_video_frame_rate () != _film->video_frame_rate() &&
672                 !_film->references_dcp_video() &&
673                 !_film->contains_atmos_content()
674                 );
675         _resolution->Enable             (_generally_sensitive && _film && !_film->references_dcp_video());
676         _three_d->Enable                (_generally_sensitive && _film && !_film->references_dcp_video());
677
678         _standard->Enable (
679                 _generally_sensitive &&
680                 _film &&
681                 !_film->references_dcp_video() &&
682                 !_film->references_dcp_audio() &&
683                 !_film->contains_atmos_content()
684                 );
685
686         _reencode_j2k->Enable           (_generally_sensitive && _film);
687         _show_audio->Enable             (_generally_sensitive && _film);
688 }
689
690
691 void
692 DCPPanel::use_isdcf_name_toggled ()
693 {
694         if (!_film) {
695                 return;
696         }
697
698         _film->set_use_isdcf_name (_use_isdcf_name->GetValue());
699 }
700
701 void
702 DCPPanel::setup_dcp_name ()
703 {
704         if (!_film) {
705                 return;
706         }
707
708         _dcp_name->SetLabel (std_to_wx(_film->dcp_name(true)));
709         _dcp_name->SetToolTip (std_to_wx(_film->dcp_name(true)));
710 }
711
712
713 void
714 DCPPanel::best_frame_rate_clicked ()
715 {
716         if (!_film) {
717                 return;
718         }
719
720         _film->set_video_frame_rate (_film->best_video_frame_rate());
721 }
722
723
724 void
725 DCPPanel::three_d_changed ()
726 {
727         if (!_film) {
728                 return;
729         }
730
731         _film->set_three_d (_three_d->GetValue());
732 }
733
734
735 void
736 DCPPanel::reencode_j2k_changed ()
737 {
738         if (!_film) {
739                 return;
740         }
741
742         _film->set_reencode_j2k (_reencode_j2k->GetValue());
743 }
744
745
746 void
747 DCPPanel::config_changed (Config::Property p)
748 {
749         _video_bit_rate->SetRange(1, Config::instance()->maximum_video_bit_rate() / 1000000);
750         setup_frame_rate_widget ();
751
752         if (p == Config::SHOW_EXPERIMENTAL_AUDIO_PROCESSORS) {
753                 _audio_processor->Clear ();
754                 add_audio_processors ();
755                 if (_film) {
756                         film_changed(FilmProperty::AUDIO_PROCESSOR);
757                 }
758         } else if (p == Config::ALLOW_SMPTE_BV20) {
759                 _standard->Clear();
760                 add_standards();
761                 if (_film) {
762                         film_changed(FilmProperty::INTEROP);
763                         film_changed(FilmProperty::LIMIT_TO_SMPTE_BV20);
764                 }
765         } else if (p == Config::ISDCF_NAME_PART_LENGTH) {
766                 setup_dcp_name();
767         }
768 }
769
770
771 void
772 DCPPanel::setup_frame_rate_widget ()
773 {
774         if (Config::instance()->allow_any_dcp_frame_rate()) {
775                 _frame_rate_choice->Hide ();
776                 _frame_rate_spin->Show ();
777         } else {
778                 _frame_rate_choice->Show ();
779                 _frame_rate_spin->Hide ();
780         }
781         _frame_rate_sizer->Layout();
782 }
783
784
785 wxPanel *
786 DCPPanel::make_video_panel ()
787 {
788         auto panel = new wxPanel (_notebook);
789         auto sizer = new wxBoxSizer (wxVERTICAL);
790         _video_grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
791         sizer->Add (_video_grid, 0, wxALL, 8);
792         panel->SetSizer (sizer);
793
794         _container_label = create_label (panel, _("Container"), true);
795         _container = new Choice(panel);
796         _container_size = new StaticText (panel, wxT (""));
797
798         _resolution_label = create_label (panel, _("Resolution"), true);
799         _resolution = new Choice(panel);
800
801         _frame_rate_label = create_label (panel, _("Frame Rate"), true);
802         _frame_rate_choice = new Choice(panel);
803         _frame_rate_spin = new SpinCtrl (panel, DCPOMATIC_SPIN_CTRL_WIDTH);
804         _best_frame_rate = new Button (panel, _("Use best"));
805
806         _three_d = new CheckBox (panel, _("3D"));
807
808         _video_bit_rate_label = create_label(panel, _("Video bit rate\nfor newly-encoded data"), true);
809         _video_bit_rate = new SpinCtrl(panel, DCPOMATIC_SPIN_CTRL_WIDTH);
810         _mbits_label = create_label (panel, _("Mbit/s"), false);
811
812         _reencode_j2k = new CheckBox (panel, _("Re-encode JPEG2000 data from input"));
813
814         _container->Bind         (wxEVT_CHOICE,   boost::bind(&DCPPanel::container_changed, this));
815         _frame_rate_choice->Bind (wxEVT_CHOICE,   boost::bind(&DCPPanel::frame_rate_choice_changed, this));
816         _frame_rate_spin->Bind   (wxEVT_SPINCTRL, boost::bind(&DCPPanel::frame_rate_spin_changed, this));
817         _best_frame_rate->Bind   (wxEVT_BUTTON,   boost::bind(&DCPPanel::best_frame_rate_clicked, this));
818         _video_bit_rate->Bind    (wxEVT_SPINCTRL, boost::bind(&DCPPanel::video_bit_rate_changed, this));
819         /* Also listen to wxEVT_TEXT so that typing numbers directly in is always noticed */
820         _video_bit_rate->Bind    (wxEVT_TEXT,     boost::bind(&DCPPanel::video_bit_rate_changed, this));
821         _resolution->Bind        (wxEVT_CHOICE,   boost::bind(&DCPPanel::resolution_changed, this));
822         _three_d->bind(&DCPPanel::three_d_changed, this);
823         _reencode_j2k->bind(&DCPPanel::reencode_j2k_changed, this);
824
825         for (auto i: Ratio::containers()) {
826                 _container->add(i->container_nickname());
827         }
828
829         for (auto i: Config::instance()->allowed_dcp_frame_rates()) {
830                 _frame_rate_choice->add(boost::lexical_cast<string>(i));
831         }
832
833         _video_bit_rate->SetRange(1, Config::instance()->maximum_video_bit_rate() / 1000000);
834         _frame_rate_spin->SetRange (1, 480);
835
836         _resolution->add(_("2K"));
837         _resolution->add(_("4K"));
838
839         add_video_panel_to_grid ();
840         setup_frame_rate_widget();
841
842         return panel;
843 }
844
845
846 void
847 DCPPanel::add_video_panel_to_grid ()
848 {
849         int r = 0;
850
851         add_label_to_sizer (_video_grid, _container_label, true, wxGBPosition (r, 0));
852         {
853                 auto s = new wxBoxSizer (wxHORIZONTAL);
854                 s->Add (_container, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
855                 s->Add (_container_size, 1, wxLEFT | wxALIGN_CENTER_VERTICAL);
856                 _video_grid->Add (s, wxGBPosition(r, 1));
857                 ++r;
858         }
859
860         add_label_to_sizer (_video_grid, _resolution_label, true, wxGBPosition (r, 0));
861         _video_grid->Add (_resolution, wxGBPosition (r, 1));
862         ++r;
863
864         add_label_to_sizer (_video_grid, _frame_rate_label, true, wxGBPosition (r, 0));
865         {
866                 _frame_rate_sizer = new wxBoxSizer (wxHORIZONTAL);
867                 _frame_rate_sizer->Add (_frame_rate_choice, 1, wxALIGN_CENTER_VERTICAL);
868                 _frame_rate_sizer->Add (_frame_rate_spin, 1, wxALIGN_CENTER_VERTICAL);
869                 _frame_rate_sizer->Add (_best_frame_rate, 1, wxLEFT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
870                 _video_grid->Add (_frame_rate_sizer, wxGBPosition (r, 1));
871                 ++r;
872         }
873
874         _video_grid->Add (_three_d, wxGBPosition (r, 0), wxGBSpan (1, 2));
875         ++r;
876
877         add_label_to_sizer(_video_grid, _video_bit_rate_label, true, wxGBPosition (r, 0));
878         auto s = new wxBoxSizer (wxHORIZONTAL);
879         s->Add(_video_bit_rate, 0, wxALIGN_CENTER_VERTICAL);
880         add_label_to_sizer (s, _mbits_label, false, 0, wxLEFT | wxALIGN_CENTER_VERTICAL);
881         _video_grid->Add (s, wxGBPosition(r, 1), wxDefaultSpan);
882         ++r;
883         _video_grid->Add (_reencode_j2k, wxGBPosition(r, 0), wxGBSpan(1, 2));
884 }
885
886
887 int
888 DCPPanel::minimum_allowed_audio_channels () const
889 {
890         int min = 2;
891         if (_film) {
892                 if (_film->audio_processor()) {
893                         min = _film->audio_processor()->out_channels();
894                 }
895                 if (_film->contains_atmos_content()) {
896                         min = std::max(min, 14);
897                 }
898         }
899
900         if (min % 2 == 1) {
901                 ++min;
902         }
903
904         return min;
905 }
906
907
908 wxPanel *
909 DCPPanel::make_audio_panel ()
910 {
911         auto panel = new wxPanel (_notebook);
912         _audio_panel_sizer = new wxBoxSizer (wxVERTICAL);
913         _audio_grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
914         _audio_panel_sizer->Add (_audio_grid, 0, wxALL, 8);
915         panel->SetSizer (_audio_panel_sizer);
916
917         _channels_label = create_label (panel, _("Channels"), true);
918         _audio_channels = new Choice(panel);
919         setup_audio_channels_choice (_audio_channels, minimum_allowed_audio_channels ());
920
921         if (Config::instance()->allow_96khz_audio()) {
922                 _audio_sample_rate_label = create_label (panel, _("Sample rate"), true);
923                 _audio_sample_rate = new wxChoice (panel, wxID_ANY);
924         }
925
926         _processor_label = create_label (panel, _("Processor"), true);
927         _audio_processor = new Choice(panel);
928         add_audio_processors ();
929
930         _enable_audio_language = new CheckBox(panel, _("Language"));
931         _audio_language = new wxStaticText(panel, wxID_ANY, wxT(""));
932         _edit_audio_language = new Button(panel, _("Edit..."));
933
934         _show_audio = new Button (panel, _("Show graph of audio levels..."));
935
936         _audio_channels->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_channels_changed, this));
937         if (_audio_sample_rate) {
938                 _audio_sample_rate->Bind (wxEVT_CHOICE, boost::bind(&DCPPanel::audio_sample_rate_changed, this));
939         }
940         _audio_processor->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_processor_changed, this));
941
942         _enable_audio_language->bind(&DCPPanel::enable_audio_language_toggled, this);
943         _edit_audio_language->Bind(wxEVT_BUTTON, boost::bind(&DCPPanel::edit_audio_language_clicked, this));
944
945         _show_audio->Bind (wxEVT_BUTTON, boost::bind (&DCPPanel::show_audio_clicked, this));
946
947         if (_audio_sample_rate) {
948                 _audio_sample_rate->Append (_("48kHz"));
949                 _audio_sample_rate->Append (_("96kHz"));
950         }
951
952         add_audio_panel_to_grid ();
953
954         return panel;
955 }
956
957
958 void
959 DCPPanel::add_audio_panel_to_grid ()
960 {
961         int r = 0;
962
963         add_label_to_sizer (_audio_grid, _channels_label, true, wxGBPosition (r, 0));
964         _audio_grid->Add (_audio_channels, wxGBPosition (r, 1));
965         ++r;
966
967         if (_audio_sample_rate_label && _audio_sample_rate) {
968                 add_label_to_sizer (_audio_grid, _audio_sample_rate_label, true, wxGBPosition(r, 0));
969                 _audio_grid->Add (_audio_sample_rate, wxGBPosition(r, 1));
970                 ++r;
971         }
972
973         add_label_to_sizer (_audio_grid, _processor_label, true, wxGBPosition (r, 0));
974         _audio_grid->Add (_audio_processor, wxGBPosition (r, 1));
975         ++r;
976
977         {
978                 auto s = new wxBoxSizer (wxHORIZONTAL);
979                 s->Add(_enable_audio_language, 0, wxALIGN_CENTER_VERTICAL | wxRIGHT, DCPOMATIC_SIZER_GAP);
980                 s->Add(_audio_language, 1, wxALIGN_CENTER_VERTICAL | wxBOTTOM, DCPOMATIC_CHECKBOX_BOTTOM_PAD);
981                 s->Add(DCPOMATIC_SIZER_X_GAP, 0);
982                 s->Add(_edit_audio_language, 0, wxALIGN_CENTER_VERTICAL | wxBOTTOM, DCPOMATIC_CHECKBOX_BOTTOM_PAD);
983                 _audio_grid->Add(s, wxGBPosition(r, 0), wxGBSpan(1, 2), wxEXPAND | wxALIGN_CENTER_VERTICAL);
984         }
985         ++r;
986
987         _audio_grid->Add (_show_audio, wxGBPosition (r, 0), wxGBSpan (1, 2));
988         ++r;
989 }
990
991
992 void
993 DCPPanel::copy_isdcf_name_button_clicked ()
994 {
995         _film->set_name (_film->isdcf_name (true));
996         _film->set_use_isdcf_name (false);
997 }
998
999
1000 void
1001 DCPPanel::audio_processor_changed ()
1002 {
1003         if (!_film || !_audio_processor->get()) {
1004                 return;
1005         }
1006
1007         auto const s = string_client_data(_audio_processor->GetClientObject(*_audio_processor->get()));
1008         _film->set_audio_processor (AudioProcessor::from_id (s));
1009 }
1010
1011
1012 void
1013 DCPPanel::show_audio_clicked ()
1014 {
1015         if (!_film) {
1016                 return;
1017         }
1018
1019         _audio_dialog.reset(_panel, _film, _viewer);
1020         _audio_dialog->Show();
1021 }
1022
1023
1024 void
1025 DCPPanel::add_audio_processors ()
1026 {
1027         _audio_processor->add(_("None"), new wxStringClientData(N_("none")));
1028         for (auto ap: AudioProcessor::visible()) {
1029                 _audio_processor->add(std_to_wx(ap->name()), new wxStringClientData(std_to_wx(ap->id())));
1030         }
1031         _audio_panel_sizer->Layout();
1032 }
1033
1034
1035 void
1036 DCPPanel::enable_audio_language_toggled ()
1037 {
1038         setup_sensitivity ();
1039         if (_enable_audio_language->GetValue()) {
1040                 auto al = wx_to_std (_audio_language->GetLabel());
1041                 _film->set_audio_language (al.empty() ? dcp::LanguageTag("en-US") : dcp::LanguageTag(al));
1042         } else {
1043                 _film->set_audio_language (boost::none);
1044         }
1045 }
1046
1047
1048 void
1049 DCPPanel::edit_audio_language_clicked ()
1050 {
1051        DCPOMATIC_ASSERT (_film->audio_language());
1052        auto d = make_wx<LanguageTagDialog>(_panel, *_film->audio_language());
1053        if (d->ShowModal() == wxID_OK) {
1054                _film->set_audio_language(d->get());
1055        }
1056 }
1057
1058
1059 void
1060 DCPPanel::audio_sample_rate_changed ()
1061 {
1062         if (_audio_sample_rate) {
1063                 _film->set_audio_frame_rate (_audio_sample_rate->GetSelection() == 0 ? 48000 : 96000);
1064         }
1065 }
1066