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

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2008-04-11 07:49:08 +0400
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2008-04-11 07:49:08 +0400
commitfbb903751e0d94da1f9ddc081485be53eda7ec3f (patch)
tree0d6ab7d3fbc52aae67f444d4d36d82371a2af348 /include
parentb80fc6416ff082bb08e5928bd0cbe7c9a1c6f708 (diff)
SPEEX_PREPROCESS_SET_AGC_LEVEL is now back to its original semantic as thisSpeex-1.2beta3.2
would have caused too much problems. The int version is now called SPEEX_PREPROCESS_SET_AGC_TARGET. git-svn-id: http://svn.xiph.org/trunk/speex@14702 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'include')
-rw-r--r--include/speex/speex_preprocess.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/speex/speex_preprocess.h b/include/speex/speex_preprocess.h
index bcef7be..f8eef2c 100644
--- a/include/speex/speex_preprocess.h
+++ b/include/speex/speex_preprocess.h
@@ -110,9 +110,9 @@ int speex_preprocess_ctl(SpeexPreprocessState *st, int request, void *ptr);
/** Get preprocessor Voice Activity Detection state */
#define SPEEX_PREPROCESS_GET_VAD 5
-/** Set preprocessor Automatic Gain Control level */
+/** Set preprocessor Automatic Gain Control level (float) */
#define SPEEX_PREPROCESS_SET_AGC_LEVEL 6
-/** Get preprocessor Automatic Gain Control level */
+/** Get preprocessor Automatic Gain Control level (float) */
#define SPEEX_PREPROCESS_GET_AGC_LEVEL 7
/** Set preprocessor dereverb state */
@@ -206,6 +206,11 @@ int speex_preprocess_ctl(SpeexPreprocessState *st, int request, void *ptr);
/** Get speech probability in last frame (int32). */
#define SPEEX_PREPROCESS_GET_PROB 45
+/** Set preprocessor Automatic Gain Control level (int32) */
+#define SPEEX_PREPROCESS_SET_AGC_TARGET 46
+/** Get preprocessor Automatic Gain Control level (int32) */
+#define SPEEX_PREPROCESS_GET_AGC_TARGET 47
+
#ifdef __cplusplus
}
#endif