Bump version
[dcpomatic.git] / src / lib / delay_line.h
index 4d6f1313bd1e5af24fbaf3ed8b61a13312e754cd..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_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;
 };