[FFmpeg-devel] [PATCH 4/4] lavfi: Add VAAPI deinterlacer
Jun Zhao
mypopydev at gmail.com
Thu Feb 23 02:34:14 EET 2017
On 2017/2/20 1:23, Mark Thompson wrote:
> (cherry picked from commit ade370a4d7eab1866b6023c91c135d27c77ca465)
> (cherry picked from commit 2d518aec4c781316092be65893b47922c8f71b67)
> ---
> configure | 1 +
> libavfilter/Makefile | 1 +
> libavfilter/allfilters.c | 1 +
> libavfilter/version.h | 2 +-
.... cut
> +AVFilter ff_vf_deinterlace_vaapi = {
> + .name = "deinterlace_vaapi",
> + .description = NULL_IF_CONFIG_SMALL("Deinterlacing of VAAPI surfaces"),
> + .priv_size = sizeof(DeintVAAPIContext),
> + .init = &deint_vaapi_init,
> + .uninit = &deint_vaapi_uninit,
> + .query_formats = &deint_vaapi_query_formats,
> + .inputs = deint_vaapi_inputs,
> + .outputs = deint_vaapi_outputs,
> + .priv_class = &deint_vaapi_class,
> +};
>
Tested and verified in the KBL, it's working well
More information about the ffmpeg-devel
mailing list