Changes between Version 14 and Version 15 of Intel_IPP_Codecs
- Timestamp:
- Nov 5, 2008 9:09:28 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Intel_IPP_Codecs
v14 v15 205 205 206 206 Example: 207 {{{ 207 1. Disable default automatic linking: 208 {{{ 208 209 #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 {{{ 214 ippsmerged.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> 220 main() { 221 /* Init IPP before calling any IPP functions. */ 222 ippStaticInit(); 223 ... 224 } 225 }}} 211 226 212 227 === Linux Instructions === … … 227 242 228 243 [[BR]] 244 Additional 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]] 229 249 ---- 230 250