Ignore:
Timestamp:
Jul 27, 2017 6:45:48 AM (7 years ago)
Author:
ming
Message:

Fixed #2031: Add compile-time config for L16 codec

File:
1 edited

Legend:

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

    r5630 r5632  
    4848#ifndef PJMEDIA_HAS_L16_CODEC 
    4949#   define PJMEDIA_HAS_L16_CODEC    1 
     50#endif 
     51 
     52 
     53/** 
     54 * Settings to enable L16 codec 8KHz, mono. By default it is disabled. 
     55 */ 
     56#ifndef PJMEDIA_CODEC_L16_HAS_8KHZ_MONO 
     57#   define PJMEDIA_CODEC_L16_HAS_8KHZ_MONO      0 
     58#endif 
     59 
     60 
     61/** 
     62 * Settings to enable L16 codec 8KHz, stereo. By default it is disabled. 
     63 */ 
     64#ifndef PJMEDIA_CODEC_L16_HAS_8KHZ_STEREO 
     65#   define PJMEDIA_CODEC_L16_HAS_8KHZ_STEREO    0 
     66#endif 
     67 
     68 
     69/** 
     70 * Settings to enable L16 codec 16KHz, mono. By default it is disabled. 
     71 */ 
     72#ifndef PJMEDIA_CODEC_L16_HAS_16KHZ_MONO 
     73#   define PJMEDIA_CODEC_L16_HAS_16KHZ_MONO     0 
     74#endif 
     75 
     76 
     77/** 
     78 * Settings to enable L16 codec 16KHz, stereo. By default it is disabled. 
     79 */ 
     80#ifndef PJMEDIA_CODEC_L16_HAS_16KHZ_STEREO 
     81#   define PJMEDIA_CODEC_L16_HAS_16KHZ_STEREO   0 
    5082#endif 
    5183 
Note: See TracChangeset for help on using the changeset viewer.