Ignore:
Timestamp:
Apr 21, 2012 2:17:07 AM (12 years ago)
Author:
bennylp
Message:

Fixed #1492: The echo options field in the media config and pjsua_set_ec() argument are ignored

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x/pjmedia/include/pjmedia/sound_port.h

    r3553 r4065  
    7676/** 
    7777 * This structure specifies the parameters to create the sound port. 
     78 * Use pjmedia_snd_port_param_default() to initialize this structure with 
     79 * default values (mostly zeroes) 
    7880 */ 
    7981typedef struct pjmedia_snd_port_param 
     
    8890     */ 
    8991    unsigned options; 
     92 
     93    /** 
     94     * Echo cancellation options/flags. 
     95     */ 
     96    unsigned ec_options; 
     97 
    9098} pjmedia_snd_port_param; 
     99 
     100/** 
     101 * Initialize pjmedia_snd_port_param with default values. 
     102 * 
     103 * @param prm               The parameter. 
     104 */ 
     105PJ_DECL(void) pjmedia_snd_port_param_default(pjmedia_snd_port_param *prm); 
    91106 
    92107/** 
Note: See TracChangeset for help on using the changeset viewer.