Commit 79522411 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_lenscorrection: make width/height int

Somehow previous correct fix broke usage.
parent 5c3d521a
...@@ -36,8 +36,8 @@ ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment