diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-18 23:59:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-18 23:59:20 +0200 |
commit | abe9c54f145166e7e27f3eda85051a188e5c3a93 (patch) | |
tree | 86b5d51ae1e290b7f465d6e3d634ef726b15ca6c /libavfilter | |
parent | 2982b02b799d6073833a662e2d7e089d27f92cba (diff) | |
download | ffmpeg-abe9c54f145166e7e27f3eda85051a188e5c3a93.tar.gz |
yadif: Fix assignment from incompatible pointer type warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-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 c3fd93c6d0..3d81b94712 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -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); |