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