Remove some friends from FilmViewer.
[dcpomatic.git] / src / wx / video_view.cc
1 /*
2     Copyright (C) 2019 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 #include "video_view.h"
22 #include "wx_util.h"
23 #include "film_viewer.h"
24 #include "lib/butler.h"
25
26 VideoView::VideoView (FilmViewer* viewer)
27         : _viewer (viewer)
28 #ifdef DCPOMATIC_VARIANT_SWAROOP
29         , _in_watermark (false)
30 #endif
31         , _state_timer ("viewer")
32         , _video_frame_rate (0)
33         , _eyes (EYES_LEFT)
34         , _dropped (0)
35         , _gets (0)
36 {
37
38 }
39
40 void
41 VideoView::clear ()
42 {
43         boost::mutex::scoped_lock lm (_mutex);
44         _player_video.first.reset ();
45         _player_video.second = dcpomatic::DCPTime ();
46 }
47
48 /** @param non_blocking true to return false quickly if no video is available quickly.
49  *  @return false if we gave up because it would take too long, otherwise true.
50  */
51 bool
52 VideoView::get_next_frame (bool non_blocking)
53 {
54         if (_length == dcpomatic::DCPTime()) {
55                 return true;
56         }
57
58         DCPOMATIC_ASSERT (_viewer->butler());
59         add_get ();
60
61         boost::mutex::scoped_lock lm (_mutex);
62
63         do {
64                 Butler::Error e;
65                 _player_video = _viewer->butler()->get_video (!non_blocking, &e);
66                 if (!_player_video.first && e == Butler::AGAIN) {
67                         return false;
68                 }
69         } while (
70                 _player_video.first &&
71                 _viewer->film()->three_d() &&
72                 _eyes != _player_video.first->eyes() &&
73                 _player_video.first->eyes() != EYES_BOTH
74                 );
75
76         return true;
77 }
78
79 dcpomatic::DCPTime
80 VideoView::one_video_frame () const
81 {
82         return dcpomatic::DCPTime::from_frames (1, video_frame_rate());
83 }
84
85 /** @return Time in ms until the next frame is due */
86 int
87 VideoView::time_until_next_frame () const
88 {
89         if (length() == dcpomatic::DCPTime()) {
90                 /* There's no content, so this doesn't matter */
91                 return 0;
92         }
93
94         dcpomatic::DCPTime const next = position() + one_video_frame();
95         dcpomatic::DCPTime const time = _viewer->audio_time().get_value_or(position());
96         if (next < time) {
97                 return 0;
98         }
99         return (next.seconds() - time.seconds()) * 1000;
100 }
101
102 void
103 VideoView::start ()
104 {
105         boost::mutex::scoped_lock lm (_mutex);
106         _dropped = 0;
107 }