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
2022-07-07avfilter: add remap opencl filterPaul B Mahol
2020-02-14avfilter: add pad opencl filterPaul B Mahol
2020-02-02avfilter: add xfade opencl filterPaul B Mahol
2019-08-23lavfi: add deshake_opencl filterJarek Samic
2019-05-24lavfi/opencl: add nlmeans_opencl filterRuiling Song
Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: Ruiling Song <ruiling.song@intel.com>
2019-04-20lavfi: add colorkey_opencl filterJarek Samic
This is a direct port of the CPU filter. Signed-off-by: Jarek Samic <cldfire3@gmail.com> Signed-off-by: Mark Thompson <sw@jkqxz.net>
2018-12-03lavf: add transpose_opencl filterRuiling Song
Signed-off-by: Ruiling Song <ruiling.song@intel.com> Signed-off-by: Mark Thompson <sw@jkqxz.net>
2018-08-12lavfi: add erosion_opencl, dilation_opencl filtersDanil Iashchenko
Add erosion_opencl, dilation_opencl filters. Behave like existing erosion and dilation filters.
2018-06-21lavfi: add opencl tonemap filterRuiling Song
This filter does HDR(HDR10/HLG) to SDR conversion with tone-mapping. An example command to use this filter with vaapi codecs: FFMPEG -init_hw_device vaapi=va:/dev/dri/renderD128 -init_hw_device \ opencl=ocl@va -hwaccel vaapi -hwaccel_device va -hwaccel_output_format \ vaapi -i INPUT -filter_hw_device ocl -filter_complex \ '[0:v]hwmap,tonemap_opencl=t=bt2020:tonemap=linear:format=p010[x1]; \ [x1]hwmap=derive_device=vaapi:reverse=1' -c:v hevc_vaapi -profile 2 OUTPUT Signed-off-by: Ruiling Song <ruiling.song@intel.com>
2018-03-27libavfilter: Add OpenCL convolution filterDanil Iashchenko
Behaves like existing convolution filter. Signed-off-by: Mark Thompson <sw@jkqxz.net>
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>
2017-11-23lavfi: Add OpenCL unsharp mask filterMark Thompson
Intended to replace existing opencl mode of the unsharp filter. Supports many more pixel formats and works without immediate upload and download of frame data. The options are compatible with the existing filter.
2017-11-23lavfi: Add OpenCL overlay filterMark Thompson
Input and output formats must be the same, the overlay format must be the same as the input except possibly with an additional alpha component.
2017-11-23lavfi: Add infrastructure for building OpenCL source into libavfilterMark Thompson