Decoder handles crop changing.
[dcpomatic.git] / src / wx / film_viewer.cc
1 /*
2     Copyright (C) 2012 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 /** @file  src/film_viewer.cc
21  *  @brief A wx widget to view a preview of a Film.
22  */
23
24 #include <iostream>
25 #include <iomanip>
26 #include <wx/tglbtn.h>
27 #include "lib/film.h"
28 #include "lib/format.h"
29 #include "lib/util.h"
30 #include "lib/job_manager.h"
31 #include "lib/options.h"
32 #include "lib/subtitle.h"
33 #include "lib/image.h"
34 #include "lib/scaler.h"
35 #include "film_viewer.h"
36 #include "wx_util.h"
37 #include "video_decoder.h"
38
39 using std::string;
40 using std::pair;
41 using std::max;
42 using std::cout;
43 using boost::shared_ptr;
44
45 FilmViewer::FilmViewer (shared_ptr<Film> f, wxWindow* p)
46         : wxPanel (p)
47         , _panel (new wxPanel (this))
48         , _slider (new wxSlider (this, wxID_ANY, 0, 0, 4096))
49         , _play_button (new wxToggleButton (this, wxID_ANY, wxT ("Play")))
50         , _out_width (0)
51         , _out_height (0)
52         , _panel_width (0)
53         , _panel_height (0)
54 {
55         wxBoxSizer* v_sizer = new wxBoxSizer (wxVERTICAL);
56         SetSizer (v_sizer);
57
58         v_sizer->Add (_panel, 1, wxEXPAND);
59
60         wxBoxSizer* h_sizer = new wxBoxSizer (wxHORIZONTAL);
61         h_sizer->Add (_play_button, 0, wxEXPAND);
62         h_sizer->Add (_slider, 1, wxEXPAND);
63
64         v_sizer->Add (h_sizer, 0, wxEXPAND);
65
66         _panel->Bind (wxEVT_PAINT, &FilmViewer::paint_panel, this);
67         _panel->Bind (wxEVT_SIZE, &FilmViewer::panel_sized, this);
68         _slider->Bind (wxEVT_SCROLL_THUMBTRACK, &FilmViewer::slider_moved, this);
69         _slider->Bind (wxEVT_SCROLL_PAGEUP, &FilmViewer::slider_moved, this);
70         _slider->Bind (wxEVT_SCROLL_PAGEDOWN, &FilmViewer::slider_moved, this);
71         _play_button->Bind (wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, &FilmViewer::play_clicked, this);
72         _timer.Bind (wxEVT_TIMER, &FilmViewer::timer, this);
73
74         set_film (_film);
75 }
76
77 void
78 FilmViewer::film_changed (Film::Property p)
79 {
80         switch (p) {
81         case Film::CROP:
82                 calculate_sizes ();
83                 update_from_raw ();
84                 break;
85         case Film::FORMAT:
86                 calculate_sizes ();
87                 update_from_raw ();
88                 break;
89         default:
90                 break;
91         }
92 }
93
94 void
95 FilmViewer::set_film (shared_ptr<Film> f)
96 {
97         if (_film == f) {
98                 return;
99         }
100         
101         _film = f;
102
103         if (!_film) {
104                 return;
105         }
106
107         shared_ptr<DecodeOptions> o (new DecodeOptions);
108         o->decode_audio = false;
109         o->video_sync = false;
110         _decoders = decoder_factory (_film, o, 0);
111         _decoders.video->Video.connect (bind (&FilmViewer::process_video, this, _1, _2));
112         _decoders.video->OutputChanged.connect (boost::bind (&FilmViewer::decoder_changed, this));
113
114         film_changed (Film::CROP);
115         film_changed (Film::FORMAT);
116 }
117
118 void
119 FilmViewer::decoder_changed ()
120 {
121         shared_ptr<Image> last = _display;
122         while (last == _display) {
123                 _decoders.video->pass ();
124         }
125         _panel->Refresh ();
126         _panel->Update ();
127 }
128
129 void
130 FilmViewer::timer (wxTimerEvent& ev)
131 {
132         _panel->Refresh ();
133         _panel->Update ();
134
135         shared_ptr<Image> last = _display;
136         while (last == _display) {
137                 _decoders.video->pass ();
138         }
139
140 #if 0   
141         if (_last_frame_in_seconds) {
142                 double const video_length_in_seconds = static_cast<double>(_format_context->duration) / AV_TIME_BASE;
143                 int const new_slider_position = 4096 * _last_frame_in_seconds / video_length_in_seconds;
144                 if (new_slider_position != _slider->GetValue()) {
145                         _slider->SetValue (new_slider_position);
146                 }
147         }
148 #endif  
149 }
150
151
152 void
153 FilmViewer::paint_panel (wxPaintEvent& ev)
154 {
155         wxPaintDC dc (_panel);
156         if (!_display) {
157                 return;
158         }
159
160         wxImage i (_out_width, _out_height, _display->data()[0], true);
161         wxBitmap b (i);
162         dc.DrawBitmap (b, 0, 0);
163 }
164
165
166 void
167 FilmViewer::slider_moved (wxCommandEvent& ev)
168 {
169         _decoders.video->seek (_slider->GetValue() * _film->length().get() / 4096);
170 }
171
172 void
173 FilmViewer::panel_sized (wxSizeEvent& ev)
174 {
175         _panel_width = ev.GetSize().GetWidth();
176         _panel_height = ev.GetSize().GetHeight();
177         calculate_sizes ();
178         update_from_raw ();
179 }
180
181 void
182 FilmViewer::update_from_raw ()
183 {
184         if (!_raw) {
185                 return;
186         }
187
188         if (_out_width && _out_height) {
189                 _display = _raw->scale_and_convert_to_rgb (Size (_out_width, _out_height), 0, Scaler::from_id ("bicubic"));
190         }
191         
192         _panel->Refresh ();
193         _panel->Update ();
194 }
195
196 void
197 FilmViewer::calculate_sizes ()
198 {
199         float const panel_ratio = static_cast<float> (_panel_width) / _panel_height;
200         float const film_ratio = _film->format() ? _film->format()->ratio_as_float(_film) : 1.78;
201         if (panel_ratio < film_ratio) {
202                 /* panel is less widscreen than the film; clamp width */
203                 _out_width = _panel_width;
204                 _out_height = _out_width / film_ratio;
205         } else {
206                 /* panel is more widescreen than the film; clamp heignt */
207                 _out_height = _panel_height;
208                 _out_width = _out_height * film_ratio;
209         }
210 }
211
212 void
213 FilmViewer::play_clicked (wxCommandEvent &)
214 {
215         check_play_state ();
216 }
217
218 void
219 FilmViewer::check_play_state ()
220 {
221         if (_play_button->GetValue()) {
222                 _timer.Start (1000 / _film->frames_per_second());
223         } else {
224                 _timer.Stop ();
225         }
226 }
227
228 void
229 FilmViewer::process_video (shared_ptr<Image> image, shared_ptr<Subtitle> sub)
230 {
231         _raw = image;
232         if (_out_width && _out_height) {
233                 _display = _raw->scale_and_convert_to_rgb (Size (_out_width, _out_height), 0, Scaler::from_id ("bicubic"));
234         }
235 }