summaryrefslogtreecommitdiff
path: root/src/wx/film_viewer.cc
blob: b9c63d05d2c5292e41ce38a0950351c72f91202e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
/*
    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>

    This file is part of DCP-o-matic.

    DCP-o-matic is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    DCP-o-matic is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.

*/


/** @file  src/film_viewer.cc
 *  @brief A wx widget to view a preview of a Film.
 */


#include "audio_backend.h"
#include "closed_captions_dialog.h"
#include "film_viewer.h"
#include "gl_video_view.h"
#include "nag_dialog.h"
#include "playhead_to_frame_dialog.h"
#include "playhead_to_timecode_dialog.h"
#include "simple_video_view.h"
#include "wx_util.h"
#include "lib/butler.h"
#include "lib/config.h"
#include "lib/dcp_content.h"
#include "lib/dcpomatic_log.h"
#include "lib/examine_content_job.h"
#include "lib/exceptions.h"
#include "lib/film.h"
#include "lib/filter.h"
#include "lib/image.h"
#include "lib/job_manager.h"
#include "lib/log.h"
#include "lib/player.h"
#include "lib/player_video.h"
#include "lib/ratio.h"
#include "lib/text_content.h"
#include "lib/timer.h"
#include "lib/util.h"
#include "lib/video_content.h"
#include "lib/video_decoder.h"
#include <dcp/exceptions.h>
#include <dcp/warnings.h>
extern "C" {
#include <libavutil/pixfmt.h>
}
LIBDCP_DISABLE_WARNINGS
#include <wx/tglbtn.h>
LIBDCP_ENABLE_WARNINGS
#include <iomanip>


using std::bad_alloc;
using std::dynamic_pointer_cast;
using std::make_shared;
using std::max;
using std::shared_ptr;
using std::string;
using std::vector;
using boost::optional;
#if BOOST_VERSION >= 106100
using namespace boost::placeholders;
#endif
using dcp::Size;
using namespace dcpomatic;


static
int
rtaudio_callback(void* out, void *, unsigned int frames, double, RtAudioStreamStatus, void* data)
{
	return reinterpret_cast<FilmViewer*>(data)->audio_callback(out, frames);
}


FilmViewer::FilmViewer(wxWindow* p)
	: _closed_captions_dialog(new ClosedCaptionsDialog(p, this))
{
#if wxCHECK_VERSION(3, 1, 0)
	switch (Config::instance()->video_view_type()) {
	case Config::VIDEO_VIEW_OPENGL:
		_video_view = std::make_shared<GLVideoView>(this, p);
		break;
	case Config::VIDEO_VIEW_SIMPLE:
		_video_view = std::make_shared<SimpleVideoView>(this, p);
		break;
	}
#else
	_video_view = std::make_shared<SimpleVideoView>(this, p);
#endif

	_video_view->Sized.connect(boost::bind(&FilmViewer::video_view_sized, this));
	_video_view->TooManyDropped.connect(boost::bind(boost::ref(TooManyDropped)));

	set_film(shared_ptr<Film>());

	_config_changed_connection = Config::instance()->Changed.connect(bind(&FilmViewer::config_changed, this, _1));
	config_changed(Config::SOUND_OUTPUT);
}


FilmViewer::~FilmViewer()
{
	stop();
}


/** Ask for ::idle_handler() to be called next time we are idle */
void
FilmViewer::request_idle_display_next_frame()
{
	if (_idle_get) {
		return;
	}

	_idle_get = true;
	DCPOMATIC_ASSERT(signal_manager);
	signal_manager->when_idle(boost::bind(&FilmViewer::idle_handler, this));
}


void
FilmViewer::idle_handler()
{
	if (!_idle_get) {
		return;
	}

	if (_video_view->display_next_frame(true) == VideoView::AGAIN) {
		/* get() could not complete quickly so we'll try again later */
		signal_manager->when_idle(boost::bind(&FilmViewer::idle_handler, this));
	} else {
		_idle_get = false;
	}
}


