summaryrefslogtreecommitdiff
path: root/libavfilter/vf_tonemap_opencl.c
Commit message (Collapse)AuthorAge
* avfilter/vf_tonemap_opencl: fix long filter descriptionPaul B Mahol2020-01-26
|
* lavfi/tonemap_opencl: reuse color matrix calculation from colorspace.cRuiling Song2019-03-22
| | | | Signed-off-by: Ruiling Song <ruiling.song@intel.com>
* avfilter/vf_tonemap_opencl: Make static tables constMichael Niedermayer2019-01-01
| | | | | Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/vf_tonemap_opencl: Fix seperate typoMichael Niedermayer2018-10-07
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* vf_tonemap_opencl: Move update_metadata() to a shared fileVittorio Giovara2018-08-06
|
* vf_tonemap[_opencl]: Move determine_signal_peak() to a shared fileVittorio Giovara2018-08-06
| | | | The two functions are identical. Use the shared LumaCoeffients type too.
* lavfi/opencl: add macro for opencl error handling.Ruiling Song2018-07-11
| | | | Signed-off-by: Ruiling Song <ruiling.song@intel.com>
* lavfi/colorspace: Add namespace prefix to global functionsMark Thompson2018-06-28
|
* lavfi/vf_tonemap_opencl: Mark local tables staticMark Thompson2018-06-25
|
* lavfi: add opencl tonemap filterRuiling Song2018-06-21
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>