Changes between Version 14 and Version 15 of Intel_IPP_Codecs


Ignore:
Timestamp:
Nov 5, 2008 9:09:28 PM (16 years ago)
Author:
nanang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Intel_IPP_Codecs

    v14 v15  
    205205 
    206206Example: 
    207  {{{ 
     207 1. Disable default automatic linking: 
     208    {{{ 
    208209#define PJMEDIA_AUTO_LINK_IPP_LIBS  0 
    209  }}} 
    210  
     210    }}} 
     211 1. Add {{{C:\Program Files\Intel\IPP\5.3.3.082\ia32\lib}}} to the VS library path 
     212 1. Include the following libraries 
     213    {{{ 
     214ippsmerged.lib ippsemerged.lib ippscmerged.lib ippscemerged.lib ippsrmerged.lib ippsremerged.lib ippcorel.lib usc.lib 
     215    }}}  
     216    in the application project setting. 
     217 1. Insert IPP static initialization function, i.e: {{{ippStaticInit()}}} declared in {{{ippcore.h}}}, into the startup point of the application, e.g: 
     218    {{{ 
     219#include <ippcore.h> 
     220main() { 
     221    /* Init IPP before calling any IPP functions. */ 
     222    ippStaticInit(); 
     223    ... 
     224} 
     225    }}} 
    211226 
    212227=== Linux Instructions === 
     
    227242 
    228243[[BR]] 
     244Additional Information on IPP Linkage Models: 
     245 - [http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-intel-ipp-linkage-models-quick-reference-guide IPP Linkage Models] 
     246 - [http://software.intel.com/file/6279 Choosing the best IPP Linkage Models for Your Applications] 
     247 
     248[[BR]] 
    229249---- 
    230250