From 492b312ddd855ecb9334960b9602086937196e76 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 11 Sep 2018 11:58:49 +0200 Subject: [PATCH] avfilter/vf_datascope: reduce block height So it match minimal input video size requirement. --- libavfilter/vf_datascope.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_datascope.c b/libavfilter/vf_datascope.c index 467663556e..6bcc18e85e 100644 --- a/libavfilter/vf_datascope.c +++ b/libavfilter/vf_datascope.c @@ -506,7 +506,7 @@ static int pixscope_config_input(AVFilterLink *inlink) } s->ww = 300; - s->wh = 300 * 1.6180; + s->wh = 300 * 1.6; s->x = s->xpos * (inlink->w - 1); s->y = s->ypos * (inlink->h - 1); if (s->x + s->w >= inlink->w || s->y + s->h >= inlink->h) {