Ignore:
Timestamp:
May 27, 2008 12:24:26 AM (16 years ago)
Author:
nanang
Message:

Changed build optimizations settings for Speex, pjmedia, and symbian_sound for Symbian. Speex/8000 now also runs on Symbian!

File:
1 edited

Legend:

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

    r974 r1965  
    6262 * @param options       Bitmask of pjmedia_speex_options (default=0). 
    6363 * @param quality       Specify encoding quality, or use -1 for default  
    64  *                      (default=8). 
     64 *                      (@see PJMEDIA_CODEC_SPEEX_DEFAULT_QUALITY). 
    6565 * @param complexity    Specify encoding complexity , or use -1 for default  
    66  *                      (default=8). 
     66 *                      (@see PJMEDIA_CODEC_SPEEX_DEFAULT_COMPLEXITY). 
    6767 * 
    6868 * @return              PJ_SUCCESS on success. 
     
    8585 
    8686 
     87/** 
     88 * Change the settings of Speex codec. 
     89 * 
     90 * @param clock_rate    Clock rate of Speex mode to be set. 
     91 * @param quality       Specify encoding quality, or use -1 for default  
     92 *                      (@see PJMEDIA_CODEC_SPEEX_DEFAULT_QUALITY). 
     93 * @param complexity    Specify encoding complexity , or use -1 for default  
     94 *                      (@see PJMEDIA_CODEC_SPEEX_DEFAULT_COMPLEXITY). 
     95 * 
     96 * @return              PJ_SUCCESS on success. 
     97 */ 
     98PJ_DECL(pj_status_t) pjmedia_codec_speex_set_param(unsigned clock_rate, 
     99                                                   int quality, 
     100                                                   int complexity); 
     101 
    87102 
    88103/** 
Note: See TracChangeset for help on using the changeset viewer.