]> git.sesse.net Git - movit/blobdiff - ycbcr_input.h
Add a hack so that RGBA pixels are flipped properly in unit tests.
[movit] / ycbcr_input.h
index fd9db273d52ba1a049c0ff98411f507a97ccc723..76afc3aa676edc43579d4da21fed51c828de0740 100644 (file)
@@ -30,6 +30,9 @@ public:
        YCbCrInput(const ImageFormat &image_format,
                   const YCbCrFormat &ycbcr_format,
                   unsigned width, unsigned height);
+       ~YCbCrInput();
+
+       virtual std::string effect_type_id() const { return "YCbCrInput"; }
 
        // Create the texture itself. We cannot do this in the constructor,
        // because we don't necessarily know all the settings (sRGB texture,
@@ -43,6 +46,8 @@ public:
        // Uploads the texture if it has changed since last time.
        void set_gl_state(GLuint glsl_program_num, const std::string& prefix, unsigned *sampler_num);
 
+       unsigned get_width() const { return width; }
+       unsigned get_height() const { return height; }
        ColorSpace get_color_space() const { return image_format.color_space; }
        GammaCurve get_gamma_curve() const { return image_format.gamma_curve; }
 
@@ -62,28 +67,19 @@ public:
                needs_update = true;
        }
 
-       const unsigned char *get_pixel_data(unsigned channel) const
-       {
-               assert(channel >= 0 && channel < 3);
-               return pixel_data[channel];
-       }
-
        void set_pitch(unsigned channel, unsigned pitch) {
-               assert(!finalized);
-               assert(channel >= 0 && channel < 3);
-               this->pitch[channel] = pitch;
-       }
-
-       unsigned get_pitch(unsigned channel) {
                assert(channel >= 0 && channel < 3);
-               return pitch[channel];
+               if (this->pitch[channel] != pitch) {
+                       this->pitch[channel] = pitch;
+                       needs_pbo_recreate = true;
+               }
        }
 
 private:
        ImageFormat image_format;
        YCbCrFormat ycbcr_format;
        GLuint pbos[3], texture_num[3];
-       bool needs_update, finalized;
+       bool needs_update, needs_pbo_recreate, finalized;
 
        int needs_mipmaps;