From 85cbd6f4c2609d176dcb8d21ce914e092c086a50 Mon Sep 17 00:00:00 2001 From: Peter Meerwald Date: Tue, 15 Apr 2014 18:33:48 +0200 Subject: Resampler buffer_size is always 160, drop FIXED_POINT #ifdef Signed-off-by: Peter Meerwald Signed-off-by: Tristan Matthews --- libspeexdsp/resample.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'libspeexdsp') diff --git a/libspeexdsp/resample.c b/libspeexdsp/resample.c index 7121445..e32ca45 100644 --- a/libspeexdsp/resample.c +++ b/libspeexdsp/resample.c @@ -755,11 +755,7 @@ EXPORT SpeexResamplerState *speex_resampler_init_frac(spx_uint32_t nb_channels, st->in_stride = 1; st->out_stride = 1; -#ifdef FIXED_POINT - st->buffer_size = 160; -#else st->buffer_size = 160; -#endif /* Per channel data */ st->last_sample = (spx_int32_t*)speex_alloc(nb_channels*sizeof(spx_int32_t)); -- cgit v1.2.3