Browse Source

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>
tags/n4.3
Jun Zhao 6 years ago
parent
commit
a0e03589d4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_lenscorrection.c

+ 1
- 1
libavfilter/vf_lenscorrection.c View File

@@ -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;



Loading…
Cancel
Save