Changes between Version 8 and Version 9 of Audio_Dev_API


Ignore:
Timestamp:
Feb 20, 2009 4:49:35 PM (15 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Audio_Dev_API

    v8 v9  
    119119 
    120120 2. Add '''pjmedia-audiodev''' library to the link specifications of your application. 
     121 3. '''Latency''' setting. Old code may set latency directly accessing PJMEDIA API: 
     122    {{{ 
     123pjmedia_snd_set_latency(rec_latency, play_latency); 
     124    }}} 
     125    Now latency setting is part of PJSUA-LIB API: 
     126    {{{ 
     127pjsua_media_config media_cfg; 
     128 
     129.. 
     130media_cfg.snd_rec_latency = ..; 
     131media_cfg.snd_play_latency = ..; 
     132    }}} 
    121133 
    122134