Restore video content frame rate information.
[dcpomatic.git] / src / wx / video_panel.cc
1 /*
2     Copyright (C) 2012-2013 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/ratio.h"
22 #include "lib/filter.h"
23 #include "filter_dialog.h"
24 #include "video_panel.h"
25 #include "wx_util.h"
26 #include "film_editor.h"
27
28 using std::vector;
29 using std::string;
30 using std::pair;
31 using std::cout;
32 using boost::shared_ptr;
33 using boost::dynamic_pointer_cast;
34 using boost::bind;
35
36 VideoPanel::VideoPanel (FilmEditor* e)
37         : FilmEditorPanel (e, _("Video"))
38 {
39         wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
40         _sizer->Add (grid, 0, wxALL, 8);
41
42         int r = 0;
43
44         add_label_to_grid_bag_sizer (grid, this, _("Type"), true, wxGBPosition (r, 0));
45         _frame_type = new wxChoice (this, wxID_ANY);
46         grid->Add (_frame_type, wxGBPosition (r, 1));
47         ++r;
48         
49         add_label_to_grid_bag_sizer (grid, this, _("Left crop"), true, wxGBPosition (r, 0));
50         _left_crop = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
51         grid->Add (_left_crop, wxGBPosition (r, 1));
52         ++r;
53
54         add_label_to_grid_bag_sizer (grid, this, _("Right crop"), true, wxGBPosition (r, 0));
55         _right_crop = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
56         grid->Add (_right_crop, wxGBPosition (r, 1));
57         ++r;
58         
59         add_label_to_grid_bag_sizer (grid, this, _("Top crop"), true, wxGBPosition (r, 0));
60         _top_crop = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
61         grid->Add (_top_crop, wxGBPosition (r, 1));
62         ++r;
63         
64         add_label_to_grid_bag_sizer (grid, this, _("Bottom crop"), true, wxGBPosition (r, 0));
65         _bottom_crop = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
66         grid->Add (_bottom_crop, wxGBPosition (r, 1));
67         ++r;
68
69         add_label_to_grid_bag_sizer (grid, this, _("Scale to"), true, wxGBPosition (r, 0));
70         _ratio = new wxChoice (this, wxID_ANY);
71         grid->Add (_ratio, wxGBPosition (r, 1));
72         ++r;
73
74         {
75                 add_label_to_grid_bag_sizer (grid, this, _("Filters"), true, wxGBPosition (r, 0));
76                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
77                 _filters = new wxStaticText (this, wxID_ANY, _("None"));
78                 s->Add (_filters, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
79                 _filters_button = new wxButton (this, wxID_ANY, _("Edit..."));
80                 s->Add (_filters_button, 0, wxALIGN_CENTER_VERTICAL);
81                 grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
82         }
83         ++r;
84
85         _description = new wxStaticText (this, wxID_ANY, wxT ("\n \n \n \n \n"), wxDefaultPosition, wxDefaultSize);
86         grid->Add (_description, wxGBPosition (r, 0), wxGBSpan (1, 2), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
87         wxFont font = _description->GetFont();
88         font.SetStyle(wxFONTSTYLE_ITALIC);
89         font.SetPointSize(font.GetPointSize() - 1);
90         _description->SetFont(font);
91         ++r;
92
93         _left_crop->SetRange (0, 1024);
94         _top_crop->SetRange (0, 1024);
95         _right_crop->SetRange (0, 1024);
96         _bottom_crop->SetRange (0, 1024);
97
98         vector<Ratio const *> ratios = Ratio::all ();
99         _ratio->Clear ();
100         for (vector<Ratio const *>::iterator i = ratios.begin(); i != ratios.end(); ++i) {
101                 _ratio->Append (std_to_wx ((*i)->nickname ()));
102         }
103
104         _frame_type->Append (_("2D"));
105         _frame_type->Append (_("3D left/right"));
106
107         _frame_type->Bind     (wxEVT_COMMAND_CHOICE_SELECTED,  boost::bind (&VideoPanel::frame_type_changed, this));
108         _left_crop->Bind      (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&VideoPanel::left_crop_changed, this));
109         _right_crop->Bind     (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&VideoPanel::right_crop_changed, this));
110         _top_crop->Bind       (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&VideoPanel::top_crop_changed, this));
111         _bottom_crop->Bind    (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&VideoPanel::bottom_crop_changed, this));
112         _ratio->Bind          (wxEVT_COMMAND_CHOICE_SELECTED,  boost::bind (&VideoPanel::ratio_changed, this));
113         _filters_button->Bind (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&VideoPanel::edit_filters_clicked, this));
114 }
115
116
117 /** Called when the left crop widget has been changed */
118 void
119 VideoPanel::left_crop_changed ()
120 {
121         shared_ptr<VideoContent> c = _editor->selected_video_content ();
122         if (!c) {
123                 return;
124         }
125
126         c->set_left_crop (_left_crop->GetValue ());
127 }
128
129 /** Called when the right crop widget has been changed */
130 void
131 VideoPanel::right_crop_changed ()
132 {
133         shared_ptr<VideoContent> c = _editor->selected_video_content ();
134         if (!c) {
135                 return;
136         }
137
138         c->set_right_crop (_right_crop->GetValue ());
139 }
140
141 /** Called when the top crop widget has been changed */
142 void
143 VideoPanel::top_crop_changed ()
144 {
145         shared_ptr<VideoContent> c = _editor->selected_video_content ();
146         if (!c) {
147                 return;
148         }
149
150         c->set_top_crop (_top_crop->GetValue ());
151 }
152
153 /** Called when the bottom crop value has been changed */
154 void
155 VideoPanel::bottom_crop_changed ()
156 {
157         shared_ptr<VideoContent> c = _editor->selected_video_content ();
158         if (!c) {
159                 return;
160         }
161
162         c->set_bottom_crop (_bottom_crop->GetValue ());
163 }
164
165 void
166 VideoPanel::film_changed (Film::Property property)
167 {
168         switch (property) {
169         case Film::CONTAINER:
170         case Film::VIDEO_FRAME_RATE:
171                 setup_description ();
172                 break;
173         default:
174                 break;
175         }
176 }
177
178 void
179 VideoPanel::film_content_changed (shared_ptr<Content> c, int property)
180 {
181         shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (c);
182         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c);
183
184         if (property == VideoContentProperty::VIDEO_FRAME_TYPE) {
185                 checked_set (_frame_type, vc ? vc->video_frame_type () : VIDEO_FRAME_TYPE_2D);
186         } else if (property == VideoContentProperty::VIDEO_CROP) {
187                 checked_set (_left_crop,   vc ? vc->crop().left : 0);
188                 checked_set (_right_crop,  vc ? vc->crop().right        : 0);
189                 checked_set (_top_crop,    vc ? vc->crop().top  : 0);
190                 checked_set (_bottom_crop, vc ? vc->crop().bottom : 0);
191                 setup_description ();
192         } else if (property == VideoContentProperty::VIDEO_RATIO) {
193                 if (vc) {
194                         int n = 0;
195                         vector<Ratio const *> ratios = Ratio::all ();
196                         vector<Ratio const *>::iterator i = ratios.begin ();
197                         while (i != ratios.end() && *i != vc->ratio()) {
198                                 ++i;
199                                 ++n;
200                         }
201
202                         if (i == ratios.end()) {
203                                 checked_set (_ratio, -1);
204                         } else {
205                                 checked_set (_ratio, n);
206                         }
207                 } else {
208                         checked_set (_ratio, -1);
209                 }
210                 setup_description ();
211         } else if (property == VideoContentProperty::VIDEO_FRAME_RATE) {
212                 setup_description ();
213         } else if (property == FFmpegContentProperty::FILTERS) {
214                 if (fc) {
215                         pair<string, string> p = Filter::ffmpeg_strings (fc->filters ());
216                         if (p.first.empty () && p.second.empty ()) {
217                                 _filters->SetLabel (_("None"));
218                         } else {
219                                 string const b = p.first + " " + p.second;
220                                 _filters->SetLabel (std_to_wx (b));
221                         }
222                 }
223         }
224 }
225
226 /** Called when the `Edit filters' button has been clicked */
227 void
228 VideoPanel::edit_filters_clicked ()
229 {
230         shared_ptr<Content> c = _editor->selected_content ();
231         if (!c) {
232                 return;
233         }
234
235         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c);
236         if (!fc) {
237                 return;
238         }
239         
240         FilterDialog* d = new FilterDialog (this, fc->filters());
241         d->ActiveChanged.connect (bind (&FFmpegContent::set_filters, fc, _1));
242         d->ShowModal ();
243         d->Destroy ();
244 }
245
246 void
247 VideoPanel::setup_description ()
248 {
249         shared_ptr<VideoContent> vc = _editor->selected_video_content ();
250         if (!vc) {
251                 _description->SetLabel ("");
252                 return;
253         }
254
255         wxString d;
256
257         int lines = 0;
258
259         if (vc->video_size().width && vc->video_size().height) {
260                 d << wxString::Format (
261                         _("Content video is %dx%d (%.2f:1)\n"),
262                         vc->video_size().width, vc->video_size().height,
263                         float (vc->video_size().width) / vc->video_size().height
264                         );
265                 ++lines;
266         }
267
268         Crop const crop = vc->crop ();
269         if ((crop.left || crop.right || crop.top || crop.bottom) && vc->video_size() != libdcp::Size (0, 0)) {
270                 libdcp::Size cropped = vc->video_size ();
271                 cropped.width -= crop.left + crop.right;
272                 cropped.height -= crop.top + crop.bottom;
273                 d << wxString::Format (
274                         _("Cropped to %dx%d (%.2f:1)\n"),
275                         cropped.width, cropped.height,
276                         float (cropped.width) / cropped.height
277                         );
278                 ++lines;
279         }
280
281         Ratio const * ratio = vc->ratio ();
282         if (ratio) {
283                 libdcp::Size container_size = _editor->film()->container()->size (_editor->film()->full_frame ());
284                 
285                 libdcp::Size const scaled = ratio->size (container_size);
286                 d << wxString::Format (
287                         _("Scaled to %dx%d (%.2f:1)\n"),
288                         scaled.width, scaled.height,
289                         float (scaled.width) / scaled.height
290                         );
291                 ++lines;
292
293                 if (scaled != container_size) {
294                         d << wxString::Format (
295                                 _("Padded with black to %dx%d (%.2f:1)\n"),
296                                 container_size.width, container_size.height,
297                                 float (container_size.width) / container_size.height
298                                 );
299                         ++lines;
300                 }
301         }
302
303         d << wxString::Format (_("Content frame rate %.4f\n"), vc->video_frame_rate ());
304         ++lines;
305         FrameRateConversion frc (vc->video_frame_rate(), _editor->film()->video_frame_rate ());
306         d << frc.description << "\n";
307         ++lines;
308
309         for (int i = lines; i < 6; ++i) {
310                 d << wxT ("\n ");
311         }
312
313         _description->SetLabel (d);
314         _sizer->Layout ();
315 }
316
317
318 void
319 VideoPanel::ratio_changed ()
320 {
321         if (!_editor->film ()) {
322                 return;
323         }
324
325         shared_ptr<VideoContent> vc = _editor->selected_video_content ();
326         
327         int const n = _ratio->GetSelection ();
328         if (n >= 0) {
329                 vector<Ratio const *> ratios = Ratio::all ();
330                 assert (n < int (ratios.size()));
331                 vc->set_ratio (ratios[n]);
332         }
333 }
334
335 void
336 VideoPanel::frame_type_changed ()
337 {
338         shared_ptr<VideoContent> vc = _editor->selected_video_content ();
339         if (vc) {
340                 vc->set_video_frame_type (static_cast<VideoFrameType> (_frame_type->GetSelection ()));
341         }
342 }