提交 a6b4934e authored 作者: Michael Jerris's avatar Michael Jerris

FS-9314: [mod_conference] fix crash when starting conference in mux mode while…

FS-9314: [mod_conference]  fix crash when starting conference in mux mode while specifying or defaulting to a layout group that does not exist.  We will now fall back to transcode mode in this case.
上级 e3d3daef
......@@ -1354,6 +1354,10 @@ video_layout_t *conference_video_find_best_layout(conference_obj_t *conference,
}
}
if (!lg) {
return NULL;
}
for (vlnode = lg->layouts; vlnode; vlnode = vlnode->next) {
if (vlnode->vlayout->layers >= (int)count) {
break;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论