summaryrefslogtreecommitdiff
path: root/libavfilter/deshake_opencl.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2014-08-11 16:35:39 -0300
committerMichael Niedermayer <michaelni@gmx.at>2014-08-12 03:49:45 +0200
commit744f15b6b3801dc008e767be0846bad55b62444f (patch)
tree9939007040229f575a5d2b5ecdd5fda876f00843 /libavfilter/deshake_opencl.c
parent9f617a14a00805ffd54dee4fce34e3e4099d21f3 (diff)
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/deshake_opencl.c')
-rw-r--r--libavfilter/deshake_opencl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/deshake_opencl.c b/libavfilter/deshake_opencl.c
index c66103cb7b..2821248218 100644
--- a/libavfilter/deshake_opencl.c
+++ b/libavfilter/deshake_opencl.c
@@ -57,7 +57,7 @@ int ff_opencl_transform(AVFilterContext *ctx,
av_log(ctx, AV_LOG_ERROR, "Selected interpolate method is invalid\n");
return AVERROR(EINVAL);
}
- ret = ff_opencl_set_parameter(&param_lu,
+ ret = avpriv_opencl_set_parameter(&param_lu,
FF_OPENCL_PARAM_INFO(deshake->opencl_ctx.cl_inbuf),
FF_OPENCL_PARAM_INFO(deshake->opencl_ctx.cl_outbuf),
FF_OPENCL_PARAM_INFO(packed_matrix_lu),
@@ -70,7 +70,7 @@ int ff_opencl_transform(AVFilterContext *ctx,
NULL);
if (ret < 0)
return ret;
- ret = ff_opencl_set_parameter(&param_ch,
+ ret = avpriv_opencl_set_parameter(&param_ch,
FF_OPENCL_PARAM_INFO(deshake->opencl_ctx.cl_inbuf),
FF_OPENCL_PARAM_INFO(deshake->opencl_ctx.cl_outbuf),
FF_OPENCL_PARAM_INFO(packed_matrix_ch),