summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorJun Zhao <barryjzhao@tencent.com>2019-10-09 19:24:33 +0800
committerJun Zhao <barryjzhao@tencent.com>2019-10-10 09:01:24 +0800
commita0e03589d47f60c495b65aa2d7da1f186b10eefe (patch)
treeca6ab78aa0884b8378f481de8f2f019c9556b12e /libavfilter
parent88a9998fe8c7197e76b71a7c53a89ff8d4adaf13 (diff)
lavfi/lenscorrection: remove unnecessary cast for void *
Remove unnecessary cast for void * pointer. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_lenscorrection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_lenscorrection.c b/libavfilter/vf_lenscorrection.c
index 239fe195bd..b5400a2f37 100644
--- a/libavfilter/vf_lenscorrection.c
+++ b/libavfilter/vf_lenscorrection.c
@@ -65,7 +65,7 @@ typedef struct ThreadData {
static int filter_slice(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
{
- ThreadData *td = (ThreadData*)arg;
+ ThreadData *td = arg;
AVFrame *in = td->in;
AVFrame *out = td->out;