summaryrefslogtreecommitdiff
path: root/libavfilter/vf_lenscorrection.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-10-14 20:14:03 +0200
committerPaul B Mahol <onemda@gmail.com>2019-10-14 20:14:03 +0200
commit79522411fa53b68743302d16d28156db95466a21 (patch)
tree773b2c9141dcec497900f6063cf08b86f988d9f6 /libavfilter/vf_lenscorrection.c
parent5c3d521a942723313e53dbab284060071a4e0aea (diff)
avfilter/vf_lenscorrection: make width/height int
Somehow previous correct fix broke usage.
Diffstat (limited to 'libavfilter/vf_lenscorrection.c')
-rw-r--r--libavfilter/vf_lenscorrection.c4
1 files changed, 2 insertions, 2 deletions
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;