diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-28 00:27:44 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-05 18:58:29 +0200 |
commit | be8bc645b6b63c9bfdc4a4c3e256f3bae5133e2a (patch) | |
tree | a7341c334065ac355c0b2353378e2adda4384600 /libavfilter/vf_convolution_opencl.c | |
parent | 94047d6aa505994e7d4a165b31692c46d7abab2e (diff) | |
download | ffmpeg-be8bc645b6b63c9bfdc4a4c3e256f3bae5133e2a.tar.gz |
avfilter/opencl: Store format in filter, remove query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_convolution_opencl.c')
-rw-r--r-- | libavfilter/vf_convolution_opencl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/vf_convolution_opencl.c b/libavfilter/vf_convolution_opencl.c index 3871ddcff4..d886c7aead 100644 --- a/libavfilter/vf_convolution_opencl.c +++ b/libavfilter/vf_convolution_opencl.c @@ -369,7 +369,7 @@ const AVFilter ff_vf_convolution_opencl = { .uninit = &convolution_opencl_uninit, FILTER_INPUTS(convolution_opencl_inputs), FILTER_OUTPUTS(convolution_opencl_outputs), - FILTER_QUERY_FUNC(&ff_opencl_filter_query_formats), + FILTER_SINGLE_PIXFMT(AV_PIX_FMT_OPENCL), .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE, }; @@ -395,7 +395,7 @@ const AVFilter ff_vf_sobel_opencl = { .uninit = &convolution_opencl_uninit, FILTER_INPUTS(convolution_opencl_inputs), FILTER_OUTPUTS(convolution_opencl_outputs), - FILTER_QUERY_FUNC(&ff_opencl_filter_query_formats), + FILTER_SINGLE_PIXFMT(AV_PIX_FMT_OPENCL), .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE, }; @@ -421,7 +421,7 @@ const AVFilter ff_vf_prewitt_opencl = { .uninit = &convolution_opencl_uninit, FILTER_INPUTS(convolution_opencl_inputs), FILTER_OUTPUTS(convolution_opencl_outputs), - FILTER_QUERY_FUNC(&ff_opencl_filter_query_formats), + FILTER_SINGLE_PIXFMT(AV_PIX_FMT_OPENCL), .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE, }; @@ -447,7 +447,7 @@ const AVFilter ff_vf_roberts_opencl = { .uninit = &convolution_opencl_uninit, FILTER_INPUTS(convolution_opencl_inputs), FILTER_OUTPUTS(convolution_opencl_outputs), - FILTER_QUERY_FUNC(&ff_opencl_filter_query_formats), + FILTER_SINGLE_PIXFMT(AV_PIX_FMT_OPENCL), .flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE, }; |