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:
-rw-r--r--.gitignore22
-rw-r--r--libspeex/nb_celp.c4
2 files changed, 24 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index d595f00..eb35247 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
*.o
+*.lo
Makefile.in
*~
fixed
@@ -15,4 +16,25 @@ depcomp
install-sh
ltmain.sh
missing
+Makefile
+.deps
+.libs
+*.la
work
+Speex.spec
+config.h
+config.log
+config.status
+include/speex/speex_config_types.h
+*.swp
+testdenoise
+testecho
+testenc
+testenc_uwb
+testenc_wb
+libtool
+speex.pc
+speexdec
+src/speexenc
+stamp-*
+
diff --git a/libspeex/nb_celp.c b/libspeex/nb_celp.c
index 6ac12a0..a632287 100644
--- a/libspeex/nb_celp.c
+++ b/libspeex/nb_celp.c
@@ -209,7 +209,7 @@ void *nb_encoder_init(const SpeexMode *m)
st->highpass_enabled = 1;
#ifdef ENABLE_VALGRIND
- VALGRIND_MAKE_READABLE(st, (st->stack-(char*)st));
+ VALGRIND_MAKE_READABLE(st, NB_ENC_STACK);
#endif
return st;
}
@@ -1101,7 +1101,7 @@ void *nb_decoder_init(const SpeexMode *m)
st->highpass_enabled = 1;
#ifdef ENABLE_VALGRIND
- VALGRIND_MAKE_READABLE(st, (st->stack-(char*)st));
+ VALGRIND_MAKE_READABLE(st, NB_DEC_STACK);
#endif
return st;
}