Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/speexdsp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvindra Goolcharan <aavindraa@gmail.com>2017-08-08 06:10:25 +0300
committerTristan Matthews <tmatth@videolan.org>2017-08-08 15:34:35 +0300
commit85e8ad5432eb9333f727e7b18c97995317eabf02 (patch)
tree5ebb486976e06e836a0c858cdd3431e72da710dc
parent79822c8fb79d202cbe7e899f7406acf17beb247c (diff)
Resample.c: drop unused variable
Minor fix to delete a single unused variable Signed-off-by: Tristan Matthews <tmatth@videolan.org>
-rw-r--r--libspeexdsp/resample.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libspeexdsp/resample.c b/libspeexdsp/resample.c
index 9fbb5dd..10cb065 100644
--- a/libspeexdsp/resample.c
+++ b/libspeexdsp/resample.c
@@ -798,7 +798,6 @@ EXPORT SpeexResamplerState *speex_resampler_init(spx_uint32_t nb_channels, spx_u
EXPORT SpeexResamplerState *speex_resampler_init_frac(spx_uint32_t nb_channels, spx_uint32_t ratio_num, spx_uint32_t ratio_den, spx_uint32_t in_rate, spx_uint32_t out_rate, int quality, int *err)
{
- spx_uint32_t i;
SpeexResamplerState *st;
int filter_err;