Changes between Version 3 and Version 4 of pjsip-doc/consider
- Timestamp:
- Feb 27, 2014 8:54:50 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pjsip-doc/consider
v3 v4 1 1 {{{ 2 2 #!rst 3 4 .. toctree:: 5 :maxdepth: 2 3 6 4 7 … … 18 21 Development 19 22 ------------- 23 * **Essential:** Follow the `Getting Started <http://trac.pjsip.org/repos/wiki/Getting-Started>`_ instructions to build PJSIP for your platform. 20 24 * **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. 22 26 23 27 Coding Style … … 75 79 All features except video are expected to work (video is coming soon!). Considerations for Android: 76 80 77 #. You can only use pjsua2 Java binding for this target.81 #. You can only use PJSUA2 Java binding for this target. 78 82 #. 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. 79 83 #. This is also a new platform for us. … … 106 110 Windows Phone 8 107 111 --------------- 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:112 Windows Phone 8 (WP8) support is being added and is still under development on `projects/winphone` branch. Specific considerations for this platform are: 109 113 110 114 #. 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. … … 158 162 159 163 160 pjsua2 C++ API164 PJSUA2 C++ API 161 165 -------------- 162 166 pjsua2 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.