@@ -115,12 +115,16 @@ typedef enum pjmedia_echo_flag
115
115
/**
116
116
* If PJMEDIA_ECHO_USE_NOISE_SUPPRESSOR flag is specified, the echo
117
117
* canceller will also apply noise suppressor method to reduce noise.
118
+ *
119
+ * Currently this is only effective on WebRTC AEC & WebRTC AEC3 backends.
118
120
*/
119
121
PJMEDIA_ECHO_USE_NOISE_SUPPRESSOR = 128 ,
120
122
121
123
/**
122
124
* If PJMEDIA_ECHO_USE_GAIN_CONTROLLER flag is specified, the echo
123
125
* canceller will also apply automatic gain control.
126
+ *
127
+ * Currently this is only effective on WebRTC AEC3 backend.
124
128
*/
125
129
PJMEDIA_ECHO_USE_GAIN_CONTROLLER = 256 ,
126
130
@@ -135,20 +139,26 @@ typedef enum pjmedia_echo_flag
135
139
* Use conservative aggressiveness setting for the echo canceller
136
140
* algorithm. This setting is mutually exclusive with the other
137
141
* aggressiveness settings.
142
+ *
143
+ * Currently this is only effective on WebRTC AEC backend.
138
144
*/
139
145
PJMEDIA_ECHO_AGGRESSIVENESS_CONSERVATIVE = 0x1000 ,
140
146
141
147
/**
142
148
* Use moderate aggressiveness setting for the echo canceller algorithm.
143
149
* This setting is mutually exclusive with the other aggressiveness
144
150
* settings.
151
+ *
152
+ * Currently this is only effective on WebRTC AEC backend.
145
153
*/
146
154
PJMEDIA_ECHO_AGGRESSIVENESS_MODERATE = 0x2000 ,
147
155
148
156
/**
149
157
* Use aggressive aggressiveness setting for the echo canceller
150
158
* algorithm. This setting is mutually exclusive with the other
151
159
* aggressiveness settings.
160
+ *
161
+ * Currently this is only effective on WebRTC AEC backend.
152
162
*/
153
163
PJMEDIA_ECHO_AGGRESSIVENESS_AGGRESSIVE = 0x3000 ,
154
164
0 commit comments