[Mesa-dev] [PATCH] amd/common: check DRM version 3.27 for JPEG decode
Alex Smith
asmith at feralinteractive.com
Wed Oct 24 08:39:25 UTC 2018
Thanks, that's fixed it for me.
On Tue, 23 Oct 2018 at 18:05, Liu, Leo <Leo.Liu at amd.com> wrote:
> JPEG was added after DRM version 3.26
>
> Signed-off-by: Leo Liu <leo.liu at amd.com>
> Fixes: 4558758c51749(amd/common: add vcn jpeg ip info query)
> Cc: Boyuan Zhang <boyuan.zhang at amd.com>
> Cc: Alex Smith <asmith at feralinteractive.com>
> ---
> src/amd/common/ac_gpu_info.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c
> index ed08b500c63..2c70fb2c721 100644
> --- a/src/amd/common/ac_gpu_info.c
> +++ b/src/amd/common/ac_gpu_info.c
> @@ -186,7 +186,7 @@ bool ac_query_gpu_info(int fd, amdgpu_device_handle
> dev,
> }
> }
>
> - if (info->drm_major == 3 && info->drm_minor >= 17) {
> + if (info->drm_major == 3 && info->drm_minor >= 27) {
> r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_VCN_JPEG, 0,
> &vcn_jpeg);
> if (r) {
> fprintf(stderr, "amdgpu:
> amdgpu_query_hw_ip_info(vcn_jpeg) failed.\n");
> --
> 2.17.1
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/mesa-dev/attachments/20181024/054bb17c/attachment.html>
More information about the mesa-dev
mailing list