1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

tools/cl2c: change to tools/source2c and allow non-OpenCL source files

This commit is contained in:
Lynne 2023-03-18 19:15:41 +01:00
parent 7cfd7e4af4
commit 88e2cca3db
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464
17 changed files with 42 additions and 36 deletions

View File

@ -651,10 +651,17 @@ TESTPROGS = drawutils filtfmts formats integral
TOOLS-$(CONFIG_LIBZMQ) += zmqsend TOOLS-$(CONFIG_LIBZMQ) += zmqsend
clean:: clean::
$(RM) $(CLEANSUFFIXES:%=libavfilter/dnn/%) $(CLEANSUFFIXES:%=libavfilter/opencl/%) $(RM) $(CLEANSUFFIXES:%=libavfilter/dnn/%) $(CLEANSUFFIXES:%=libavfilter/opencl/%) \
$(CLEANSUFFIXES:%=libavfilter/vulkan/%)
OPENCL = $(subst $(SRC_PATH)/,,$(wildcard $(SRC_PATH)/libavfilter/opencl/*.cl)) OPENCL = $(subst $(SRC_PATH)/,,$(wildcard $(SRC_PATH)/libavfilter/opencl/*.cl))
.SECONDARY: $(OPENCL:.cl=.c) .SECONDARY: $(OPENCL:.cl=.c)
libavfilter/opencl/%.c: TAG = OPENCL libavfilter/opencl/%.c: TAG = OPENCL
libavfilter/opencl/%.c: $(SRC_PATH)/libavfilter/opencl/%.cl libavfilter/opencl/%.c: $(SRC_PATH)/libavfilter/opencl/%.cl
$(M)$(SRC_PATH)/tools/cl2c $< $@ $(M)$(SRC_PATH)/tools/source2c $< $@
VULKAN = $(subst $(SRC_PATH)/,,$(wildcard $(SRC_PATH)/libavfilter/vulkan/*.comp))
.SECONDARY: $(VULKAN:.comp=.c)
libavfilter/vulkan/%.c: TAG = OPENCL
libavfilter/vulkan/%.c: $(SRC_PATH)/libavfilter/vulkan/%.comp
$(M)$(SRC_PATH)/tools/source2c $< $@

View File

@ -19,19 +19,19 @@
#ifndef AVFILTER_OPENCL_SOURCE_H #ifndef AVFILTER_OPENCL_SOURCE_H
#define AVFILTER_OPENCL_SOURCE_H #define AVFILTER_OPENCL_SOURCE_H
extern const char *ff_opencl_source_avgblur; extern const char *ff_source_avgblur_cl;
extern const char *ff_opencl_source_colorkey; extern const char *ff_source_colorkey_cl;
extern const char *ff_opencl_source_colorspace_common; extern const char *ff_source_colorspace_common_cl;
extern const char *ff_opencl_source_convolution; extern const char *ff_source_convolution_cl;
extern const char *ff_opencl_source_deshake; extern const char *ff_source_deshake_cl;
extern const char *ff_opencl_source_neighbor; extern const char *ff_source_neighbor_cl;
extern const char *ff_opencl_source_nlmeans; extern const char *ff_source_nlmeans_cl;
extern const char *ff_opencl_source_overlay; extern const char *ff_source_overlay_cl;
extern const char *ff_opencl_source_pad; extern const char *ff_source_pad_cl;
extern const char *ff_opencl_source_remap; extern const char *ff_source_remap_cl;
extern const char *ff_opencl_source_tonemap; extern const char *ff_source_tonemap_cl;
extern const char *ff_opencl_source_transpose; extern const char *ff_source_transpose_cl;
extern const char *ff_opencl_source_unsharp; extern const char *ff_source_unsharp_cl;
extern const char *ff_opencl_source_xfade; extern const char *ff_source_xfade_cl;
#endif /* AVFILTER_OPENCL_SOURCE_H */ #endif /* AVFILTER_OPENCL_SOURCE_H */

View File

@ -59,7 +59,7 @@ static int avgblur_opencl_init(AVFilterContext *avctx)
cl_int cle; cl_int cle;
int err; int err;
err = ff_opencl_filter_load_program(avctx, &ff_opencl_source_avgblur, 1); err = ff_opencl_filter_load_program(avctx, &ff_source_avgblur_cl, 1);
if (err < 0) if (err < 0)
goto fail; goto fail;

View File

@ -52,7 +52,7 @@ static int colorkey_opencl_init(AVFilterContext *avctx)
cl_int cle; cl_int cle;
int err; int err;
err = ff_opencl_filter_load_program(avctx, &ff_opencl_source_colorkey, 1); err = ff_opencl_filter_load_program(avctx, &ff_source_colorkey_cl, 1);
if (err < 0) if (err < 0)
goto fail; goto fail;

View File

@ -62,7 +62,7 @@ static int convolution_opencl_init(AVFilterContext *avctx)
cl_int cle; cl_int cle;
int err; int err;
err = ff_opencl_filter_load_program(avctx, &ff_opencl_source_convolution, 1); err = ff_opencl_filter_load_program(avctx, &ff_source_convolution_cl, 1);
if (err < 0) if (err < 0)
goto fail; goto fail;

View File

@ -1251,7 +1251,7 @@ static int deshake_opencl_init(AVFilterContext *avctx)
} }
ctx->sw_format = hw_frames_ctx->sw_format; ctx->sw_format = hw_frames_ctx->sw_format;
err = ff_opencl_filter_load_program(avctx, &ff_opencl_source_deshake, 1); err = ff_opencl_filter_load_program(avctx, &ff_source_deshake_cl, 1);
if (err < 0) if (err < 0)
goto fail; goto fail;

