Fix default placement of SRT (etc.) now that the alignment has changed
[dcpomatic.git] / src / lib / audio_ring_buffers.h
index be8a616e22ce582d95bf724ac9f53f6a0f3b53e9..6fb84e0d76dc8684757827742d183943e7b62a51 100644 (file)
@@ -43,11 +43,12 @@ public:
        boost::optional<dcpomatic::DCPTime> peek () const;
 
        void clear ();
+       /** @return number of frames currently available */
        Frame size () const;
 
 private:
        mutable boost::mutex _mutex;
-       std::list<std::pair<std::shared_ptr<const AudioBuffers>, dcpomatic::DCPTime> > _buffers;
+       std::list<std::pair<std::shared_ptr<const AudioBuffers>, dcpomatic::DCPTime>> _buffers;
        int _used_in_head = 0;
 };