diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-21 00:34:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-21 00:34:37 +0200 |
commit | 36e5e51ae3faa1589d6ae097b155d848eabb004c (patch) | |
tree | 1bf061ad25c2b358e1dfcd7765ede077a0aec716 /libswresample | |
parent | a911177276d8d600fe79909b15af593dbd57a938 (diff) | |
download | ffmpeg-36e5e51ae3faa1589d6ae097b155d848eabb004c.tar.gz |
swr: remove unused variable.
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 bb5b523971..ad00fb3e2a 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -279,7 +279,7 @@ static void fill_audiodata(AudioData *out, uint8_t *in_arg [SWR_CH_MAX]){ int swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_count, const uint8_t *in_arg [SWR_CH_MAX], int in_count){ AudioData *postin, *midbuf, *preout; - int ret, i/*, in_max*/; + int ret/*, in_max*/; AudioData * in= &s->in; AudioData *out= &s->out; AudioData preout_tmp, midbuf_tmp; |