Ignore:
Timestamp:
Apr 9, 2007 7:06:08 AM (17 years ago)
Author:
bennylp
Message:

Fixed all VS6 and VS8 projects with new third party projects layout

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/split-3rd-party/pjmedia/include/pjmedia/config.h

    r1072 r1177  
    109109 
    110110 
    111 /** 
     111/* 
     112 * **   THIS MACRO IS DEPRECATED in 0.6.   ** 
     113 * ** See libresample for configuring this ** 
     114 * 
    112115 * Include small filter table in resample. 
    113116 * This adds about 9KB in rdata. 
    114117 */ 
     118/* 
    115119#ifndef PJMEDIA_HAS_SMALL_FILTER 
    116120#   define PJMEDIA_HAS_SMALL_FILTER         1 
    117121#endif 
    118  
    119  
    120 /** 
     122*/ 
     123 
     124/* 
     125 * **   THIS MACRO IS DEPRECATED in 0.6.   ** 
     126 * ** See libresample for configuring this ** 
     127 * 
    121128 * Include large filter table in resample. 
    122129 * This adds about 32KB in rdata. 
    123130 */ 
     131/* 
    124132#ifndef PJMEDIA_HAS_LARGE_FILTER 
    125133#   define PJMEDIA_HAS_LARGE_FILTER         1 
    126134#endif 
     135*/ 
     136 
     137/** 
     138 * Specify whether libresample should be used for the sampling 
     139 * rate conversion. This macro and PJMEDIA_HAS_SPEEX_RESAMPLE 
     140 * are mutually exclusive.  
     141 * 
     142 * Default: 1 (Yes) 
     143 */ 
     144#ifndef PJMEDIA_HAS_LIBRESAMPLE 
     145#   define PJMEDIA_HAS_LIBRESAMPLE          1 
     146#endif 
     147 
     148 
     149/** 
     150 * Specify whether Speex sample rate convertor should be used for the 
     151 * sampling rate conversion. This macro and PJMEDIA_HAS_LIBRESAMPLE 
     152 * are mutually exclusive. 
     153 * 
     154 * Default: 0 
     155 */ 
     156#ifndef PJMEDIA_HAS_SPEEX_RESAMPLE 
     157#   define PJMEDIA_HAS_SPEEX_RESAMPLE       0 
     158#endif 
     159 
    127160 
    128161 
     
    244277/** 
    245278 * Enable Steve Underwood's PLC. 
     279 * 
     280 * ** This has now been deprecated. If the codec does not have ** 
     281 * ** PLC, then no PLC will be used for that particular codec. ** 
     282 * 
     283 * Set this to zero, or other link error will occur. 
    246284 */ 
    247285#ifndef PJMEDIA_HAS_STEVEU_PLC 
    248 #   define PJMEDIA_HAS_STEVEU_PLC               PJ_HAS_FLOATING_POINT 
     286#   define PJMEDIA_HAS_STEVEU_PLC               0 
    249287#endif 
    250288 
     
    276314 */ 
    277315#ifndef PJMEDIA_ECHO_SUPPRESS_FACTOR 
    278 #   define PJMEDIA_ECHO_SUPPRESS_FACTOR         4 
     316#   define PJMEDIA_ECHO_SUPPRESS_FACTOR         10 
    279317#endif 
    280318 
Note: See TracChangeset for help on using the changeset viewer.