vpx_alpha: reindent after last changes

This commit is contained in:
Alexandre Janniaux 2024-09-11 16:11:54 +02:00 committed by Felix Paul Kühne
parent e3cad49115
commit b132d09580

View File

@ -135,7 +135,6 @@ static picture_t *CombinePicturesCPU(decoder_t *bdec, picture_t *opaque, picture
return out;
}
{
// use the dummy opaque plane attached in the picture context
struct pic_alpha_plane *p = alpha_ctx->plane;
if (p == NULL)
@ -148,7 +147,6 @@ static picture_t *CombinePicturesCPU(decoder_t *bdec, picture_t *opaque, picture
return NULL;
}
{
p->p.i_lines = bdec->fmt_out.video.i_height;
p->p.i_visible_lines = bdec->fmt_out.video.i_y_offset + bdec->fmt_out.video.i_visible_height;
@ -160,9 +158,7 @@ static picture_t *CombinePicturesCPU(decoder_t *bdec, picture_t *opaque, picture
alpha_ctx->plane = p;
}
}
out->p[opaque->i_planes] = p->p;
}
return out;
}