X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fencoder.h;h=b5a641f50d40492caa008115cf294ea4ec084de5;hb=57f229171a08567efeaed678381808173e4ef7a5;hp=3fe707b511e717b38b001788db4a35d601ae8dfd;hpb=5fd5e78c51bd5630f6777001db5aa25103218c22;p=dcpomatic.git diff --git a/src/lib/encoder.h b/src/lib/encoder.h index 3fe707b51..b5a641f50 100644 --- a/src/lib/encoder.h +++ b/src/lib/encoder.h @@ -36,8 +36,6 @@ extern "C" { #include } #include "util.h" -#include "video_sink.h" -#include "audio_sink.h" class Image; class AudioBuffers; @@ -55,7 +53,7 @@ class Job; * is supplied as uncompressed PCM in blocks of various sizes. */ -class Encoder : public VideoSink, public AudioSink +class Encoder { public: Encoder (boost::shared_ptr f, boost::shared_ptr); @@ -68,10 +66,10 @@ public: * @param i Video frame image. * @param same true if i is the same as the last time we were called. */ - void process_video (boost::shared_ptr i, bool same, Time); + void process_video (boost::shared_ptr i, bool same); /** Call with some audio data */ - void process_audio (boost::shared_ptr, Time); + void process_audio (boost::shared_ptr); /** Called when a processing run has finished */ void process_end ();