X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fscaler.h;h=14077ff1dc803349c75b4faf3452f411531e007b;hb=2c0478d2b33906845b9d910668b12fe3e8f03a7c;hp=c80f4b7dbf76a21679ca8033b8283f838d938ca6;hpb=d7fe5fa4178af87b5f1e5a571a78313fa00c3327;p=dcpomatic.git diff --git a/src/lib/scaler.h b/src/lib/scaler.h index c80f4b7db..14077ff1d 100644 --- a/src/lib/scaler.h +++ b/src/lib/scaler.h @@ -21,21 +21,22 @@ * @brief A class to describe one of FFmpeg's software scalers. */ -#ifndef DVDOMATIC_SCALER_H -#define DVDOMATIC_SCALER_H +#ifndef DCPOMATIC_SCALER_H +#define DCPOMATIC_SCALER_H #include #include +#include /** @class Scaler * @brief Class to describe one of FFmpeg's software scalers */ -class Scaler +class Scaler : public boost::noncopyable { public: Scaler (int f, std::string i, std::string n); - /** @return id used for calls to FFmpeg's pp_postprocess */ + /** @return id used for calls to FFmpeg's sws_getContext */ int ffmpeg_id () const { return _ffmpeg_id; }