From 3ff8ef62bbb9412322be3b20135794c52d582b8e Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 18 Dec 2014 16:54:18 +0100 Subject: [PATCH] avfilter/vf_spp: Fix pointer type warning Signed-off-by: Michael Niedermayer --- libavfilter/vf_spp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_spp.c b/libavfilter/vf_spp.c index 48d23a1da2..d1f60b3ed0 100644 --- a/libavfilter/vf_spp.c +++ b/libavfilter/vf_spp.c @@ -302,7 +302,7 @@ static void filter(SPPContext *p, uint8_t *dst, uint8_t *src, FFMIN(8, height + 8 - y), MAX_LEVEL - p->log2_count, ldither); } else { - store_slice16_c(dst + (y - 8) * dst_linesize, p->temp + 8 + y*linesize, + store_slice16_c((uint16_t*)(dst + (y - 8) * dst_linesize), p->temp + 8 + y*linesize, dst_linesize/2, linesize, width, FFMIN(8, height + 8 - y), MAX_LEVEL - p->log2_count, ldither);