X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fmatcher.h;h=60bb8743226078628adfb7246fe2a3922c83a7b3;hb=0b6652b491ffe7544a6f4a14fe968615d4481594;hp=03efd5cc0f8092f9496509569985272f60efcc2e;hpb=83026b3b818b1acbd277663d40c4c9accf6eeee9;p=dcpomatic.git diff --git a/src/lib/matcher.h b/src/lib/matcher.h index 03efd5cc0..60bb87432 100644 --- a/src/lib/matcher.h +++ b/src/lib/matcher.h @@ -19,12 +19,13 @@ #include #include "processor.h" +#include "ffmpeg_compatibility.h" class Matcher : public AudioVideoProcessor { public: Matcher (Log* log, int sample_rate, float frames_per_second); - void process_video (boost::shared_ptr i, boost::shared_ptr s); + void process_video (boost::shared_ptr i, bool, boost::shared_ptr s); void process_audio (boost::shared_ptr); void process_end (); @@ -34,6 +35,6 @@ private: int _video_frames; int64_t _audio_frames; boost::optional _pixel_format; - boost::optional _size; + boost::optional _size; boost::optional _channels; };