summaryrefslogtreecommitdiff
path: root/libavfilter/vf_avgblur_opencl.c
Commit message (Collapse)AuthorAge
* lavfi/avgblur_opencl: fix using uninitialized valueDanil Iashchenko2018-07-11
| | | | | | Fixed using uninitialized value "global_work[0]" when calling "av_log". Fixes CID #1437471.
* lavfi/vf_avgblur_opencl: remove useless clFinish().Ruiling Song2018-07-11
| | | | | | | The very last clFinish() should be ok. Signed-off-by: Ruiling Song <ruiling.song@intel.com> Reviewed-by: Danil Iashchenko <danyaschenko@gmail.com>
* lavfi/opencl: add macro for opencl error handling.Ruiling Song2018-07-11
| | | | Signed-off-by: Ruiling Song <ruiling.song@intel.com>
* lavfi: Add boxblur_opencl filterDanil Iashchenko2018-06-21
| | | | Behaves like existing boxblur filter.
* avfilter/vf_avgblur_opencl: fix error when clSetKernelArg failsdrfer32018-03-26
| | | | Fixes Coverity CID 1430382.
* vf_avgblur_opencl: Don't run kernel on pixels outside the imageMark Thompson2018-03-26
| | | | | | | | The output frame size is larger than the image containing a subsampled plane - use the actual size of the image being written rather than the dimensions of the intended output frame. Reviewed-by: Dylan Fernando <dylanf123@gmail.com>
* lavfi: Add OpenCL avgblur filterdrfer32018-03-22
Behaves like the existing avgblur filter, except working on OpenCL hardware frames. Takes exactly the same options. Signed-off-by: Mark Thompson <sw@jkqxz.net>