提交 20f9b5c0 authored 作者: Michael Jerris's avatar Michael Jerris

FS-7601: [mod_opus] remove a bounds check that can never be true in opus fec code

上级 18063a47
......@@ -505,10 +505,6 @@ static switch_status_t switch_opus_control(switch_codec_t *codec,
uint32_t plpct = *((uint32_t *) cmd_data);
uint32_t calc;
if (plpct < 0) {
plpct = 0;
}
if (plpct > 100) {
plpct = 100;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论