Several fixes to audio.
[dcpomatic.git] / src / lib / video_ring_buffers.cc
1 /*
2     Copyright (C) 2016-2017 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_ring_buffers.h"
22 #include "player_video.h"
23 #include <boost/foreach.hpp>
24 #include <list>
25 #include <iostream>
26
27 using std::list;
28 using std::make_pair;
29 using std::cout;
30 using std::pair;
31 using boost::shared_ptr;
32 using boost::optional;
33
34 void
35 VideoRingBuffers::put (shared_ptr<PlayerVideo> frame, DCPTime time)
36 {
37         boost::mutex::scoped_lock lm (_mutex);
38         _data.push_back (make_pair (frame, time));
39 }
40
41 pair<shared_ptr<PlayerVideo>, DCPTime>
42 VideoRingBuffers::get ()
43 {
44         boost::mutex::scoped_lock lm (_mutex);
45         if (_data.empty ()) {
46                 return make_pair(shared_ptr<PlayerVideo>(), DCPTime());
47         }
48         pair<shared_ptr<PlayerVideo>, DCPTime> const r = _data.front ();
49         _data.pop_front ();
50         return r;
51 }
52
53 Frame
54 VideoRingBuffers::size () const
55 {
56         boost::mutex::scoped_lock lm (_mutex);
57         return _data.size ();
58 }
59
60 bool
61 VideoRingBuffers::empty () const
62 {
63         boost::mutex::scoped_lock lm (_mutex);
64         return _data.empty ();
65 }
66
67 void
68 VideoRingBuffers::clear ()
69 {
70         boost::mutex::scoped_lock lm (_mutex);
71         _data.clear ();
72 }
73
74 optional<DCPTime>
75 VideoRingBuffers::earliest () const
76 {
77         boost::mutex::scoped_lock lm (_mutex);
78         if (_data.empty ()) {
79                 return optional<DCPTime> ();
80         }
81
82         return _data.front().second;
83 }