Changes between Version 3 and Version 4 of pjsip-doc/consider


Ignore:
Timestamp:
Feb 27, 2014 8:54:50 AM (10 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pjsip-doc/consider

    v3 v4  
    11{{{ 
    22#!rst 
     3 
     4.. toctree:: 
     5   :maxdepth: 2 
    36 
    47 
     
    1821Development 
    1922------------- 
     23* **Essential:** Follow the `Getting Started <http://trac.pjsip.org/repos/wiki/Getting-Started>`_ instructions to build PJSIP for your platform. 
    2024* **Essential:** Interactive debugging capability is essential during development 
    21 * Start with default settings in `<pj/config_site_sample.h>`. 
     25* Start with default settings in `<pj/config_site_sample.h>`. The default settings should be good to get you started. You can always optimize later after things are running okay. 
    2226 
    2327Coding Style 
     
    7579All features except video are expected to work (video is coming soon!). Considerations for Android: 
    7680 
    77 #. You can only use pjsua2 Java binding for this target. 
     81#. You can only use PJSUA2 Java binding for this target. 
    7882#. It has been reported that Android audio device is not so good in general, so some audio tuning may be needed. Echo cancellation also needs to be checked. 
    7983#. This is also a new platform for us.  
     
    106110Windows Phone 8 
    107111--------------- 
    108 Windows Phone 8 (WP8) support is being added to PJSIP version 2.2 and is still under development. Specific considerations for this platform are: 
     112Windows Phone 8 (WP8) support is being added and is still under development on `projects/winphone` branch. Specific considerations for this platform are: 
    109113 
    110114#. WP8 governs specific interaction with WP8 GUI and framework that needs to be followed by application in order to make VoIP call work seamlessly on the device. Some lightweight process will be created by WP8 framework in order for background call to work and PJSIP needs to put its background processing in this process' context. Currently this feature is under development. 
     
    158162 
    159163 
    160 pjsua2 C++ API 
     164PJSUA2 C++ API 
    161165-------------- 
    162166pjsua2 is a new, objected oriented, C++ API created on top of PJSUA-LIB. The API is different than PJSUA-LIB, but it should be even easier to use and it should have better documentation too (such as this book). The pjsua2 API removes most cruxes typically associated with PJSIP, such as the pool and pj_str_t, and add new features such as object persistence so you can save your configs to a file, for example. All data structures are rewritten for more clarity.