Ignore:
Timestamp:
Aug 2, 2006 7:41:37 PM (18 years ago)
Author:
bennylp
Message:

Fix compilation error in MacOS because of recent changes in config.h, also disable AEC by default in pjsua-lib, and added ec-tail option in pjsua

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/aec_port.c

    r642 r643  
    9494    *p_port = &aec_port->base; 
    9595 
    96     PJ_LOG(4,(THIS_FILE, "AEC created for port %.*s",  
     96    PJ_LOG(4,(THIS_FILE, "AEC created for port %.*s, clock_rate=%d, " 
     97                         "samples per frame=%d, tail length=%d ms",  
    9798                         (int)dn_port->info.name.slen, 
    98                          dn_port->info.name.ptr)); 
     99                         dn_port->info.name.ptr, 
     100                         dn_port->info.clock_rate, 
     101                         dn_port->info.samples_per_frame, 
     102                         tail_length * 1000 / dn_port->info.clock_rate)); 
    99103    return PJ_SUCCESS; 
    100104} 
Note: See TracChangeset for help on using the changeset viewer.