void
FilmViewer::set_film(shared_ptr<Film> film)
{
	if (_film == film) {
		return;
	}

	_film = film;

	_video_view->clear();
	_closed_captions_dialog->clear();

	destroy_butler();

	if (!_film) {
		_player = boost::none;
		resume();
		_video_view->update();
		return;
	}

	try {
		_player.emplace(_film, _optimisation == Optimisation::NONE ? Image::Alignment::PADDED : Image::Alignment::COMPACT, true);
		_player->set_fast();
		if (_dcp_decode_reduction) {
			_player->set_dcp_decode_reduction(_dcp_decode_reduction);
		}
	} catch (bad_alloc &) {
		error_dialog(_video_view->get(), _("There is not enough free memory to do that."));
		_film.reset();
		resume();
		return;
	}

	_player->set_always_burn_open_subtitles();
	_player->set_play_referenced();

	_film->Change.connect(boost::bind(&FilmViewer::film_change, this, _1, _2));
	_film->LengthChange.connect(boost::bind(&FilmViewer::film_length_change, this));
	_player->Change.connect(boost::bind(&FilmViewer::player_change, this, _1, _2, _3));

	film_change(ChangeType::DONE, FilmProperty::VIDEO_FRAME_RATE);
	film_change(ChangeType::DONE, FilmProperty::THREE_D);
	film_length_change();

	/* Keep about 1 second's worth of history samples */
	_latency_history_count = _film->audio_frame_rate() / _audio_block_size;

	_closed_captions_dialog->update_tracks(_film);

	create_butler();

	calculate_sizes();
	slow_refresh();
}


void
FilmViewer::destroy_butler()
{
	suspend();
	_butler.reset();
}


void
FilmViewer::destroy_and_maybe_create_butler()
{
	destroy_butler();

	if (!_film) {
		resume();
		return;
	}

	create_butler();
}


void
FilmViewer::create_butler()
{
#if wxCHECK_VERSION(3, 1, 0)
	auto const opengl = dynamic_pointer_cast<GLVideoView>(_video_view);
#else
	auto const opengl = false;
#endif

	DCPOMATIC_ASSERT(_player);
	_player->seek(_video_view->position(), true);

	auto& audio = AudioBackend::instance()->rtaudio();

	_butler = std::make_shared<Butler>(
		_film,
		*_player,
		Config::instance()->audio_mapping(_audio_channels),
		_audio_channels,
		AV_PIX_FMT_RGB24,
		VideoRange::FULL,
		(opengl && _optimisation != Optimisation::NONE) ? Image::Alignment::COMPACT : Image::Alignment::PADDED,
		true,
		opengl && _optimisation == Optimisation::JPEG2000,
		(Config::instance()->sound() && audio.isStreamOpen()) ? Butler::Audio::ENABLED : Butler::Audio::DISABLED
		);

	_closed_captions_dialog->set_butler(_butler);

	resume();
}


void
FilmViewer::set_outline_content(bool o)
{
	_outline_content = o;
	_video_view->update();
}


void
FilmViewer::set_outline_subtitles(optional<dcpomatic::Rect<double>> rect)
{
	_outline_subtitles = rect;
	_video_view->update();
}


void
FilmViewer::set_eyes(Eyes e)
{
	_video_view->set_eyes(e);
	slow_refresh();
}


void
FilmViewer::video_view_sized()
{
	calculate_sizes();
	if (!quick_refresh()) {
		slow_refresh();
	}
}


void
FilmViewer::calculate_sizes()
{
	if (!_film || !_player) {
		return;
	}

	auto const container = _film->container();

	auto const scale = dpi_scale_factor(_video_view->get());
	int const video_view_width = std::round(_video_view->get()->GetSize().x * scale);
	int const video_view_height = std::round(_video_view->get()->GetSize().y * scale);

	auto const view_ratio = float(video_view_width) / video_view_height;
	auto const film_ratio = container.ratio();

	dcp::Size out_size;
	if (view_ratio < film_ratio) {
		/* panel is less widscreen than the film; clamp width */
		out_size.width = video_view_width;
		out_size.height = lrintf(out_size.width / film_ratio);
	} else {
		/* panel is more widescreen than the film; clamp height */
		out_size.height = video_view_height;
		out_size.width = lrintf(out_size.height * film_ratio);
	}

	/* Catch silly values */
	out_size.width = max(64, out_size.width);
	out_size.height = max(64, out_size.height);

	/* Make sure the video container sizes are always a multiple of 2 so that
	 * we don't get gaps with subsampled sources (e.g. YUV420)
	 */
	if (out_size.width % 2) {
		out_size.width++;
	}
	if (out_size.height % 2) {
		out_size.height++;
	}

	_player->set_video_container_size(out_size);
}


void
FilmViewer::suspend()
{
	++_suspended;
	AudioBackend::instance()->abort_stream_if_running();
}


