From: Jun Zhao <[email protected]> Remove unnecessary cast for void * pointer.
Signed-off-by: Jun Zhao <[email protected]> --- 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 _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
