]> git.sesse.net Git - movit/blobdiff - ycbcr_input.h
Make the bools in the demo app bools instead of 0/1 integers (some legacy from the...
[movit] / ycbcr_input.h
index ed0c6ee1b786c5535ca9782b9c2b75912689f04d..6c33cec9ef4525b0d77e479dc76af7dce2fb8777 100644 (file)
@@ -30,6 +30,7 @@ public:
        YCbCrInput(const ImageFormat &image_format,
                   const YCbCrFormat &ycbcr_format,
                   unsigned width, unsigned height);
+       ~YCbCrInput();
 
        virtual std::string effect_type_id() const { return "YCbCrInput"; }
 
@@ -47,7 +48,7 @@ public:
 
        unsigned get_width() const { return width; }
        unsigned get_height() const { return height; }
-       ColorSpace get_color_space() const { return image_format.color_space; }
+       Colorspace get_color_space() const { return image_format.color_space; }
        GammaCurve get_gamma_curve() const { return image_format.gamma_curve; }
 
        // Tells the input where to fetch the actual pixel data. Note that if you change