Ignore:
Timestamp:
Aug 15, 2008 1:17:39 PM (16 years ago)
Author:
nanang
Message:

Ticket #583: Initial source of IPP codecs wrapper.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c

    r2196 r2216  
    9292 
    9393    /* Register all codecs */ 
     94 
    9495#if PJMEDIA_HAS_SPEEX_CODEC 
    9596    /* Register speex. */ 
     
    159160    } 
    160161#endif  /* PJMEDIA_HAS_G722_CODEC */ 
     162 
     163#if PJMEDIA_HAS_INTEL_IPP_CODECS 
     164    /* Register IPP codecs */ 
     165    status = pjmedia_codec_ipp_init(pjsua_var.med_endpt); 
     166    if (status != PJ_SUCCESS) { 
     167        pjsua_perror(THIS_FILE, "Error initializing IPP codecs", 
     168                     status); 
     169        return status; 
     170    } 
     171 
     172#endif /* PJMEDIA_HAS_INTEL_IPP_CODECS */ 
    161173 
    162174#if PJMEDIA_HAS_L16_CODEC 
Note: See TracChangeset for help on using the changeset viewer.