diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-21 00:36:00 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-21 00:36:00 +0200 |
commit | 44a2bb75a72672177c3837512a2e1ea6f1143d66 (patch) | |
tree | 1cfccd438ff186af94f27ca409f710ee8faa3c54 /libswresample | |
parent | 36e5e51ae3faa1589d6ae097b155d848eabb004c (diff) | |
download | ffmpeg-streaming-44a2bb75a72672177c3837512a2e1ea6f1143d66.zip ffmpeg-streaming-44a2bb75a72672177c3837512a2e1ea6f1143d66.tar.gz |
swr: Fix swresample.c:293:5: warning: passing argument 2 of ‘fill_audiodata’ from incompatible pointer type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/swresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c index ad00fb3..a03d531 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){ |