summaryrefslogtreecommitdiff
path: root/pjmedia/src/pjmedia-codec/speex/speex.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-11-23 10:19:46 +0000
committerBenny Prijono <bennylp@teluu.com>2006-11-23 10:19:46 +0000
commit67d4e56dc8a365871c3dca4f04fcf8b9c9f47ee6 (patch)
treee30de3c33522d7e91f091ed0f9ac0984c1f9868a /pjmedia/src/pjmedia-codec/speex/speex.h
parent512f41cf91a5d5719696cbf8383832cbdca5a5a2 (diff)
Updated Speex to their latest SVN (1.2-beta). AEC seems
to work much better now and take less CPU, so I increased default tail length in PJSUA to 800ms. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@823 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/src/pjmedia-codec/speex/speex.h')
-rw-r--r--pjmedia/src/pjmedia-codec/speex/speex.h17
1 files changed, 14 insertions, 3 deletions
diff --git a/pjmedia/src/pjmedia-codec/speex/speex.h b/pjmedia/src/pjmedia-codec/speex/speex.h
index c7f7547e..71640c1b 100644
--- a/pjmedia/src/pjmedia-codec/speex/speex.h
+++ b/pjmedia/src/pjmedia-codec/speex/speex.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002 Jean-Marc Valin*/
+/* Copyright (C) 2002-2006 Jean-Marc Valin*/
/**
@file speex.h
@brief Describes the different modes of the codec
@@ -35,6 +35,10 @@
#ifndef SPEEX_H
#define SPEEX_H
+/** @defgroup Codec Speex encoder and decoder
+ * This is the Speex codec itself.
+ * @{
+ */
#include "speex/speex_bits.h"
#include "speex/speex_types.h"
@@ -146,7 +150,12 @@ extern "C" {
/** Gets the max bit-rate allowed in VBR mode */
#define SPEEX_GET_VBR_MAX_BITRATE 43
-/* Used internally, not to be used in applications */
+/** Turn on/off input/output high-pass filtering */
+#define SPEEX_SET_HIGHPASS 44
+/** Get status of input/output high-pass filtering */
+#define SPEEX_GET_HIGHPASS 45
+
+/* Used internally, NOT TO BE USED in applications */
/** Used internally*/
#define SPEEX_GET_PI_GAIN 100
/** Used internally*/
@@ -157,6 +166,8 @@ extern "C" {
#define SPEEX_GET_DTX_STATUS 103
/** Used internally*/
#define SPEEX_SET_INNOVATION_SAVE 104
+/** Used internally*/
+#define SPEEX_SET_WIDEBAND 105
/* Preserving compatibility:*/
@@ -420,5 +431,5 @@ const SpeexMode * speex_lib_get_mode (int mode);
}
#endif
-
+/** @}*/
#endif