Merge remote-tracking branch 'origin/master' into 2.0
[dcpomatic.git] / src / wx / video_panel.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <wx/spinctrl.h>
21 #include "lib/filter.h"
22 #include "lib/ffmpeg_content.h"
23 #include "lib/colour_conversion.h"
24 #include "lib/config.h"
25 #include "lib/util.h"
26 #include "lib/ratio.h"
27 #include "lib/frame_rate_change.h"
28 #include "filter_dialog.h"
29 #include "video_panel.h"
30 #include "wx_util.h"
31 #include "content_colour_conversion_dialog.h"
32 #include "content_widget.h"
33 #include "content_panel.h"
34
35 using std::vector;
36 using std::string;
37 using std::pair;
38 using std::cout;
39 using std::list;
40 using boost::shared_ptr;
41 using boost::dynamic_pointer_cast;
42 using boost::bind;
43 using boost::optional;
44
45 static VideoContentScale
46 index_to_scale (int n)
47 {
48         vector<VideoContentScale> scales = VideoContentScale::all ();
49         assert (n >= 0);
50         assert (n < int (scales.size ()));
51         return scales[n];
52 }
53
54 static int
55 scale_to_index (VideoContentScale scale)
56 {
57         vector<VideoContentScale> scales = VideoContentScale::all ();
58         for (size_t i = 0; i < scales.size(); ++i) {
59                 if (scales[i] == scale) {
60                         return i;
61                 }
62         }
63
64         assert (false);
65 }
66
67 VideoPanel::VideoPanel (ContentPanel* p)
68         : ContentSubPanel (p, _("Video"))
69 {
70         wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
71         _sizer->Add (grid, 0, wxALL, 8);
72
73         int r = 0;
74
75         add_label_to_grid_bag_sizer (grid, this, _("Type"), true, wxGBPosition (r, 0));
76         _frame_type = new ContentChoice<VideoContent, VideoFrameType> (
77                 this,
78                 new wxChoice (this, wxID_ANY),
79                 VideoContentProperty::VIDEO_FRAME_TYPE,
80                 boost::mem_fn (&VideoContent::video_frame_type),
81                 boost::mem_fn (&VideoContent::set_video_frame_type),
82                 &caster<int, VideoFrameType>,
83                 &caster<VideoFrameType, int>
84                 );
85         _frame_type->add (grid, wxGBPosition (r, 1));
86         ++r;
87         
88         add_label_to_grid_bag_sizer (grid, this, _("Left crop"), true, wxGBPosition (r, 0));
89         _left_crop = new ContentSpinCtrl<VideoContent> (
90                 this,
91                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
92                 VideoContentProperty::VIDEO_CROP,
93                 boost::mem_fn (&VideoContent::left_crop),
94                 boost::mem_fn (&VideoContent::set_left_crop)
95                 );
96         _left_crop->add (grid, wxGBPosition (r, 1));
97         ++r;
98
99         add_label_to_grid_bag_sizer (grid, this, _("Right crop"), true, wxGBPosition (r, 0));
100         _right_crop = new ContentSpinCtrl<VideoContent> (
101                 this,
102                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
103                 VideoContentProperty::VIDEO_CROP,
104                 boost::mem_fn (&VideoContent::right_crop),
105                 boost::mem_fn (&VideoContent::set_right_crop)
106                 );
107         _right_crop->add (grid, wxGBPosition (r, 1));
108         ++r;
109         
110         add_label_to_grid_bag_sizer (grid, this, _("Top crop"), true, wxGBPosition (r, 0));
111         _top_crop = new ContentSpinCtrl<VideoContent> (
112                 this,
113                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
114                 VideoContentProperty::VIDEO_CROP,
115                 boost::mem_fn (&VideoContent::top_crop),
116                 boost::mem_fn (&VideoContent::set_top_crop)
117                 );
118         _top_crop->add (grid, wxGBPosition (r,1 ));
119         ++r;
120         
121         add_label_to_grid_bag_sizer (grid, this, _("Bottom crop"), true, wxGBPosition (r, 0));
122         _bottom_crop = new ContentSpinCtrl<VideoContent> (
123                 this,
124                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
125                 VideoContentProperty::VIDEO_CROP,
126                 boost::mem_fn (&VideoContent::bottom_crop),
127                 boost::mem_fn (&VideoContent::set_bottom_crop)
128                 );
129         _bottom_crop->add (grid, wxGBPosition (r, 1));
130         ++r;
131
132         add_label_to_grid_bag_sizer (grid, this, _("Scale to"), true, wxGBPosition (r, 0));
133         _scale = new ContentChoice<VideoContent, VideoContentScale> (
134                 this,
135                 new wxChoice (this, wxID_ANY),
136                 VideoContentProperty::VIDEO_SCALE,
137                 boost::mem_fn (&VideoContent::scale),
138                 boost::mem_fn (&VideoContent::set_scale),
139                 &index_to_scale,
140                 &scale_to_index
141                 );
142         _scale->add (grid, wxGBPosition (r, 1));
143         ++r;
144
145         {
146                 add_label_to_grid_bag_sizer (grid, this, _("Filters"), true, wxGBPosition (r, 0));
147                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
148
149                 wxClientDC dc (this);
150                 wxSize size = dc.GetTextExtent (wxT ("A quite long name"));
151                 size.SetHeight (-1);
152                 
153                 _filters = new wxStaticText (this, wxID_ANY, _("None"), wxDefaultPosition, size);
154                 s->Add (_filters, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
155                 _filters_button = new wxButton (this, wxID_ANY, _("Edit..."));
156                 s->Add (_filters_button, 0, wxALIGN_CENTER_VERTICAL);
157                 grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
158         }
159         ++r;
160         
161         {
162                 add_label_to_grid_bag_sizer (grid, this, _("Colour conversion"), true, wxGBPosition (r, 0));
163                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
164
165                 wxClientDC dc (this);
166                 wxSize size = dc.GetTextExtent (wxT ("A quite long name"));
167                 size.SetHeight (-1);
168                 
169                 _colour_conversion = new wxStaticText (this, wxID_ANY, wxT (""), wxDefaultPosition, size);
170
171                 s->Add (_colour_conversion, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
172                 _colour_conversion_button = new wxButton (this, wxID_ANY, _("Edit..."));
173                 s->Add (_colour_conversion_button, 0, wxALIGN_CENTER_VERTICAL);
174                 grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
175         }
176         ++r;
177
178         _description = new wxStaticText (this, wxID_ANY, wxT ("\n \n \n \n \n"), wxDefaultPosition, wxDefaultSize);
179         grid->Add (_description, wxGBPosition (r, 0), wxGBSpan (1, 2), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
180         wxFont font = _description->GetFont();
181         font.SetStyle(wxFONTSTYLE_ITALIC);
182         font.SetPointSize(font.GetPointSize() - 1);
183         _description->SetFont(font);
184         ++r;
185
186         _left_crop->wrapped()->SetRange (0, 1024);
187         _top_crop->wrapped()->SetRange (0, 1024);
188         _right_crop->wrapped()->SetRange (0, 1024);
189         _bottom_crop->wrapped()->SetRange (0, 1024);
190
191         vector<VideoContentScale> scales = VideoContentScale::all ();
192         _scale->wrapped()->Clear ();
193         for (vector<VideoContentScale>::iterator i = scales.begin(); i != scales.end(); ++i) {
194                 _scale->wrapped()->Append (std_to_wx (i->name ()));
195         }
196
197         _frame_type->wrapped()->Append (_("2D"));
198         _frame_type->wrapped()->Append (_("3D left/right"));
199         _frame_type->wrapped()->Append (_("3D top/bottom"));
200         _frame_type->wrapped()->Append (_("3D alternate"));
201         _frame_type->wrapped()->Append (_("3D left only"));
202         _frame_type->wrapped()->Append (_("3D right only"));
203
204         _filters_button->Bind           (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&VideoPanel::edit_filters_clicked, this));
205         _colour_conversion_button->Bind (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&VideoPanel::edit_colour_conversion_clicked, this));
206 }
207
208 void
209 VideoPanel::film_changed (Film::Property property)
210 {
211         switch (property) {
212         case Film::CONTAINER:
213         case Film::VIDEO_FRAME_RATE:
214         case Film::RESOLUTION:
215                 setup_description ();
216                 break;
217         default:
218                 break;
219         }
220 }
221
222 void
223 VideoPanel::film_content_changed (int property)
224 {
225         VideoContentList vc = _parent->selected_video ();
226         shared_ptr<VideoContent> vcs;
227         shared_ptr<FFmpegContent> fcs;
228         if (!vc.empty ()) {
229                 vcs = vc.front ();
230                 fcs = dynamic_pointer_cast<FFmpegContent> (vcs);
231         }
232         
233         if (property == VideoContentProperty::VIDEO_FRAME_TYPE) {
234                 setup_description ();
235         } else if (property == VideoContentProperty::VIDEO_CROP) {
236                 setup_description ();
237         } else if (property == VideoContentProperty::VIDEO_SCALE) {
238                 setup_description ();
239         } else if (property == VideoContentProperty::VIDEO_FRAME_RATE) {
240                 setup_description ();
241         } else if (property == VideoContentProperty::COLOUR_CONVERSION) {
242                 optional<size_t> preset = vcs ? vcs->colour_conversion().preset () : optional<size_t> ();
243                 vector<PresetColourConversion> cc = Config::instance()->colour_conversions ();
244                 _colour_conversion->SetLabel (preset ? std_to_wx (cc[preset.get()].name) : _("Custom"));
245         } else if (property == FFmpegContentProperty::FILTERS) {
246                 if (fcs) {
247                         string const p = Filter::ffmpeg_string (fcs->filters ());
248                         if (p.empty ()) {
249                                 _filters->SetLabel (_("None"));
250                         } else {
251                                 _filters->SetLabel (std_to_wx (p));
252                         }
253                 }
254         }
255 }
256
257 /** Called when the `Edit filters' button has been clicked */
258 void
259 VideoPanel::edit_filters_clicked ()
260 {
261         FFmpegContentList c = _parent->selected_ffmpeg ();
262         if (c.size() != 1) {
263                 return;
264         }
265
266         FilterDialog* d = new FilterDialog (this, c.front()->filters());
267         d->ActiveChanged.connect (bind (&FFmpegContent::set_filters, c.front(), _1));
268         d->ShowModal ();
269         d->Destroy ();
270 }
271
272 void
273 VideoPanel::setup_description ()
274 {
275         VideoContentList vc = _parent->selected_video ();
276         if (vc.empty ()) {
277                 _description->SetLabel ("");
278                 return;
279         } else if (vc.size() > 1) {
280                 _description->SetLabel (_("Multiple content selected"));
281                 return;
282         }
283
284         shared_ptr<VideoContent> vcs = vc.front ();
285
286         wxString d;
287
288         int lines = 0;
289
290         if (vcs->video_size().width && vcs->video_size().height) {
291                 d << wxString::Format (
292                         _("Content video is %dx%d (%.2f:1)\n"),
293                         vcs->video_size_after_3d_split().width,
294                         vcs->video_size_after_3d_split().height,
295                         vcs->video_size_after_3d_split().ratio ()
296                         );
297                 ++lines;
298         }
299
300         Crop const crop = vcs->crop ();
301         if ((crop.left || crop.right || crop.top || crop.bottom) && vcs->video_size() != dcp::Size (0, 0)) {
302                 dcp::Size cropped = vcs->video_size_after_crop ();
303                 d << wxString::Format (
304                         _("Cropped to %dx%d (%.2f:1)\n"),
305                         cropped.width, cropped.height,
306                         cropped.ratio ()
307                         );
308                 ++lines;
309         }
310
311         dcp::Size const container_size = _parent->film()->frame_size ();
312         dcp::Size const scaled = vcs->scale().size (vcs, container_size, container_size, 1);
313
314         if (scaled != vcs->video_size_after_crop ()) {
315                 d << wxString::Format (
316                         _("Scaled to %dx%d (%.2f:1)\n"),
317                         scaled.width, scaled.height,
318                         scaled.ratio ()
319                         );
320                 ++lines;
321         }
322         
323         if (scaled != container_size) {
324                 d << wxString::Format (
325                         _("Padded with black to %dx%d (%.2f:1)\n"),
326                         container_size.width, container_size.height,
327                         container_size.ratio ()
328                         );
329                 ++lines;
330         }
331
332         d << wxString::Format (_("Content frame rate %.4f\n"), vcs->video_frame_rate ());
333         ++lines;
334         FrameRateChange frc (vcs->video_frame_rate(), _parent->film()->video_frame_rate ());
335         d << std_to_wx (frc.description ()) << "\n";
336         ++lines;
337
338         for (int i = lines; i < 6; ++i) {
339                 d << wxT ("\n ");
340         }
341
342         _description->SetLabel (d);
343         _sizer->Layout ();
344 }
345
346 void
347 VideoPanel::edit_colour_conversion_clicked ()
348 {
349         VideoContentList vc = _parent->selected_video ();
350         if (vc.size() != 1) {
351                 return;
352         }
353
354         ColourConversion conversion = vc.front()->colour_conversion ();
355         ContentColourConversionDialog* d = new ContentColourConversionDialog (this);
356         d->set (conversion);
357         d->ShowModal ();
358
359         vc.front()->set_colour_conversion (d->get ());
360         d->Destroy ();
361 }
362
363 void
364 VideoPanel::content_selection_changed ()
365 {
366         VideoContentList video_sel = _parent->selected_video ();
367         FFmpegContentList ffmpeg_sel = _parent->selected_ffmpeg ();
368         
369         bool const single = video_sel.size() == 1;
370
371         _left_crop->set_content (video_sel);
372         _right_crop->set_content (video_sel);
373         _top_crop->set_content (video_sel);
374         _bottom_crop->set_content (video_sel);
375         _frame_type->set_content (video_sel);
376         _scale->set_content (video_sel);
377
378         _filters_button->Enable (single && !ffmpeg_sel.empty ());
379         _colour_conversion_button->Enable (single);
380
381         film_content_changed (VideoContentProperty::VIDEO_CROP);
382         film_content_changed (VideoContentProperty::VIDEO_FRAME_RATE);
383         film_content_changed (VideoContentProperty::COLOUR_CONVERSION);
384         film_content_changed (FFmpegContentProperty::FILTERS);
385 }