From: Leo Liu Date: Mon, 4 Jul 2016 15:29:28 +0000 (-0400) Subject: radeon/vce: increase cpb height alignment X-Git-Tag: upstream/17.1.0~8282 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e560a11b872d2c79ee85405c64deafb789ce77f9;p=platform%2Fupstream%2Fmesa.git radeon/vce: increase cpb height alignment Height should be aligned with 2 macroblocks, thus making safer for tiled mode Signed-off-by: Leo Liu Reviewed-by: Christian König --- diff --git a/src/gallium/drivers/radeon/radeon_vce.c b/src/gallium/drivers/radeon/radeon_vce.c index e8aac8e..92cb8ce 100644 --- a/src/gallium/drivers/radeon/radeon_vce.c +++ b/src/gallium/drivers/radeon/radeon_vce.c @@ -454,7 +454,7 @@ struct pipe_video_codec *rvce_create_encoder(struct pipe_context *context, get_buffer(((struct vl_video_buffer *)tmp_buf)->resources[0], NULL, &tmp_surf); cpb_size = align(tmp_surf->level[0].pitch_bytes, 128); - cpb_size = cpb_size * align(tmp_surf->npix_y, 16); + cpb_size = cpb_size * align(tmp_surf->npix_y, 32); cpb_size = cpb_size * 3 / 2; cpb_size = cpb_size * enc->cpb_num; if (enc->dual_pipe)