std::shared_ptr
[dcpomatic.git] / src / lib / video_ring_buffers.cc
1 /*
2     Copyright (C) 2016-2020 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 "compose.hpp"
24 #include <boost/foreach.hpp>
25 #include <list>
26 #include <iostream>
27
28 using std::list;
29 using std::make_pair;
30 using std::cout;
31 using std::pair;
32 using std::string;
33 using std::shared_ptr;
34 using boost::optional;
35 using namespace dcpomatic;
36
37 void
38 VideoRingBuffers::put (shared_ptr<PlayerVideo> frame, DCPTime time)
39 {
40         boost::mutex::scoped_lock lm (_mutex);
41         _data.push_back (make_pair (frame, time));
42 }
43
44 pair<shared_ptr<PlayerVideo>, DCPTime>
45 VideoRingBuffers::get ()
46 {
47         boost::mutex::scoped_lock lm (_mutex);
48         if (_data.empty ()) {
49                 return make_pair(shared_ptr<PlayerVideo>(), DCPTime());
50         }
51         pair<shared_ptr<PlayerVideo>, DCPTime> const r = _data.front ();
52         _data.pop_front ();
53         return r;
54 }
55
56 Frame
57 VideoRingBuffers::size () const
58 {
59         boost::mutex::scoped_lock lm (_mutex);
60         return _data.size ();
61 }
62
63 bool
64 VideoRingBuffers::empty () const
65 {
66         boost::mutex::scoped_lock lm (_mutex);
67         return _data.empty ();
68 }
69
70 void
71 VideoRingBuffers::clear ()
72 {
73         boost::mutex::scoped_lock lm (_mutex);
74         _data.clear ();
75 }
76
77 pair<size_t, string>
78 VideoRingBuffers::memory_used () const
79 {
80         boost::mutex::scoped_lock lm (_mutex);
81         size_t m = 0;
82         for (list<pair<shared_ptr<PlayerVideo>, DCPTime> >::const_iterator i = _data.begin(); i != _data.end(); ++i) {
83                 m += i->first->memory_used();
84         }
85         return make_pair(m, String::compose("%1 frames", _data.size()));
86 }
87
88
89 void
90 VideoRingBuffers::reset_metadata (shared_ptr<const Film> film, dcp::Size player_video_container_size)
91 {
92         boost::mutex::scoped_lock lm (_mutex);
93         for (list<pair<shared_ptr<PlayerVideo>, DCPTime> >::const_iterator i = _data.begin(); i != _data.end(); ++i) {
94                 i->first->reset_metadata (film, player_video_container_size);
95         }
96 }
97