diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-12-16 14:52:16 -0500 |
---|---|---|
committer | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-12-19 09:34:08 -0800 |
commit | 425c0685f245d715f2da7066c5a89564c1ab146b (patch) | |
tree | 33271369c8f56a102a88e052796fe262474d20dd | |
parent | 18bc3dc7681c2b520af62b9dea9c3d1815fc5ad7 (diff) | |
download | ffmpeg-425c0685f245d715f2da7066c5a89564c1ab146b.tar.gz |
lavfi/vf_cropdetect: replace round by lrint
lrint is at least as fast, and more accurate.
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
-rw-r--r-- | libavfilter/vf_cropdetect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c index d45637777f..4a89875502 100644 --- a/libavfilter/vf_cropdetect.c +++ b/libavfilter/vf_cropdetect.c @@ -165,7 +165,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) int w, h, x, y, shrink_by; AVDictionary **metadata; int outliers, last_y; - int limit = round(s->limit); + int limit = lrint(s->limit); // ignore first 2 frames - they may be empty if (++s->frame_nb > 0) { |