Remove unused variable.
[dcpomatic.git] / src / wx / video_panel.cc
1 /*
2     Copyright (C) 2012-2016 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 "filter_dialog.h"
22 #include "video_panel.h"
23 #include "wx_util.h"
24 #include "content_colour_conversion_dialog.h"
25 #include "content_widget.h"
26 #include "content_panel.h"
27 #include "lib/filter.h"
28 #include "lib/ffmpeg_content.h"
29 #include "lib/colour_conversion.h"
30 #include "lib/config.h"
31 #include "lib/util.h"
32 #include "lib/ratio.h"
33 #include "lib/frame_rate_change.h"
34 #include "lib/dcp_content.h"
35 #include "lib/video_content.h"
36 #include <wx/spinctrl.h>
37 #include <boost/foreach.hpp>
38 #include <set>
39 #include <iostream>
40
41 using std::vector;
42 using std::string;
43 using std::pair;
44 using std::cout;
45 using std::list;
46 using std::set;
47 using boost::shared_ptr;
48 using boost::dynamic_pointer_cast;
49 using boost::bind;
50 using boost::optional;
51
52 static VideoContentScale
53 index_to_scale (int n)
54 {
55         vector<VideoContentScale> scales = VideoContentScale::all ();
56         DCPOMATIC_ASSERT (n >= 0);
57         DCPOMATIC_ASSERT (n < int (scales.size ()));
58         return scales[n];
59 }
60
61 static int
62 scale_to_index (VideoContentScale scale)
63 {
64         vector<VideoContentScale> scales = VideoContentScale::all ();
65         for (size_t i = 0; i < scales.size(); ++i) {
66                 if (scales[i] == scale) {
67                         return i;
68                 }
69         }
70
71         DCPOMATIC_ASSERT (false);
72 }
73
74 VideoPanel::VideoPanel (ContentPanel* p)
75         : ContentSubPanel (p, _("Video"))
76 {
77         _reference = new wxCheckBox (this, wxID_ANY, _("Use this DCP's video as OV and make VF"));
78         _reference_note = new wxStaticText (this, wxID_ANY, _(""));
79         _reference_note->Wrap (200);
80         wxFont font = _reference_note->GetFont();
81         font.SetStyle(wxFONTSTYLE_ITALIC);
82         font.SetPointSize(font.GetPointSize() - 1);
83         _reference_note->SetFont(font);
84
85         _type_label = create_label (this, _("Type"), true);
86         _frame_type = new ContentChoice<VideoContent, VideoFrameType> (
87                 this,
88                 new wxChoice (this, wxID_ANY),
89                 VideoContentProperty::FRAME_TYPE,
90                 &Content::video,
91                 boost::mem_fn (&VideoContent::frame_type),
92                 boost::mem_fn (&VideoContent::set_frame_type),
93                 &caster<int, VideoFrameType>,
94                 &caster<VideoFrameType, int>
95                 );
96
97         _left_crop_label = create_label (this, _("Left crop"), true);
98         _left_crop = new ContentSpinCtrl<VideoContent> (
99                 this,
100                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
101                 VideoContentProperty::CROP,
102                 &Content::video,
103                 boost::mem_fn (&VideoContent::left_crop),
104                 boost::mem_fn (&VideoContent::set_left_crop)
105                 );
106
107         _right_crop_label = create_label (this, _("Right crop"), true);
108         _right_crop = new ContentSpinCtrl<VideoContent> (
109                 this,
110                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
111                 VideoContentProperty::CROP,
112                 &Content::video,
113                 boost::mem_fn (&VideoContent::right_crop),
114                 boost::mem_fn (&VideoContent::set_right_crop)
115                 );
116
117         _top_crop_label = create_label (this, _("Top crop"), true);
118         _top_crop = new ContentSpinCtrl<VideoContent> (
119                 this,
120                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
121                 VideoContentProperty::CROP,
122                 &Content::video,
123                 boost::mem_fn (&VideoContent::top_crop),
124                 boost::mem_fn (&VideoContent::set_top_crop)
125                 );
126
127         _bottom_crop_label = create_label (this, _("Bottom crop"), true);
128         _bottom_crop = new ContentSpinCtrl<VideoContent> (
129                 this,
130                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
131                 VideoContentProperty::CROP,
132                 &Content::video,
133                 boost::mem_fn (&VideoContent::bottom_crop),
134                 boost::mem_fn (&VideoContent::set_bottom_crop)
135                 );
136
137         _fade_in_label = create_label (this, _("Fade in"), true);
138         _fade_in = new Timecode<ContentTime> (this);
139
140         _fade_out_label = create_label (this, _("Fade out"), true);
141         _fade_out = new Timecode<ContentTime> (this);
142
143         _scale_to_label = create_label (this, _("Scale to"), true);
144         _scale = new ContentChoice<VideoContent, VideoContentScale> (
145                 this,
146                 new wxChoice (this, wxID_ANY),
147                 VideoContentProperty::SCALE,
148                 &Content::video,
149                 boost::mem_fn (&VideoContent::scale),
150                 boost::mem_fn (&VideoContent::set_scale),
151                 &index_to_scale,
152                 &scale_to_index
153                 );
154
155         wxClientDC dc (this);
156         wxSize size = dc.GetTextExtent (wxT ("A quite long name"));
157         size.SetHeight (-1);
158
159         _filters_label = create_label (this, _("Filters"), true);
160         _filters = new wxStaticText (this, wxID_ANY, _("None"), wxDefaultPosition, size);
161         _filters_button = new wxButton (this, wxID_ANY, _("Edit..."));
162
163         _colour_conversion_label = create_label (this, _("Colour conversion"), true);
164         _colour_conversion = new wxChoice (this, wxID_ANY, wxDefaultPosition, size);
165         _colour_conversion->Append (_("None"));
166         BOOST_FOREACH (PresetColourConversion const & i, PresetColourConversion::all()) {
167                 _colour_conversion->Append (std_to_wx (i.name));
168         }
169
170         /// TRANSLATORS: translate the word "Custom" here; do not include the "Colour|" prefix
171         _colour_conversion->Append (S_("Colour|Custom"));
172         _edit_colour_conversion_button = new wxButton (this, wxID_ANY, _("Edit..."));
173
174         _description = new wxStaticText (this, wxID_ANY, wxT ("\n \n \n \n \n"), wxDefaultPosition, wxDefaultSize);
175         _description->SetFont(font);
176
177         _left_crop->wrapped()->SetRange (0, 1024);
178         _top_crop->wrapped()->SetRange (0, 1024);
179         _right_crop->wrapped()->SetRange (0, 1024);
180         _bottom_crop->wrapped()->SetRange (0, 1024);
181
182         _scale->wrapped()->Clear ();
183         BOOST_FOREACH (VideoContentScale const & i, VideoContentScale::all ()) {
184                 _scale->wrapped()->Append (std_to_wx (i.name ()));
185         }
186
187         _frame_type->wrapped()->Append (_("2D"));
188         _frame_type->wrapped()->Append (_("3D"));
189         _frame_type->wrapped()->Append (_("3D left/right"));
190         _frame_type->wrapped()->Append (_("3D top/bottom"));
191         _frame_type->wrapped()->Append (_("3D alternate"));
192         _frame_type->wrapped()->Append (_("3D left only"));
193         _frame_type->wrapped()->Append (_("3D right only"));
194
195         content_selection_changed ();
196
197         _fade_in->Changed.connect (boost::bind (&VideoPanel::fade_in_changed, this));
198         _fade_out->Changed.connect (boost::bind (&VideoPanel::fade_out_changed, this));
199
200         _reference->Bind                     (wxEVT_CHECKBOX, boost::bind (&VideoPanel::reference_clicked, this));
201         _filters_button->Bind                (wxEVT_BUTTON,   boost::bind (&VideoPanel::edit_filters_clicked, this));
202         _colour_conversion->Bind             (wxEVT_CHOICE,   boost::bind (&VideoPanel::colour_conversion_changed, this));
203         _edit_colour_conversion_button->Bind (wxEVT_BUTTON,   boost::bind (&VideoPanel::edit_colour_conversion_clicked, this));
204
205         add_to_grid ();
206 }
207
208 void
209 VideoPanel::add_to_grid ()
210 {
211         bool const full = Config::instance()->interface_complexity() == Config::INTERFACE_FULL;
212
213         int r = 0;
214
215         _reference->Show (full);
216         _reference_note->Show (full);
217
218         if (full) {
219                 wxBoxSizer* reference_sizer = new wxBoxSizer (wxVERTICAL);
220                 reference_sizer->Add (_reference, 0);
221                 reference_sizer->Add (_reference_note, 0);
222                 _grid->Add (reference_sizer, wxGBPosition(r, 0), wxGBSpan(1, 3));
223                 ++r;
224         }
225
226         add_label_to_sizer (_grid, _type_label, true, wxGBPosition(r, 0));
227         _frame_type->add (_grid, wxGBPosition(r, 1), wxGBSpan(1, 2));
228         ++r;
229
230         int cr = 0;
231         wxGridBagSizer* crop = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
232         add_label_to_sizer (crop, _left_crop_label, true, wxGBPosition (cr, 0));
233         _left_crop->add (crop, wxGBPosition (cr, 1));
234         add_label_to_sizer (crop, _right_crop_label, true, wxGBPosition (cr, 2));
235         _right_crop->add (crop, wxGBPosition (cr, 3));
236         ++cr;
237         add_label_to_sizer (crop, _top_crop_label, true, wxGBPosition (cr, 0));
238         _top_crop->add (crop, wxGBPosition (cr, 1));
239         add_label_to_sizer (crop, _bottom_crop_label, true, wxGBPosition (cr, 2));
240         _bottom_crop->add (crop, wxGBPosition (cr, 3));
241         _grid->Add (crop, wxGBPosition (r, 0), wxGBSpan (2, 4));
242         r += 2;
243
244         _fade_in_label->Show (full);
245         _fade_in->Show (full);
246         _fade_out_label->Show (full);
247         _fade_out->Show (full);
248         _scale_to_label->Show (full);
249         _scale->show (full);
250         _filters_label->Show (full);
251         _filters->Show (full);
252         _filters_button->Show (full);
253         _colour_conversion_label->Show (full);
254         _colour_conversion->Show (full);
255         _edit_colour_conversion_button->Show (full);
256
257         if (full) {
258                 add_label_to_sizer (_grid, _fade_in_label, true, wxGBPosition (r, 0));
259                 _grid->Add (_fade_in, wxGBPosition (r, 1), wxGBSpan (1, 3));
260                 ++r;
261
262                 add_label_to_sizer (_grid, _fade_out_label, true, wxGBPosition (r, 0));
263                 _grid->Add (_fade_out, wxGBPosition (r, 1), wxGBSpan (1, 3));
264                 ++r;
265
266                 add_label_to_sizer (_grid, _scale_to_label, true, wxGBPosition (r, 0));
267                 _scale->add (_grid, wxGBPosition (r, 1), wxGBSpan (1, 2));
268                 ++r;
269
270                 add_label_to_sizer (_grid, _filters_label, true, wxGBPosition (r, 0));
271                 {
272                         wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
273                         s->Add (_filters, 1, wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
274                         s->Add (_filters_button, 0, wxALIGN_CENTER_VERTICAL);
275                         _grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
276                 }
277                 ++r;
278
279                 add_label_to_sizer (_grid, _colour_conversion_label, true, wxGBPosition(r, 0));
280                 {
281                         wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
282                         s->Add (_colour_conversion, 1, wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
283                         s->Add (_edit_colour_conversion_button, 0, wxALIGN_CENTER_VERTICAL);
284                         _grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
285                 }
286                 ++r;
287         }
288
289         _grid->Add (_description, wxGBPosition (r, 0), wxGBSpan (1, 4), wxEXPAND | wxALIGN_CENTER_VERTICAL, 6);
290         ++r;
291 }
292
293
294 void
295 VideoPanel::film_changed (Film::Property property)
296 {
297         switch (property) {
298         case Film::VIDEO_FRAME_RATE:
299         case Film::CONTAINER:
300                 setup_description ();
301                 setup_sensitivity ();
302                 break;
303         case Film::RESOLUTION:
304                 setup_description ();
305                 break;
306         case Film::REEL_TYPE:
307         case Film::INTEROP:
308                 setup_sensitivity ();
309                 break;
310         default:
311                 break;
312         }
313 }
314
315 void
316 VideoPanel::film_content_changed (int property)
317 {
318         ContentList vc = _parent->selected_video ();
319         shared_ptr<Content> vcs;
320         shared_ptr<FFmpegContent> fcs;
321         if (!vc.empty ()) {
322                 vcs = vc.front ();
323                 fcs = dynamic_pointer_cast<FFmpegContent> (vcs);
324         }
325
326         if (property == ContentProperty::VIDEO_FRAME_RATE ||
327             property == VideoContentProperty::FRAME_TYPE ||
328             property == VideoContentProperty::CROP ||
329             property == VideoContentProperty::SCALE) {
330                 setup_description ();
331         } else if (property == VideoContentProperty::COLOUR_CONVERSION) {
332                 if (vcs && vcs->video->colour_conversion ()) {
333                         optional<size_t> preset = vcs->video->colour_conversion().get().preset ();
334                         vector<PresetColourConversion> cc = PresetColourConversion::all ();
335                         if (preset) {
336                                 checked_set (_colour_conversion, preset.get() + 1);
337                         } else {
338                                 checked_set (_colour_conversion, cc.size() + 1);
339                         }
340                 } else {
341                         checked_set (_colour_conversion, 0);
342                 }
343
344                 setup_sensitivity ();
345
346         } else if (property == FFmpegContentProperty::FILTERS) {
347                 if (fcs) {
348                         string p = Filter::ffmpeg_string (fcs->filters ());
349                         if (p.empty ()) {
350                                 checked_set (_filters, _("None"));
351                         } else {
352                                 if (p.length() > 25) {
353                                         p = p.substr (0, 25) + "...";
354                                 }
355                                 checked_set (_filters, p);
356                         }
357                 }
358         } else if (property == VideoContentProperty::FADE_IN) {
359                 set<Frame> check;
360                 BOOST_FOREACH (shared_ptr<const Content> i, vc) {
361                         check.insert (i->video->fade_in ());
362                 }
363
364                 if (check.size() == 1) {
365                         _fade_in->set (
366                                 ContentTime::from_frames (vc.front()->video->fade_in (), vc.front()->active_video_frame_rate ()),
367                                 vc.front()->active_video_frame_rate ()
368                                 );
369                 } else {
370                         _fade_in->clear ();
371                 }
372         } else if (property == VideoContentProperty::FADE_OUT) {
373                 set<Frame> check;
374                 BOOST_FOREACH (shared_ptr<const Content> i, vc) {
375                         check.insert (i->video->fade_out ());
376                 }
377
378                 if (check.size() == 1) {
379                         _fade_out->set (
380                                 ContentTime::from_frames (vc.front()->video->fade_out (), vc.front()->active_video_frame_rate ()),
381                                 vc.front()->active_video_frame_rate ()
382                                 );
383                 } else {
384                         _fade_out->clear ();
385                 }
386         } else if (property == DCPContentProperty::REFERENCE_VIDEO) {
387                 if (vc.size() == 1) {
388                         shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (vc.front ());
389                         checked_set (_reference, dcp ? dcp->reference_video () : false);
390                 } else {
391                         checked_set (_reference, false);
392                 }
393
394                 setup_sensitivity ();
395         }
396 }
397
398 /** Called when the `Edit filters' button has been clicked */
399 void
400 VideoPanel::edit_filters_clicked ()
401 {
402         FFmpegContentList c = _parent->selected_ffmpeg ();
403         if (c.size() != 1) {
404                 return;
405         }
406
407         FilterDialog* d = new FilterDialog (this, c.front()->filters());
408         d->ActiveChanged.connect (bind (&FFmpegContent::set_filters, c.front(), _1));
409         d->ShowModal ();
410         d->Destroy ();
411 }
412
413 void
414 VideoPanel::setup_description ()
415 {
416         ContentList vc = _parent->selected_video ();
417         if (vc.empty ()) {
418                 checked_set (_description, wxT (""));
419                 return;
420         } else if (vc.size() > 1) {
421                 checked_set (_description, _("Multiple content selected"));
422                 return;
423         }
424
425         string d = vc.front()->video->processing_description ();
426         size_t lines = count (d.begin(), d.end(), '\n');
427
428         for (int i = lines; i < 6; ++i) {
429                 d += "\n ";
430         }
431
432         checked_set (_description, d);
433         _sizer->Layout ();
434 }
435
436 void
437 VideoPanel::colour_conversion_changed ()
438 {
439         ContentList vc = _parent->selected_video ();
440         if (vc.size() != 1) {
441                 return;
442         }
443
444         int const s = _colour_conversion->GetSelection ();
445         vector<PresetColourConversion> all = PresetColourConversion::all ();
446
447         if (s == 0) {
448                 vc.front()->video->unset_colour_conversion ();
449         } else if (s == int (all.size() + 1)) {
450                 edit_colour_conversion_clicked ();
451         } else {
452                 vc.front()->video->set_colour_conversion (all[s - 1].conversion);
453         }
454 }
455
456 void
457 VideoPanel::edit_colour_conversion_clicked ()
458 {
459         ContentList vc = _parent->selected_video ();
460         if (vc.size() != 1) {
461                 return;
462         }
463
464         ContentColourConversionDialog* d = new ContentColourConversionDialog (this, vc.front()->video->yuv ());
465         d->set (vc.front()->video->colour_conversion().get_value_or (PresetColourConversion::all().front().conversion));
466         if (d->ShowModal() == wxID_OK) {
467                 vc.front()->video->set_colour_conversion (d->get ());
468         } else {
469                 /* Reset the colour conversion choice */
470                 film_content_changed (VideoContentProperty::COLOUR_CONVERSION);
471         }
472         d->Destroy ();
473 }
474
475 void
476 VideoPanel::content_selection_changed ()
477 {
478         ContentList video_sel = _parent->selected_video ();
479
480         _frame_type->set_content (video_sel);
481         _left_crop->set_content (video_sel);
482         _right_crop->set_content (video_sel);
483         _top_crop->set_content (video_sel);
484         _bottom_crop->set_content (video_sel);
485         _scale->set_content (video_sel);
486
487         film_content_changed (ContentProperty::VIDEO_FRAME_RATE);
488         film_content_changed (VideoContentProperty::CROP);
489         film_content_changed (VideoContentProperty::COLOUR_CONVERSION);
490         film_content_changed (VideoContentProperty::FADE_IN);
491         film_content_changed (VideoContentProperty::FADE_OUT);
492         film_content_changed (FFmpegContentProperty::FILTERS);
493         film_content_changed (DCPContentProperty::REFERENCE_VIDEO);
494
495         setup_sensitivity ();
496 }
497
498 void
499 VideoPanel::setup_sensitivity ()
500 {
501         ContentList sel = _parent->selected ();
502
503         shared_ptr<DCPContent> dcp;
504         if (sel.size() == 1) {
505                 dcp = dynamic_pointer_cast<DCPContent> (sel.front ());
506         }
507
508         string why_not;
509         bool const can_reference = dcp && dcp->can_reference_video (why_not);
510         setup_refer_button (_reference, _reference_note, dcp, can_reference, why_not);
511
512         if (_reference->GetValue ()) {
513                 _frame_type->wrapped()->Enable (false);
514                 _left_crop->wrapped()->Enable (false);
515                 _right_crop->wrapped()->Enable (false);
516                 _top_crop->wrapped()->Enable (false);
517                 _bottom_crop->wrapped()->Enable (false);
518                 _fade_in->Enable (false);
519                 _fade_out->Enable (false);
520                 _scale->wrapped()->Enable (false);
521                 _description->Enable (false);
522                 _filters->Enable (false);
523                 _filters_button->Enable (false);
524                 _colour_conversion->Enable (false);
525         } else {
526                 ContentList video_sel = _parent->selected_video ();
527                 FFmpegContentList ffmpeg_sel = _parent->selected_ffmpeg ();
528                 bool const single = video_sel.size() == 1;
529
530                 _frame_type->wrapped()->Enable (true);
531                 _left_crop->wrapped()->Enable (true);
532                 _right_crop->wrapped()->Enable (true);
533                 _top_crop->wrapped()->Enable (true);
534                 _bottom_crop->wrapped()->Enable (true);
535                 _fade_in->Enable (!video_sel.empty ());
536                 _fade_out->Enable (!video_sel.empty ());
537                 _scale->wrapped()->Enable (true);
538                 _description->Enable (true);
539                 _filters->Enable (true);
540                 _filters_button->Enable (single && !ffmpeg_sel.empty ());
541                 _colour_conversion->Enable (single && !video_sel.empty ());
542         }
543
544         ContentList vc = _parent->selected_video ();
545         shared_ptr<Content> vcs;
546         if (!vc.empty ()) {
547                 vcs = vc.front ();
548         }
549
550         if (vcs && vcs->video->colour_conversion ()) {
551                 _edit_colour_conversion_button->Enable (!vcs->video->colour_conversion().get().preset());
552         } else {
553                 _edit_colour_conversion_button->Enable (false);
554         }
555 }
556
557 void
558 VideoPanel::fade_in_changed ()
559 {
560         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_video ()) {
561                 int const vfr = _parent->film()->video_frame_rate ();
562                 i->video->set_fade_in (_fade_in->get (vfr).frames_round (vfr));
563         }
564 }
565
566 void
567 VideoPanel::fade_out_changed ()
568 {
569         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_video ()) {
570                 int const vfr = _parent->film()->video_frame_rate ();
571                 i->video->set_fade_out (_fade_out->get (vfr).frames_round (vfr));
572         }
573 }
574
575 void
576 VideoPanel::reference_clicked ()
577 {
578         ContentList c = _parent->selected ();
579         if (c.size() != 1) {
580                 return;
581         }
582
583         shared_ptr<DCPContent> d = dynamic_pointer_cast<DCPContent> (c.front ());
584         if (!d) {
585                 return;
586         }
587
588         d->set_reference_video (_reference->GetValue ());
589 }