7eea4b786fba72917e3f9285997767545e88ea74
[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 #include "lib/dcpomatic_log.h"
26 #include <boost/optional.hpp>
27
28 using std::pair;
29 using boost::shared_ptr;
30 using boost::optional;
31
32 VideoView::VideoView (FilmViewer* viewer)
33         : _viewer (viewer)
34 #ifdef DCPOMATIC_VARIANT_SWAROOP
35         , _in_watermark (false)
36 #endif
37         , _state_timer ("viewer")
38         , _video_frame_rate (0)
39         , _eyes (EYES_LEFT)
40         , _three_d (false)
41         , _dropped (0)
42         , _errored (0)
43         , _gets (0)
44 {
45
46 }
47
48 void
49 VideoView::clear ()
50 {
51         boost::mutex::scoped_lock lm (_mutex);
52         _player_video.first.reset ();
53         _player_video.second = dcpomatic::DCPTime ();
54 }
55
56 /** Could be called from any thread.
57  *  @param non_blocking true to return false quickly if no video is available quickly.
58  *  @return false if we gave up because it would take too long, otherwise true.
59  */
60 bool
61 VideoView::get_next_frame (bool non_blocking)
62 {
63         if (length() == dcpomatic::DCPTime()) {
64                 return true;
65         }
66
67         shared_ptr<Butler> butler = _viewer->butler ();
68         if (!butler) {
69                 return false;
70         }
71         add_get ();
72
73         boost::mutex::scoped_lock lm (_mutex);
74
75         do {
76                 Butler::Error e;
77                 pair<shared_ptr<PlayerVideo>, dcpomatic::DCPTime> pv = butler->get_video (!non_blocking, &e);
78                 if (e.code == Butler::Error::DIED) {
79                         LOG_ERROR ("Butler died with %1", e.summary());
80                 }
81                 if (!pv.first && e.code == Butler::Error::AGAIN) {
82                         return false;
83                 }
84                 _player_video = pv;
85         } while (
86                 _player_video.first &&
87                 _three_d &&
88                 _eyes != _player_video.first->eyes() &&
89                 _player_video.first->eyes() != EYES_BOTH
90                 );
91
92         if (_player_video.first && _player_video.first->error()) {
93                 ++_errored;
94         }
95
96         return true;
97 }
98
99 dcpomatic::DCPTime
100 VideoView::one_video_frame () const
101 {
102         return dcpomatic::DCPTime::from_frames (1, video_frame_rate());
103 }
104
105 /** @return Time in ms until the next frame is due, or empty if nothing is due */
106 optional<int>
107 VideoView::time_until_next_frame () const
108 {
109         if (length() == dcpomatic::DCPTime()) {
110                 /* There's no content, so this doesn't matter */
111                 return optional<int>();
112         }
113
114         dcpomatic::DCPTime const next = position() + one_video_frame();
115         dcpomatic::DCPTime const time = _viewer->audio_time().get_value_or(position());
116         if (next < time) {
117                 return 0;
118         }
119         return (next.seconds() - time.seconds()) * 1000;
120 }
121
122 void
123 VideoView::start ()
124 {
125         boost::mutex::scoped_lock lm (_mutex);
126         _dropped = 0;
127         _errored = 0;
128 }
129
130 bool
131 VideoView::refresh_metadata (shared_ptr<const Film> film, dcp::Size video_container_size, dcp::Size film_frame_size)
132 {
133         pair<shared_ptr<PlayerVideo>, dcpomatic::DCPTime> pv = player_video ();
134         if (!pv.first) {
135                 return false;
136         }
137
138         if (!pv.first->reset_metadata (film, video_container_size, film_frame_size)) {
139                 return false;
140         }
141
142         update ();
143         return true;
144 }
145