diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-01 22:11:34 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-01 22:11:34 +0200 |
commit | 87688727e48c3e3bd4d4cfe94add604c6e416257 (patch) | |
tree | e607bd116ad427c7ef0c829d65741f884a873012 | |
parent | dc984da961c9f3e56a5efe40796f8197fc530233 (diff) | |
download | ffmpeg-87688727e48c3e3bd4d4cfe94add604c6e416257.tar.gz |
swr: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libswresample/swresample.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c index f9674d1f7a..205e4360b0 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -545,7 +545,6 @@ int swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_coun AudioData tmp= *in; int ret2=0; int ret, size; - int in_buffer_count= s->in_buffer_count; size = FFMIN(out_count, s->in_buffer_count); if(size){ buf_set(&tmp, &s->in_buffer, s->in_buffer_index); |