Displaying 1 result from an estimated 1 matches for "speex_preprocess_get_prob".
2008 Feb 12
0
Second part of data export patch
..._prob/include/speex/speex_preprocess.h 2008-02-12 17:13:21.000000000 +0100
@@ -202,6 +202,10 @@
/** Get noise estimate (int32[] of squared values) */
#define SPEEX_PREPROCESS_GET_NOISE_PSD 43
+/* Can't set speech probability */
+/** Get speech probability in last frame (int32). */
+#define SPEEX_PREPROCESS_GET_PROB 45
+
#ifdef __cplusplus
}
#endif
diff -ubBwr get_psd/libspeex/preprocess.c get_prob/libspeex/preprocess.c
--- get_psd/libspeex/preprocess.c 2008-02-12 17:16:10.000000000 +0100
+++ get_prob/libspeex/preprocess.c 2008-02-12 17:13:28.000000000 +0100
@@ -199,6 +199,8 @@
int echo_suppress_acti...