diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-08-17 08:07:37 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-08-17 08:08:07 +0200 |
commit | 517a2bbcf131df3e61ff4494d7f695b4570bc5fc (patch) | |
tree | 047d81ab7ed9b0e936f9bfe0b766cda277d841b6 | |
parent | 7e5a6225252e87185b6c21aec40e6e6efd70eb3c (diff) | |
download | ffmpeg-517a2bbcf131df3e61ff4494d7f695b4570bc5fc.tar.gz |
lavfi/edgedetect: add rounding for high/low threshold.
This should fix the 32-bit FATE instances where low_u8=19 and high_u8=49.
-rw-r--r-- | libavfilter/vf_edgedetect.c | 4 |
1 files 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; } |