Fix some crashes.
[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         if (!butler) {
64                 return false;
65         }
66         add_get ();
67
68         boost::mutex::scoped_lock lm (_mutex);
69
70         do {
71                 Butler::Error e;
72                 _player_video = butler->get_video (!non_blocking, &e);
73                 if (!_player_video.first && e == Butler::AGAIN) {
74                         return false;
75                 }
76         } while (
77                 _player_video.first &&
78                 _three_d &&
79                 _eyes != _player_video.first->eyes() &&
80                 _player_video.first->eyes() != EYES_BOTH
81                 );
82
83         return true;
84 }
85
86 dcpomatic::DCPTime
87 VideoView::one_video_frame () const
88 {
89         return dcpomatic::DCPTime::from_frames (1, video_frame_rate());
90 }
91
92 /** @return Time in ms until the next frame is due */
93 int
94 VideoView::time_until_next_frame () const
95 {
96         if (length() == dcpomatic::DCPTime()) {
97                 /* There's no content, so this doesn't matter */
98                 return 0;
99         }
100
101         dcpomatic::DCPTime const next = position() + one_video_frame();
102         dcpomatic::DCPTime const time = _viewer->audio_time().get_value_or(position());
103         if (next < time) {
104                 return 0;
105         }
106         return (next.seconds() - time.seconds()) * 1000;
107 }
108
109 void
110 VideoView::start ()
111 {
112         boost::mutex::scoped_lock lm (_mutex);
113         _dropped = 0;
114 }
115
116 bool
117 VideoView::refresh_metadata (shared_ptr<const Film> film, dcp::Size video_container_size, dcp::Size film_frame_size)
118 {
119         boost::mutex::scoped_lock lm (_mutex);
120         if (!_player_video.first) {
121                 return false;
122         }
123
124         if (!_player_video.first->reset_metadata (film, video_container_size, film_frame_size)) {
125                 return false;
126         }
127
128         update ();
129         return true;
130 }
131