[FFmpeg-devel] [PATCH V1 2/4] lavfi/lenscorrection: remove unnecessary cast for void *
Jun Zhao
mypopydev at gmail.com
Wed Oct 9 17:48:51 EEST 2019
From: Jun Zhao <barryjzhao at tencent.com>
Remove unnecessary cast for void * pointer.
Signed-off-by: Jun Zhao <barryjzhao at tencent.com>
---
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 239fe19..b5400a2 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;
--
1.7.1
More information about the ffmpeg-devel
mailing list