From 69db546936f5b8fd9be1ef285005489631427b62 Mon Sep 17 00:00:00 2001 From: David Rosca Date: Fri, 17 Apr 2026 13:26:18 +0200 Subject: [PATCH] frontends/va: Fix setting output color properties from color standard Fixes: 6e8a8d8ee70 ("frontends/va: Stop using vpp colors standard") Reviewed-by: Ruijing Dong Reviewed-by: Pierre-Eric Pelloux-Prayer Part-of: --- src/gallium/frontends/va/postproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/frontends/va/postproc.c b/src/gallium/frontends/va/postproc.c index 60f30e1da1f..a2e3a148a47 100644 --- a/src/gallium/frontends/va/postproc.c +++ b/src/gallium/frontends/va/postproc.c @@ -704,7 +704,7 @@ vlVaHandleVAProcPipelineParameterBufferType(vlVaDriver *drv, vlVaContext *contex vpp.out_transfer_characteristics = param->output_color_properties.transfer_characteristics; vpp.out_matrix_coefficients = param->output_color_properties.matrix_coefficients; } else { - vlVaGetColorProperties(param->surface_color_standard, &vpp.out_color_primaries, + vlVaGetColorProperties(param->output_color_standard, &vpp.out_color_primaries, &vpp.out_transfer_characteristics, &vpp.out_matrix_coefficients); }