From 44a2bb75a72672177c3837512a2e1ea6f1143d66 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 21 Oct 2011 00:36:00 +0200 Subject: swr: Fix swresample.c:293:5: warning: passing argument 2 of ‘fill_audiodata’ from incompatible pointer type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michael Niedermayer --- libswresample/swresample.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libswresample') diff --git a/libswresample/swresample.c b/libswresample/swresample.c index ad00fb3e2a..a03d531d0f 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -290,7 +290,7 @@ int swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_coun out_count = in_count; } - fill_audiodata(in , in_arg); + fill_audiodata(in , (void*)in_arg); fill_audiodata(out, out_arg); if(s->full_convert){ -- cgit v1.2.3