Changes between Version 1 and Version 2 of VAS
- Timestamp:
- Aug 17, 2009 5:31:19 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VAS
v1 v2 23 23 == Building Steps == 24 24 Here are a few steps to build PJSIP with VAS support: 25 1. Specify that sound device implementation is using VAS, and turn off MDA and APS i.e in config_site.h:25 1. Specify that sound device implementation is using VAS, and turn off MDA and APS i.e in {{{config_site.h}}}: 26 26 {{{ 27 27 #if defined(PJ_SYMBIAN) || PJ_SYMBIAN==1 … … 31 31 #endif 32 32 }}} 33 2. Activating VAS in each MMP 33 1. Specify the VAS version in {{{config_site.h}}}, e.g: 34 {{{ 35 /** 36 * This setting controls Symbian VAS version to be used. Currently, valid 37 * values are only 1 (for VAS 1.0) and 2 (for VAS 2.0). 38 * 39 * Default: 1 (VAS version 1.0) 40 */ 41 # define PJMEDIA_AUDIO_DEV_SYMB_VAS_VERSION 1 42 }}} 43 S60 5th edition uses VAS 2.0 while the previous platforms (S60 3rd edition FP1 & FP2) use VAS 1.0. Please see [http://discussion.forum.nokia.com/forum/showthread.php?p=599381 this] to use VAS 2.0 on S60 3rd edition FP1 and FP2 (haven't tested this ourselves though). 44 45 3. Activating VAS in each MMP 34 46 Edit {{{symbian_ua.mmp}}} (and {{{symbian_ua_gui.mmp}}} if you are using it): 35 47 {{{ … … 38 50 #define SND_HAS_MDA 0 39 51 }}} 40 3. Clean and rebuild the whole project. Please note that WINSCW target doesn't seem to support VAS.41 4. Make the installer (.sis file) for the application.52 4. Clean and rebuild the whole project. Please note that WINSCW target doesn't seem to support VAS. 53 5. Make the installer (.sis file) for the application. 42 54 43 55 44 56 == Installation == 45 1. Install VAS Server '''VoIPAudioSrvc_xxxx.sisx''' to device, the installer comes with the VAS SDK package i.e in folder '''!InstallToDevice''' . You will need to do this only once for each device.57 1. Install VAS Server '''VoIPAudioSrvc_xxxx.sisx''' to device, the installer comes with the VAS SDK package i.e in folder '''!InstallToDevice''', you will need to do this only once for each device. This step is '''not required for S60 5th edition''' devices since VAS is already bundled in the firmware. 46 58 1. Sign the application installer with VAS support with '''Developer Certificate using Open Signed Offline/with Publisher ID'''. 47 59 1. Install the application to the device.