Make terminate_threads() less likely to leave _threads containing invalid pointers.
[dcpomatic.git] / src / lib / video_ring_buffers.cc
index 254285456ebc4253d125111df1d5e9e45bdd4da9..0167f4aec4309c62ba47d1966ee04cba278ced5a 100644 (file)
@@ -20,6 +20,7 @@
 
 #include "video_ring_buffers.h"
 #include "player_video.h"
+#include "compose.hpp"
 #include <boost/foreach.hpp>
 #include <list>
 #include <iostream>
@@ -28,13 +29,13 @@ using std::list;
 using std::make_pair;
 using std::cout;
 using std::pair;
+using std::string;
 using boost::shared_ptr;
 using boost::optional;
 
 void
 VideoRingBuffers::put (shared_ptr<PlayerVideo> frame, DCPTime time)
 {
-       cout << "put " << to_string(time) << "\n";
        boost::mutex::scoped_lock lm (_mutex);
        _data.push_back (make_pair (frame, time));
 }
@@ -44,11 +45,9 @@ VideoRingBuffers::get ()
 {
        boost::mutex::scoped_lock lm (_mutex);
        if (_data.empty ()) {
-               cout << "get: no data.\n";
                return make_pair(shared_ptr<PlayerVideo>(), DCPTime());
        }
        pair<shared_ptr<PlayerVideo>, DCPTime> const r = _data.front ();
-       cout << "get: here we go! " << to_string(r.second) << "\n";
        _data.pop_front ();
        return r;
 }
@@ -60,6 +59,13 @@ VideoRingBuffers::size () const
        return _data.size ();
 }
 
+bool
+VideoRingBuffers::empty () const
+{
+       boost::mutex::scoped_lock lm (_mutex);
+       return _data.empty ();
+}
+
 void
 VideoRingBuffers::clear ()
 {
@@ -67,13 +73,12 @@ VideoRingBuffers::clear ()
        _data.clear ();
 }
 
-optional<DCPTime>
-VideoRingBuffers::latest () const
+pair<size_t, string>
+VideoRingBuffers::memory_used () const
 {
-       boost::mutex::scoped_lock lm (_mutex);
-       if (_data.empty ()) {
-               return optional<DCPTime> ();
+       size_t m = 0;
+       for (list<pair<shared_ptr<PlayerVideo>, DCPTime> >::const_iterator i = _data.begin(); i != _data.end(); ++i) {
+               m += i->first->memory_used();
        }
-
-       return _data.back().second;
+       return make_pair(m, String::compose("%1 frames", _data.size()));
 }