diff options
author | Jun Zhao <barryjzhao@tencent.com> | 2019-10-09 19:24:33 +0800 |
---|---|---|
committer | Jun Zhao <barryjzhao@tencent.com> | 2019-10-10 09:01:24 +0800 |
commit | a0e03589d47f60c495b65aa2d7da1f186b10eefe (patch) | |
tree | ca6ab78aa0884b8378f481de8f2f019c9556b12e | |
parent | 88a9998fe8c7197e76b71a7c53a89ff8d4adaf13 (diff) | |
download | ffmpeg-a0e03589d47f60c495b65aa2d7da1f186b10eefe.tar.gz |
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>
-rw-r--r-- | libavfilter/vf_lenscorrection.c | 2 |
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; |