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