void
FilmViewer::start_audio_stream_if_open()
{
	auto& audio = AudioBackend::instance()->rtaudio();

	if (audio.isStreamOpen()) {
		audio.setStreamTime(_video_view->position().seconds());
		auto error = AudioBackend::instance()->start_stream();
		if (error) {
			_audio_channels = 0;
			error_dialog(
				_video_view->get(),
				_("There was a problem starting audio playback.  Please try another audio output device in Preferences."), std_to_wx(*error)
				);
		}
	}
}


void
FilmViewer::resume()
{
	DCPOMATIC_ASSERT(_suspended > 0);
	--_suspended;
	if (_playing && !_suspended) {
		start_audio_stream_if_open();
		_video_view->start();
	}
}


void
FilmViewer::start ()
{
	if (!_film || _playing) {
		return;
	}

	auto v = PlaybackPermitted();
	if (v && !*v) {
		/* Computer says no */
		return;
	}

	/* We are about to set up the audio stream from the position of the video view.
	   If there is `lazy' seek in progress we need to wait for it to go through so that
	   _video_view->position() gives us a sensible answer.
	 */
	while (_idle_get) {
		idle_handler();
	}

	/* Take the video view's idea of position as our `playhead' and start the
	   audio stream (which is the timing reference) there.
         */
	start_audio_stream_if_open();

	_playing = true;
	/* Calling start() below may directly result in Stopped being emitted, and if that
	 * happens we want it to come after the Started signal, so do that first.
	 */
	Started();
	_video_view->start();
}


bool
FilmViewer::stop()
{
	AudioBackend::instance()->abort_stream_if_running();

	if (!_playing) {
		return false;
	}

	_playing = false;
	_video_view->stop();
	Stopped();

	_video_view->rethrow();
	return true;
}


void
FilmViewer::player_change(ChangeType type, int property, bool frequent)
{
	if (type != ChangeType::DONE || frequent) {
		return;
	}

	if (_coalesce_player_changes) {
		_pending_player_changes.push_back(property);
		return;
	}

	player_change({property});
}


void
FilmViewer::player_change(vector<int> properties)
{
	calculate_sizes();

	bool try_quick_refresh = false;
	bool update_ccap_tracks = false;

	for (auto i: properties) {
		switch (i) {
		case VideoContentProperty::CROP:
		case VideoContentProperty::CUSTOM_RATIO:
		case VideoContentProperty::CUSTOM_SIZE:
		case VideoContentProperty::FADE_IN:
		case VideoContentProperty::FADE_OUT:
		case VideoContentProperty::COLOUR_CONVERSION:
		case PlayerProperty::VIDEO_CONTAINER_SIZE:
		case PlayerProperty::FILM_CONTAINER:
			try_quick_refresh = true;
			break;
		case TextContentProperty::USE:
		case TextContentProperty::TYPE:
		case TextContentProperty::DCP_TRACK:
			update_ccap_tracks = true;
			break;
		}
	}

	if (!try_quick_refresh || !quick_refresh()) {
		slow_refresh();
	}

	if (update_ccap_tracks) {
		_closed_captions_dialog->update_tracks(_film);
	}
}


void
FilmViewer::film_change(ChangeType type, FilmProperty p)
{
	if (type != ChangeType::DONE) {
		return;
	}

	if (p == FilmProperty::AUDIO_CHANNELS) {
		destroy_and_maybe_create_butler();
	} else if (p == FilmProperty::VIDEO_FRAME_RATE) {
		_video_view->set_video_frame_rate(_film->video_frame_rate());
	} else if (p == FilmProperty::THREE_D) {
		_video_view->set_three_d(_film->three_d());
	} else if (p == FilmProperty::CONTENT) {
		_closed_captions_dialog->update_tracks(_film);
	}
}


void
FilmViewer::film_length_change()
{
	_video_view->set_length(_film->length());
}


/** Re-get the current frame slowly by seeking */
void
FilmViewer::slow_refresh()
{
	seek(_video_view->position(), true);
}


/** Try to re-get the current frame quickly by resetting the metadata
 *  in the PlayerVideo that we used last time.
 *  @return true if this was possible, false if not.
 */
bool
FilmViewer::quick_refresh()
{
	if (!_video_view || !_film || !_player) {
		return true;
	}
	return _video_view->reset_metadata(_film, _player->video_container_size());
}


