Skip to content
Snippets Groups Projects
Commit ae1c47e2 authored by Pierre Nicolas's avatar Pierre Nicolas :joy:
Browse files

conference: identify media by its label (streamId)

Use streamId as the media identifier since it is unique.

Change-Id: I68a0c8a53bdecdb22008260640fb79b6febd5b71
parent 8c5c1c23
No related branches found
No related tags found
No related merge requests found
......@@ -574,9 +574,7 @@ Conference::requestMediaChange(const std::vector<libjami::MediaMap>& mediaList)
for (auto const& mediaAttr : mediaAttrList) {
// Find media
auto oldIdx = std::find_if(hostSources_.begin(), hostSources_.end(), [&](auto oldAttr) {
return oldAttr.sourceUri_ == mediaAttr.sourceUri_
&& oldAttr.type_ == mediaAttr.type_
&& oldAttr.label_ == mediaAttr.label_;
return oldAttr.label_ == mediaAttr.label_;
});
// If video, add to newVideoInputs
#ifdef ENABLE_VIDEO
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment