Extract dpi_scale_factor() to a function.
[dcpomatic.git] / src / wx / film_viewer.cc
1 /*
2     Copyright (C) 2012-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 /** @file  src/film_viewer.cc
23  *  @brief A wx widget to view a preview of a Film.
24  */
25
26
27 #include "closed_captions_dialog.h"
28 #include "film_viewer.h"
29 #include "gl_video_view.h"
30 #include "nag_dialog.h"
31 #include "playhead_to_frame_dialog.h"
32 #include "playhead_to_timecode_dialog.h"
33 #include "simple_video_view.h"
34 #include "wx_util.h"
35 #include "lib/film.h"
36 #include "lib/ratio.h"
37 #include "lib/util.h"
38 #include "lib/job_manager.h"
39 #include "lib/image.h"
40 #include "lib/exceptions.h"
41 #include "lib/examine_content_job.h"
42 #include "lib/filter.h"
43 #include "lib/player.h"
44 #include "lib/player_video.h"
45 #include "lib/video_content.h"
46 #include "lib/video_decoder.h"
47 #include "lib/timer.h"
48 #include "lib/butler.h"
49 #include "lib/log.h"
50 #include "lib/config.h"
51 #include "lib/compose.hpp"
52 #include "lib/dcpomatic_log.h"
53 #include "lib/text_content.h"
54 extern "C" {
55 #include <libavutil/pixfmt.h>
56 }
57 #include <dcp/exceptions.h>
58 #include <wx/tglbtn.h>
59 #include <iostream>
60 #include <iomanip>
61
62
63 using std::bad_alloc;
64 using std::cout;
65 using std::dynamic_pointer_cast;
66 using std::make_shared;
67 using std::max;
68 using std::shared_ptr;
69 using std::string;
70 using std::vector;
71 using boost::optional;
72 #if BOOST_VERSION >= 106100
73 using namespace boost::placeholders;
74 #endif
75 using dcp::Size;
76 using namespace dcpomatic;
77
78
79 static
80 int
81 rtaudio_callback (void* out, void *, unsigned int frames, double, RtAudioStreamStatus, void* data)
82 {
83         return reinterpret_cast<FilmViewer*>(data)->audio_callback (out, frames);
84 }
85
86
87 FilmViewer::FilmViewer (wxWindow* p)
88         : _audio (DCPOMATIC_RTAUDIO_API)
89         , _closed_captions_dialog (new ClosedCaptionsDialog(p, this))
90 {
91 #if wxCHECK_VERSION(3, 1, 0)
92         switch (Config::instance()->video_view_type()) {
93         case Config::VIDEO_VIEW_OPENGL:
94                 _video_view = std::make_shared<GLVideoView>(this, p);
95                 break;
96         case Config::VIDEO_VIEW_SIMPLE:
97                 _video_view = std::make_shared<SimpleVideoView>(this, p);
98                 break;
99         }
100 #else
101         _video_view = std::make_shared<SimpleVideoView>(this, p);
102 #endif
103
104         _video_view->Sized.connect (boost::bind(&FilmViewer::video_view_sized, this));
105         _video_view->TooManyDropped.connect (boost::bind(boost::ref(TooManyDropped)));
106
107         set_film (shared_ptr<Film>());
108
109         _config_changed_connection = Config::instance()->Changed.connect(bind(&FilmViewer::config_changed, this, _1));
110         config_changed (Config::SOUND_OUTPUT);
111 }
112
113
114 FilmViewer::~FilmViewer ()
115 {
116         stop ();
117 }
118
119
120 /** Ask for ::get() to be called next time we are idle */
121 void
122 FilmViewer::request_idle_display_next_frame ()
123 {
124         if (_idle_get) {
125                 return;
126         }
127
128         _idle_get = true;
129         DCPOMATIC_ASSERT (signal_manager);
130         signal_manager->when_idle (boost::bind(&FilmViewer::idle_handler, this));
131 }
132
133
134 void
135 FilmViewer::idle_handler ()
136 {
137         if (!_idle_get) {
138                 return;
139         }
140
141         if (_video_view->display_next_frame(true) == VideoView::AGAIN) {
142                 /* get() could not complete quickly so we'll try again later */
143                 signal_manager->when_idle (boost::bind(&FilmViewer::idle_handler, this));
144         } else {
145                 _idle_get = false;
146         }
147 }
148
149
150 void
151 FilmViewer::set_film (shared_ptr<Film> film)
152 {
153         if (_film == film) {
154                 return;
155         }
156
157         _film = film;
158
159         _video_view->clear ();
160         _closed_captions_dialog->clear ();
161
162         if (!_film) {
163                 _player.reset ();
164                 recreate_butler ();
165                 _video_view->update ();
166                 return;
167         }
168
169         try {
170                 _player = make_shared<Player>(_film, _optimise_for_j2k ? Image::Alignment::COMPACT : Image::Alignment::PADDED);
171                 _player->set_fast ();
172                 if (_dcp_decode_reduction) {
173                         _player->set_dcp_decode_reduction (_dcp_decode_reduction);
174                 }
175         } catch (bad_alloc &) {
176                 error_dialog (_video_view->get(), _("There is not enough free memory to do that."));
177                 _film.reset ();
178                 return;
179         }
180
181         _player->set_always_burn_open_subtitles ();
182         _player->set_play_referenced ();
183
184         _film->Change.connect (boost::bind (&FilmViewer::film_change, this, _1, _2));
185         _film->LengthChange.connect (boost::bind(&FilmViewer::film_length_change, this));
186         _player->Change.connect (boost::bind (&FilmViewer::player_change, this, _1, _2, _3));
187
188         film_change (ChangeType::DONE, Film::Property::VIDEO_FRAME_RATE);
189         film_change (ChangeType::DONE, Film::Property::THREE_D);
190         film_length_change ();
191
192         /* Keep about 1 second's worth of history samples */
193         _latency_history_count = _film->audio_frame_rate() / _audio_block_size;
194
195         _closed_captions_dialog->update_tracks (_film);
196
197         recreate_butler ();
198
199         calculate_sizes ();
200         slow_refresh ();
201 }
202
203
204 void
205 FilmViewer::recreate_butler ()
206 {
207         suspend ();
208         _butler.reset ();
209
210         if (!_film) {
211                 resume ();
212                 return;
213         }
214
215 #if wxCHECK_VERSION(3, 1, 0)
216         auto const j2k_gl_optimised = dynamic_pointer_cast<GLVideoView>(_video_view) && _optimise_for_j2k;
217 #else
218         auto const j2k_gl_optimised = false;
219 #endif
220
221         _butler = std::make_shared<Butler>(
222                 _film,
223                 _player,
224                 Config::instance()->audio_mapping(_audio_channels),
225                 _audio_channels,
226                 bind(&PlayerVideo::force, _1, AV_PIX_FMT_RGB24),
227                 VideoRange::FULL,
228                 j2k_gl_optimised ? Image::Alignment::COMPACT : Image::Alignment::PADDED,
229                 true,
230                 j2k_gl_optimised
231                 );
232
233         if (!Config::instance()->sound() && !_audio.isStreamOpen()) {
234                 _butler->disable_audio ();
235         }
236
237         _closed_captions_dialog->set_butler (_butler);
238
239         resume ();
240 }
241
242
243 void
244 FilmViewer::set_outline_content (bool o)
245 {
246         _outline_content = o;
247         _video_view->update ();
248 }
249
250
251 void
252 FilmViewer::set_outline_subtitles (optional<dcpomatic::Rect<double>> rect)
253 {
254         _outline_subtitles = rect;
255         _video_view->update ();
256 }
257
258
259 void
260 FilmViewer::set_eyes (Eyes e)
261 {
262         _video_view->set_eyes (e);
263         slow_refresh ();
264 }
265
266
267 void
268 FilmViewer::video_view_sized ()
269 {
270         calculate_sizes ();
271         if (!quick_refresh()) {
272                 slow_refresh ();
273         }
274 }
275
276
277 void
278 FilmViewer::calculate_sizes ()
279 {
280         if (!_film || !_player) {
281                 return;
282         }
283
284         auto const container = _film->container ();
285
286         auto const scale = dpi_scale_factor (_video_view->get());
287         int const video_view_width = std::round(_video_view->get()->GetSize().x * scale);
288         int const video_view_height = std::round(_video_view->get()->GetSize().y * scale);
289
290         auto const view_ratio = float(video_view_width) / video_view_height;
291         auto const film_ratio = container ? container->ratio () : 1.78;
292
293         dcp::Size out_size;
294         if (view_ratio < film_ratio) {
295                 /* panel is less widscreen than the film; clamp width */
296                 out_size.width = video_view_width;
297                 out_size.height = lrintf (out_size.width / film_ratio);
298         } else {
299                 /* panel is more widescreen than the film; clamp height */
300                 out_size.height = video_view_height;
301                 out_size.width = lrintf (out_size.height * film_ratio);
302         }
303
304         /* Catch silly values */
305         out_size.width = max (64, out_size.width);
306         out_size.height = max (64, out_size.height);
307
308         _player->set_video_container_size (out_size);
309 }
310
311
312 void
313 FilmViewer::suspend ()
314 {
315         ++_suspended;
316         if (_audio.isStreamRunning()) {
317                 _audio.abortStream();
318         }
319 }
320
321
322 void
323 FilmViewer::resume ()
324 {
325         DCPOMATIC_ASSERT (_suspended > 0);
326         --_suspended;
327         if (_playing && !_suspended) {
328                 if (_audio.isStreamOpen()) {
329                         _audio.setStreamTime (_video_view->position().seconds());
330                         _audio.startStream ();
331                 }
332                 _video_view->start ();
333         }
334 }
335
336
337 void
338 FilmViewer::start ()
339 {
340         if (!_film) {
341                 return;
342         }
343
344         auto v = PlaybackPermitted ();
345         if (v && !*v) {
346                 /* Computer says no */
347                 return;
348         }
349
350         /* We are about to set up the audio stream from the position of the video view.
351            If there is `lazy' seek in progress we need to wait for it to go through so that
352            _video_view->position() gives us a sensible answer.
353          */
354         while (_idle_get) {
355                 idle_handler ();
356         }
357
358         /* Take the video view's idea of position as our `playhead' and start the
359            audio stream (which is the timing reference) there.
360          */
361         if (_audio.isStreamOpen()) {
362                 _audio.setStreamTime (_video_view->position().seconds());
363                 try {
364                         _audio.startStream ();
365                 } catch (RtAudioError& e) {
366                         _audio_channels = 0;
367                         error_dialog (
368                                 _video_view->get(),
369                                 _("There was a problem starting audio playback.  Please try another audio output device in Preferences."), std_to_wx(e.what())
370                                 );
371                 }
372         }
373
374         _playing = true;
375         /* Calling start() below may directly result in Stopped being emitted, and if that
376          * happens we want it to come after the Started signal, so do that first.
377          */
378         Started ();
379         _video_view->start ();
380 }
381
382
383 bool
384 FilmViewer::stop ()
385 {
386         if (_audio.isStreamRunning()) {
387                 /* stop stream and discard any remaining queued samples */
388                 _audio.abortStream ();
389         }
390
391         if (!_playing) {
392                 return false;
393         }
394
395         _playing = false;
396         _video_view->stop ();
397         Stopped ();
398
399         _video_view->rethrow ();
400         return true;
401 }
402
403
404 void
405 FilmViewer::player_change (ChangeType type, int property, bool frequent)
406 {
407         if (type != ChangeType::DONE || frequent) {
408                 return;
409         }
410
411         if (_coalesce_player_changes) {
412                 _pending_player_changes.push_back (property);
413                 return;
414         }
415
416         player_change ({property});
417 }
418
419
420 void
421 FilmViewer::player_change (vector<int> properties)
422 {
423         calculate_sizes ();
424
425         bool try_quick_refresh = false;
426         bool update_ccap_tracks = false;
427
428         for (auto i: properties) {
429                 if (
430                         i == VideoContentProperty::CROP ||
431                         i == VideoContentProperty::CUSTOM_RATIO ||
432                         i == VideoContentProperty::CUSTOM_SIZE ||
433                         i == VideoContentProperty::FADE_IN ||
434                         i == VideoContentProperty::FADE_OUT ||
435                         i == VideoContentProperty::COLOUR_CONVERSION ||
436                         i == PlayerProperty::VIDEO_CONTAINER_SIZE ||
437                         i == PlayerProperty::FILM_CONTAINER
438                    ) {
439                         try_quick_refresh = true;
440                 }
441
442                 if (i == TextContentProperty::USE || i == TextContentProperty::TYPE || i == TextContentProperty::DCP_TRACK) {
443                         update_ccap_tracks = true;
444                 }
445         }
446
447         if (!try_quick_refresh || !quick_refresh()) {
448                 slow_refresh ();
449         }
450
451         if (update_ccap_tracks) {
452                 _closed_captions_dialog->update_tracks (_film);
453         }
454 }
455
456
457 void
458 FilmViewer::film_change (ChangeType type, Film::Property p)
459 {
460         if (type != ChangeType::DONE) {
461                 return;
462         }
463
464         if (p == Film::Property::AUDIO_CHANNELS) {
465                 recreate_butler ();
466         } else if (p == Film::Property::VIDEO_FRAME_RATE) {
467                 _video_view->set_video_frame_rate (_film->video_frame_rate());
468         } else if (p == Film::Property::THREE_D) {
469                 _video_view->set_three_d (_film->three_d());
470         } else if (p == Film::Property::CONTENT) {
471                 _closed_captions_dialog->update_tracks (_film);
472         }
473 }
474
475
476 void
477 FilmViewer::film_length_change ()
478 {
479         _video_view->set_length (_film->length());
480 }
481
482
483 /** Re-get the current frame slowly by seeking */
484 void
485 FilmViewer::slow_refresh ()
486 {
487         seek (_video_view->position(), true);
488 }
489
490
491 /** Try to re-get the current frame quickly by resetting the metadata
492  *  in the PlayerVideo that we used last time.
493  *  @return true if this was possible, false if not.
494  */
495 bool
496 FilmViewer::quick_refresh ()
497 {
498         if (!_video_view || !_film || !_player) {
499                 return true;
500         }
501         return _video_view->reset_metadata (_film, _player->video_container_size());
502 }
503
504
505 void
506 FilmViewer::seek (shared_ptr<Content> content, ContentTime t, bool accurate)
507 {
508         auto dt = _player->content_time_to_dcp (content, t);
509         if (dt) {
510                 seek (*dt, accurate);
511         }
512 }
513
514
515 void
516 FilmViewer::set_coalesce_player_changes (bool c)
517 {
518         _coalesce_player_changes = c;
519
520         if (!c) {
521                 player_change (_pending_player_changes);
522                 _pending_player_changes.clear ();
523         }
524 }
525
526
527 void
528 FilmViewer::seek (DCPTime t, bool accurate)
529 {
530         if (!_butler) {
531                 return;
532         }
533
534         if (t < DCPTime()) {
535                 t = DCPTime ();
536         }
537
538         if (t >= _film->length()) {
539                 t = _film->length() - one_video_frame();
540         }
541
542         suspend ();
543
544         _closed_captions_dialog->clear ();
545         _butler->seek (t, accurate);
546
547         if (!_playing) {
548                 /* We're not playing, so let the GUI thread get on and
549                    come back later to get the next frame after the seek.
550                 */
551                 request_idle_display_next_frame ();
552         } else {
553                 /* We're going to start playing again straight away
554                    so wait for the seek to finish.
555                 */
556                 while (_video_view->display_next_frame(false) == VideoView::AGAIN) {}
557         }
558
559         resume ();
560 }
561
562
563 void
564 FilmViewer::config_changed (Config::Property p)
565 {
566         if (p == Config::AUDIO_MAPPING) {
567                 recreate_butler ();
568                 return;
569         }
570
571         if (p != Config::SOUND && p != Config::SOUND_OUTPUT) {
572                 return;
573         }
574
575         if (_audio.isStreamOpen ()) {
576                 _audio.closeStream ();
577         }
578
579         if (Config::instance()->sound() && _audio.getDeviceCount() > 0) {
580                 unsigned int st = 0;
581                 if (Config::instance()->sound_output()) {
582                         while (st < _audio.getDeviceCount()) {
583                                 try {
584                                         if (_audio.getDeviceInfo(st).name == Config::instance()->sound_output().get()) {
585                                                 break;
586                                         }
587                                 } catch (RtAudioError&) {
588                                         /* Something went wrong with that device so we don't want to use it anyway */
589                                 }
590                                 ++st;
591                         }
592                         if (st == _audio.getDeviceCount()) {
593                                 st = _audio.getDefaultOutputDevice();
594                         }
595                 } else {
596                         st = _audio.getDefaultOutputDevice();
597                 }
598
599                 try {
600                         _audio_channels = _audio.getDeviceInfo(st).outputChannels;
601                         RtAudio::StreamParameters sp;
602                         sp.deviceId = st;
603                         sp.nChannels = _audio_channels;
604                         sp.firstChannel = 0;
605                         _audio.openStream (&sp, 0, RTAUDIO_FLOAT32, 48000, &_audio_block_size, &rtaudio_callback, this);
606                 } catch (RtAudioError& e) {
607                         _audio_channels = 0;
608                         error_dialog (
609                                 _video_view->get(),
610                                 _("Could not set up audio output.  There will be no audio during the preview."), std_to_wx(e.what())
611                                 );
612                 }
613                 recreate_butler ();
614
615         } else {
616                 _audio_channels = 0;
617                 recreate_butler ();
618         }
619 }
620
621
622 DCPTime
623 FilmViewer::uncorrected_time () const
624 {
625         if (_audio.isStreamRunning()) {
626                 return DCPTime::from_seconds (const_cast<RtAudio*>(&_audio)->getStreamTime());
627         }
628
629         return _video_view->position();
630 }
631
632
633 optional<DCPTime>
634 FilmViewer::audio_time () const
635 {
636         if (!_audio.isStreamRunning()) {
637                 return {};
638         }
639
640         return DCPTime::from_seconds (const_cast<RtAudio*>(&_audio)->getStreamTime ()) -
641                 DCPTime::from_frames (average_latency(), _film->audio_frame_rate());
642 }
643
644
645 DCPTime
646 FilmViewer::time () const
647 {
648         return audio_time().get_value_or(_video_view->position());
649 }
650
651
652 int
653 FilmViewer::audio_callback (void* out_p, unsigned int frames)
654 {
655         while (true) {
656                 auto t = _butler->get_audio (Butler::Behaviour::NON_BLOCKING, reinterpret_cast<float*> (out_p), frames);
657                 if (!t || DCPTime(uncorrected_time() - *t) < one_video_frame()) {
658                         /* There was an underrun or this audio is on time; carry on */
659                         break;
660                 }
661                 /* The audio we just got was (very) late; drop it and get some more. */
662         }
663
664         boost::mutex::scoped_lock lm (_latency_history_mutex, boost::try_to_lock);
665         if (lm) {
666                 _latency_history.push_back (_audio.getStreamLatency ());
667                 if (_latency_history.size() > static_cast<size_t> (_latency_history_count)) {
668                         _latency_history.pop_front ();
669                 }
670         }
671
672         return 0;
673 }
674
675
676 Frame
677 FilmViewer::average_latency () const
678 {
679         boost::mutex::scoped_lock lm (_latency_history_mutex);
680         if (_latency_history.empty()) {
681                 return 0;
682         }
683
684         Frame total = 0;
685         for (auto i: _latency_history) {
686                 total += i;
687         }
688
689         return total / _latency_history.size();
690 }
691
692
693 void
694 FilmViewer::set_dcp_decode_reduction (optional<int> reduction)
695 {
696         _dcp_decode_reduction = reduction;
697         if (_player) {
698                 _player->set_dcp_decode_reduction (reduction);
699         }
700 }
701
702
703 optional<int>
704 FilmViewer::dcp_decode_reduction () const
705 {
706         return _dcp_decode_reduction;
707 }
708
709
710 DCPTime
711 FilmViewer::one_video_frame () const
712 {
713         return DCPTime::from_frames (1, _film ? _film->video_frame_rate() : 24);
714 }
715
716
717 /** Open a dialog box showing our film's closed captions */
718 void
719 FilmViewer::show_closed_captions ()
720 {
721         _closed_captions_dialog->Show();
722 }
723
724
725 void
726 FilmViewer::seek_by (DCPTime by, bool accurate)
727 {
728         seek (_video_view->position() + by, accurate);
729 }
730
731
732 void
733 FilmViewer::set_pad_black (bool p)
734 {
735         _pad_black = p;
736 }
737
738
739 /** Called when a player has finished the current film.
740  *  May be called from a non-UI thread.
741  */
742 void
743 FilmViewer::finished ()
744 {
745         emit (boost::bind(&FilmViewer::ui_finished, this));
746 }
747
748
749 /** Called by finished() in the UI thread */
750 void
751 FilmViewer::ui_finished ()
752 {
753         stop ();
754         Finished ();
755 }
756
757
758 int
759 FilmViewer::dropped () const
760 {
761         return _video_view->dropped ();
762 }
763
764
765 int
766 FilmViewer::errored () const
767 {
768         return _video_view->errored ();
769 }
770
771
772 int
773 FilmViewer::gets () const
774 {
775         return _video_view->gets ();
776 }
777
778
779 void
780 FilmViewer::image_changed (shared_ptr<PlayerVideo> pv)
781 {
782         emit (boost::bind(boost::ref(ImageChanged), pv));
783 }
784
785
786 void
787 FilmViewer::set_optimise_for_j2k (bool o)
788 {
789         _optimise_for_j2k = o;
790         _video_view->set_optimise_for_j2k (o);
791 }
792