Changeset 1793


Ignore:
Timestamp:
Feb 14, 2008 1:39:24 PM (16 years ago)
Author:
bennylp
Message:

Ticket #475: ported GSM codec to Symbian OS

Location:
pjproject/trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/build.symbian/bld.inf

    r1640 r1793  
    1616pjsip_ua.mmp 
    1717pjsua_lib.mmp 
     18libgsmcodec.mmp 
    1819 
    1920pjlib_test.mmp 
  • pjproject/trunk/build.symbian/symbian_ua.mmp

    r1658 r1793  
    3333        LIBRARY         pjnath.lib pjlib_util.lib pjlib.lib 
    3434        LIBRARY         symbian_audio.lib 
     35        LIBRARY         libgsmcodec.lib 
    3536#else 
    3637        STATICLIBRARY   pjsua_lib.lib pjsip_ua.lib 
     
    3839        STATICLIBRARY   pjnath.lib pjlib_util.lib pjlib.lib 
    3940        STATICLIBRARY   symbian_audio.lib 
     41        STATICLIBRARY   libgsmcodec.lib 
    4042#endif 
    4143 
  • pjproject/trunk/pjlib/include/pj/config_site_sample.h

    r1784 r1793  
    5151#   define PJMEDIA_HAS_SPEEX_AEC        0 
    5252 
    53     /* Disable all codecs but G.711, for now */ 
     53    /* Disable all codecs but G.711 and GSM, for now */ 
     54#   define PJMEDIA_HAS_GSM_CODEC        1 
    5455#   define PJMEDIA_HAS_L16_CODEC        0 
    55 #   define PJMEDIA_HAS_GSM_CODEC        0 
    5656#   define PJMEDIA_HAS_ILBC_CODEC       0 
    5757#   define PJMEDIA_HAS_SPEEX_CODEC      0 
  • pjproject/trunk/pjsip-apps/src/symbian_ua/ua.cpp

    r1688 r1793  
    3333// Destination URI (to make call, or to subscribe presence) 
    3434// 
    35 #define SIP_DST_URI     "sip:user@192.168.0.11" 
     35#define SIP_DST_URI     "sip:100@pjsip.lab" 
    3636 
    3737// 
    3838// Account 
    3939// 
    40 #define HAS_SIP_ACCOUNT 0       // 0 to disable registration 
    41 #define SIP_DOMAIN      "domain" 
    42 #define SIP_USER        "username" 
    43 #define SIP_PASSWD      "password" 
     40#define HAS_SIP_ACCOUNT 1       // 0 to disable registration 
     41#define SIP_DOMAIN      "pjsip.lab" 
     42#define SIP_USER        "400" 
     43#define SIP_PASSWD      "400" 
    4444 
    4545// 
     
    5454// or STUN (for STUN see other settings below) 
    5555// 
    56 #define NAMESERVER      NULL 
    57 //#define NAMESERVER    "192.168.0.1" 
     56//#define NAMESERVER    NULL 
     57#define NAMESERVER      "192.168.0.2" 
    5858 
    5959// 
     
    369369        cfg.reg_uri = pj_str("sip:" SIP_DOMAIN); 
    370370        cfg.cred_count = 1; 
    371         cfg.cred_info[0].realm = pj_str(SIP_DOMAIN); 
     371        cfg.cred_info[0].realm = pj_str("*"); 
    372372        cfg.cred_info[0].scheme = pj_str("digest"); 
    373373        cfg.cred_info[0].username = pj_str(SIP_USER); 
Note: See TracChangeset for help on using the changeset viewer.