From 517a2bbcf131df3e61ff4494d7f695b4570bc5fc Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Fri, 17 Aug 2012 08:07:37 +0200 Subject: lavfi/edgedetect: add rounding for high/low threshold. This should fix the 32-bit FATE instances where low_u8=19 and high_u8=49. --- libavfilter/vf_edgedetect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/vf_edgedetect.c b/libavfilter/vf_edgedetect.c index 3b1cf32158..018d9aa4e4 100644 --- a/libavfilter/vf_edgedetect.c +++ b/libavfilter/vf_edgedetect.c @@ -60,8 +60,8 @@ static av_cold int init(AVFilterContext *ctx, const char *args) if ((ret = av_set_options_string(edgedetect, args, "=", ":")) < 0) return ret; - edgedetect->low_u8 = edgedetect->low * 255.; - edgedetect->high_u8 = edgedetect->high * 255.; + edgedetect->low_u8 = edgedetect->low * 255. + .5; + edgedetect->high_u8 = edgedetect->high * 255. + .5; return 0; } -- cgit v1.2.3