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

This should fix the 32-bit FATE instances where low_u8=19 and high_u8=49.
This commit is contained in:
Clément Bœsch 2012-08-17 08:07:37 +02:00
parent 7e5a622525
commit 517a2bbcf1

View File

@ -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;
}