mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
yadif: Fix assignment from incompatible pointer type warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2982b02b79
commit
abe9c54f14
@ -211,7 +211,7 @@ static void return_frame(AVFilterContext *ctx, int is_second)
|
||||
if (!yadif->csp)
|
||||
yadif->csp = &av_pix_fmt_descriptors[link->format];
|
||||
if (yadif->csp->comp[0].depth_minus1 == 15)
|
||||
yadif->filter_line = filter_line_c_16bit;
|
||||
yadif->filter_line = (void*)filter_line_c_16bit;
|
||||
|
||||
filter(ctx, yadif->out, tff ^ !is_second, tff);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user