mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-23 15:53:08 +00:00
avfilter/vf_lenscorrection: make width/height int
Somehow previous correct fix broke usage.
This commit is contained in:
parent
5c3d521a94
commit
79522411fa
@ -36,8 +36,8 @@
|
|||||||
|
|
||||||
typedef struct LenscorrectionCtx {
|
typedef struct LenscorrectionCtx {
|
||||||
const AVClass *av_class;
|
const AVClass *av_class;
|
||||||
unsigned int width;
|
int width;
|
||||||
unsigned int height;
|
int height;
|
||||||
int hsub, vsub;
|
int hsub, vsub;
|
||||||
int nb_planes;
|
int nb_planes;
|
||||||
double cx, cy, k1, k2;
|
double cx, cy, k1, k2;
|
||||||
|
Loading…
Reference in New Issue
Block a user