Commit 72406188 authored by James Darnley's avatar James Darnley Committed by Michael Niedermayer

lavfi/yadif: remove unnecessary cast

Finish what 99162f8d started
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f84ef19f
......@@ -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);
......
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