Changeset 653 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
- Timestamp:
- Aug 6, 2006 12:07:13 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r649 r653 970 970 971 971 /* Set AEC */ 972 pjmedia_snd_port_set_ aec(pjsua_var.snd_port, pjsua_var.pool,973 pjsua_var.media_cfg.ec_tail_len);972 pjmedia_snd_port_set_ec_tail(pjsua_var.snd_port, pjsua_var.pool, 973 pjsua_var.media_cfg.ec_tail_len); 974 974 975 975 /* Connect sound port to the bridge */ … … 1045 1045 * Configure the AEC settings of the sound port. 1046 1046 */ 1047 PJ_DEF(pj_status_t) pjsua_set_ aec(unsigned tail_ms)1047 PJ_DEF(pj_status_t) pjsua_set_ec_tail(unsigned tail_ms) 1048 1048 { 1049 1049 pjsua_var.media_cfg.ec_tail_len = tail_ms; 1050 1050 1051 1051 if (pjsua_var.snd_port) 1052 return pjmedia_snd_port_set_ aec(pjsua_var.snd_port, pjsua_var.pool,1053 tail_ms);1052 return pjmedia_snd_port_set_ec_tail(pjsua_var.snd_port, pjsua_var.pool, 1053 tail_ms); 1054 1054 1055 1055 return PJ_SUCCESS; … … 1060 1060 * Get current AEC tail length. 1061 1061 */ 1062 PJ_DEF(pj_status_t) pjsua_get_ aec(unsigned *p_tail_ms)1062 PJ_DEF(pj_status_t) pjsua_get_ec_tail(unsigned *p_tail_ms) 1063 1063 { 1064 1064 *p_tail_ms = pjsua_var.media_cfg.ec_tail_len;
Note: See TracChangeset
for help on using the changeset viewer.