From 49f36f4658d458211c41e0c0f85bd670ef225f92 Mon Sep 17 00:00:00 2001 From: Thong Thai Date: Fri, 25 Nov 2022 17:38:53 -0500 Subject: [PATCH] frontends/va/postproc: default to weave when deinterlacing Signed-off-by: Thong Thai Tested-by: Marcus Seyfarth Reviewed-by: Leo Liu Part-of: --- src/gallium/frontends/va/postproc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/frontends/va/postproc.c b/src/gallium/frontends/va/postproc.c index 4e6dd722405..74de1fe3518 100644 --- a/src/gallium/frontends/va/postproc.c +++ b/src/gallium/frontends/va/postproc.c @@ -252,6 +252,7 @@ static VAStatus vlVaPostProcBlit(vlVaDriver *drv, vlVaContext *context, } if (src->interlaced != dst->interlaced) { + deinterlace = deinterlace ? deinterlace : VL_COMPOSITOR_WEAVE; vl_compositor_yuv_deint_full(&drv->cstate, &drv->compositor, src, dst, &src_rect, &dst_rect, deinterlace);