From: Leo Liu Date: Mon, 21 Aug 2017 15:50:38 +0000 (-0400) Subject: radeon/vcn: correct target buffer pitch calculation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df6c087a383f801c32352309e9b858340989955d;p=mesa.git radeon/vcn: correct target buffer pitch calculation since the way should be as same as UVD Signed-off-by: Leo Liu Reviewed-by: Christian König --- diff --git a/src/gallium/drivers/radeon/radeon_vcn_dec.c b/src/gallium/drivers/radeon/radeon_vcn_dec.c index a60b969a273..51391627d5f 100644 --- a/src/gallium/drivers/radeon/radeon_vcn_dec.c +++ b/src/gallium/drivers/radeon/radeon_vcn_dec.c @@ -631,7 +631,7 @@ static struct pb_buffer *rvcn_dec_message_decode(struct radeon_decoder *dec, decode->db_pitch = align(dec->base.width, 32); decode->db_surf_tile_config = 0; - decode->dt_pitch = luma->surface.u.gfx9.surf_pitch * luma->surface.bpe;; + decode->dt_pitch = luma->surface.u.gfx9.surf_pitch * luma->surface.blk_w; decode->dt_uv_pitch = decode->dt_pitch / 2; decode->dt_tiling_mode = 0;