diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-14 20:14:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2022-04-07 23:54:50 +0200 |
commit | 350f2378c35e4fcfdc26c15d5374c6b8d6c64158 (patch) | |
tree | 61ac2e037d08929a945c4dfb75a5f5c653053eff | |
parent | 07d533880c36e8d169c50da067ef7e162920886f (diff) | |
download | ffmpeg-350f2378c35e4fcfdc26c15d5374c6b8d6c64158.tar.gz |
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>
-rw-r--r-- | libavfilter/vf_lenscorrection.c | 4 |
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; |