Re: [FFmpeg-devel] [PATCH] avfilter/vf_lut3d_opencl Initial support for OpenCL implementation of vf_lut3d.

2025-04-28 Thread Jan Studený via ffmpeg-devel
Studeny On Apr 28, 2025 at 13:39 +0300, Jan Studený via ffmpeg-devel , wrote: > --- > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/opencl/lut3d.cl | 177 ++ > libavfilter/opencl_source.h | 2 + > libavfilter/vf_lu

[FFmpeg-devel] [PATCH v2] avfilter/vf_lut3d_opencl Initial support for OpenCL implementation of vf_lut3d.

2025-05-01 Thread Jan Studený via ffmpeg-devel
The comile error is fixed by adding opencl dependency to configure. --- configure | 1 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/opencl/lut3d.cl | 177 + libavfilter/opencl_source.h | 2 + libavfilter/vf_lut

[FFmpeg-devel] [PATCH] avfilter/vf_lut3d_opencl Initial support for OpenCL implementation of vf_lut3d.

2025-04-28 Thread Jan Studený via ffmpeg-devel
--- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/opencl/lut3d.cl | 177 ++ libavfilter/opencl_source.h | 2 + libavfilter/vf_lut3d_opencl.c | 444 ++ 5 files changed, 625 insertions(+) create mode 10064

[FFmpeg-devel] [PATCH v2] avfilter/vf_lut3d_opencl Initial support for OpenCL implementation of vf_lut3d.

2025-05-09 Thread Jan Studený via ffmpeg-devel
Hi, Since this is my first FFmpeg patch I’m not sure if I should include anything extra to make the review easier, like logs, test results, or more explanation. Please let me know if there’s anything I can add or do differently. Best regards, Jan Studený On May 1, 2025 at 20:13 +0300, Jan Stude