Ignore:
Timestamp:
Sep 24, 2012 6:58:16 AM (12 years ago)
Author:
nanang
Message:

Re #1586: Initial version of SILK wrapper.

File:
1 edited

Legend:

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

    r4070 r4264  
    379379 
    380380/** 
     381 * Enable SILK codec. 
     382 * 
     383 * Default: 0 
     384 */ 
     385#ifndef PJMEDIA_HAS_SILK_CODEC 
     386#   define PJMEDIA_HAS_SILK_CODEC               0 
     387#endif 
     388 
     389 
     390/** 
     391 * SILK codec default complexity setting, valid values are 0 (lowest), 1, 
     392 * and 2. 
     393 * 
     394 * Default: 2 
     395 */ 
     396#ifndef PJMEDIA_CODEC_SILK_DEFAULT_COMPLEXITY 
     397#   define PJMEDIA_CODEC_SILK_DEFAULT_COMPLEXITY   2 
     398#endif 
     399 
     400/** 
     401 * SILK codec default quality setting, valid values are ranging from 
     402 * 0 (lowest) to 10. Please note that pjsua-lib may override this setting 
     403 * via its codec quality setting (i.e PJSUA_DEFAULT_CODEC_QUALITY). 
     404 * 
     405 * Default: 10 
     406 */ 
     407#ifndef PJMEDIA_CODEC_SILK_DEFAULT_QUALITY 
     408#   define PJMEDIA_CODEC_SILK_DEFAULT_QUALITY       10 
     409#endif 
     410 
     411 
     412/** 
    381413 * Specify if FFMPEG codecs are available. 
    382414 * 
Note: See TracChangeset for help on using the changeset viewer.