Changes between Version 6 and Version 7 of Intel_IPP_Codecs
- Timestamp:
- Aug 19, 2008 7:32:57 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Intel_IPP_Codecs
v6 v7 105 105 === Codec Registration === 106 106 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 PJMEDIAdirectly, then it must register the IPP codec factory by calling: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 [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: 108 108 109 109 {{{ 110 110 pjmedia_codec_ipp_init(media_endpt); 111 111 }}} 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.120 112 121 113