Ignore:
Timestamp:
Nov 30, 2006 1:35:00 AM (17 years ago)
Author:
bennylp
Message:

Implement task #26: integrate table based Alaw/Ulaw?/linear conversion into pjmedia (thanks Toni Rutar for the original contribution)

File:
1 edited

Legend:

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

    r723 r838  
    6767 
    6868/** 
     69 * Specify which A-law/U-law conversion algorithm to use. 
     70 * By default the conversion algorithm uses A-law/U-law table which gives 
     71 * the best performance, at the expense of 33 KBytes of static data. 
     72 * If this option is disabled, a smaller but slower algorithm will be used. 
     73 */ 
     74#ifndef PJMEDIA_HAS_ALAW_ULAW_TABLE 
     75#   define PJMEDIA_HAS_ALAW_ULAW_TABLE      1 
     76#endif 
     77 
     78 
     79/** 
    6980 * Unless specified otherwise, G711 codec is included by default. 
    7081 * Note that there are parts of G711 codec (such as linear2ulaw) that are  
Note: See TracChangeset for help on using the changeset viewer.