mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
radeon/uvd: get the target buffer pitch correct for different format
Signed-off-by: Leo Liu <leo.liu@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
parent
2843c5d15c
commit
2b1eacabfa
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue