Changes between Version 8 and Version 9 of Audio_Dev_API
- Timestamp:
- Feb 20, 2009 4:49:35 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Audio_Dev_API
v8 v9 119 119 120 120 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 {{{ 123 pjmedia_snd_set_latency(rec_latency, play_latency); 124 }}} 125 Now latency setting is part of PJSUA-LIB API: 126 {{{ 127 pjsua_media_config media_cfg; 128 129 .. 130 media_cfg.snd_rec_latency = ..; 131 media_cfg.snd_play_latency = ..; 132 }}} 121 133 122 134