X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=ycbcr_input.h;h=ed0c6ee1b786c5535ca9782b9c2b75912689f04d;hp=43d1f1dc0d4ee2b2ddcd6fdf7df5f6950d152136;hb=b2da076fe497ab3cbaa01c1e5230210e8a2cf228;hpb=f99ad333a7acbb6c8c995dbb036484ae8940c490 diff --git a/ycbcr_input.h b/ycbcr_input.h index 43d1f1d..ed0c6ee 100644 --- a/ycbcr_input.h +++ b/ycbcr_input.h @@ -45,6 +45,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; } @@ -64,12 +66,6 @@ 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(channel >= 0 && channel < 3); if (this->pitch[channel] != pitch) { @@ -78,11 +74,6 @@ public: } } - unsigned get_pitch(unsigned channel) { - assert(channel >= 0 && channel < 3); - return pitch[channel]; - } - private: ImageFormat image_format; YCbCrFormat ycbcr_format;