Re: [webrtc-pc] How to handle removing and re-adding remote streams/tracks - possible ID collisions?

That is exactly what I'm talking about.

So there's the `addTransceiver` case where you start with a `null` track but you still have to negotiate for a receiver to be created at the other end. There's also this case:
```
senderA = pc.addTrack(track);  // a=msid with track.id
O/A
senderA.replaceTrack(null or something else);
senderB = pc.addTrack(track);  // a=msid with...?
```
I'll create a separate issue.

-- 
GitHub Notification of comment by henbos
Please view or discuss this issue at https://github.com/w3c/webrtc-pc/issues/1562#issuecomment-355237541 using your GitHub account

Received on Thursday, 4 January 2018 09:35:28 UTC