4edc2cd23a28cf0f3b943fe3a9d6cb409fecd973
[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 boost::shared_ptr;
28 using boost::optional;
29
30 VideoView::VideoView (FilmViewer* viewer)
31         : _viewer (viewer)
32 #ifdef DCPOMATIC_VARIANT_SWAROOP
33         , _in_watermark (false)
34 #endif
35         , _state_timer ("viewer")
36         , _video_frame_rate (0)
37         , _eyes (EYES_LEFT)
38         , _three_d (false)
39         , _dropped (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                 _player_video = butler->get_video (!non_blocking, &e);
75                 if (!_player_video.first && e == Butler::AGAIN) {
76                         return false;
77                 }
78         } while (
79                 _player_video.first &&
80                 _three_d &&
81                 _eyes != _player_video.first->eyes() &&
82                 _player_video.first->eyes() != EYES_BOTH
83                 );
84
85         return true;
86 }
87
88 dcpomatic::DCPTime
89 VideoView::one_video_frame () const
90 {
91         return dcpomatic::DCPTime::from_frames (1, video_frame_rate());
92 }
93
94 /** @return Time in ms until the next frame is due, or empty if nothing is due */
95 optional<int>
96 VideoView::time_until_next_frame () const
97 {
98         if (length() == dcpomatic::DCPTime()) {
99                 /* There's no content, so this doesn't matter */
100                 return optional<int>();
101         }
102
103         dcpomatic::DCPTime const next = position() + one_video_frame();
104         dcpomatic::DCPTime const time = _viewer->audio_time().get_value_or(position());
105         if (next < time) {
106                 return 0;
107         }
108         return (next.seconds() - time.seconds()) * 1000;
109 }
110
111 void
112 VideoView::start ()
113 {
114         boost::mutex::scoped_lock lm (_mutex);
115         _dropped = 0;
116 }
117
118 bool
119 VideoView::refresh_metadata (shared_ptr<const Film> film, dcp::Size video_container_size, dcp::Size film_frame_size)
120 {
121         boost::mutex::scoped_lock lm (_mutex);
122         if (!_player_video.first) {
123                 return false;
124         }
125
126         if (!_player_video.first->reset_metadata (film, video_container_size, film_frame_size)) {
127                 return false;
128         }
129
130         update ();
131         return true;
132 }
133