Fix build again.
[dcpomatic.git] / src / lib / delay_line.h
index e8d9560af599e5da366ed4735d17c6cf7ce6a235..781dce88a63938f611b76179029851eee0d6715c 100644 (file)
 */
 
 #include <boost/shared_ptr.hpp>
+#include "processor.h"
 
-class AudioBuffers;
-
-/** A delay line for audio */
-class DelayLine
+/** A delay line */
+class DelayLine : public TimedAudioVideoProcessor
 {
 public:
-       DelayLine (int channels, int frames);
-       ~DelayLine ();
+       DelayLine (boost::shared_ptr<Log> log, double);
        
-       void feed (boost::shared_ptr<AudioBuffers>);
+       void process_video (boost::shared_ptr<const Image>, bool, boost::shared_ptr<Subtitle>, double);
+       void process_audio (boost::shared_ptr<const AudioBuffers>, double);
 
 private:
-       boost::shared_ptr<AudioBuffers> _buffers;
-       int _negative_delay_remaining; ///< number of frames of negative delay that remain to emit
+       double _seconds;
 };