[FFmpeg-devel] [PATCH 2/2] lavfi/vf_avgblur_opencl: remove useless clFinish().

Danil Iashchenko danyaschenko at gmail.com
Tue Jul 3 02:53:17 EEST 2018


The very last clFinish() should be ok.

Signed-off-by: Ruiling Song <ruiling.song at intel.com>
---
 libavfilter/vf_avgblur_opencl.c | 1 -
 1 file changed, 1 deletion(-)

Looks good to me. Thanks!
Danil.

diff --git a/libavfilter/vf_avgblur_opencl.c b/libavfilter/vf_avgblur_opencl.c
index bc6bcab..99ed1ca 100644
--- a/libavfilter/vf_avgblur_opencl.c
+++ b/libavfilter/vf_avgblur_opencl.c
@@ -228,7 +228,6 @@ static int avgblur_opencl_filter_frame(AVFilterLink *inlink, AVFrame *input)
                                          0, NULL, NULL);
             CL_FAIL_ON_ERROR(AVERROR(EIO), "Failed to enqueue horizontal "
                              "kernel: %d.\n", cle);
-            cle = clFinish(ctx->command_queue);

             err = ff_opencl_filter_work_size_from_image(avctx, global_work,
                                                         i == 0 ? output : intermediate, p, 0);


-- 
2.7.4


More information about the ffmpeg-devel mailing list