Commit a0e03589 authored by Jun Zhao's avatar Jun Zhao

lavfi/lenscorrection: remove unnecessary cast for void *

Remove unnecessary cast for void * pointer.
Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarJun Zhao <barryjzhao@tencent.com>
parent 88a9998f
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment