struct oslec_state *oslec_create(int len, int adaption_mode)
时间: 2023-12-11 17:04:33 浏览: 93
task_struct.
对于 oslec_create 函数的第二个参数 adaption_mode,它指定了OSLEC的自适应模式。adaption_mode 的取值如下:
- 0:表示使用默认的自适应模式,即 "normal" 模式。
- 1:表示使用 "doubletalk" 模式,用于处理双向通话时的回声。
- 2:表示使用 "echo_suppress" 模式,用于在不需要回声抑制时,仅仅抑制回声。
因此, oslec_create 函数的函数原型应该是:
```
struct oslec_state *oslec_create(int len, int adaption_mode);
```
在调用时,可以根据实际需要传入相应的 adaption_mode 参数值。如果不传入该参数,则使用默认的自适应模式。
阅读全文