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