View File

@ -55,7 +55,7 @@ static int neighbor_opencl_init(AVFilterContext *avctx)
cl_int cle; cl_int cle;
int err; int err;
err = ff_opencl_filter_load_program(avctx, &ff_opencl_source_neighbor, 1); err = ff_opencl_filter_load_program(avctx, &ff_source_neighbor_cl, 1);
if (err < 0) if (err < 0)
goto fail; goto fail;

View File

@ -98,7 +98,7 @@ static int nlmeans_opencl_init(AVFilterContext *avctx, int width, int height)
if (!ctx->patch_size_uv) if (!ctx->patch_size_uv)
ctx->patch_size_uv = ctx->patch_size; ctx->patch_size_uv = ctx->patch_size;
err = ff_opencl_filter_load_program(avctx, &ff_opencl_source_nlmeans, 1); err = ff_opencl_filter_load_program(avctx, &ff_source_nlmeans_cl, 1);
if (err < 0) if (err < 0)
goto fail; goto fail;

View File

@ -51,7 +51,7 @@ static int overlay_opencl_load(AVFilterContext *avctx,
{ {
OverlayOpenCLContext *ctx = avctx->priv; OverlayOpenCLContext *ctx = avctx->priv;
cl_int cle; cl_int cle;
const char *source = ff_opencl_source_overlay; const char *source = ff_source_overlay_cl;
const char *kernel; const char *kernel;
const AVPixFmtDescriptor *main_desc, *overlay_desc; const AVPixFmtDescriptor *main_desc, *overlay_desc;
int err, i, main_planes, overlay_planes; int err, i, main_planes, overlay_planes;

View File

@ -93,7 +93,7 @@ static int pad_opencl_init(AVFilterContext *avctx, AVFrame *input_frame)
ctx->hsub = desc->log2_chroma_w; ctx->hsub = desc->log2_chroma_w;
ctx->vsub = desc->log2_chroma_h; ctx->vsub = desc->log2_chroma_h;
err = ff_opencl_filter_load_program(avctx, &ff_opencl_source_pad, 1); err = ff_opencl_filter_load_program(avctx, &ff_source_pad_cl, 1);
if (err < 0) if (err < 0)
goto fail; goto fail;

View File

@ -73,7 +73,7 @@ static int remap_opencl_load(AVFilterContext *avctx,
{ {
RemapOpenCLContext *ctx = avctx->priv; RemapOpenCLContext *ctx = avctx->priv;
cl_int cle; cl_int cle;
const char *source = ff_opencl_source_remap; const char *source = ff_source_remap_cl;
const char *kernel = kernels[ctx->interp]; const char *kernel = kernels[ctx->interp];
const AVPixFmtDescriptor *main_desc; const AVPixFmtDescriptor *main_desc;
int err, main_planes; int err, main_planes;

View File

@ -240,8 +240,8 @@ static int tonemap_opencl_init(AVFilterContext *avctx)
av_log(avctx, AV_LOG_DEBUG, "Generated OpenCL header:\n%s\n", header.str); av_log(avctx, AV_LOG_DEBUG, "Generated OpenCL header:\n%s\n", header.str);
opencl_sources[0] = header.str; opencl_sources[0] = header.str;
opencl_sources[1] = ff_opencl_source_tonemap; opencl_sources[1] = ff_source_tonemap_cl;
opencl_sources[2] = ff_opencl_source_colorspace_common; opencl_sources[2] = ff_source_colorspace_common_cl;
err = ff_opencl_filter_load_program(avctx, opencl_sources, OPENCL_SOURCE_NB); err = ff_opencl_filter_load_program(avctx, opencl_sources, OPENCL_SOURCE_NB);
av_bprint_finalize(&header, NULL); av_bprint_finalize(&header, NULL);

View File

@ -44,7 +44,7 @@ static int transpose_opencl_init(AVFilterContext *avctx)
cl_int cle; cl_int cle;
int err; int err;
err = ff_opencl_filter_load_program(avctx, &ff_opencl_source_transpose, 1); err = ff_opencl_filter_load_program(avctx, &ff_source_transpose_cl, 1);
if (err < 0) if (err < 0)
goto fail; goto fail;

View File

@ -69,7 +69,7 @@ static int unsharp_opencl_init(AVFilterContext *avctx)
cl_int cle; cl_int cle;
int err; int err;
err = ff_opencl_filter_load_program(avctx, &ff_opencl_source_unsharp, 1); err = ff_opencl_filter_load_program(avctx, &ff_source_unsharp_cl, 1);
if (err < 0) if (err < 0)
goto fail; goto fail;

View File

@ -93,7 +93,7 @@ static int xfade_opencl_load(AVFilterContext *avctx,
if (ctx->transition == CUSTOM) { if (ctx->transition == CUSTOM) {
err = ff_opencl_filter_load_program_from_file(avctx, ctx->source_file); err = ff_opencl_filter_load_program_from_file(avctx, ctx->source_file);
} else { } else {
err = ff_opencl_filter_load_program(avctx, &ff_opencl_source_xfade, 1); err = ff_opencl_filter_load_program(avctx, &ff_source_xfade_cl, 1);
} }
if (err < 0) if (err < 0)
return err; return err;

1
libavfilter/vulkan/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.c

View File

@ -1,7 +1,6 @@
#!/bin/sh #!/bin/sh
# Convert an OpenCL source file into a C source file containing the # Convert a source file into a C source file containing the
# OpenCL source as a C string. Also adds a #line directive so that # source code as a C string.
# compiler messages are useful.
# This file is part of FFmpeg. # This file is part of FFmpeg.
# #
@ -22,12 +21,11 @@
input="$1" input="$1"
output="$2" output="$2"
name=$(basename "$input" | sed 's/.cl$//') name=$(basename "$input" | sed 's/\./_/')
cat >$output <<EOF cat >$output <<EOF
// Generated from $input // Generated from $input
const char *ff_opencl_source_$name = const char *ff_source_$name =
"#line 1 \"$input\"\n"
EOF EOF
# Convert \ to \\ and " to \", then add " to the start and end of the line. # Convert \ to \\ and " to \", then add " to the start and end of the line.