mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
lavfi/vf_histogram: replace round by lrint
lrint is at least as fast, uses a superior rounding mode, and avoids an implicit cast. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
This commit is contained in:
parent
ad795f6394
commit
ea2f04bffe
@ -281,7 +281,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||
int col_height;
|
||||
|
||||
if (h->levels_mode)
|
||||
col_height = round(h->level_height * (1. - (log2(h->histogram[i] + 1) / max_hval_log)));
|
||||
col_height = lrint(h->level_height * (1. - (log2(h->histogram[i] + 1) / max_hval_log)));
|
||||
else
|
||||
col_height = h->level_height - (h->histogram[i] * (int64_t)h->level_height + max_hval - 1) / max_hval;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user