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