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