Fix build again.
[dcpomatic.git] / src / lib / delay_line.h
index fa2870ae76cd4c4252d9c2489804fece215408fe..781dce88a63938f611b76179029851eee0d6715c 100644 (file)
 #include <boost/shared_ptr.hpp>
 #include "processor.h"
 
-class AudioBuffers;
-
-/** A delay line for audio */
-class DelayLine : public AudioProcessor
+/** A delay line */
+class DelayLine : public TimedAudioVideoProcessor
 {
 public:
-       DelayLine (Log* log, int channels, int frames);
+       DelayLine (boost::shared_ptr<Log> log, double);
        
-       void process_audio (boost::shared_ptr<AudioBuffers>);
-       void process_end ();
+       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
-       int _frames;
+       double _seconds;
 };