Extend maximum crop to 4096 (#1401).
[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, wxT(""));
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, 4096);
178         _top_crop->wrapped()->SetRange (0, 4096);
179         _right_crop->wrapped()->SetRange (0, 4096);
180         _bottom_crop->wrapped()->SetRange (0, 4096);
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         case Film::RESOLUTION:
301                 setup_description ();
302                 setup_sensitivity ();
303                 break;
304         case Film::REEL_TYPE:
305         case Film::INTEROP:
306                 setup_sensitivity ();
307                 break;
308         default:
309                 break;
310         }
311 }
312
313 void
314 VideoPanel::film_content_changed (int property)
315 {
316         ContentList vc = _parent->selected_video ();
317         shared_ptr<Content> vcs;
318         shared_ptr<FFmpegContent> fcs;
319         if (!vc.empty ()) {
320                 vcs = vc.front ();
321                 fcs = dynamic_pointer_cast<FFmpegContent> (vcs);
322         }
323
324         if (property == ContentProperty::VIDEO_FRAME_RATE ||
325             property == VideoContentProperty::FRAME_TYPE ||
326             property == VideoContentProperty::CROP ||
327             property == VideoContentProperty::SCALE) {
328                 setup_description ();
329         } else if (property == VideoContentProperty::COLOUR_CONVERSION) {
330                 if (vcs && vcs->video->colour_conversion ()) {
331                         optional<size_t> preset = vcs->video->colour_conversion().get().preset ();
332                         vector<PresetColourConversion> cc = PresetColourConversion::all ();
333                         if (preset) {
334                                 checked_set (_colour_conversion, preset.get() + 1);
335                         } else {
336                                 checked_set (_colour_conversion, cc.size() + 1);
337                         }
338                 } else {
339                         checked_set (_colour_conversion, 0);
340                 }
341
342                 setup_sensitivity ();
343
344         } else if (property == FFmpegContentProperty::FILTERS) {
345                 if (fcs) {
346                         string p = Filter::ffmpeg_string (fcs->filters ());
347                         if (p.empty ()) {
348                                 checked_set (_filters, _("None"));
349                         } else {
350                                 if (p.length() > 25) {
351                                         p = p.substr (0, 25) + "...";
352                                 }
353                                 checked_set (_filters, p);
354                         }
355                 }
356         } else if (property == VideoContentProperty::FADE_IN) {
357                 set<Frame> check;
358                 BOOST_FOREACH (shared_ptr<const Content> i, vc) {
359                         check.insert (i->video->fade_in ());
360                 }
361
362                 if (check.size() == 1) {
363                         _fade_in->set (
364                                 ContentTime::from_frames (vc.front()->video->fade_in (), vc.front()->active_video_frame_rate ()),
365                                 vc.front()->active_video_frame_rate ()
366                                 );
367                 } else {
368                         _fade_in->clear ();
369                 }
370         } else if (property == VideoContentProperty::FADE_OUT) {
371                 set<Frame> check;
372                 BOOST_FOREACH (shared_ptr<const Content> i, vc) {
373                         check.insert (i->video->fade_out ());
374                 }
375
376                 if (check.size() == 1) {
377                         _fade_out->set (
378                                 ContentTime::from_frames (vc.front()->video->fade_out (), vc.front()->active_video_frame_rate ()),
379                                 vc.front()->active_video_frame_rate ()
380                                 );
381                 } else {
382                         _fade_out->clear ();
383                 }
384         } else if (property == DCPContentProperty::REFERENCE_VIDEO) {
385                 if (vc.size() == 1) {
386                         shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (vc.front ());
387                         checked_set (_reference, dcp ? dcp->reference_video () : false);
388                 } else {
389                         checked_set (_reference, false);
390                 }
391
392                 setup_sensitivity ();
393         }
394 }
395
396 /** Called when the `Edit filters' button has been clicked */
397 void
398 VideoPanel::edit_filters_clicked ()
399 {
400         FFmpegContentList c = _parent->selected_ffmpeg ();
401         if (c.size() != 1) {
402                 return;
403         }
404
405         FilterDialog* d = new FilterDialog (this, c.front()->filters());
406         d->ActiveChanged.connect (bind (&FFmpegContent::set_filters, c.front(), _1));
407         d->ShowModal ();
408         d->Destroy ();
409 }
410
411 void
412 VideoPanel::setup_description ()
413 {
414         ContentList vc = _parent->selected_video ();
415         if (vc.empty ()) {
416                 checked_set (_description, wxT (""));
417                 return;
418         } else if (vc.size() > 1) {
419                 checked_set (_description, _("Multiple content selected"));
420                 return;
421         }
422
423         string d = vc.front()->video->processing_description ();
424         size_t lines = count (d.begin(), d.end(), '\n');
425
426         for (int i = lines; i < 6; ++i) {
427                 d += "\n ";
428         }
429
430         checked_set (_description, d);
431         _sizer->Layout ();
432 }
433
434 void
435 VideoPanel::colour_conversion_changed ()
436 {
437         ContentList vc = _parent->selected_video ();
438         if (vc.size() != 1) {
439                 return;
440         }
441
442         int const s = _colour_conversion->GetSelection ();
443         vector<PresetColourConversion> all = PresetColourConversion::all ();
444
445         if (s == 0) {
446                 vc.front()->video->unset_colour_conversion ();
447         } else if (s == int (all.size() + 1)) {
448                 edit_colour_conversion_clicked ();
449         } else {
450                 vc.front()->video->set_colour_conversion (all[s - 1].conversion);
451         }
452 }
453
454 void
455 VideoPanel::edit_colour_conversion_clicked ()
456 {
457         ContentList vc = _parent->selected_video ();
458         if (vc.size() != 1) {
459                 return;
460         }
461
462         ContentColourConversionDialog* d = new ContentColourConversionDialog (this, vc.front()->video->yuv ());
463         d->set (vc.front()->video->colour_conversion().get_value_or (PresetColourConversion::all().front().conversion));
464         if (d->ShowModal() == wxID_OK) {
465                 vc.front()->video->set_colour_conversion (d->get ());
466         } else {
467                 /* Reset the colour conversion choice */
468                 film_content_changed (VideoContentProperty::COLOUR_CONVERSION);
469         }
470         d->Destroy ();
471 }
472
473 void
474 VideoPanel::content_selection_changed ()
475 {
476         ContentList video_sel = _parent->selected_video ();
477
478         _frame_type->set_content (video_sel);
479         _left_crop->set_content (video_sel);
480         _right_crop->set_content (video_sel);
481         _top_crop->set_content (video_sel);
482         _bottom_crop->set_content (video_sel);
483         _scale->set_content (video_sel);
484
485         film_content_changed (ContentProperty::VIDEO_FRAME_RATE);
486         film_content_changed (VideoContentProperty::CROP);
487         film_content_changed (VideoContentProperty::COLOUR_CONVERSION);
488         film_content_changed (VideoContentProperty::FADE_IN);
489         film_content_changed (VideoContentProperty::FADE_OUT);
490         film_content_changed (FFmpegContentProperty::FILTERS);
491         film_content_changed (DCPContentProperty::REFERENCE_VIDEO);
492
493         setup_sensitivity ();
494 }
495
496 void
497 VideoPanel::setup_sensitivity ()
498 {
499         ContentList sel = _parent->selected ();
500
501         shared_ptr<DCPContent> dcp;
502         if (sel.size() == 1) {
503                 dcp = dynamic_pointer_cast<DCPContent> (sel.front ());
504         }
505
506         string why_not;
507         bool const can_reference = dcp && dcp->can_reference_video (why_not);
508         setup_refer_button (_reference, _reference_note, dcp, can_reference, why_not);
509
510         if (_reference->GetValue ()) {
511                 _frame_type->wrapped()->Enable (false);
512                 _left_crop->wrapped()->Enable (false);
513                 _right_crop->wrapped()->Enable (false);
514                 _top_crop->wrapped()->Enable (false);
515                 _bottom_crop->wrapped()->Enable (false);
516                 _fade_in->Enable (false);
517                 _fade_out->Enable (false);
518                 _scale->wrapped()->Enable (false);
519                 _description->Enable (false);
520                 _filters->Enable (false);
521                 _filters_button->Enable (false);
522                 _colour_conversion->Enable (false);
523         } else {
524                 ContentList video_sel = _parent->selected_video ();
525                 FFmpegContentList ffmpeg_sel = _parent->selected_ffmpeg ();
526                 bool const single = video_sel.size() == 1;
527
528                 _frame_type->wrapped()->Enable (true);
529                 _left_crop->wrapped()->Enable (true);
530                 _right_crop->wrapped()->Enable (true);
531                 _top_crop->wrapped()->Enable (true);
532                 _bottom_crop->wrapped()->Enable (true);
533                 _fade_in->Enable (!video_sel.empty ());
534                 _fade_out->Enable (!video_sel.empty ());
535                 _scale->wrapped()->Enable (true);
536                 _description->Enable (true);
537                 _filters->Enable (true);
538                 _filters_button->Enable (single && !ffmpeg_sel.empty ());
539                 _colour_conversion->Enable (single && !video_sel.empty ());
540         }
541
542         ContentList vc = _parent->selected_video ();
543         shared_ptr<Content> vcs;
544         if (!vc.empty ()) {
545                 vcs = vc.front ();
546         }
547
548         if (vcs && vcs->video->colour_conversion ()) {
549                 _edit_colour_conversion_button->Enable (!vcs->video->colour_conversion().get().preset());
550         } else {
551                 _edit_colour_conversion_button->Enable (false);
552         }
553 }
554
555 void
556 VideoPanel::fade_in_changed ()
557 {
558         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_video ()) {
559                 int const vfr = _parent->film()->video_frame_rate ();
560                 i->video->set_fade_in (_fade_in->get (vfr).frames_round (vfr));
561         }
562 }
563
564 void
565 VideoPanel::fade_out_changed ()
566 {
567         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_video ()) {
568                 int const vfr = _parent->film()->video_frame_rate ();
569                 i->video->set_fade_out (_fade_out->get (vfr).frames_round (vfr));
570         }
571 }
572
573 void
574 VideoPanel::reference_clicked ()
575 {
576         ContentList c = _parent->selected ();
577         if (c.size() != 1) {
578                 return;
579         }
580
581         shared_ptr<DCPContent> d = dynamic_pointer_cast<DCPContent> (c.front ());
582         if (!d) {
583                 return;
584         }
585
586         d->set_reference_video (_reference->GetValue ());
587 }