diff options
author | James Darnley <james.darnley@gmail.com> | 2013-02-15 23:48:30 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-16 00:32:02 +0100 |
commit | 724061888be1382af3a584ba913920965ffeeb4b (patch) | |
tree | c33b61a6fe8ccdc47e9f643e6276c3dadd5b21bc | |
parent | f84ef19f3f8b72e838c96e86661879670ecb2442 (diff) | |
download | ffmpeg-724061888be1382af3a584ba913920965ffeeb4b.tar.gz |
lavfi/yadif: remove unnecessary cast
Finish what 99162f8 started
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_yadif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index 56bd61ad3d..0adad5550c 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -201,7 +201,7 @@ static int return_frame(AVFilterContext *ctx, int is_second) if (!yadif->csp) yadif->csp = av_pix_fmt_desc_get(link->format); if (yadif->csp->comp[0].depth_minus1 / 8 == 1) - yadif->filter_line = (void*)filter_line_c_16bit; + yadif->filter_line = filter_line_c_16bit; filter(ctx, yadif->out, tff ^ !is_second, tff); |