C++11 tidying.
[dcpomatic.git] / src / wx / video_waveform_plot.cc
1 /*
2     Copyright (C) 2015-2021 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
22 #include "film_viewer.h"
23 #include "video_waveform_plot.h"
24 #include "wx_util.h"
25 #include "lib/dcp_video.h"
26 #include "lib/film.h"
27 #include "lib/image.h"
28 #include "lib/player_video.h"
29 #include <dcp/locale_convert.h>
30 #include <dcp/openjpeg_image.h>
31 #include <wx/rawbmp.h>
32 #include <wx/graphics.h>
33 #include <boost/bind/bind.hpp>
34 #include <iostream>
35
36
37 using std::cout;
38 using std::make_shared;
39 using std::max;
40 using std::min;
41 using std::shared_ptr;
42 using std::string;
43 using std::weak_ptr;
44 #if BOOST_VERSION >= 106100
45 using namespace boost::placeholders;
46 #endif
47 using dcp::locale_convert;
48
49
50 int const VideoWaveformPlot::_vertical_margin = 8;
51 int const VideoWaveformPlot::_pixel_values = 4096;
52 int const VideoWaveformPlot::_x_axis_width = 52;
53
54
55 VideoWaveformPlot::VideoWaveformPlot (wxWindow* parent, weak_ptr<const Film> film, weak_ptr<FilmViewer> viewer)
56         : wxPanel (parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxFULL_REPAINT_ON_RESIZE)
57         , _film (film)
58 {
59 #ifndef __WXOSX__
60         SetDoubleBuffered (true);
61 #endif
62
63         auto fv = viewer.lock ();
64         DCPOMATIC_ASSERT (fv);
65
66         _viewer_connection = fv->ImageChanged.connect (boost::bind(&VideoWaveformPlot::set_image, this, _1));
67
68         Bind (wxEVT_PAINT, boost::bind(&VideoWaveformPlot::paint, this));
69         Bind (wxEVT_SIZE,  boost::bind(&VideoWaveformPlot::sized, this, _1));
70         Bind (wxEVT_MOTION, boost::bind(&VideoWaveformPlot::mouse_moved, this, _1));
71
72         SetMinSize (wxSize (640, 512));
73         SetBackgroundColour (wxColour (0, 0, 0));
74 }
75
76
77 void
78 VideoWaveformPlot::paint ()
79 {
80         wxPaintDC dc (this);
81
82         if (_dirty) {
83                 create_waveform ();
84                 _dirty = false;
85         }
86
87         if (!_waveform) {
88                 return;
89         }
90
91         auto gc = wxGraphicsContext::Create (dc);
92         if (!gc) {
93                 return;
94         }
95
96         int const height = _waveform->size().height;
97
98         gc->SetPen (wxPen (wxColour (255, 255, 255), 1, wxPENSTYLE_SOLID));
99
100         gc->SetFont (gc->CreateFont (*wxSMALL_FONT, wxColour (255, 255, 255)));
101         double label_width;
102         double label_height;
103         double label_descent;
104         double label_leading;
105         gc->GetTextExtent (wxT ("1024"), &label_width, &label_height, &label_descent, &label_leading);
106
107         double extra[3];
108         double w;
109         gc->GetTextExtent (wxT ("0"), &w, &label_height, &label_descent, &label_leading);
110         extra[0] = label_width - w;
111         gc->GetTextExtent (wxT ("64"), &w, &label_height, &label_descent, &label_leading);
112         extra[1] = label_width - w;
113         gc->GetTextExtent (wxT ("512"), &w, &label_height, &label_descent, &label_leading);
114         extra[2] = label_width - w;
115
116         int label_gaps = 2;
117         while (height / label_gaps > 64) {
118                 label_gaps *= 2;
119         }
120
121         for (int i = 0; i < label_gaps + 1; ++i) {
122                 auto p = gc->CreatePath ();
123                 int const y = _vertical_margin + height - (i * height / label_gaps) - 1;
124                 p.MoveToPoint (label_width + 8, y);
125                 p.AddLineToPoint (_x_axis_width - 4, y);
126                 gc->StrokePath (p);
127                 int x = 4;
128                 int const n = i * _pixel_values / label_gaps;
129                 if (n < 10) {
130                         x += extra[0];
131                 } else if (n < 100) {
132                         x += extra[1];
133                 } else if (n < 1000) {
134                         x += extra[2];
135                 }
136                 gc->DrawText (std_to_wx(locale_convert<string>(n)), x, y - (label_height / 2));
137         }
138
139         wxImage waveform (_waveform->size().width, height, _waveform->data()[0], true);
140         wxBitmap bitmap (waveform);
141         gc->DrawBitmap (bitmap, _x_axis_width, _vertical_margin, _waveform->size().width, height);
142
143         delete gc;
144 }
145
146
147 void
148 VideoWaveformPlot::create_waveform ()
149 {
150         _waveform.reset ();
151
152         if (!_image) {
153                 return;
154         }
155
156         auto const image_size = _image->size();
157         int const waveform_height = GetSize().GetHeight() - _vertical_margin * 2;
158         _waveform = make_shared<Image>(AV_PIX_FMT_RGB24, dcp::Size (image_size.width, waveform_height), true);
159
160         for (int x = 0; x < image_size.width; ++x) {
161
162                 /* Work out one vertical `slice' of waveform pixels.  Each value in
163                    strip is the number of samples in image with the corresponding group of
164                    values.
165                 */
166                 int strip[waveform_height];
167                 memset (strip, 0, waveform_height * sizeof(int));
168
169                 int* ip = _image->data (_component) + x;
170                 for (int y = 0; y < image_size.height; ++y) {
171                         strip[*ip * waveform_height / _pixel_values]++;
172                         ip += image_size.width;
173                 }
174
175                 /* Copy slice into the waveform */
176                 uint8_t* wp = _waveform->data()[0] + x * 3;
177                 for (int y = waveform_height - 1; y >= 0; --y) {
178                         wp[0] = wp[1] = wp[2] = min (255, (strip[y] * 255 / waveform_height) * _contrast);
179                         wp += _waveform->stride()[0];
180                 }
181         }
182
183         _waveform = _waveform->scale (
184                 dcp::Size (GetSize().GetWidth() - _x_axis_width, waveform_height),
185                 dcp::YUVToRGB::REC709, AV_PIX_FMT_RGB24, false, false
186                 );
187 }
188
189
190 void
191 VideoWaveformPlot::set_image (shared_ptr<PlayerVideo> image)
192 {
193         if (!_enabled) {
194                 return;
195         }
196
197         /* We must copy the PlayerVideo here as we will call ::image() on it, potentially
198            with a different pixel_format than was used when ::prepare() was called.
199         */
200         _image = DCPVideo::convert_to_xyz (image->shallow_copy(), [](dcp::NoteType, string) {});
201         _dirty = true;
202         Refresh ();
203 }
204
205
206 void
207 VideoWaveformPlot::sized (wxSizeEvent &)
208 {
209         _dirty = true;
210 }
211
212
213 void
214 VideoWaveformPlot::set_enabled (bool e)
215 {
216         _enabled = e;
217 }
218
219
220 void
221 VideoWaveformPlot::set_component (int c)
222 {
223         _component = c;
224         _dirty = true;
225         Refresh ();
226 }
227
228
229 /** Set `contrast', i.e. a fudge multiplication factor to make low-level signals easier to see,
230  *  between 0 and 256.
231  */
232 void
233 VideoWaveformPlot::set_contrast (int b)
234 {
235         _contrast = b;
236         _dirty = true;
237         Refresh ();
238 }
239
240
241 void
242 VideoWaveformPlot::mouse_moved (wxMouseEvent& ev)
243 {
244         if (!_image) {
245                 return;
246         }
247
248         if (_dirty) {
249                 create_waveform ();
250                 _dirty = false;
251         }
252
253         auto film = _film.lock ();
254         if (!film) {
255                 return;
256         }
257
258         auto const full = film->frame_size ();
259
260         auto const xs = static_cast<double> (full.width) / _waveform->size().width;
261         int const x1 = max (0, min (full.width - 1, int (floor (ev.GetPosition().x - _x_axis_width - 0.5) * xs)));
262         int const x2 = max (0, min (full.width - 1, int (floor (ev.GetPosition().x - _x_axis_width + 0.5) * xs)));
263
264         auto const ys = static_cast<double> (_pixel_values) / _waveform->size().height;
265         int const fy = _waveform->size().height - (ev.GetPosition().y - _vertical_margin);
266         int const y1 = max (0, min (_pixel_values - 1, int (floor (fy - 0.5) * ys)));
267         int const y2 = max (0, min (_pixel_values - 1, int (floor (fy + 0.5) * ys)));
268
269         MouseMoved (x1, x2, y1, y2);
270 }