From: Leo Liu Date: Fri, 18 Aug 2017 16:03:19 +0000 (-0400) Subject: radeon/uvd: get the target buffer pitch correct for different format X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2b1eacabfab56fedd084818b0ae7011875a1a20b;p=mesa.git radeon/uvd: get the target buffer pitch correct for different format Signed-off-by: Leo Liu Reviewed-by: Christian König --- diff --git a/src/gallium/drivers/radeon/radeon_uvd.c b/src/gallium/drivers/radeon/radeon_uvd.c index d5352d9de6f..dd8c0e0eb0d 100644 --- a/src/gallium/drivers/radeon/radeon_uvd.c +++ b/src/gallium/drivers/radeon/radeon_uvd.c @@ -1397,7 +1397,7 @@ void ruvd_set_dt_surfaces(struct ruvd_msg *msg, struct radeon_surf *luma, switch (type) { default: case RUVD_SURFACE_TYPE_LEGACY: - msg->body.decode.dt_pitch = luma->u.legacy.level[0].nblk_x; + msg->body.decode.dt_pitch = luma->u.legacy.level[0].nblk_x * luma->blk_w; switch (luma->u.legacy.level[0].mode) { case RADEON_SURF_MODE_LINEAR_ALIGNED: msg->body.decode.dt_tiling_mode = RUVD_TILE_LINEAR; @@ -1435,7 +1435,7 @@ void ruvd_set_dt_surfaces(struct ruvd_msg *msg, struct radeon_surf *luma, msg->body.decode.dt_surf_tile_config |= RUVD_MACRO_TILE_ASPECT_RATIO(macro_tile_aspect(luma->u.legacy.mtilea)); break; case RUVD_SURFACE_TYPE_GFX9: - msg->body.decode.dt_pitch = luma->u.gfx9.surf_pitch * luma->bpe; + msg->body.decode.dt_pitch = luma->u.gfx9.surf_pitch * luma->blk_w; /* SWIZZLE LINEAR MODE */ msg->body.decode.dt_tiling_mode = RUVD_TILE_LINEAR; msg->body.decode.dt_array_mode = RUVD_ARRAY_MODE_LINEAR;