Commit 517a2bbc authored by Clément Bœsch's avatar Clément Bœsch

lavfi/edgedetect: add rounding for high/low threshold.

This should fix the 32-bit FATE instances where low_u8=19 and high_u8=49.
parent 7e5a6225
......@@ -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;
}
......
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