st/va: use new vl_compositor_yuv_deint_full() to deint

We also set src rectangle explicitly just in case of the mismatch
of size between interlaced buffer and progressive buffer

Acked-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
Leo Liu 2017-09-11 12:57:22 -04:00
parent db28fdc0ad
commit 3ad8687295
1 changed files with 11 additions and 3 deletions

View File

@ -668,9 +668,17 @@ vlVaEndPicture(VADriverContextP ctx, VAContextID context_id)
}
if (context->decoder->entrypoint == PIPE_VIDEO_ENTRYPOINT_ENCODE) {
if (old_buf->interlaced)
vl_compositor_yuv_deint(&drv->cstate, &drv->compositor, old_buf, surf->buffer);
else
if (old_buf->interlaced) {
struct u_rect src_rect;
src_rect.x0 = 0;
src_rect.y0 = 0;
src_rect.x1 = surf->templat.width;
src_rect.y1 = surf->templat.height;
vl_compositor_yuv_deint_full(&drv->cstate, &drv->compositor,
old_buf, surf->buffer,
&src_rect, NULL, VL_COMPOSITOR_WEAVE);
} else
/* Can't convert from progressive to interlaced yet */
return VA_STATUS_ERROR_INVALID_SURFACE;
}