Ignore:
Timestamp:
Jan 28, 2020 6:58:45 AM (4 years ago)
Author:
ming
Message:

Closed #2143: Add AEC info to call info & statistics dump

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_aud.c

    r5979 r6140  
    22782278 
    22792279/* 
     2280 * Get echo canceller statistics. 
     2281 */ 
     2282PJ_DEF(pj_status_t) pjsua_get_ec_stat(pjmedia_echo_stat *p_stat) 
     2283{ 
     2284    if (pjsua_var.snd_port) { 
     2285        return pjmedia_snd_port_get_ec_stat(pjsua_var.snd_port, p_stat); 
     2286    } else { 
     2287        return PJ_ENOTFOUND; 
     2288    } 
     2289} 
     2290 
     2291 
     2292/* 
    22802293 * Check whether the sound device is currently active. 
    22812294 */ 
Note: See TracChangeset for help on using the changeset viewer.