diff options
author | Leo Liu <[email protected]> | 2019-10-28 13:08:25 -0400 |
---|---|---|
committer | Leo Liu <[email protected]> | 2019-10-30 12:43:04 -0400 |
commit | b4c812a26981d8fe4f803808780407523c946e6c (patch) | |
tree | 67e4388e149b359d794a88b52b25c7705b222b20 /src | |
parent | 8235bc64112c701ae763c76417ad8bb0644ad8cb (diff) |
radeon/vcn: Add VP9 8K decode support
Require increase of context buffer size
Signed-off-by: Leo Liu <[email protected]>
Reviewed-by: Boyuan Zhang <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/radeon/radeon_vcn_dec.c | 2 |
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; |