Do image crop/scale/window in the butler prepare threads.
[dcpomatic.git] / src / wx / film_viewer.cc
1 /*
2     Copyright (C) 2012-2018 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 /** @file  src/film_viewer.cc
22  *  @brief A wx widget to view a preview of a Film.
23  */
24
25 #include "film_viewer.h"
26 #include "playhead_to_timecode_dialog.h"
27 #include "playhead_to_frame_dialog.h"
28 #include "wx_util.h"
29 #include "closed_captions_dialog.h"
30 #include "lib/film.h"
31 #include "lib/ratio.h"
32 #include "lib/util.h"
33 #include "lib/job_manager.h"
34 #include "lib/image.h"
35 #include "lib/exceptions.h"
36 #include "lib/examine_content_job.h"
37 #include "lib/filter.h"
38 #include "lib/player.h"
39 #include "lib/player_video.h"
40 #include "lib/video_content.h"
41 #include "lib/video_decoder.h"
42 #include "lib/timer.h"
43 #include "lib/butler.h"
44 #include "lib/log.h"
45 #include "lib/config.h"
46 #include "lib/compose.hpp"
47 extern "C" {
48 #include <libavutil/pixfmt.h>
49 }
50 #include <dcp/exceptions.h>
51 #include <wx/tglbtn.h>
52 #include <iostream>
53 #include <iomanip>
54
55 using std::string;
56 using std::pair;
57 using std::min;
58 using std::max;
59 using std::cout;
60 using std::list;
61 using std::bad_alloc;
62 using std::make_pair;
63 using std::exception;
64 using boost::shared_ptr;
65 using boost::dynamic_pointer_cast;
66 using boost::weak_ptr;
67 using boost::optional;
68 using dcp::Size;
69
70 static
71 int
72 rtaudio_callback (void* out, void *, unsigned int frames, double, RtAudioStreamStatus, void* data)
73 {
74         return reinterpret_cast<FilmViewer*>(data)->audio_callback (out, frames);
75 }
76
77 FilmViewer::FilmViewer (wxWindow* p)
78         : _panel (new wxPanel (p))
79         , _coalesce_player_changes (false)
80         , _audio (DCPOMATIC_RTAUDIO_API)
81         , _audio_channels (0)
82         , _audio_block_size (1024)
83         , _playing (false)
84         , _latency_history_count (0)
85         , _dropped (0)
86         , _closed_captions_dialog (new ClosedCaptionsDialog(p))
87         , _outline_content (false)
88         , _eyes (EYES_LEFT)
89         , _pad_black (false)
90 #ifdef DCPOMATIC_VARIANT_SWAROOP
91         , _in_watermark (false)
92 #endif
93 {
94 #ifndef __WXOSX__
95         _panel->SetDoubleBuffered (true);
96 #endif
97
98         _panel->SetBackgroundStyle (wxBG_STYLE_PAINT);
99         _panel->SetBackgroundColour (*wxBLACK);
100
101         _panel->Bind (wxEVT_PAINT, boost::bind (&FilmViewer::paint_panel, this));
102         _panel->Bind (wxEVT_SIZE,  boost::bind (&FilmViewer::panel_sized, this, _1));
103         _timer.Bind  (wxEVT_TIMER, boost::bind (&FilmViewer::timer, this));
104
105         set_film (shared_ptr<Film> ());
106
107         _config_changed_connection = Config::instance()->Changed.connect (bind (&FilmViewer::config_changed, this, _1));
108         config_changed (Config::SOUND_OUTPUT);
109 }
110
111 FilmViewer::~FilmViewer ()
112 {
113         stop ();
114 }
115
116 void
117 FilmViewer::set_film (shared_ptr<Film> film)
118 {
119         if (_film == film) {
120                 return;
121         }
122
123         _film = film;
124
125         FilmChanged ();
126
127         _frame.reset ();
128         _closed_captions_dialog->clear ();
129
130         if (!_film) {
131                 _player.reset ();
132                 recreate_butler ();
133                 _frame.reset ();
134                 refresh_panel ();
135                 return;
136         }
137
138         try {
139                 _player.reset (new Player (_film, _film->playlist ()));
140                 _player->set_fast ();
141                 if (_dcp_decode_reduction) {
142                         _player->set_dcp_decode_reduction (_dcp_decode_reduction);
143                 }
144         } catch (bad_alloc) {
145                 error_dialog (_panel, _("There is not enough free memory to do that."));
146                 _film.reset ();
147                 return;
148         }
149
150         _player->set_always_burn_open_subtitles ();
151         _player->set_play_referenced ();
152
153         _film->Change.connect (boost::bind (&FilmViewer::film_change, this, _1, _2));
154         _player->Change.connect (boost::bind (&FilmViewer::player_change, this, _1, _2, _3));
155
156         /* Keep about 1 second's worth of history samples */
157         _latency_history_count = _film->audio_frame_rate() / _audio_block_size;
158
159         recreate_butler ();
160
161         calculate_sizes ();
162         slow_refresh ();
163 }
164
165 void
166 FilmViewer::recreate_butler ()
167 {
168         bool const was_running = stop ();
169         _butler.reset ();
170
171         if (!_film) {
172                 return;
173         }
174
175         AudioMapping map = AudioMapping (_film->audio_channels(), _audio_channels);
176
177         if (_audio_channels != 2 || _film->audio_channels() < 3) {
178                 for (int i = 0; i < min (_film->audio_channels(), _audio_channels); ++i) {
179                         map.set (i, i, 1);
180                 }
181         } else {
182                 /* Special case: stereo output, at least 3 channel input.
183                    Map so that Lt = L(-3dB) + Ls(-3dB) + C(-6dB) + Lfe(-10dB)
184                                Rt = R(-3dB) + Rs(-3dB) + C(-6dB) + Lfe(-10dB)
185                 */
186                 map.set (dcp::LEFT,   0, 1 / sqrt(2)); // L -> Lt
187                 map.set (dcp::RIGHT,  1, 1 / sqrt(2)); // R -> Rt
188                 map.set (dcp::CENTRE, 0, 1 / 2.0); // C -> Lt
189                 map.set (dcp::CENTRE, 1, 1 / 2.0); // C -> Rt
190                 map.set (dcp::LFE,    0, 1 / sqrt(10)); // Lfe -> Lt
191                 map.set (dcp::LFE,    1, 1 / sqrt(10)); // Lfe -> Rt
192                 map.set (dcp::LS,     0, 1 / sqrt(2)); // Ls -> Lt
193                 map.set (dcp::RS,     1, 1 / sqrt(2)); // Rs -> Rt
194         }
195
196         _butler.reset (new Butler(_player, _film->log(), map, _audio_channels, bind(&PlayerVideo::force, _1, AV_PIX_FMT_RGB24), false, true));
197         if (!Config::instance()->sound() && !_audio.isStreamOpen()) {
198                 _butler->disable_audio ();
199         }
200
201         _closed_captions_dialog->set_butler (_butler);
202
203         if (was_running) {
204                 start ();
205         }
206 }
207
208 void
209 FilmViewer::refresh_panel ()
210 {
211         _panel->Refresh ();
212         _panel->Update ();
213 }
214
215 void
216 FilmViewer::get ()
217 {
218         DCPOMATIC_ASSERT (_butler);
219
220         do {
221                 Butler::Error e;
222                 _player_video = _butler->get_video (&e);
223                 if (!_player_video.first && e == Butler::AGAIN) {
224                         signal_manager->when_idle (boost::bind(&FilmViewer::get, this));
225                         return;
226                 }
227         } while (
228                 _player_video.first &&
229                 _film->three_d() &&
230                 (_eyes != _player_video.first->eyes())
231                 );
232
233         _butler->rethrow ();
234
235         display_player_video ();
236 }
237
238 void
239 FilmViewer::display_player_video ()
240 {
241         if (!_player_video.first) {
242                 _frame.reset ();
243                 refresh_panel ();
244                 return;
245         }
246
247         if (_playing && (time() - _player_video.second) > one_video_frame()) {
248                 /* Too late; just drop this frame before we try to get its image (which will be the time-consuming
249                    part if this frame is J2K).
250                 */
251                 _video_position = _player_video.second;
252                 ++_dropped;
253                 return;
254         }
255
256         /* In an ideal world, what we would do here is:
257          *
258          * 1. convert to XYZ exactly as we do in the DCP creation path.
259          * 2. convert back to RGB for the preview display, compensating
260          *    for the monitor etc. etc.
261          *
262          * but this is inefficient if the source is RGB.  Since we don't
263          * (currently) care too much about the precise accuracy of the preview's
264          * colour mapping (and we care more about its speed) we try to short-
265          * circuit this "ideal" situation in some cases.
266          *
267          * The content's specified colour conversion indicates the colourspace
268          * which the content is in (according to the user).
269          *
270          * PlayerVideo::image (bound to PlayerVideo::force) will take the source
271          * image and convert it (from whatever the user has said it is) to RGB.
272          */
273
274         _frame = _player_video.first->image (bind(&PlayerVideo::force, _1, AV_PIX_FMT_RGB24), false, true);
275
276         ImageChanged (_player_video.first);
277
278         _video_position = _player_video.second;
279         _inter_position = _player_video.first->inter_position ();
280         _inter_size = _player_video.first->inter_size ();
281
282         refresh_panel ();
283
284         _closed_captions_dialog->update (time());
285 }
286
287 void
288 FilmViewer::timer ()
289 {
290         if (!_film || !_playing) {
291                 return;
292         }
293
294         get ();
295         PositionChanged ();
296         DCPTime const next = _video_position + one_video_frame();
297
298         if (next >= _film->length()) {
299                 stop ();
300         }
301
302         _timer.Start (max ((next.seconds() - time().seconds()) * 1000, 1.0), wxTIMER_ONE_SHOT);
303
304         if (_butler) {
305                 _butler->rethrow ();
306         }
307 }
308
309 void
310 FilmViewer::paint_panel ()
311 {
312         wxPaintDC dc (_panel);
313
314         if (!_frame || !_film || !_out_size.width || !_out_size.height || _out_size != _frame->size()) {
315                 dc.Clear ();
316 #ifdef DCPOMATIC_VARIANT_SWAROOP
317                 optional<boost::filesystem::path> bg = Config::instance()->player_background_image();
318                 if (bg) {
319                         wxImage image (std_to_wx(bg->string()));
320                         wxBitmap bitmap (image);
321                         dc.DrawBitmap (bitmap, max(0, (_panel_size.width - image.GetSize().GetWidth()) / 2), max(0, (_panel_size.height - image.GetSize().GetHeight()) / 2));
322                 }
323 #endif
324                 return;
325         }
326
327         wxImage frame (_out_size.width, _out_size.height, _frame->data()[0], true);
328         wxBitmap frame_bitmap (frame);
329         dc.DrawBitmap (frame_bitmap, 0, max(0, (_panel_size.height - _out_size.height) / 2));
330
331 #ifdef DCPOMATIC_VARIANT_SWAROOP
332         DCPTime const period = DCPTime::from_seconds(Config::instance()->player_watermark_period() * 60);
333         int64_t n = _video_position.get() / period.get();
334         DCPTime from(n * period.get());
335         DCPTime to = from + DCPTime::from_seconds(Config::instance()->player_watermark_duration() / 1000.0);
336         if (from <= _video_position && _video_position <= to) {
337                 if (!_in_watermark) {
338                         _in_watermark = true;
339                         _watermark_x = rand() % _panel_size.width;
340                         _watermark_y = rand() % _panel_size.height;
341                 }
342                 dc.SetTextForeground(*wxWHITE);
343                 string wm = Config::instance()->player_watermark_theatre();
344                 boost::posix_time::ptime t = boost::posix_time::second_clock::local_time();
345                 wm += "\n" + boost::posix_time::to_iso_extended_string(t);
346                 dc.DrawText(std_to_wx(wm), _watermark_x, _watermark_y);
347         } else {
348                 _in_watermark = false;
349         }
350 #endif
351
352         if (_out_size.width < _panel_size.width) {
353                 /* XXX: these colours are right for GNOME; may need adjusting for other OS */
354                 wxPen   p (_pad_black ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
355                 wxBrush b (_pad_black ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
356                 dc.SetPen (p);
357                 dc.SetBrush (b);
358                 dc.DrawRectangle (_out_size.width, 0, _panel_size.width - _out_size.width, _panel_size.height);
359         }
360
361         if (_out_size.height < _panel_size.height) {
362                 wxPen   p (_pad_black ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
363                 wxBrush b (_pad_black ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
364                 dc.SetPen (p);
365                 dc.SetBrush (b);
366                 int const gap = (_panel_size.height - _out_size.height) / 2;
367                 dc.DrawRectangle (0, 0, _panel_size.width, gap);
368                 dc.DrawRectangle (0, gap + _out_size.height + 1, _panel_size.width, gap);
369         }
370
371         if (_outline_content) {
372                 wxPen p (wxColour (255, 0, 0), 2);
373                 dc.SetPen (p);
374                 dc.SetBrush (*wxTRANSPARENT_BRUSH);
375                 dc.DrawRectangle (_inter_position.x, _inter_position.y + (_panel_size.height - _out_size.height) / 2, _inter_size.width, _inter_size.height);
376         }
377 }
378
379 void
380 FilmViewer::set_outline_content (bool o)
381 {
382         _outline_content = o;
383         refresh_panel ();
384 }
385
386 void
387 FilmViewer::set_eyes (Eyes e)
388 {
389         _eyes = e;
390         slow_refresh ();
391 }
392
393 void
394 FilmViewer::panel_sized (wxSizeEvent& ev)
395 {
396         _panel_size.width = ev.GetSize().GetWidth();
397         _panel_size.height = ev.GetSize().GetHeight();
398
399         calculate_sizes ();
400         if (!quick_refresh()) {
401                 slow_refresh ();
402         }
403         PositionChanged ();
404 }
405
406 void
407 FilmViewer::calculate_sizes ()
408 {
409         if (!_film || !_player) {
410                 return;
411         }
412
413         Ratio const * container = _film->container ();
414
415         float const panel_ratio = _panel_size.ratio ();
416         float const film_ratio = container ? container->ratio () : 1.78;
417
418         if (panel_ratio < film_ratio) {
419                 /* panel is less widscreen than the film; clamp width */
420                 _out_size.width = _panel_size.width;
421                 _out_size.height = lrintf (_out_size.width / film_ratio);
422         } else {
423                 /* panel is more widescreen than the film; clamp height */
424                 _out_size.height = _panel_size.height;
425                 _out_size.width = lrintf (_out_size.height * film_ratio);
426         }
427
428         /* Catch silly values */
429         _out_size.width = max (64, _out_size.width);
430         _out_size.height = max (64, _out_size.height);
431
432         _player->set_video_container_size (_out_size);
433 }
434
435 void
436 FilmViewer::start ()
437 {
438         if (!_film) {
439                 return;
440         }
441
442         optional<bool> v = PlaybackPermitted ();
443         if (v && !*v) {
444                 /* Computer says no */
445                 return;
446         }
447
448         if (_audio.isStreamOpen()) {
449                 _audio.setStreamTime (_video_position.seconds());
450                 _audio.startStream ();
451         }
452
453         _playing = true;
454         _dropped = 0;
455         timer ();
456         Started (position());
457 }
458
459 bool
460 FilmViewer::stop ()
461 {
462         if (_audio.isStreamRunning()) {
463                 /* stop stream and discard any remaining queued samples */
464                 _audio.abortStream ();
465         }
466
467         if (!_playing) {
468                 return false;
469         }
470
471         _playing = false;
472         Stopped (position());
473         return true;
474 }
475
476 void
477 FilmViewer::player_change (ChangeType type, int property, bool frequent)
478 {
479         if (type != CHANGE_TYPE_DONE || frequent) {
480                 return;
481         }
482
483         if (_coalesce_player_changes) {
484                 _pending_player_changes.push_back (property);
485                 return;
486         }
487
488         calculate_sizes ();
489         bool refreshed = false;
490         if (
491                 property == VideoContentProperty::CROP ||
492                 property == VideoContentProperty::SCALE ||
493                 property == VideoContentProperty::FADE_IN ||
494                 property == VideoContentProperty::FADE_OUT ||
495                 property == VideoContentProperty::COLOUR_CONVERSION ||
496                 property == PlayerProperty::VIDEO_CONTAINER_SIZE ||
497                 property == PlayerProperty::FILM_CONTAINER
498                 ) {
499                 refreshed = quick_refresh ();
500         }
501
502         if (!refreshed) {
503                 slow_refresh ();
504         }
505         PositionChanged ();
506 }
507
508 void
509 FilmViewer::film_change (ChangeType type, Film::Property p)
510 {
511         if (type == CHANGE_TYPE_DONE && p == Film::AUDIO_CHANNELS) {
512                 recreate_butler ();
513         }
514 }
515
516 /** Re-get the current frame slowly by seeking */
517 void
518 FilmViewer::slow_refresh ()
519 {
520         seek (_video_position, true);
521 }
522
523 /** Try to re-get the current frame quickly by resetting the metadata
524  *  in the PlayerVideo that we used last time.
525  *  @return true if this was possible, false if not.
526  */
527 bool
528 FilmViewer::quick_refresh ()
529 {
530         if (!_player_video.first) {
531                 return false;
532         }
533
534         if (!_player_video.first->reset_metadata (_player->video_container_size(), _film->frame_size())) {
535                 return false;
536         }
537
538         display_player_video ();
539         return true;
540 }
541
542 void
543 FilmViewer::seek (shared_ptr<Content> content, ContentTime t, bool accurate)
544 {
545         optional<DCPTime> dt = _player->content_time_to_dcp (content, t);
546         if (dt) {
547                 seek (*dt, accurate);
548         }
549 }
550
551 void
552 FilmViewer::set_coalesce_player_changes (bool c)
553 {
554         _coalesce_player_changes = c;
555
556         if (!c) {
557                 BOOST_FOREACH (int i, _pending_player_changes) {
558                         player_change (CHANGE_TYPE_DONE, i, false);
559                 }
560                 _pending_player_changes.clear ();
561         }
562 }
563
564 void
565 FilmViewer::seek (DCPTime t, bool accurate)
566 {
567         if (!_butler) {
568                 return;
569         }
570
571         if (t < DCPTime ()) {
572                 t = DCPTime ();
573         }
574
575         if (t >= _film->length ()) {
576                 t = _film->length ();
577         }
578
579         bool const was_running = stop ();
580
581         _closed_captions_dialog->clear ();
582         _butler->seek (t, accurate);
583         get ();
584
585         if (was_running) {
586                 start ();
587         }
588
589         PositionChanged ();
590         Seeked (position());
591 }
592
593 void
594 FilmViewer::config_changed (Config::Property p)
595 {
596 #ifdef DCPOMATIC_VARIANT_SWAROOP
597         if (p == Config::PLAYER_BACKGROUND_IMAGE) {
598                 refresh_panel ();
599                 return;
600         }
601 #endif
602
603         if (p != Config::SOUND && p != Config::SOUND_OUTPUT) {
604                 return;
605         }
606
607         if (_audio.isStreamOpen ()) {
608                 _audio.closeStream ();
609         }
610
611         if (Config::instance()->sound() && _audio.getDeviceCount() > 0) {
612                 unsigned int st = 0;
613                 if (Config::instance()->sound_output()) {
614                         while (st < _audio.getDeviceCount()) {
615                                 if (_audio.getDeviceInfo(st).name == Config::instance()->sound_output().get()) {
616                                         break;
617                                 }
618                                 ++st;
619                         }
620                         if (st == _audio.getDeviceCount()) {
621                                 st = _audio.getDefaultOutputDevice();
622                         }
623                 } else {
624                         st = _audio.getDefaultOutputDevice();
625                 }
626
627                 _audio_channels = _audio.getDeviceInfo(st).outputChannels;
628
629                 RtAudio::StreamParameters sp;
630                 sp.deviceId = st;
631                 sp.nChannels = _audio_channels;
632                 sp.firstChannel = 0;
633                 try {
634                         _audio.openStream (&sp, 0, RTAUDIO_FLOAT32, 48000, &_audio_block_size, &rtaudio_callback, this);
635 #ifdef DCPOMATIC_USE_RTERROR
636                 } catch (RtError& e) {
637 #else
638                 } catch (RtAudioError& e) {
639 #endif
640                         error_dialog (
641                                 _panel,
642                                 _("Could not set up audio output.  There will be no audio during the preview."), std_to_wx(e.what())
643                                 );
644                 }
645                 recreate_butler ();
646
647         } else {
648                 _audio_channels = 0;
649                 recreate_butler ();
650         }
651 }
652
653 DCPTime
654 FilmViewer::uncorrected_time () const
655 {
656         if (_audio.isStreamRunning ()) {
657                 return DCPTime::from_seconds (const_cast<RtAudio*>(&_audio)->getStreamTime());
658         }
659
660         return _video_position;
661 }
662
663 DCPTime
664 FilmViewer::time () const
665 {
666         if (_audio.isStreamRunning ()) {
667                 return DCPTime::from_seconds (const_cast<RtAudio*>(&_audio)->getStreamTime ()) -
668                         DCPTime::from_frames (average_latency(), _film->audio_frame_rate());
669         }
670
671         return _video_position;
672 }
673
674 int
675 FilmViewer::audio_callback (void* out_p, unsigned int frames)
676 {
677         while (true) {
678                 optional<DCPTime> t = _butler->get_audio (reinterpret_cast<float*> (out_p), frames);
679                 if (!t || DCPTime(uncorrected_time() - *t) < one_video_frame()) {
680                         /* There was an underrun or this audio is on time; carry on */
681                         break;
682                 }
683                 /* The audio we just got was (very) late; drop it and get some more. */
684         }
685
686         boost::mutex::scoped_lock lm (_latency_history_mutex, boost::try_to_lock);
687         if (lm) {
688                 _latency_history.push_back (_audio.getStreamLatency ());
689                 if (_latency_history.size() > static_cast<size_t> (_latency_history_count)) {
690                         _latency_history.pop_front ();
691                 }
692         }
693
694         return 0;
695 }
696
697 Frame
698 FilmViewer::average_latency () const
699 {
700         boost::mutex::scoped_lock lm (_latency_history_mutex);
701         if (_latency_history.empty()) {
702                 return 0;
703         }
704
705         Frame total = 0;
706         BOOST_FOREACH (Frame i, _latency_history) {
707                 total += i;
708         }
709
710         return total / _latency_history.size();
711 }
712
713 void
714 FilmViewer::set_dcp_decode_reduction (optional<int> reduction)
715 {
716         _dcp_decode_reduction = reduction;
717         if (_player) {
718                 _player->set_dcp_decode_reduction (reduction);
719         }
720 }
721
722 optional<int>
723 FilmViewer::dcp_decode_reduction () const
724 {
725         return _dcp_decode_reduction;
726 }
727
728 DCPTime
729 FilmViewer::one_video_frame () const
730 {
731         return DCPTime::from_frames (1, _film->video_frame_rate());
732 }
733
734 /** Open a dialog box showing our film's closed captions */
735 void
736 FilmViewer::show_closed_captions ()
737 {
738         _closed_captions_dialog->Show();
739 }
740
741 void
742 FilmViewer::seek_by (DCPTime by, bool accurate)
743 {
744         seek (_video_position + by, accurate);
745 }
746
747 void
748 FilmViewer::set_pad_black (bool p)
749 {
750         _pad_black = p;
751 }