avfilter/vf_lenscorrection: make width/height int

Somehow previous correct fix broke usage.

(cherry picked from commit 79522411fa53b68743302d16d28156db95466a21)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Paul B Mahol 2019-10-14 20:14:03 +02:00 committed by Michael Niedermayer
parent c8ca479572
commit 293f75b581

View File

@ -36,8 +36,8 @@
typedef struct LenscorrectionCtx { typedef struct LenscorrectionCtx {
const AVClass *av_class; const AVClass *av_class;
unsigned int width; int width;
unsigned int height; int height;
int hsub, vsub; int hsub, vsub;
int nb_planes; int nb_planes;
double cx, cy, k1, k2; double cx, cy, k1, k2;