Changes between Version 11 and Version 12 of Getting-Started/iPhone


Ignore:
Timestamp:
May 12, 2010 11:48:17 PM (14 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/iPhone

    v11 v12  
    88== Features == 
    99 
    10 The iPhone port contains a native !CoreAudio based audio device, which has the following features: 
    11  * built-in echo cancellation 
     10The iPhone port contains a native !CoreAudio based audio device, which supports the following features: 
     11 * the built-in/device's echo canceller 
    1212 * output volume setting 
    1313 * change input route to bluetooth input 
     
    1919== Requirements == 
    2020 
    21 You'll need an iPhone SDK. We tested mainly with version 3.x SDK/devices, but we tested building against SDK version 2.x and it builds fine. 
     21You'll need an iPhone SDK. We tested mainly with version 3.x SDK/devices, but SDK version 2.x would build fine too. 
    2222 
    2323== Build Preparation == 
     
    2929#include <pj/config_site_sample.h> 
    3030  }}} 
     31  This will activate iPhone specific settings in the {{{config_site_sample.h}}}. 
    3132 
    3233== Building PJSIP == 
     
    3435Just run: 
    3536 {{{ 
    36 $ cd /your/pjsip/dir 
     37$ cd /path/to/your/pjsip/dir 
    3738$ ./configure-iphone 
    3839$ make dep && make clean && make 
     
    4041 
    4142Notes: 
    42  * the {{{./configure-iphone}}} is a shell script that calls the standard {{{./configure}}} script with settings suitable for iPhone target. 
    43  * the latest iPhone SDK version will be selected by default. You may change this by setting {{{SDK}}} environment variable to the desired SDK path. 
     43 * the {{{./configure-iphone}}} is a wrapper that calls the standard {{{./configure}}} script with settings suitable for iPhone target. 
     44 * the latest iPhone SDK version will be selected by default. You may change this by setting {{{IPHONESDK}}} environment variable to the desired SDK path. 
    4445 * you may pass standard {{{./configure}}} options to this script too. 
    4546 * for more info, run {{{./configure-iphone --help}}}