mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-16 11:47:04 +00:00
avfilter/vf_lenscorrection: make width/height int
Somehow previous correct fix broke usage.
(cherry picked from commit 79522411fa
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
9576ed4e48
commit
6ac6df4e1f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user