Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-07-12lavfi/avgblur_opencl: fix using uninitialized valueDanil Iashchenko
Fixed using uninitialized value "global_work[0]" when calling "av_log". Fixes CID #1437471.
2018-07-12lavfi/vf_avgblur_opencl: remove useless clFinish().Ruiling Song
The very last clFinish() should be ok. Signed-off-by: Ruiling Song <ruiling.song@intel.com> Reviewed-by: Danil Iashchenko <danyaschenko@gmail.com>
2018-07-12lavfi/opencl: add macro for opencl error handling.Ruiling Song
Signed-off-by: Ruiling Song <ruiling.song@intel.com>
2018-06-21lavfi: Add boxblur_opencl filterDanil Iashchenko
Behaves like existing boxblur filter.
2018-03-27avfilter/vf_avgblur_opencl: fix error when clSetKernelArg failsdrfer3
Fixes Coverity CID 1430382.
2018-03-27vf_avgblur_opencl: Don't run kernel on pixels outside the imageMark Thompson
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>
2018-03-23lavfi: Add OpenCL avgblur filterdrfer3
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>