void
FilmViewer::seek(shared_ptr<Content> content, ContentTime t, bool accurate)
{
	DCPOMATIC_ASSERT(_player);
	auto dt = _player->content_time_to_dcp(content, t);
	if (dt) {
		seek(*dt, accurate);
	}
}


void
FilmViewer::set_coalesce_player_changes(bool c)
{
	_coalesce_player_changes = c;

	if (!c) {
		player_change(_pending_player_changes);
		_pending_player_changes.clear();
	}
}


void
FilmViewer::seek(DCPTime t, bool accurate)
{
	if (!_butler) {
		return;
	}

	if (t < DCPTime()) {
		t = DCPTime();
	}

	if (t >= _film->length()) {
		t = _film->length() - one_video_frame();
	}

	suspend();

	_closed_captions_dialog->clear();
	_butler->seek(t, accurate);

	if (!_playing) {
		/* We're not playing, so let the GUI thread get on and
		   come back later to get the next frame after the seek.
		*/
		request_idle_display_next_frame();
	} else {
		/* We're going to start playing again straight away
		   so wait for the seek to finish.
		*/
		while (_video_view->display_next_frame(false) == VideoView::AGAIN) {}
	}

	resume();
}


void
FilmViewer::config_changed(Config::Property p)
{
	if (p == Config::AUDIO_MAPPING) {
		destroy_and_maybe_create_butler();
		return;
	}

	if (p != Config::SOUND && p != Config::SOUND_OUTPUT) {
		return;
	}

	auto backend = AudioBackend::instance();
	auto& audio = backend->rtaudio();

	if (audio.isStreamOpen()) {
		audio.closeStream();
	}

	if (Config::instance()->sound() && audio.getDeviceCount() > 0) {
		optional<unsigned int> chosen_device_id;
#if (RTAUDIO_VERSION_MAJOR >= 6)
		if (Config::instance()->sound_output()) {
			for (auto device_id: audio.getDeviceIds()) {
				if (audio.getDeviceInfo(device_id).name == Config::instance()->sound_output().get()) {
					chosen_device_id = device_id;
					break;
				}
			}
		}

		if (!chosen_device_id) {
			chosen_device_id = audio.getDefaultOutputDevice();
		}
		_audio_channels = audio.getDeviceInfo(*chosen_device_id).outputChannels;
		RtAudio::StreamParameters sp;
		sp.deviceId = *chosen_device_id;
		sp.nChannels = _audio_channels;
		sp.firstChannel = 0;
		if (audio.openStream(&sp, 0, RTAUDIO_FLOAT32, 48000, &_audio_block_size, &rtaudio_callback, this) != RTAUDIO_NO_ERROR) {
			_audio_channels = 0;
			error_dialog(
				_video_view->get(),
				_("Could not set up audio output.  There will be no audio during the preview."), std_to_wx(backend->last_rtaudio_error())
				);
		}
#else
		unsigned int st = 0;
		if (Config::instance()->sound_output()) {
			while (st < audio.getDeviceCount()) {
				try {
					if (audio.getDeviceInfo(st).name == Config::instance()->sound_output().get()) {
						break;
					}
				} catch (RtAudioError&) {
					/* Something went wrong with that device so we don't want to use it anyway */
				}
				++st;
			}
			if (st == audio.getDeviceCount()) {
				try {
					st = audio.getDefaultOutputDevice();
				} catch (RtAudioError&) {
					/* Something went wrong with that device so we don't want to use it anyway */
				}
			}
		} else {
			try {
				st = audio.getDefaultOutputDevice();
			} catch (RtAudioError&) {
				/* Something went wrong with that device so we don't want to use it anyway */
			}
		}

		try {
			_audio_channels = audio.getDeviceInfo(st).outputChannels;
			RtAudio::StreamParameters sp;
			sp.deviceId = st;
			sp.nChannels = _audio_channels;
			sp.firstChannel = 0;
			audio.openStream(&sp, 0, RTAUDIO_FLOAT32, 48000, &_audio_block_size, &rtaudio_callback, this);
		} catch (RtAudioError& e) {
			_audio_channels = 0;
			error_dialog(
				_video_view->get(),
				_("Could not set up audio output.  There will be no audio during the preview."), std_to_wx(e.what())
				);
		}
#endif
		destroy_and_maybe_create_butler();

	} else {
		_audio_channels = 0;
		destroy_and_maybe_create_butler();
	}
}


