]> git.sesse.net Git - movit/blobdiff - ycbcr_input.h
Rec. 709 color space is the same as sRGB, of course, so do not print it on the graph.
[movit] / ycbcr_input.h
index fd9db273d52ba1a049c0ff98411f507a97ccc723..43d1f1dc0d4ee2b2ddcd6fdf7df5f6950d152136 100644 (file)
@@ -31,6 +31,8 @@ public:
                   const YCbCrFormat &ycbcr_format,
                   unsigned width, unsigned height);
 
+       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,
        // mipmap generation) at that point.
@@ -69,9 +71,11 @@ public:
        }
 
        void set_pitch(unsigned channel, unsigned pitch) {
-               assert(!finalized);
                assert(channel >= 0 && channel < 3);
-               this->pitch[channel] = pitch;
+               if (this->pitch[channel] != pitch) {
+                       this->pitch[channel] = pitch;
+                       needs_pbo_recreate = true;
+               }
        }
 
        unsigned get_pitch(unsigned channel) {
@@ -83,7 +87,7 @@ 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;