diff options
author | James Almer <jamrial@gmail.com> | 2014-08-11 16:35:39 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-12 03:49:45 +0200 |
commit | 744f15b6b3801dc008e767be0846bad55b62444f (patch) | |
tree | 9939007040229f575a5d2b5ecdd5fda876f00843 /libavfilter/unsharp_opencl.c | |
parent | 9f617a14a00805ffd54dee4fce34e3e4099d21f3 (diff) | |
download | ffmpeg-744f15b6b3801dc008e767be0846bad55b62444f.tar.gz |
lavu: rename ff_opencl_set_parameter() to avpriv_opencl_set_parameter()
It was wrongly being exported and used by libavfilter.
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/unsharp_opencl.c')
-rw-r--r-- | libavfilter/unsharp_opencl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/unsharp_opencl.c b/libavfilter/unsharp_opencl.c index e619cefded..5c6b5ef5cb 100644 --- a/libavfilter/unsharp_opencl.c +++ b/libavfilter/unsharp_opencl.c @@ -181,7 +181,7 @@ int ff_opencl_apply_unsharp(AVFilterContext *ctx, AVFrame *in, AVFrame *out) kernel1.ctx = ctx; kernel1.kernel = unsharp->opencl_ctx.kernel_luma; - ret = ff_opencl_set_parameter(&kernel1, + ret = avpriv_opencl_set_parameter(&kernel1, FF_OPENCL_PARAM_INFO(unsharp->opencl_ctx.cl_inbuf), FF_OPENCL_PARAM_INFO(unsharp->opencl_ctx.cl_outbuf), FF_OPENCL_PARAM_INFO(unsharp->opencl_ctx.cl_luma_mask), @@ -198,7 +198,7 @@ int ff_opencl_apply_unsharp(AVFilterContext *ctx, AVFrame *in, AVFrame *out) kernel2.ctx = ctx; kernel2.kernel = unsharp->opencl_ctx.kernel_chroma; - ret = ff_opencl_set_parameter(&kernel2, + ret = avpriv_opencl_set_parameter(&kernel2, FF_OPENCL_PARAM_INFO(unsharp->opencl_ctx.cl_inbuf), FF_OPENCL_PARAM_INFO(unsharp->opencl_ctx.cl_outbuf), FF_OPENCL_PARAM_INFO(unsharp->opencl_ctx.cl_chroma_mask), @@ -230,7 +230,7 @@ int ff_opencl_apply_unsharp(AVFilterContext *ctx, AVFrame *in, AVFrame *out) kernel1.ctx = ctx; kernel1.kernel = unsharp->opencl_ctx.kernel_default; - ret = ff_opencl_set_parameter(&kernel1, + ret = avpriv_opencl_set_parameter(&kernel1, FF_OPENCL_PARAM_INFO(unsharp->opencl_ctx.cl_inbuf), FF_OPENCL_PARAM_INFO(unsharp->opencl_ctx.cl_outbuf), FF_OPENCL_PARAM_INFO(unsharp->opencl_ctx.cl_luma_mask), |