summaryrefslogtreecommitdiff
path: root/pjsip/include/pjsua-lib/pjsua.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-08-06 12:07:13 +0000
committerBenny Prijono <bennylp@teluu.com>2006-08-06 12:07:13 +0000
commit7d4e5f795015cc061a65f812c0642cfd2891681e (patch)
tree2530a16f89b39b79cc46df59913f261c44f54249 /pjsip/include/pjsua-lib/pjsua.h
parente597fd48b9586700656f2a5760153ef65790a44b (diff)
Change AEC into generic echo canceller framework with either AEC or simple echo suppressor backend can be selected during runtime.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@653 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/include/pjsua-lib/pjsua.h')
-rw-r--r--pjsip/include/pjsua-lib/pjsua.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/pjsip/include/pjsua-lib/pjsua.h b/pjsip/include/pjsua-lib/pjsua.h
index 4ee7aba6..da921c44 100644
--- a/pjsip/include/pjsua-lib/pjsua.h
+++ b/pjsip/include/pjsua-lib/pjsua.h
@@ -2502,25 +2502,25 @@ PJ_DECL(pjmedia_port*) pjsua_set_no_snd_dev(void);
/**
- * Configure the AEC settings of the sound port.
+ * Configure the echo canceller tail length of the sound port.
*
* @param tail_ms The tail length, in miliseconds. Set to zero to
* disable AEC.
*
* @return PJ_SUCCESS on success.
*/
-PJ_DECL(pj_status_t) pjsua_set_aec(unsigned tail_ms);
+PJ_DECL(pj_status_t) pjsua_set_ec_tail(unsigned tail_ms);
/**
- * Get current AEC tail length.
+ * Get current echo canceller tail length.
*
* @param p_tail_ms Pointer to receive the tail length, in miliseconds.
* If AEC is disabled, the value will be zero.
*
* @return PJ_SUCCESS on success.
*/
-PJ_DECL(pj_status_t) pjsua_get_aec(unsigned *p_tail_ms);
+PJ_DECL(pj_status_t) pjsua_get_ec_tail(unsigned *p_tail_ms);