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

github.com/mumble-voip/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorslicer <slicer@mumble.hive.no>2009-12-23 03:54:55 +0300
committerslicer <slicer@mumble.hive.no>2009-12-23 03:54:55 +0300
commit2b732e49ee34b1897f0b7c94252b7d92697dc3a5 (patch)
treee537614bc58f624461400dde287375c25668f4a2
parent22b4c8673d72c562861770abb629afec4da3fb9f (diff)
Remove regressions (they were for the resampler)
-rw-r--r--regression-fixes/1-resampler_unsigned_fix.patch17
-rw-r--r--regressions4
2 files changed, 0 insertions, 21 deletions
diff --git a/regression-fixes/1-resampler_unsigned_fix.patch b/regression-fixes/1-resampler_unsigned_fix.patch
deleted file mode 100644
index 99a4c8a..0000000
--- a/regression-fixes/1-resampler_unsigned_fix.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/libspeex/resample.c b/libspeex/resample.c
-index 4403f78..48ffcef 100644
---- a/libspeex/resample.c
-+++ b/libspeex/resample.c
-@@ -561,10 +561,10 @@ static void update_filter(SpeexResamplerState *st)
- }
- for (i=0;i<st->den_rate;i++)
- {
-- spx_uint32_t j;
-+ spx_int32_t j;
- for (j=0;j<st->filt_len;j++)
- {
-- st->sinc_table[i*st->filt_len+j] = sinc(st->cutoff,((j-st->filt_len/2+1)-((float)i)/st->den_rate), st->filt_len, quality_map[st->quality].window_func);
-+ st->sinc_table[i*st->filt_len+j] = sinc(st->cutoff,((j-(spx_int32_t)st->filt_len/2+1)-((float)i)/st->den_rate), st->filt_len, quality_map[st->quality].window_func);
- }
- }
- #ifdef FIXED_POINT
diff --git a/regressions b/regressions
deleted file mode 100644
index 2a17631..0000000
--- a/regressions
+++ /dev/null
@@ -1,4 +0,0 @@
-1: 723f644e09333a0230383eae4af1f3aa3e46e1c3 (r12736): broke resampler badly
-Changed the sign of a bunch of parameters in the API. Tons of signed/unsigned changes in the code as a consequence of that. Hopefully this will be the last change to the API.
-Fixed: 2007-08-11
-