C++11 tidying.
[dcpomatic.git] / src / wx / simple_video_view.cc
1 /*
2     Copyright (C) 2019 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 "simple_video_view.h"
22 #include "film_viewer.h"
23 #include "wx_util.h"
24 #include "closed_captions_dialog.h"
25 #include "lib/image.h"
26 #include "lib/dcpomatic_log.h"
27 #include "lib/butler.h"
28 #include <dcp/util.h>
29 #include <wx/wx.h>
30 #include <boost/bind/bind.hpp>
31
32 using std::max;
33 using std::string;
34 using boost::optional;
35 using std::shared_ptr;
36 #if BOOST_VERSION >= 106100
37 using namespace boost::placeholders;
38 #endif
39 using namespace dcpomatic;
40
41
42 SimpleVideoView::SimpleVideoView (FilmViewer* viewer, wxWindow* parent)
43         : VideoView (viewer)
44 {
45         _panel = new wxPanel (parent);
46
47 #ifndef __WXOSX__
48         _panel->SetDoubleBuffered (true);
49 #endif
50
51         _panel->SetBackgroundStyle (wxBG_STYLE_PAINT);
52         _panel->SetBackgroundColour (*wxBLACK);
53
54         _panel->Bind (wxEVT_PAINT, boost::bind (&SimpleVideoView::paint, this));
55         _panel->Bind (wxEVT_SIZE, boost::bind(boost::ref(Sized)));
56
57         _timer.Bind (wxEVT_TIMER, boost::bind(&SimpleVideoView::timer, this));
58 }
59
60 void
61 SimpleVideoView::paint ()
62 {
63         _state_timer.set("paint-panel");
64         wxPaintDC dc (_panel);
65
66         dcp::Size const out_size = _viewer->out_size ();
67         wxSize const panel_size = _panel->GetSize ();
68
69         if (!out_size.width || !out_size.height || !_image || out_size != _image->size()) {
70                 dc.Clear ();
71         } else {
72
73                 wxImage frame (out_size.width, out_size.height, _image->data()[0], true);
74                 wxBitmap frame_bitmap (frame);
75                 dc.DrawBitmap (frame_bitmap, 0, max(0, (panel_size.GetHeight() - out_size.height) / 2));
76         }
77
78         auto const pad_colour = (_viewer->pad_black() || gui_is_dark()) ? wxColour(0, 0, 0) : wxColour(240, 240, 240);
79
80         if (out_size.width < panel_size.GetWidth()) {
81                 wxPen   p (pad_colour);
82                 wxBrush b (pad_colour);
83                 dc.SetPen (p);
84                 dc.SetBrush (b);
85                 dc.DrawRectangle (out_size.width, 0, panel_size.GetWidth() - out_size.width, panel_size.GetHeight());
86         }
87
88         if (out_size.height < panel_size.GetHeight()) {
89                 wxPen   p (pad_colour);
90                 wxBrush b (pad_colour);
91                 dc.SetPen (p);
92                 dc.SetBrush (b);
93                 int const gap = (panel_size.GetHeight() - out_size.height) / 2;
94                 dc.DrawRectangle (0, 0, panel_size.GetWidth(), gap);
95                 dc.DrawRectangle (0, gap + out_size.height + 1, panel_size.GetWidth(), gap + 1);
96         }
97
98         if (_viewer->outline_content()) {
99                 wxPen p (wxColour (255, 0, 0), 2);
100                 dc.SetPen (p);
101                 dc.SetBrush (*wxTRANSPARENT_BRUSH);
102                 dc.DrawRectangle (_inter_position.x, _inter_position.y + (panel_size.GetHeight() - out_size.height) / 2, _inter_size.width, _inter_size.height);
103         }
104
105         auto subs = _viewer->outline_subtitles();
106         if (subs) {
107                 wxPen p (wxColour(0, 255, 0), 2);
108                 dc.SetPen (p);
109                 dc.SetBrush (*wxTRANSPARENT_BRUSH);
110                 dc.DrawRectangle (subs->x * out_size.width, subs->y * out_size.height, subs->width * out_size.width, subs->height * out_size.height);
111         }
112
113         _state_timer.unset();
114 }
115
116 void
117 SimpleVideoView::refresh_panel ()
118 {
119         _state_timer.set ("refresh-panel");
120         _panel->Refresh ();
121         _panel->Update ();
122         _state_timer.unset ();
123 }
124
125 void
126 SimpleVideoView::timer ()
127 {
128         if (!_viewer->playing()) {
129                 return;
130         }
131
132         display_next_frame (false);
133         auto const next = position() + _viewer->one_video_frame();
134
135         if (next >= length()) {
136                 _viewer->finished ();
137                 return;
138         }
139
140         LOG_DEBUG_VIDEO_VIEW("%1 -> %2; delay %3", next.seconds(), _viewer->time().seconds(), max((next.seconds() - _viewer->time().seconds()) * 1000, 1.0));
141         _timer.Start (max(1, time_until_next_frame().get_value_or(0)), wxTIMER_ONE_SHOT);
142
143         if (_viewer->butler()) {
144                 _viewer->butler()->rethrow ();
145         }
146 }
147
148 void
149 SimpleVideoView::start ()
150 {
151         VideoView::start ();
152         timer ();
153 }
154
155 /** Try to get a frame from the butler and display it.
156  *  @param non_blocking true to return false quickly if no video is available quickly (i.e. we are waiting for the butler).
157  *  false to ask the butler to block until it has video (unless it is suspended).
158  *  @return true on success, false if we did nothing because it would have taken too long.
159  */
160 VideoView::NextFrameResult
161 SimpleVideoView::display_next_frame (bool non_blocking)
162 {
163         auto const r = get_next_frame (non_blocking);
164         if (r != SUCCESS) {
165                 return r;
166         }
167
168         update ();
169
170         try {
171                 _viewer->butler()->rethrow ();
172         } catch (DecodeError& e) {
173                 error_dialog (get(), e.what());
174         }
175
176         return SUCCESS;
177 }
178
179 void
180 SimpleVideoView::update ()
181 {
182         if (!player_video().first) {
183                 set_image (shared_ptr<Image>());
184                 refresh_panel ();
185                 return;
186         }
187
188         if (_viewer->playing() && (_viewer->time() - player_video().second) > one_video_frame()) {
189                 /* Too late; just drop this frame before we try to get its image (which will be the time-consuming
190                    part if this frame is J2K).
191                 */
192                 add_dropped ();
193                 return;
194         }
195
196         /* In an ideal world, what we would do here is:
197          *
198          * 1. convert to XYZ exactly as we do in the DCP creation path.
199          * 2. convert back to RGB for the preview display, compensating
200          *    for the monitor etc. etc.
201          *
202          * but this is inefficient if the source is RGB.  Since we don't
203          * (currently) care too much about the precise accuracy of the preview's
204          * colour mapping (and we care more about its speed) we try to short-
205          * circuit this "ideal" situation in some cases.
206          *
207          * The content's specified colour conversion indicates the colourspace
208          * which the content is in (according to the user).
209          *
210          * PlayerVideo::image (bound to PlayerVideo::force) will take the source
211          * image and convert it (from whatever the user has said it is) to RGB.
212          */
213
214         _state_timer.set ("get image");
215
216         set_image (
217                 player_video().first->image(bind(&PlayerVideo::force, _1, AV_PIX_FMT_RGB24), VideoRange::FULL, false, true)
218                 );
219
220         _state_timer.set ("ImageChanged");
221         _viewer->image_changed (player_video().first);
222         _state_timer.unset ();
223
224         _inter_position = player_video().first->inter_position ();
225         _inter_size = player_video().first->inter_size ();
226
227         refresh_panel ();
228 }