summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Liu <leo.liu@amd.com>2019-10-28 13:08:25 -0400
committerLeo Liu <leo.liu@amd.com>2019-10-30 12:43:04 -0400
commitb4c812a26981d8fe4f803808780407523c946e6c (patch)
tree67e4388e149b359d794a88b52b25c7705b222b20
parent8235bc64112c701ae763c76417ad8bb0644ad8cb (diff)
radeon/vcn: Add VP9 8K decode support
Require increase of context buffer size Signed-off-by: Leo Liu <leo.liu@amd.com> Reviewed-by: Boyuan Zhang <Boyuan.Zhang@amd.com>
-rw-r--r--src/gallium/drivers/radeon/radeon_vcn_dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/radeon_vcn_dec.c b/src/gallium/drivers/radeon/radeon_vcn_dec.c
index 09db9e53d33..6d0ae7b4ce1 100644
--- a/src/gallium/drivers/radeon/radeon_vcn_dec.c
+++ b/src/gallium/drivers/radeon/radeon_vcn_dec.c
@@ -944,7 +944,7 @@ static struct pb_buffer *rvcn_dec_message_decode(struct radeon_decoder *dec,
/* SMP collocated context data */
ctx_size += 9 * 64 * 2 * 128 * 68;
/* SDB left tile pixel */
- ctx_size += 8 * 2 * 8192;
+ ctx_size += 8 * 2 * 2 * 8192;
} else {
ctx_size += 32 * 2 * 64 * 64;
ctx_size += 9 * 64 * 2 * 64 * 64;