Ignore:
Timestamp:
Mar 21, 2006 11:59:15 AM (18 years ago)
Author:
bennylp
Message:

Added macro to exclude filters in resample and added options to select resample algorithm in conference

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/config.h

    r320 r347  
    4242/** 
    4343 * Unless specified otherwise, G711 codec is included by default. 
     44 * Note that there are parts of G711 codec (such as linear2ulaw) that are  
     45 * needed by other PJMEDIA components (e.g. silence detector, conference). 
     46 * Thus disabling G711 is generally not a good idea. 
    4447 */ 
    4548#ifndef PJMEDIA_HAS_G711_CODEC 
     
    4851 
    4952 
     53/** 
     54 * Include small filter table in resample. 
     55 * This adds about 9KB in rdata. 
     56 */ 
     57#ifndef PJMEDIA_HAS_SMALL_FILTER 
     58#   define PJMEDIA_HAS_SMALL_FILTER         1 
     59#endif 
     60 
     61 
     62/** 
     63 * Include large filter table in resample. 
     64 * This adds about 32KB in rdata. 
     65 */ 
     66#ifndef PJMEDIA_HAS_LARGE_FILTER 
     67#   define PJMEDIA_HAS_LARGE_FILTER         1 
     68#endif 
     69 
     70 
    5071#endif  /* __PJMEDIA_CONFIG_H__ */ 
     72 
Note: See TracChangeset for help on using the changeset viewer.