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:
authorPeter Meerwald <pmeerw@pmeerw.net>2014-04-15 20:33:48 +0400
committerTristan Matthews <le.businessman@gmail.com>2014-04-16 01:44:53 +0400
commit85cbd6f4c2609d176dcb8d21ce914e092c086a50 (patch)
treeb975e386e555a2e7b79bd997d57b17dc385d3c59 /libspeexdsp
parent6ff9596c19282cb21171830d4d144b8355927fad (diff)
Resampler buffer_size is always 160, drop FIXED_POINT #ifdef
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net> Signed-off-by: Tristan Matthews <le.businessman@gmail.com>
Diffstat (limited to 'libspeexdsp')
-rw-r--r--libspeexdsp/resample.c4
1 files changed, 0 insertions, 4 deletions
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));