From 79522411fa53b68743302d16d28156db95466a21 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 14 Oct 2019 20:14:03 +0200 Subject: avfilter/vf_lenscorrection: make width/height int Somehow previous correct fix broke usage. --- libavfilter/vf_lenscorrection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter') diff --git a/libavfilter/vf_lenscorrection.c b/libavfilter/vf_lenscorrection.c index ac3c490821..bb8ea3734f 100644 --- a/libavfilter/vf_lenscorrection.c +++ b/libavfilter/vf_lenscorrection.c @@ -36,8 +36,8 @@ typedef struct LenscorrectionCtx { const AVClass *av_class; - unsigned int width; - unsigned int height; + int width; + int height; int hsub, vsub; int nb_planes; double cx, cy, k1, k2; -- cgit v1.2.3