DCPTime
FilmViewer::uncorrected_time() const
{
	auto& audio = AudioBackend::instance()->rtaudio();

	if (audio.isStreamRunning()) {
		return DCPTime::from_seconds(audio.getStreamTime());
	}

	return _video_view->position();
}


optional<DCPTime>
FilmViewer::audio_time() const
{
	auto& audio = AudioBackend::instance()->rtaudio();

	if (!audio.isStreamRunning()) {
		return {};
	}

	return DCPTime::from_seconds(audio.getStreamTime()) -
		DCPTime(average_latency(), _film->audio_frame_rate());
}


DCPTime
FilmViewer::time() const
{
	return audio_time().get_value_or(_video_view->position());
}


int
FilmViewer::audio_callback(void* out_p, unsigned int frames)
{
	while (true) {
		auto t = _butler->get_audio(Butler::Behaviour::NON_BLOCKING, reinterpret_cast<float*>(out_p), frames);
		if (!t || DCPTime(uncorrected_time() - *t) < one_video_frame()) {
			/* There was an underrun or this audio is on time; carry on */
			break;
		}
		/* The audio we just got was (very) late; drop it and get some more. */
	}

	auto& audio = AudioBackend::instance()->rtaudio();

	boost::mutex::scoped_lock lm(_latency_history_mutex, boost::try_to_lock);
	if (lm) {
		_latency_history.push_back(audio.getStreamLatency());
		if (_latency_history.size() > static_cast<size_t>(_latency_history_count)) {
			_latency_history.pop_front();
		}
	}

	return 0;
}


Frame
FilmViewer::average_latency() const
{
        boost::mutex::scoped_lock lm(_latency_history_mutex);
        if (_latency_history.empty()) {
                return 0;
        }

        Frame total = 0;
        for (auto i: _latency_history) {
                total += i;
        }

        return total / _latency_history.size();
}


void
FilmViewer::set_dcp_decode_reduction(optional<int> reduction)
{
	_dcp_decode_reduction = reduction;
	if (_player) {
		_player->set_dcp_decode_reduction(reduction);
	}
}


optional<int>
FilmViewer::dcp_decode_reduction() const
{
	return _dcp_decode_reduction;
}


optional<ContentTime>
FilmViewer::position_in_content(shared_ptr<const Content> content) const
{
	DCPOMATIC_ASSERT(_player);
	return _player->dcp_to_content_time(content, position());
}


DCPTime
FilmViewer::one_video_frame() const
{
	return DCPTime(1, _film ? _film->video_frame_rate() : 24);
}


/** Open a dialog box showing our film's closed captions */
void
FilmViewer::show_closed_captions()
{
	_closed_captions_dialog->Show();
}


void
FilmViewer::seek_by(DCPTime by, bool accurate)
{
	seek(_video_view->position() + by, accurate);
}


void
FilmViewer::set_pad_black(bool p)
{
	_pad_black = p;
}


/** Called when a player has finished the current film.
 *  May be called from a non-UI thread.
 */
void
FilmViewer::finished()
{
	emit(boost::bind(&FilmViewer::ui_finished, this));
}


/** Called by finished() in the UI thread */
void
FilmViewer::ui_finished()
{
	stop();
	Finished();
}


int
FilmViewer::dropped() const
{
	return _video_view->dropped();
}


int
FilmViewer::errored() const
{
	return _video_view->errored();
}


int
FilmViewer::gets() const
{
	return _video_view->gets();
}


void
FilmViewer::image_changed(shared_ptr<PlayerVideo> pv)
{
	_last_image = pv;
	emit(boost::bind(boost::ref(ImageChanged)));
}


shared_ptr<const PlayerVideo>
FilmViewer::last_image() const
{
	return _last_image;
}


void
FilmViewer::set_optimisation(Optimisation o)
{
	_optimisation = o;
	_video_view->set_optimisation(o);
	destroy_and_maybe_create_butler();
}


void
FilmViewer::set_crop_guess(dcpomatic::Rect<float> crop)
{
	if (crop != _crop_guess) {
		_crop_guess = crop;
		_video_view->update();
	}
}


void
FilmViewer::unset_crop_guess()
{
	_crop_guess = boost::none;
	_video_view->update();
}

shared_ptr<DCPContent>
FilmViewer::dcp() const
{
	if (_film) {
		auto content = _film->content();
		if (content.size() == 1) {
			return dynamic_pointer_cast<DCPContent>(content.front());
		}
	}

	return {};
}