New issue
Advanced search Search tips

Issue 810415 link

Starred by 2 users

Issue metadata

Status: Verified
Owner:
Closed: Mar 2018
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug

Blocking:
issue 803021



Sign in to add a comment

Define getRemoteStreams() in terms of RTP Media API

Project Member Reported by hbos@chromium.org, Feb 8 2018

Issue description

Redefine getRemoteStreams() as

  let remoteStreams = [];
  for (receiver in pc.getRemoteStreams()) {
    for (stream in receiver.[[AssociatedRemoteMediaStreams]]) {
      if (!remoteStreams.includes(stream))
        remoteStreams.push(stream);
    }
  }
  return remoteStreams;

 

Comment 1 by hbos@chromium.org, Feb 8 2018

Blocking: 803021

Sign in to add a comment