Changeset 6159 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_dump.c
- Timestamp:
- Feb 6, 2020 4:02:56 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_dump.c
r6140 r6159 372 372 if (call_med->type == PJMEDIA_TYPE_AUDIO) { 373 373 if (pjsua_snd_is_active()) { 374 pjmedia_echo_stat stat;374 pjmedia_echo_stat ec_stat; 375 375 pj_status_t status; 376 376 377 status = pjsua_get_ec_stat(& stat);377 status = pjsua_get_ec_stat(&ec_stat); 378 378 if (status == PJ_SUCCESS) { 379 379 len = pj_ansi_snprintf(p, end-p, " %s EC stat: %.*s\n", 380 380 indent, 381 (int) stat.stat_info.slen,382 stat.stat_info.ptr);381 (int)ec_stat.stat_info.slen, 382 ec_stat.stat_info.ptr); 383 383 if (len < 1 || len >= end-p) { 384 384 *p = '\0';
Note: See TracChangeset
for help on using the changeset viewer.