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