Ignore:
Timestamp:
Jun 19, 2006 2:49:14 PM (18 years ago)
Author:
bennylp
Message:

Re-live --quality options in pjsua

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h

    r515 r528  
    20382038    unsigned            thread_cnt; 
    20392039 
    2040  
     2040    /** 
     2041     * Media quality, 0-10, according to this table: 
     2042     *   8-10: resampling use large filter, 
     2043     *   3-7:  resampling use small filter, 
     2044     *   1-2:  resampling use linear. 
     2045     * The media quality also sets speex codec quality/complexity to the 
     2046     * number. 
     2047     * 
     2048     * Default: 10. 
     2049     */ 
     2050    unsigned            quality; 
    20412051}; 
    20422052 
     
    20552065    cfg->has_ioqueue = PJ_TRUE; 
    20562066    cfg->thread_cnt = 1; 
     2067    cfg->quality = 10; 
    20572068} 
    20582069 
Note: See TracChangeset for help on using the changeset viewer.