]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/vf_lenscorrection: make width/height int
authorPaul B Mahol <onemda@gmail.com>
Mon, 14 Oct 2019 18:14:03 +0000 (20:14 +0200)
committerPaul B Mahol <onemda@gmail.com>
Mon, 14 Oct 2019 18:14:03 +0000 (20:14 +0200)
Somehow previous correct fix broke usage.

libavfilter/vf_lenscorrection.c

index ac3c490821450718313d62c8f73c89cd6f5d7ccd..bb8ea3734fba5f9847380f7a80876eb851f1cad3 100644 (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;