Changes between Version 5 and Version 6 of Intel_IPP_Codecs


Ignore:
Timestamp:
Aug 19, 2008 2:59:40 PM (16 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Intel_IPP_Codecs

    v5 v6  
    8686 }}} 
    8787 
     88=== Linking Options === 
     89 
     90By default, PJMEDIA will automatically link with Intel IPP libraries when Visual Studio is used. This is done by using using {{{#pragma comment(lib)}}} constructs in the source code. This is convenient, however it will only link with the stub libraries and the Intel IPP DLL's will be required when distributing the application. 
     91 
     92If application wants to link with the different types of the Intel IPP libraries (for example, the static libraries), it must set {{{PJMEDIA_AUTO_LINK_IPP_LIBS}}} option to zero and specify the Intel IPP libraries in the application's input library specification manually. 
     93 
     94Example: 
     95 {{{ 
     96#define PJMEDIA_AUTO_LINK_IPP_LIBS  0 
     97 }}} 
     98 
     99 
     100 
    88101[[BR]] 
    89102