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:
authorjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2007-06-16 06:40:46 +0400
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2007-06-16 06:40:46 +0400
commit5c8ab6918095820c17c289f58a99797fb15f93c4 (patch)
tree4a41c31b16ee4d9303d0f11ebc5aabdbe136dce5
parentfce97bace2796b426ab4df9384d9f3e93819b3e5 (diff)
fixed valgrind support (and gitignore)
git-svn-id: http://svn.xiph.org/trunk/speex@13134 0101bb08-14d6-0310-b084-bc0e0c8e3800
-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;
}