X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=ycbcr_input.h;h=9f4e320cb6926f1f21d8fc98b2a9c66669ecb6da;hp=0f868a8a4ee4fdfc67cfd35a36bb8cb5fb7d3821;hb=2b6a8585772bf9ae742a2ee36144a0cdd5ba0524;hpb=9cf78e3b5a801b7841133011f74fc7962861705d diff --git a/ycbcr_input.h b/ycbcr_input.h index 0f868a8..9f4e320 100644 --- a/ycbcr_input.h +++ b/ycbcr_input.h @@ -10,9 +10,12 @@ #include #include "effect.h" +#include "effect_chain.h" #include "image_format.h" #include "input.h" +class ResourcePool; + struct YCbCrFormat { // Which formula for Y' to use. YCbCrLumaCoefficients luma_coefficients; @@ -77,27 +80,30 @@ public: invalidate_pixel_data(); } - void invalidate_pixel_data() - { - needs_update = true; - } + void invalidate_pixel_data(); void set_pitch(unsigned channel, unsigned pitch) { assert(channel >= 0 && channel < 3); this->pitch[channel] = pitch; } + virtual void inform_added(EffectChain *chain) + { + resource_pool = chain->get_resource_pool(); + } + private: ImageFormat image_format; YCbCrFormat ycbcr_format; GLuint pbos[3], texture_num[3]; - bool needs_update, finalized; + bool finalized; int needs_mipmaps; unsigned width, height, widths[3], heights[3]; const unsigned char *pixel_data[3]; unsigned pitch[3]; + ResourcePool *resource_pool; }; #endif // !defined(_MOVIT_YCBCR_INPUT_H)