Changes between Version 14 and Version 15 of APS
- Timestamp:
- May 14, 2009 12:19:03 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
APS
v14 v15 30 30 == Building Steps == 31 31 Here are a few steps to build PJSIP with APS support: 32 1. 1.0.x: Specify that sound device implementation is using APS, i.e in config_site.h:32 1. 1.0.x: Specify that sound device implementation is using APS, and turn off MDA i.e in config_site.h: 33 33 {{{ 34 34 #if defined(PJ_SYMBIAN) || PJ_SYMBIAN==1 … … 40 40 #if defined(PJ_SYMBIAN) || PJ_SYMBIAN==1 41 41 # define PJMEDIA_AUDIO_DEV_HAS_SYMB_APS 1 42 # define PJMEDIA_AUDIO_DEV_HAS_SYMB_MDA 0 42 43 #endif 43 44 }}} … … 48 49 #define SND_USE_VAS 0 49 50 }}} 50 1.1 and above: {{{bld.inf}}} doesn't need to be edited, and the macro shouldbe defined is {{{SND_HAS_APS}}}:51 1.1 and above: {{{bld.inf}}} doesn't need to be edited, only relevant .mmp file. The macro at the top to be defined is {{{SND_HAS_APS}}}: 51 52 {{{ 52 53 #define SND_HAS_APS 1 54 #define SND_HAS_VAS 0 55 #define SND_HAS_MDA 0 53 56 }}} 57 58 54 59 1. Refresh the makefiles: Refresh the project (right click '''bld.inf''' from the '''Symbian Project Navigator''' pane, and select '''Refresh'''). 55 60 * 1.0.x: '''symbian_audio_aps.mmp''' should be there after the refresh done.