From 548b0262975b51244c32fccb50631b008a50c555 Mon Sep 17 00:00:00 2001 From: Peyton Lee Date: Thu, 5 Jun 2025 17:19:37 +0800 Subject: [PATCH] radeonsi/vpe: correct capability should return the capability that hardware can support Signed-off-by: Peyton Lee Part-of: --- src/gallium/drivers/radeonsi/si_get.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeonsi/si_get.c b/src/gallium/drivers/radeonsi/si_get.c index 29bda25cb36..e13e18ec649 100644 --- a/src/gallium/drivers/radeonsi/si_get.c +++ b/src/gallium/drivers/radeonsi/si_get.c @@ -127,7 +127,7 @@ static int si_get_video_param(struct pipe_screen *screen, enum pipe_video_profil /* VPE 1st generation does not support orientation * Have to determine the version and features of VPE in future. */ - return PIPE_VIDEO_VPP_ORIENTATION_DEFAULT; + return PIPE_VIDEO_VPP_FLIP_HORIZONTAL; case PIPE_VIDEO_CAP_VPP_BLEND_MODES: /* VPE 1st generation does not support blending. * Have to determine the version and features of VPE in future.