Add comment.
[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 void
27 VideoView::clear ()
28 {
29         boost::mutex::scoped_lock lm (_mutex);
30         _player_video.first.reset ();
31         _player_video.second = dcpomatic::DCPTime ();
32 }
33
34 /** @param non_blocking true to return false quickly if no video is available quickly.
35  *  @return false if we gave up because it would take too long, otherwise true.
36  */
37 bool
38 VideoView::get_next_frame (bool non_blocking)
39 {
40         DCPOMATIC_ASSERT (_viewer->butler());
41         _viewer->_gets++;
42
43         boost::mutex::scoped_lock lm (_mutex);
44
45         do {
46                 Butler::Error e;
47                 _player_video = _viewer->butler()->get_video (!non_blocking, &e);
48                 if (!_player_video.first && e == Butler::AGAIN) {
49                         return false;
50                 }
51         } while (
52                 _player_video.first &&
53                 _viewer->film()->three_d() &&
54                 _viewer->_eyes != _player_video.first->eyes() &&
55                 _player_video.first->eyes() != EYES_BOTH
56                 );
57
58         /* XXX_b: this is called from the GL thread so it shouldn't be opening error dialogs */
59         try {
60                 _viewer->butler()->rethrow ();
61         } catch (DecodeError& e) {
62                 error_dialog (get(), e.what());
63         }
64
65         return true;
66 }
67
68 dcpomatic::DCPTime
69 VideoView::one_video_frame () const
70 {
71         return dcpomatic::DCPTime::from_frames (1, video_frame_rate());
72 }
73
74 /* XXX_b: comment */
75 int
76 VideoView::time_until_next_frame () const
77 {
78         dcpomatic::DCPTime const next = position() + one_video_frame();
79         dcpomatic::DCPTime const time = _viewer->audio_time().get_value_or(position());
80         std::cout << to_string(next) << " " << to_string(time) << " " << ((next.seconds() - time.seconds()) * 1000) << "\n";
81         if (next < time) {
82                 return 0;
83         }
84         return (next.seconds() - time.seconds()) * 1000;
85 }
86