Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Darnley <james.darnley@gmail.com>2013-02-16 02:48:30 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-02-16 03:32:02 +0400
commit724061888be1382af3a584ba913920965ffeeb4b (patch)
treec33b61a6fe8ccdc47e9f643e6276c3dadd5b21bc /libavfilter/vf_yadif.c
parentf84ef19f3f8b72e838c96e86661879670ecb2442 (diff)
lavfi/yadif: remove unnecessary cast
Finish what 99162f8 started Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_yadif.c')
-rw-r--r--libavfilter/vf_yadif.c2
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);