diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-03-03 14:53:08 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-03-03 16:41:11 +0100 |
commit | 50208a0424fa1edbab9f325af0091498a65b8b96 (patch) | |
tree | 920a652d45f8357818f8a9871ce83b58462d255e | |
parent | 0786b28425ee1f3719a90e9d0d50b8c721ad1c66 (diff) | |
download | ffmpeg-50208a0424fa1edbab9f325af0091498a65b8b96.tar.gz |
avfilter/vf_ciescope: Fix "incompatible pointer type" warnings
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavfilter/vf_ciescope.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavfilter/vf_ciescope.c b/libavfilter/vf_ciescope.c index d693ff76d9..c9456a3b63 100644 --- a/libavfilter/vf_ciescope.c +++ b/libavfilter/vf_ciescope.c @@ -1229,7 +1229,7 @@ static int draw_background(AVFilterContext *ctx) tongue_outline(pixels, s->f->linesize[0] / 2, w, h, 65535, s->cie); - fill_in_tongue(pixels, s->f->linesize[0] / 2, w, h, 65535, cs, s->i, s->cie, + fill_in_tongue(pixels, s->f->linesize[0] / 2, w, h, 65535, cs, (const double (*)[3])s->i, s->cie, s->correct_gamma, s->contrast); return 0; @@ -1244,7 +1244,7 @@ static void filter_rgb48(AVFilterContext *ctx, AVFrame *in, double *cx, double * double b = src[2] / 65535.; double cz; - rgb_to_xy(r, g, b, cx, cy, &cz, s->m); + rgb_to_xy(r, g, b, cx, cy, &cz, (const double (*)[3])s->m); } static void filter_rgba64(AVFilterContext *ctx, AVFrame *in, double *cx, double *cy, int x, int y) @@ -1256,7 +1256,7 @@ static void filter_rgba64(AVFilterContext *ctx, AVFrame *in, double *cx, double double b = src[2] / 65535.; double cz; - rgb_to_xy(r, g, b, cx, cy, &cz, s->m); + rgb_to_xy(r, g, b, cx, cy, &cz, (const double (*)[3])s->m); } static void filter_rgb24(AVFilterContext *ctx, AVFrame *in, double *cx, double *cy, int x, int y) @@ -1268,7 +1268,7 @@ static void filter_rgb24(AVFilterContext *ctx, AVFrame *in, double *cx, double * double b = src[2] / 255.; double cz; - rgb_to_xy(r, g, b, cx, cy, &cz, s->m); + rgb_to_xy(r, g, b, cx, cy, &cz, (const double (*)[3])s->m); } static void filter_rgba(AVFilterContext *ctx, AVFrame *in, double *cx, double *cy, int x, int y) @@ -1280,7 +1280,7 @@ static void filter_rgba(AVFilterContext *ctx, AVFrame *in, double *cx, double *c double b = src[2] / 255.; double cz; - rgb_to_xy(r, g, b, cx, cy, &cz, s->m); + rgb_to_xy(r, g, b, cx, cy, &cz, (const double (*)[3])s->m); } static void filter_xyz(AVFilterContext *ctx, AVFrame *in, double *cx, double *cy, int x, int y) |