Changes between Version 6 and Version 7 of Intel_IPP_Codecs


Ignore:
Timestamp:
Aug 19, 2008 7:32:57 PM (16 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Intel_IPP_Codecs

    v6 v7  
    105105=== Codec Registration === 
    106106 
    107 Before application can use any of the IPP codecs above, the IPP codec factory must be registered to the codec manager. If application is using PJSUA-LIB, this will be done automatically by PJSUA-LIB. If application is using PJMEDIA directly, then it must register the IPP codec factory by calling: 
     107Before application can use any of the IPP codecs above, the IPP codec factory must be registered to the codec manager. If application is using [http://www.pjsip.org/pjsip/docs/html/group__PJSUA__LIB.htm PJSUA-LIB], this will be done automatically by PJSUA-LIB. If application is using [http://www.pjsip.org/pjmedia/docs/html/index.htm PJMEDIA] directly, then it must register the IPP codec factory by calling: 
    108108 
    109109 {{{ 
    110110     pjmedia_codec_ipp_init(media_endpt); 
    111111 }}} 
    112  
    113 Or alternatively, to register all codec factories that are enabled at compile time to the codec manager: 
    114  
    115  {{{ 
    116      pjmedia_init_all_codecs(media_endpt); 
    117  }}} 
    118  
    119 Note that if the use of {{{pjmedia_init_all_codecs}}} to register all codec will result in linking to all codec libraries that are enabled at compile time and this will increase application's footprint/executable size. 
    120112 
    121113