Ignore:
Timestamp:
Aug 6, 2006 12:07:13 PM (18 years ago)
Author:
bennylp
Message:

Change AEC into generic echo canceller framework with either AEC or simple echo suppressor backend can be selected during runtime.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h

    r651 r653  
    25032503 
    25042504/** 
    2505  * Configure the AEC settings of the sound port. 
     2505 * Configure the echo canceller tail length of the sound port. 
    25062506 * 
    25072507 * @param tail_ms       The tail length, in miliseconds. Set to zero to 
     
    25102510 * @return              PJ_SUCCESS on success. 
    25112511 */ 
    2512 PJ_DECL(pj_status_t) pjsua_set_aec(unsigned tail_ms); 
    2513  
    2514  
    2515 /** 
    2516  * Get current AEC tail length. 
     2512PJ_DECL(pj_status_t) pjsua_set_ec_tail(unsigned tail_ms); 
     2513 
     2514 
     2515/** 
     2516 * Get current echo canceller tail length. 
    25172517 * 
    25182518 * @param p_tail_ms     Pointer to receive the tail length, in miliseconds.  
     
    25212521 * @return              PJ_SUCCESS on success. 
    25222522 */ 
    2523 PJ_DECL(pj_status_t) pjsua_get_aec(unsigned *p_tail_ms); 
     2523PJ_DECL(pj_status_t) pjsua_get_ec_tail(unsigned *p_tail_ms); 
    25242524 
    25252525 
Note: See TracChangeset for help on using the changeset viewer.