[FFmpeg-devel] [PATCH V1 3/4] lavfi/remap: remove unnecessary cast for void *

Jun Zhao mypopydev at gmail.com
Wed Oct 9 17:48:52 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_remap.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/vf_remap.c b/libavfilter/vf_remap.c
index b1c3e43..720020c 100644
--- a/libavfilter/vf_remap.c
+++ b/libavfilter/vf_remap.c
@@ -140,7 +140,7 @@ fail:
 static int remap_planar##bits##_##name##_slice(AVFilterContext *ctx, void *arg,             \
                                                int jobnr, int nb_jobs)                      \
 {                                                                                           \
-    const ThreadData *td = (ThreadData*)arg;                                                \
+    const ThreadData *td = arg;                                                             \
     const AVFrame *in  = td->in;                                                            \
     const AVFrame *xin = td->xin;                                                           \
     const AVFrame *yin = td->yin;                                                           \
@@ -189,7 +189,7 @@ DEFINE_REMAP_PLANAR_FUNC(nearest, 16, 2)
 static int remap_packed##bits##_##name##_slice(AVFilterContext *ctx, void *arg,             \
                                                int jobnr, int nb_jobs)                      \
 {                                                                                           \
-    const ThreadData *td = (ThreadData*)arg;                                                \
+    const ThreadData *td = arg;                                                             \
     const AVFrame *in  = td->in;                                                            \
     const AVFrame *xin = td->xin;                                                           \
     const AVFrame *yin = td->yin;                                                           \
-- 
1.7.1



More information about the ffmpeg-devel mailing list