avfilter/vf_lenscorrection: make width/height int

Somehow previous correct fix broke usage.
This commit is contained in:
Paul B Mahol 2019-10-14 20:14:03 +02:00
parent 5c3d521a94
commit 79522411fa

View File

@ -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;