diff options
author | Haihao Xiang <haihao.xiang@intel.com> | 2023-01-13 12:38:31 +0800 |
---|---|---|
committer | Haihao Xiang <haihao.xiang@intel.com> | 2023-01-17 10:10:52 +0800 |
commit | faf0afb5d937f480186dc4d3e5afc554e9ad0805 (patch) | |
tree | 953b4f7a0a89d60766246b84b86a8bb66c41d45e /libavfilter | |
parent | f1a8d3b0b62355a492ab869b6b695478b4da4544 (diff) | |
download | ffmpeg-faf0afb5d937f480186dc4d3e5afc554e9ad0805.tar.gz |
lavfi/overlay_vaapi: remove unnecessary code
VA-API filter is not required.
Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_overlay_vaapi.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_overlay_vaapi.c b/libavfilter/vf_overlay_vaapi.c index 79cf66d068..16d1e0e211 100644 --- a/libavfilter/vf_overlay_vaapi.c +++ b/libavfilter/vf_overlay_vaapi.c @@ -208,9 +208,6 @@ static int overlay_vaapi_blend(FFFrameSync *fs) .height = output->height, }; - params[0].filters = &vpp_ctx->filter_buffers[0]; - params[0].num_filters = vpp_ctx->nb_filter_buffers; - params[0].output_region = &output_region; params[0].output_background_color = VAAPI_VPP_BACKGROUND_BLACK; |