diff options
author | Leo Liu <[email protected]> | 2017-04-17 12:14:00 -0400 |
---|---|---|
committer | Leo Liu <[email protected]> | 2017-05-25 11:40:20 -0400 |
commit | c23ffafc509e0240e04cdd4227a51397bef26d66 (patch) | |
tree | 304a71b2184a141b784bb98980be8bff789c8a27 /src/gallium/drivers/radeon | |
parent | 34f7cf49c8a8a900c2a9a2e197041e2d211dccd6 (diff) |
radeon: rename has_uvd info to has_hw_decode
Signed-off-by: Leo Liu <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r-- | src/gallium/drivers/radeon/r600_pipe_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.c b/src/gallium/drivers/radeon/r600_pipe_common.c index 5460daabbb4..2c0cadb0309 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.c +++ b/src/gallium/drivers/radeon/r600_pipe_common.c @@ -1351,7 +1351,7 @@ bool r600_common_screen_init(struct r600_common_screen *rscreen, rscreen->b.resource_from_user_memory = r600_buffer_from_user_memory; rscreen->b.query_memory_info = r600_query_memory_info; - if (rscreen->info.has_uvd) { + if (rscreen->info.has_hw_decode) { rscreen->b.get_video_param = rvid_get_video_param; rscreen->b.is_video_format_supported = rvid_is_format_supported; } else { @@ -1397,7 +1397,7 @@ bool r600_common_screen_init(struct r600_common_screen *rscreen, printf("has_virtual_memory = %i\n", rscreen->info.has_virtual_memory); printf("gfx_ib_pad_with_type2 = %i\n", rscreen->info.gfx_ib_pad_with_type2); printf("num_sdma_rings = %i\n", rscreen->info.num_sdma_rings); - printf("has_uvd = %i\n", rscreen->info.has_uvd); + printf("has_hw_decode = %i\n", rscreen->info.has_hw_decode); printf("me_fw_version = %i\n", rscreen->info.me_fw_version); printf("pfp_fw_version = %i\n", rscreen->info.pfp_fw_version); printf("ce_fw_version = %i\n", rscreen->info.ce_fw_version); |