diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-18 23:59:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-18 23:59:59 +0200 |
commit | e96aa8d1a064bbcfacbe80371bac1e49398a48e7 (patch) | |
tree | c6ba31412505471af82f4e65c40a8c27fae33c62 /libavfilter | |
parent | abe9c54f145166e7e27f3eda85051a188e5c3a93 (diff) | |
download | ffmpeg-e96aa8d1a064bbcfacbe80371bac1e49398a48e7.tar.gz |
vf_pixdesctest: Fix incompatible pointer type warning.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_pixdesctest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_pixdesctest.c b/libavfilter/vf_pixdesctest.c index 1fb577e7fc..a6e5d0c60a 100644 --- a/libavfilter/vf_pixdesctest.c +++ b/libavfilter/vf_pixdesctest.c @@ -92,7 +92,7 @@ static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir) for (i = y1; i < y1 + h1; i++) { av_read_image_line(priv->line, - inpic->data, + (void*)inpic->data, inpic->linesize, priv->pix_desc, 0, i, c, w1, 0); |