Changes between Version 14 and Version 15 of APS


Ignore:
Timestamp:
May 14, 2009 12:19:03 PM (15 years ago)
Author:
ismangil
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • APS

    v14 v15  
    3030== Building Steps == 
    3131Here 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: 
    3333 {{{ 
    3434#if defined(PJ_SYMBIAN) || PJ_SYMBIAN==1 
     
    4040#if defined(PJ_SYMBIAN) || PJ_SYMBIAN==1 
    4141#   define PJMEDIA_AUDIO_DEV_HAS_SYMB_APS       1 
     42#   define PJMEDIA_AUDIO_DEV_HAS_SYMB_MDA       0 
    4243#endif 
    4344 }}} 
     
    4849#define SND_USE_VAS     0 
    4950 }}} 
    50     1.1 and above: {{{bld.inf}}} doesn't need to be edited, and the macro should be 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}}}: 
    5152 {{{ 
    5253#define SND_HAS_APS     1 
     54#define SND_HAS_VAS     0 
     55#define SND_HAS_MDA     0 
    5356 }}} 
     57 
     58 
    5459 1. Refresh the makefiles: Refresh the project (right click '''bld.inf''' from the '''Symbian Project Navigator''' pane, and select '''Refresh'''). 
    5560    * 1.0.x:  '''symbian_audio_aps.mmp''' should be there after the refresh done.