Fix erroneous overlaid controls in the player.
[dcpomatic.git] / src / wx / film_viewer.cc
1 /*
2     Copyright (C) 2012-2016 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 "lib/film.h"
30 #include "lib/ratio.h"
31 #include "lib/util.h"
32 #include "lib/job_manager.h"
33 #include "lib/image.h"
34 #include "lib/exceptions.h"
35 #include "lib/examine_content_job.h"
36 #include "lib/filter.h"
37 #include "lib/player.h"
38 #include "lib/player_video.h"
39 #include "lib/video_content.h"
40 #include "lib/video_decoder.h"
41 #include "lib/timer.h"
42 #include "lib/butler.h"
43 #include "lib/log.h"
44 #include "lib/config.h"
45 extern "C" {
46 #include <libavutil/pixfmt.h>
47 }
48 #include <dcp/exceptions.h>
49 #include <wx/tglbtn.h>
50 #include <iostream>
51 #include <iomanip>
52
53 using std::string;
54 using std::pair;
55 using std::min;
56 using std::max;
57 using std::cout;
58 using std::list;
59 using std::bad_alloc;
60 using std::make_pair;
61 using std::exception;
62 using boost::shared_ptr;
63 using boost::dynamic_pointer_cast;
64 using boost::weak_ptr;
65 using boost::optional;
66 using dcp::Size;
67
68 static
69 int
70 rtaudio_callback (void* out, void *, unsigned int frames, double, RtAudioStreamStatus, void* data)
71 {
72         return reinterpret_cast<FilmViewer*>(data)->audio_callback (out, frames);
73 }
74
75 FilmViewer::FilmViewer (wxWindow* p, bool outline_content, bool jump_to_selected)
76         : wxPanel (p)
77         , _panel (new wxPanel (this))
78         , _outline_content (0)
79         , _left_eye (new wxRadioButton (this, wxID_ANY, _("Left eye"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP))
80         , _right_eye (new wxRadioButton (this, wxID_ANY, _("Right eye")))
81         , _jump_to_selected (0)
82         , _slider (new wxSlider (this, wxID_ANY, 0, 0, 4096))
83         , _back_button (new wxButton (this, wxID_ANY, wxT("<")))
84         , _forward_button (new wxButton (this, wxID_ANY, wxT(">")))
85         , _frame_number (new wxStaticText (this, wxID_ANY, wxT("")))
86         , _timecode (new wxStaticText (this, wxID_ANY, wxT("")))
87         , _play_button (new wxToggleButton (this, wxID_ANY, _("Play")))
88         , _coalesce_player_changes (false)
89         , _pending_player_change (false)
90         , _last_seek_accurate (true)
91         , _audio (DCPOMATIC_RTAUDIO_API)
92         , _audio_channels (0)
93         , _audio_block_size (1024)
94         , _playing (false)
95         , _latency_history_count (0)
96         , _dropped (0)
97 {
98 #ifndef __WXOSX__
99         _panel->SetDoubleBuffered (true);
100 #endif
101
102         _panel->SetBackgroundStyle (wxBG_STYLE_PAINT);
103
104         _v_sizer = new wxBoxSizer (wxVERTICAL);
105         SetSizer (_v_sizer);
106
107         _v_sizer->Add (_panel, 1, wxEXPAND);
108
109         wxBoxSizer* view_options = new wxBoxSizer (wxHORIZONTAL);
110         if (outline_content) {
111                 _outline_content = new wxCheckBox (this, wxID_ANY, _("Outline content"));
112                 view_options->Add (_outline_content, 0, wxRIGHT, DCPOMATIC_SIZER_GAP);
113         }
114         view_options->Add (_left_eye, 0, wxLEFT | wxRIGHT, DCPOMATIC_SIZER_GAP);
115         view_options->Add (_right_eye, 0, wxLEFT | wxRIGHT, DCPOMATIC_SIZER_GAP);
116         if (jump_to_selected) {
117                 _jump_to_selected = new wxCheckBox (this, wxID_ANY, _("Jump to selected content"));
118                 view_options->Add (_jump_to_selected, 0, wxLEFT | wxRIGHT, DCPOMATIC_SIZER_GAP);
119         }
120         _v_sizer->Add (view_options, 0, wxALL, DCPOMATIC_SIZER_GAP);
121
122         wxBoxSizer* h_sizer = new wxBoxSizer (wxHORIZONTAL);
123
124         wxBoxSizer* time_sizer = new wxBoxSizer (wxVERTICAL);
125         time_sizer->Add (_frame_number, 0, wxEXPAND);
126         time_sizer->Add (_timecode, 0, wxEXPAND);
127
128         h_sizer->Add (_back_button, 0, wxALL, 2);
129         h_sizer->Add (time_sizer, 0, wxEXPAND);
130         h_sizer->Add (_forward_button, 0, wxALL, 2);
131         h_sizer->Add (_play_button, 0, wxEXPAND);
132         h_sizer->Add (_slider, 1, wxEXPAND);
133
134         _v_sizer->Add (h_sizer, 0, wxEXPAND | wxALL, 6);
135
136         _frame_number->SetMinSize (wxSize (84, -1));
137         _back_button->SetMinSize (wxSize (32, -1));
138         _forward_button->SetMinSize (wxSize (32, -1));
139
140         _panel->Bind            (wxEVT_PAINT,             boost::bind (&FilmViewer::paint_panel,     this));
141         _panel->Bind            (wxEVT_SIZE,              boost::bind (&FilmViewer::panel_sized,     this, _1));
142         if (_outline_content) {
143                 _outline_content->Bind  (wxEVT_CHECKBOX, boost::bind (&FilmViewer::refresh_panel,   this));
144         }
145         _left_eye->Bind         (wxEVT_RADIOBUTTON,       boost::bind (&FilmViewer::refresh,         this));
146         _right_eye->Bind        (wxEVT_RADIOBUTTON,       boost::bind (&FilmViewer::refresh,         this));
147         _slider->Bind           (wxEVT_SCROLL_THUMBTRACK, boost::bind (&FilmViewer::slider_moved,    this, false));
148         _slider->Bind           (wxEVT_SCROLL_PAGEUP,     boost::bind (&FilmViewer::slider_moved,    this, false));
149         _slider->Bind           (wxEVT_SCROLL_PAGEDOWN,   boost::bind (&FilmViewer::slider_moved,    this, false));
150         _slider->Bind           (wxEVT_SCROLL_CHANGED,    boost::bind (&FilmViewer::slider_moved,    this, true));
151         _play_button->Bind      (wxEVT_TOGGLEBUTTON,      boost::bind (&FilmViewer::play_clicked,    this));
152         _timer.Bind             (wxEVT_TIMER,             boost::bind (&FilmViewer::timer,           this));
153         _back_button->Bind      (wxEVT_LEFT_DOWN,         boost::bind (&FilmViewer::back_clicked,    this, _1));
154         _forward_button->Bind   (wxEVT_LEFT_DOWN,         boost::bind (&FilmViewer::forward_clicked, this, _1));
155         _frame_number->Bind     (wxEVT_LEFT_DOWN,         boost::bind (&FilmViewer::frame_number_clicked, this));
156         _timecode->Bind         (wxEVT_LEFT_DOWN,         boost::bind (&FilmViewer::timecode_clicked, this));
157         if (_jump_to_selected) {
158                 _jump_to_selected->Bind (wxEVT_CHECKBOX, boost::bind (&FilmViewer::jump_to_selected_clicked, this));
159                 _jump_to_selected->SetValue (Config::instance()->jump_to_selected ());
160         }
161
162         set_film (shared_ptr<Film> ());
163
164         JobManager::instance()->ActiveJobsChanged.connect (
165                 bind (&FilmViewer::active_jobs_changed, this, _2)
166                 );
167
168         setup_sensitivity ();
169
170         _config_changed_connection = Config::instance()->Changed.connect (bind (&FilmViewer::config_changed, this, _1));
171         config_changed (Config::SOUND_OUTPUT);
172 }
173
174 FilmViewer::~FilmViewer ()
175 {
176         stop ();
177 }
178
179 void
180 FilmViewer::set_film (shared_ptr<Film> film)
181 {
182         if (_film == film) {
183                 return;
184         }
185
186         _film = film;
187
188         _frame.reset ();
189
190         update_position_slider ();
191         update_position_label ();
192
193         if (!_film) {
194                 return;
195         }
196
197         try {
198                 _player.reset (new Player (_film, _film->playlist ()));
199                 _player->set_fast ();
200         } catch (bad_alloc) {
201                 error_dialog (this, _("There is not enough free memory to do that."));
202                 _film.reset ();
203                 return;
204         }
205
206         /* Always burn in subtitles, even if content is set not to, otherwise we won't see them
207            in the preview.
208         */
209         _player->set_always_burn_subtitles (true);
210         _player->set_play_referenced ();
211
212         _film->Changed.connect (boost::bind (&FilmViewer::film_changed, this, _1));
213         _player->Changed.connect (boost::bind (&FilmViewer::player_changed, this, _1));
214
215         /* Keep about 1 second's worth of history samples */
216         _latency_history_count = _film->audio_frame_rate() / _audio_block_size;
217
218         recreate_butler ();
219
220         calculate_sizes ();
221         refresh ();
222
223         setup_sensitivity ();
224 }
225
226 void
227 FilmViewer::recreate_butler ()
228 {
229         bool const was_running = stop ();
230         _butler.reset ();
231
232         if (!_film) {
233                 return;
234         }
235
236         AudioMapping map = AudioMapping (_film->audio_channels(), _audio_channels);
237
238         if (_audio_channels != 2 || _film->audio_channels() < 3) {
239                 for (int i = 0; i < min (_film->audio_channels(), _audio_channels); ++i) {
240                         map.set (i, i, 1);
241                 }
242         } else {
243                 /* Special case: stereo output, at least 3 channel input, map L+R to L/R and
244                    C to both, all 3dB down.
245                 */
246                 map.set (0, 0, 1 / sqrt(2)); // L -> L
247                 map.set (1, 1, 1 / sqrt(2)); // R -> R
248                 map.set (2, 0, 1 / sqrt(2)); // C -> L
249                 map.set (2, 1, 1 / sqrt(2)); // C -> R
250         }
251
252         _butler.reset (new Butler (_player, _film->log(), map, _audio_channels));
253         if (!Config::instance()->sound()) {
254                 _butler->disable_audio ();
255         }
256
257         if (was_running) {
258                 start ();
259         }
260 }
261
262 void
263 FilmViewer::refresh_panel ()
264 {
265         _panel->Refresh ();
266         _panel->Update ();
267 }
268
269 void
270 FilmViewer::get ()
271 {
272         DCPOMATIC_ASSERT (_butler);
273
274         pair<shared_ptr<PlayerVideo>, DCPTime> video;
275         do {
276                 video = _butler->get_video ();
277         } while (
278                 _film->three_d() &&
279                 ((_left_eye->GetValue() && video.first->eyes() == EYES_RIGHT) || (_right_eye->GetValue() && video.first->eyes() == EYES_LEFT))
280                 );
281
282         _butler->rethrow ();
283
284         if (!video.first) {
285                 _frame.reset ();
286                 refresh_panel ();
287                 return;
288         }
289
290         if ((time() - video.second) > one_video_frame()) {
291                 /* Too late; just drop this frame before we try to get its image (which will be the time-consuming
292                    part if this frame is J2K).
293                 */
294                 _video_position = video.second;
295                 ++_dropped;
296                 return;
297         }
298
299         /* In an ideal world, what we would do here is:
300          *
301          * 1. convert to XYZ exactly as we do in the DCP creation path.
302          * 2. convert back to RGB for the preview display, compensating
303          *    for the monitor etc. etc.
304          *
305          * but this is inefficient if the source is RGB.  Since we don't
306          * (currently) care too much about the precise accuracy of the preview's
307          * colour mapping (and we care more about its speed) we try to short-
308          * circuit this "ideal" situation in some cases.
309          *
310          * The content's specified colour conversion indicates the colourspace
311          * which the content is in (according to the user).
312          *
313          * PlayerVideo::image (bound to PlayerVideo::always_rgb) will take the source
314          * image and convert it (from whatever the user has said it is) to RGB.
315          */
316
317         _frame = video.first->image (
318                 bind (&Log::dcp_log, _film->log().get(), _1, _2),
319                 bind (&PlayerVideo::always_rgb, _1),
320                 false, true
321                 );
322
323         ImageChanged (video.first);
324
325         _video_position = video.second;
326         _inter_position = video.first->inter_position ();
327         _inter_size = video.first->inter_size ();
328
329         refresh_panel ();
330 }
331
332 void
333 FilmViewer::timer ()
334 {
335         if (!_film || !_playing) {
336                 return;
337         }
338
339         get ();
340         update_position_label ();
341         update_position_slider ();
342         DCPTime const next = _video_position + one_video_frame();
343
344         if (next >= _film->length()) {
345                 stop ();
346         }
347
348         _timer.Start (max ((next.seconds() - time().seconds()) * 1000, 1.0), wxTIMER_ONE_SHOT);
349
350         if (_butler) {
351                 _butler->rethrow ();
352         }
353 }
354
355 void
356 FilmViewer::paint_panel ()
357 {
358         wxPaintDC dc (_panel);
359
360         if (!_frame || !_film || !_out_size.width || !_out_size.height) {
361                 dc.Clear ();
362                 return;
363         }
364
365         wxImage frame (_out_size.width, _out_size.height, _frame->data()[0], true);
366         wxBitmap frame_bitmap (frame);
367         dc.DrawBitmap (frame_bitmap, 0, 0);
368
369         if (_out_size.width < _panel_size.width) {
370                 wxPen p (GetBackgroundColour ());
371                 wxBrush b (GetBackgroundColour ());
372                 dc.SetPen (p);
373                 dc.SetBrush (b);
374                 dc.DrawRectangle (_out_size.width, 0, _panel_size.width - _out_size.width, _panel_size.height);
375         }
376
377         if (_out_size.height < _panel_size.height) {
378                 wxPen p (GetBackgroundColour ());
379                 wxBrush b (GetBackgroundColour ());
380                 dc.SetPen (p);
381                 dc.SetBrush (b);
382                 dc.DrawRectangle (0, _out_size.height, _panel_size.width, _panel_size.height - _out_size.height);
383         }
384
385         if (_outline_content && _outline_content->GetValue ()) {
386                 wxPen p (wxColour (255, 0, 0), 2);
387                 dc.SetPen (p);
388                 dc.SetBrush (*wxTRANSPARENT_BRUSH);
389                 dc.DrawRectangle (_inter_position.x, _inter_position.y, _inter_size.width, _inter_size.height);
390         }
391 }
392
393 void
394 FilmViewer::slider_moved (bool update_slider)
395 {
396         if (!_film) {
397                 return;
398         }
399
400
401         DCPTime t (_slider->GetValue() * _film->length().get() / 4096);
402         /* Ensure that we hit the end of the film at the end of the slider */
403         if (t >= _film->length ()) {
404                 t = _film->length() - one_video_frame();
405         }
406         seek (t, false);
407         update_position_label ();
408         if (update_slider) {
409                 update_position_slider ();
410         }
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         refresh ();
421         update_position_label ();
422         update_position_slider ();
423 }
424
425 void
426 FilmViewer::calculate_sizes ()
427 {
428         if (!_film) {
429                 return;
430         }
431
432         Ratio const * container = _film->container ();
433
434         float const panel_ratio = _panel_size.ratio ();
435         float const film_ratio = container ? container->ratio () : 1.78;
436
437         if (panel_ratio < film_ratio) {
438                 /* panel is less widscreen than the film; clamp width */
439                 _out_size.width = _panel_size.width;
440                 _out_size.height = lrintf (_out_size.width / film_ratio);
441         } else {
442                 /* panel is more widescreen than the film; clamp height */
443                 _out_size.height = _panel_size.height;
444                 _out_size.width = lrintf (_out_size.height * film_ratio);
445         }
446
447         /* Catch silly values */
448         _out_size.width = max (64, _out_size.width);
449         _out_size.height = max (64, _out_size.height);
450
451         _player->set_video_container_size (_out_size);
452 }
453
454 void
455 FilmViewer::play_clicked ()
456 {
457         check_play_state ();
458 }
459
460 void
461 FilmViewer::check_play_state ()
462 {
463         if (!_film || _film->video_frame_rate() == 0) {
464                 return;
465         }
466
467         if (_play_button->GetValue()) {
468                 start ();
469         } else {
470                 stop ();
471         }
472 }
473
474 void
475 FilmViewer::start ()
476 {
477         if (_audio.isStreamOpen()) {
478                 _audio.setStreamTime (_video_position.seconds());
479                 _audio.startStream ();
480         }
481
482         _playing = true;
483         _dropped = 0;
484         timer ();
485 }
486
487 bool
488 FilmViewer::stop ()
489 {
490         if (_audio.isStreamRunning()) {
491                 /* stop stream and discard any remainig queued samples */
492                 _audio.abortStream ();
493         }
494
495         if (!_playing) {
496                 return false;
497         }
498
499         _playing = false;
500         _play_button->SetValue (false);
501         return true;
502 }
503
504 void
505 FilmViewer::update_position_slider ()
506 {
507         if (!_film) {
508                 _slider->SetValue (0);
509                 return;
510         }
511
512         DCPTime const len = _film->length ();
513
514         if (len.get ()) {
515                 int const new_slider_position = 4096 * _video_position.get() / len.get();
516                 if (new_slider_position != _slider->GetValue()) {
517                         _slider->SetValue (new_slider_position);
518                 }
519         }
520 }
521
522 void
523 FilmViewer::update_position_label ()
524 {
525         if (!_film) {
526                 _frame_number->SetLabel ("0");
527                 _timecode->SetLabel ("0:0:0.0");
528                 return;
529         }
530
531         double const fps = _film->video_frame_rate ();
532         /* Count frame number from 1 ... not sure if this is the best idea */
533         _frame_number->SetLabel (wxString::Format (wxT("%ld"), lrint (_video_position.seconds() * fps) + 1));
534         _timecode->SetLabel (time_to_timecode (_video_position, fps));
535 }
536
537 void
538 FilmViewer::active_jobs_changed (optional<string> j)
539 {
540         /* examine content is the only job which stops the viewer working */
541         bool const a = !j || *j != "examine_content";
542         _slider->Enable (a);
543         _play_button->Enable (a);
544 }
545
546 DCPTime
547 FilmViewer::nudge_amount (wxMouseEvent& ev)
548 {
549         DCPTime amount = one_video_frame ();
550
551         if (ev.ShiftDown() && !ev.ControlDown()) {
552                 amount = DCPTime::from_seconds (1);
553         } else if (!ev.ShiftDown() && ev.ControlDown()) {
554                 amount = DCPTime::from_seconds (10);
555         } else if (ev.ShiftDown() && ev.ControlDown()) {
556                 amount = DCPTime::from_seconds (60);
557         }
558
559         return amount;
560 }
561
562 void
563 FilmViewer::go_to (DCPTime t)
564 {
565         if (t < DCPTime ()) {
566                 t = DCPTime ();
567         }
568
569         if (t >= _film->length ()) {
570                 t = _film->length ();
571         }
572
573         seek (t, true);
574         update_position_label ();
575         update_position_slider ();
576 }
577
578 void
579 FilmViewer::back_clicked (wxMouseEvent& ev)
580 {
581         go_to (_video_position - nudge_amount (ev));
582         ev.Skip ();
583 }
584
585 void
586 FilmViewer::forward_clicked (wxMouseEvent& ev)
587 {
588         go_to (_video_position + nudge_amount (ev));
589         ev.Skip ();
590 }
591
592 void
593 FilmViewer::player_changed (bool frequent)
594 {
595         if (frequent) {
596                 return;
597         }
598
599         if (_coalesce_player_changes) {
600                 _pending_player_change = true;
601                 return;
602         }
603
604         calculate_sizes ();
605         refresh ();
606         update_position_label ();
607         update_position_slider ();
608 }
609
610 void
611 FilmViewer::setup_sensitivity ()
612 {
613         bool const c = _film && !_film->content().empty ();
614
615         _slider->Enable (c);
616         _back_button->Enable (c);
617         _forward_button->Enable (c);
618         _play_button->Enable (c);
619         if (_outline_content) {
620                 _outline_content->Enable (c);
621         }
622         _frame_number->Enable (c);
623         _timecode->Enable (c);
624         if (_jump_to_selected) {
625                 _jump_to_selected->Enable (c);
626         }
627
628         _left_eye->Enable (c && _film->three_d ());
629         _right_eye->Enable (c && _film->three_d ());
630 }
631
632 void
633 FilmViewer::film_changed (Film::Property p)
634 {
635         if (p == Film::CONTENT || p == Film::THREE_D) {
636                 setup_sensitivity ();
637         }
638 }
639
640 /** Re-get the current frame */
641 void
642 FilmViewer::refresh ()
643 {
644         seek (_video_position, _last_seek_accurate);
645 }
646
647 void
648 FilmViewer::set_position (DCPTime p)
649 {
650         _video_position = p;
651         seek (p, true);
652         update_position_label ();
653         update_position_slider ();
654 }
655
656 void
657 FilmViewer::set_coalesce_player_changes (bool c)
658 {
659         _coalesce_player_changes = c;
660
661         if (c) {
662                 _pending_player_change = false;
663         } else {
664                 if (_pending_player_change) {
665                         player_changed (false);
666                 }
667         }
668 }
669
670 void
671 FilmViewer::timecode_clicked ()
672 {
673         PlayheadToTimecodeDialog* dialog = new PlayheadToTimecodeDialog (this, _film->video_frame_rate ());
674         if (dialog->ShowModal() == wxID_OK) {
675                 go_to (dialog->get ());
676         }
677         dialog->Destroy ();
678 }
679
680 void
681 FilmViewer::frame_number_clicked ()
682 {
683         PlayheadToFrameDialog* dialog = new PlayheadToFrameDialog (this, _film->video_frame_rate ());
684         if (dialog->ShowModal() == wxID_OK) {
685                 go_to (dialog->get ());
686         }
687         dialog->Destroy ();
688 }
689
690 void
691 FilmViewer::jump_to_selected_clicked ()
692 {
693         Config::instance()->set_jump_to_selected (_jump_to_selected->GetValue ());
694 }
695
696 void
697 FilmViewer::seek (DCPTime t, bool accurate)
698 {
699         if (!_butler) {
700                 return;
701         }
702
703         bool const was_running = stop ();
704
705         _butler->seek (t, accurate);
706         _last_seek_accurate = accurate;
707         get ();
708
709         if (was_running) {
710                 start ();
711         }
712 }
713
714 void
715 FilmViewer::config_changed (Config::Property p)
716 {
717         if (p != Config::SOUND && p != Config::SOUND_OUTPUT) {
718                 return;
719         }
720
721         if (_audio.isStreamOpen ()) {
722                 _audio.closeStream ();
723         }
724
725         if (Config::instance()->sound()) {
726                 unsigned int st = 0;
727                 if (Config::instance()->sound_output()) {
728                         while (st < _audio.getDeviceCount()) {
729                                 if (_audio.getDeviceInfo(st).name == Config::instance()->sound_output().get()) {
730                                         break;
731                                 }
732                                 ++st;
733                         }
734                         if (st == _audio.getDeviceCount()) {
735                                 st = _audio.getDefaultOutputDevice();
736                         }
737                 } else {
738                         st = _audio.getDefaultOutputDevice();
739                 }
740
741                 _audio_channels = _audio.getDeviceInfo(st).outputChannels;
742
743                 recreate_butler ();
744
745                 RtAudio::StreamParameters sp;
746                 sp.deviceId = st;
747                 sp.nChannels = _audio_channels;
748                 sp.firstChannel = 0;
749                 try {
750                         _audio.openStream (&sp, 0, RTAUDIO_FLOAT32, 48000, &_audio_block_size, &rtaudio_callback, this);
751 #ifdef DCPOMATIC_USE_RTERROR
752                 } catch (RtError& e) {
753 #else
754                 } catch (RtAudioError& e) {
755 #endif
756                         error_dialog (
757                                 this,
758                                 wxString::Format (_("Could not set up audio output (%s).  There will be no audio during the preview."), e.what())
759                                 );
760                 }
761
762         } else {
763                 _audio_channels = 0;
764                 recreate_butler ();
765         }
766 }
767
768 DCPTime
769 FilmViewer::time () const
770 {
771         if (_audio.isStreamRunning ()) {
772                 return DCPTime::from_seconds (const_cast<RtAudio*>(&_audio)->getStreamTime ()) -
773                         DCPTime::from_frames (average_latency(), _film->audio_frame_rate());
774         }
775
776         return _video_position;
777 }
778
779 int
780 FilmViewer::audio_callback (void* out_p, unsigned int frames)
781 {
782         _butler->get_audio (reinterpret_cast<float*> (out_p), frames);
783
784         boost::mutex::scoped_lock lm (_latency_history_mutex, boost::try_to_lock);
785         if (lm) {
786                 _latency_history.push_back (_audio.getStreamLatency ());
787                 if (_latency_history.size() > static_cast<size_t> (_latency_history_count)) {
788                         _latency_history.pop_front ();
789                 }
790         }
791
792         return 0;
793 }
794
795 Frame
796 FilmViewer::average_latency () const
797 {
798         boost::mutex::scoped_lock lm (_latency_history_mutex);
799         if (_latency_history.empty()) {
800                 return 0;
801         }
802
803         Frame total = 0;
804         BOOST_FOREACH (Frame i, _latency_history) {
805                 total += i;
806         }
807
808         return total / _latency_history.size();
809 }
810
811 void
812 FilmViewer::set_dcp_decode_reduction (optional<int> reduction)
813 {
814         _player->set_dcp_decode_reduction (reduction);
815 }
816
817 DCPTime
818 FilmViewer::one_video_frame () const
819 {
820         return DCPTime::from_frames (1, _film->video_frame_rate());
821 }