You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user