Commit 44a2bb75 authored by Michael Niedermayer's avatar Michael Niedermayer

swr: Fix swresample.c:293:5: warning: passing argument 2 of ‘fill_audiodata’...

swr: Fix swresample.c:293:5: warning: passing argument 2 of ‘fill_audiodata’ from incompatible pointer type
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 36e5e51a
......@@ -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){
......
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