Set correct block residual bit -> fixes deblocking

This commit is contained in:
Marko Viitanen 2013-10-18 16:23:15 +03:00
parent c44f0ff540
commit 927155de2b

View file

@ -1457,6 +1457,8 @@ void encode_transform_tree(encoder_control *encoder, int32_t x_cu,int32_t y_cu,
// if non-zero coeffs // if non-zero coeffs
if (cur_cu->coeff_y) { if (cur_cu->coeff_y) {
picture_set_block_residual(encoder->in.cur_pic,x_cu,y_cu,depth,1);
i = 0; i = 0;
for (y = 0; y < width; y++) { for (y = 0; y < width; y++) {
for (x = 0; x < width; x++) { for (x = 0; x < width; x++) {