Commit c9a20eda by xiongziliang

profile匹配失败时,优先选择相同编码格式的方案

parent 204ef6e2
......@@ -1357,11 +1357,11 @@ RETRY:
}
const RtcCodecPlan *offer_plan_ptr = nullptr;
for (auto &plan : offer_media.plan) {
if (getCodecId(plan.codec) != codec) {
continue;
}
//如果匹配失败了,那么随便选择一个plan
if (!failed) {
//如果匹配失败了,那么随便选择一个plan
if (getCodecId(plan.codec) != codec) {
continue;
}
//命中偏好的编码格式
if (!onMatchCodecPlan(plan, codec)) {
continue;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论