X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=ycbcr_input.cpp;h=268abcb35059cc722ea7fc1f3495a9aebda0ad02;hp=a73518d4ad2797f274f2dad2cac6ebf6a281a0ff;hb=0de0202b22a6349d0f9c838947a96eef8155ac90;hpb=f898f4106a13b1efdbad85037781f785c2064a76 diff --git a/ycbcr_input.cpp b/ycbcr_input.cpp index a73518d..268abcb 100644 --- a/ycbcr_input.cpp +++ b/ycbcr_input.cpp @@ -17,6 +17,9 @@ YCbCrInput::YCbCrInput(const ImageFormat &image_format, width(width), height(height) { + pbos[0] = pbos[1] = pbos[2] = 0; + texture_num[0] = texture_num[1] = texture_num[2] = 0; + pitch[0] = pitch[1] = pitch[2] = width; assert(width % ycbcr_format.chroma_subsampling_x == 0); @@ -32,6 +35,18 @@ YCbCrInput::YCbCrInput(const ImageFormat &image_format, register_int("needs_mipmaps", &needs_mipmaps); } +YCbCrInput::~YCbCrInput() +{ + if (pbos[0] != 0) { + glDeleteBuffers(3, pbos); + check_error(); + } + if (texture_num[0] != 0) { + glDeleteTextures(3, texture_num); + check_error(); + } +} + void YCbCrInput::finalize() { // Create PBOs to hold the textures holding the input image, and then the texture itself.