Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-10-14 21:14:03 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2022-04-08 00:56:00 +0300
commit6ac6df4e1f219d4720a45ab8ea85524223eb360b (patch)
treee523c2d59f0eabfde34007a621b0537ebfc7ccc6 /libavfilter
parent9576ed4e48929aea96afdc5ee9901d77bface500 (diff)
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>
Diffstat (limited to 'libavfilter')
-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 43f3c1b7d0..754b8f5ada 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;