mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
优化代码
This commit is contained in:
parent
e69cbc1486
commit
57043138d8
@ -240,19 +240,9 @@ private:
|
||||
return;
|
||||
}
|
||||
|
||||
auto &helper = it->second;
|
||||
if(!helper){
|
||||
// 对象不存在,创建之
|
||||
auto recorder = MediaSinkInterface::Ptr(createRecorder(vhost, app, stream));
|
||||
if (recorder) {
|
||||
_recorder_map[key] = std::make_shared<RecorderHelper>(recorder, std::move(tracks), false, schema);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if(helper->getSchema() == schema){
|
||||
// 对象存在且绑定的协议一致,替换tracks
|
||||
helper->attachTracks(std::move(tracks));
|
||||
if(it->second->getSchema() == schema){
|
||||
// 绑定的协议一致,替换tracks
|
||||
it->second->attachTracks(std::move(tracks));
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user