Ignore:
Timestamp:
Apr 24, 2012 1:09:14 PM (12 years ago)
Author:
bennylp
Message:

Re #1474: merged r4054-r4079

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk

  • pjproject/trunk/pjmedia/include/pjmedia/sound_port.h

    r3664 r4082  
    7777/** 
    7878 * This structure specifies the parameters to create the sound port. 
     79 * Use pjmedia_snd_port_param_default() to initialize this structure with 
     80 * default values (mostly zeroes) 
    7981 */ 
    8082typedef struct pjmedia_snd_port_param 
     
    8991     */ 
    9092    unsigned options; 
     93 
     94    /** 
     95     * Echo cancellation options/flags. 
     96     */ 
     97    unsigned ec_options; 
     98 
    9199} pjmedia_snd_port_param; 
     100 
     101/** 
     102 * Initialize pjmedia_snd_port_param with default values. 
     103 * 
     104 * @param prm               The parameter. 
     105 */ 
     106PJ_DECL(void) pjmedia_snd_port_param_default(pjmedia_snd_port_param *prm); 
    92107 
    93108/** 
Note: See TracChangeset for help on using the changeset viewer.