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