swaroop: re-work background image logic.
[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         if (_background_image) {
335                 dc.Clear ();
336                 maybe_draw_background_image (dc);
337                 return;
338         }
339
340         if (!_out_size.width || !_out_size.height || !_film || !_frame || _out_size != _frame->size()) {
341                 dc.Clear ();
342                 return;
343         }
344
345         wxImage frame (_out_size.width, _out_size.height, _frame->data()[0], true);
346         wxBitmap frame_bitmap (frame);
347         dc.DrawBitmap (frame_bitmap, 0, max(0, (_panel_size.height - _out_size.height) / 2));
348
349 #ifdef DCPOMATIC_VARIANT_SWAROOP
350         DCPTime const period = DCPTime::from_seconds(Config::instance()->player_watermark_period() * 60);
351         int64_t n = _video_position.get() / period.get();
352         DCPTime from(n * period.get());
353         DCPTime to = from + DCPTime::from_seconds(Config::instance()->player_watermark_duration() / 1000.0);
354         if (from <= _video_position && _video_position <= to) {
355                 if (!_in_watermark) {
356                         _in_watermark = true;
357                         _watermark_x = rand() % _panel_size.width;
358                         _watermark_y = rand() % _panel_size.height;
359                 }
360                 dc.SetTextForeground(*wxWHITE);
361                 string wm = Config::instance()->player_watermark_theatre();
362                 boost::posix_time::ptime t = boost::posix_time::second_clock::local_time();
363                 wm += "\n" + boost::posix_time::to_iso_extended_string(t);
364                 dc.DrawText(std_to_wx(wm), _watermark_x, _watermark_y);
365         } else {
366                 _in_watermark = false;
367         }
368 #endif
369
370         if (_out_size.width < _panel_size.width) {
371                 /* XXX: these colours are right for GNOME; may need adjusting for other OS */
372                 wxPen   p (_pad_black ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
373                 wxBrush b (_pad_black ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
374                 dc.SetPen (p);
375                 dc.SetBrush (b);
376                 dc.DrawRectangle (_out_size.width, 0, _panel_size.width - _out_size.width, _panel_size.height);
377         }
378
379         if (_out_size.height < _panel_size.height) {
380                 wxPen   p (_pad_black ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
381                 wxBrush b (_pad_black ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
382                 dc.SetPen (p);
383                 dc.SetBrush (b);
384                 int const gap = (_panel_size.height - _out_size.height) / 2;
385                 dc.DrawRectangle (0, 0, _panel_size.width, gap);
386                 dc.DrawRectangle (0, gap + _out_size.height + 1, _panel_size.width, gap);
387         }
388
389         if (_outline_content) {
390                 wxPen p (wxColour (255, 0, 0), 2);
391                 dc.SetPen (p);
392                 dc.SetBrush (*wxTRANSPARENT_BRUSH);
393                 dc.DrawRectangle (_inter_position.x, _inter_position.y + (_panel_size.height - _out_size.height) / 2, _inter_size.width, _inter_size.height);
394         }
395 }
396
397 void
398 FilmViewer::set_outline_content (bool o)
399 {
400         _outline_content = o;
401         refresh_panel ();
402 }
403
404 void
405 FilmViewer::set_eyes (Eyes e)
406 {
407         _eyes = e;
408         slow_refresh ();
409 }
410
411 void
412 FilmViewer::panel_sized (wxSizeEvent& ev)
413 {
414         _panel_size.width = ev.GetSize().GetWidth();
415         _panel_size.height = ev.GetSize().GetHeight();
416
417         calculate_sizes ();
418         if (!quick_refresh()) {
419                 slow_refresh ();
420         }
421         PositionChanged ();
422 }
423
424 void
425 FilmViewer::calculate_sizes ()
426 {
427         if (!_film || !_player) {
428                 return;
429         }
430
431         Ratio const * container = _film->container ();
432
433         float const panel_ratio = _panel_size.ratio ();
434         float const film_ratio = container ? container->ratio () : 1.78;
435
436         if (panel_ratio < film_ratio) {
437                 /* panel is less widscreen than the film; clamp width */
438                 _out_size.width = _panel_size.width;
439                 _out_size.height = lrintf (_out_size.width / film_ratio);
440         } else {
441                 /* panel is more widescreen than the film; clamp height */
442                 _out_size.height = _panel_size.height;
443                 _out_size.width = lrintf (_out_size.height * film_ratio);
444         }
445
446         /* Catch silly values */
447         _out_size.width = max (64, _out_size.width);
448         _out_size.height = max (64, _out_size.height);
449
450         _player->set_video_container_size (_out_size);
451 }
452
453 void
454 FilmViewer::start ()
455 {
456         if (!_film) {
457                 return;
458         }
459
460         optional<bool> v = PlaybackPermitted ();
461         if (v && !*v) {
462                 /* Computer says no */
463                 return;
464         }
465
466         if (_audio.isStreamOpen()) {
467                 _audio.setStreamTime (_video_position.seconds());
468                 _audio.startStream ();
469         }
470
471         _playing = true;
472         _dropped = 0;
473         timer ();
474         Started (position());
475 }
476
477 bool
478 FilmViewer::stop ()
479 {
480         if (_audio.isStreamRunning()) {
481                 /* stop stream and discard any remaining queued samples */
482                 _audio.abortStream ();
483         }
484
485         if (!_playing) {
486                 return false;
487         }
488
489         _playing = false;
490         Stopped (position());
491         return true;
492 }
493
494 void
495 FilmViewer::player_change (ChangeType type, int property, bool frequent)
496 {
497         if (type != CHANGE_TYPE_DONE || frequent) {
498                 return;
499         }
500
501         if (_coalesce_player_changes) {
502                 _pending_player_changes.push_back (property);
503                 return;
504         }
505
506         calculate_sizes ();
507         bool refreshed = false;
508         if (
509                 property == VideoContentProperty::CROP ||
510                 property == VideoContentProperty::SCALE ||
511                 property == VideoContentProperty::FADE_IN ||
512                 property == VideoContentProperty::FADE_OUT ||
513                 property == VideoContentProperty::COLOUR_CONVERSION ||
514                 property == PlayerProperty::VIDEO_CONTAINER_SIZE ||
515                 property == PlayerProperty::FILM_CONTAINER
516                 ) {
517                 refreshed = quick_refresh ();
518         }
519
520         if (!refreshed) {
521                 slow_refresh ();
522         }
523         PositionChanged ();
524 }
525
526 void
527 FilmViewer::film_change (ChangeType type, Film::Property p)
528 {
529         if (type == CHANGE_TYPE_DONE && p == Film::AUDIO_CHANNELS) {
530                 recreate_butler ();
531         }
532 }
533
534 /** Re-get the current frame slowly by seeking */
535 void
536 FilmViewer::slow_refresh ()
537 {
538         seek (_video_position, true);
539 }
540
541 /** Try to re-get the current frame quickly by resetting the metadata
542  *  in the PlayerVideo that we used last time.
543  *  @return true if this was possible, false if not.
544  */
545 bool
546 FilmViewer::quick_refresh ()
547 {
548         if (!_player_video.first) {
549                 return false;
550         }
551
552         if (!_player_video.first->reset_metadata (_film, _player->video_container_size(), _film->frame_size())) {
553                 return false;
554         }
555
556         display_player_video ();
557         return true;
558 }
559
560 void
561 FilmViewer::seek (shared_ptr<Content> content, ContentTime t, bool accurate)
562 {
563         optional<DCPTime> dt = _player->content_time_to_dcp (content, t);
564         if (dt) {
565                 seek (*dt, accurate);
566         }
567 }
568
569 void
570 FilmViewer::set_coalesce_player_changes (bool c)
571 {
572         _coalesce_player_changes = c;
573
574         if (!c) {
575                 BOOST_FOREACH (int i, _pending_player_changes) {
576                         player_change (CHANGE_TYPE_DONE, i, false);
577                 }
578                 _pending_player_changes.clear ();
579         }
580 }
581
582 void
583 FilmViewer::seek (DCPTime t, bool accurate)
584 {
585         if (!_butler) {
586                 return;
587         }
588
589         if (t < DCPTime ()) {
590                 t = DCPTime ();
591         }
592
593         if (t >= _film->length ()) {
594                 t = _film->length ();
595         }
596
597         bool const was_running = stop ();
598
599         _closed_captions_dialog->clear ();
600         _butler->seek (t, accurate);
601         get ();
602
603         if (was_running) {
604                 start ();
605         }
606
607         PositionChanged ();
608 }
609
610 void
611 FilmViewer::config_changed (Config::Property p)
612 {
613 #ifdef DCPOMATIC_VARIANT_SWAROOP
614         if (p == Config::PLAYER_BACKGROUND_IMAGE) {
615                 refresh_panel ();
616                 return;
617         }
618 #endif
619
620         if (p != Config::SOUND && p != Config::SOUND_OUTPUT) {
621                 return;
622         }
623
624         if (_audio.isStreamOpen ()) {
625                 _audio.closeStream ();
626         }
627
628         if (Config::instance()->sound() && _audio.getDeviceCount() > 0) {
629                 unsigned int st = 0;
630                 if (Config::instance()->sound_output()) {
631                         while (st < _audio.getDeviceCount()) {
632                                 if (_audio.getDeviceInfo(st).name == Config::instance()->sound_output().get()) {
633                                         break;
634                                 }
635                                 ++st;
636                         }
637                         if (st == _audio.getDeviceCount()) {
638                                 st = _audio.getDefaultOutputDevice();
639                         }
640                 } else {
641                         st = _audio.getDefaultOutputDevice();
642                 }
643
644                 _audio_channels = _audio.getDeviceInfo(st).outputChannels;
645
646                 RtAudio::StreamParameters sp;
647                 sp.deviceId = st;
648                 sp.nChannels = _audio_channels;
649                 sp.firstChannel = 0;
650                 try {
651                         _audio.openStream (&sp, 0, RTAUDIO_FLOAT32, 48000, &_audio_block_size, &rtaudio_callback, this);
652 #ifdef DCPOMATIC_USE_RTERROR
653                 } catch (RtError& e) {
654 #else
655                 } catch (RtAudioError& e) {
656 #endif
657                         error_dialog (
658                                 _panel,
659                                 _("Could not set up audio output.  There will be no audio during the preview."), std_to_wx(e.what())
660                                 );
661                 }
662                 recreate_butler ();
663
664         } else {
665                 _audio_channels = 0;
666                 recreate_butler ();
667         }
668 }
669
670 DCPTime
671 FilmViewer::uncorrected_time () const
672 {
673         if (_audio.isStreamRunning ()) {
674                 return DCPTime::from_seconds (const_cast<RtAudio*>(&_audio)->getStreamTime());
675         }
676
677         return _video_position;
678 }
679
680 DCPTime
681 FilmViewer::time () const
682 {
683         if (_audio.isStreamRunning ()) {
684                 return DCPTime::from_seconds (const_cast<RtAudio*>(&_audio)->getStreamTime ()) -
685                         DCPTime::from_frames (average_latency(), _film->audio_frame_rate());
686         }
687
688         return _video_position;
689 }
690
691 int
692 FilmViewer::audio_callback (void* out_p, unsigned int frames)
693 {
694         while (true) {
695                 optional<DCPTime> t = _butler->get_audio (reinterpret_cast<float*> (out_p), frames);
696                 if (!t || DCPTime(uncorrected_time() - *t) < one_video_frame()) {
697                         /* There was an underrun or this audio is on time; carry on */
698                         break;
699                 }
700                 /* The audio we just got was (very) late; drop it and get some more. */
701         }
702
703         boost::mutex::scoped_lock lm (_latency_history_mutex, boost::try_to_lock);
704         if (lm) {
705                 _latency_history.push_back (_audio.getStreamLatency ());
706                 if (_latency_history.size() > static_cast<size_t> (_latency_history_count)) {
707                         _latency_history.pop_front ();
708                 }
709         }
710
711         return 0;
712 }
713
714 Frame
715 FilmViewer::average_latency () const
716 {
717         boost::mutex::scoped_lock lm (_latency_history_mutex);
718         if (_latency_history.empty()) {
719                 return 0;
720         }
721
722         Frame total = 0;
723         BOOST_FOREACH (Frame i, _latency_history) {
724                 total += i;
725         }
726
727         return total / _latency_history.size();
728 }
729
730 void
731 FilmViewer::set_dcp_decode_reduction (optional<int> reduction)
732 {
733         _dcp_decode_reduction = reduction;
734         if (_player) {
735                 _player->set_dcp_decode_reduction (reduction);
736         }
737 }
738
739 optional<int>
740 FilmViewer::dcp_decode_reduction () const
741 {
742         return _dcp_decode_reduction;
743 }
744
745 DCPTime
746 FilmViewer::one_video_frame () const
747 {
748         return DCPTime::from_frames (1, _film->video_frame_rate());
749 }
750
751 /** Open a dialog box showing our film's closed captions */
752 void
753 FilmViewer::show_closed_captions ()
754 {
755         _closed_captions_dialog->Show();
756 }
757
758 void
759 FilmViewer::seek_by (DCPTime by, bool accurate)
760 {
761         seek (_video_position + by, accurate);
762 }
763
764 void
765 FilmViewer::set_pad_black (bool p)
766 {
767         _pad_black = p;
768 }