Closed
Bug 1423314
Opened 8 years ago
Closed 8 years ago
addTransceiver(<string>,…) should not result in the other end firing ontrack
Categories
(Core :: WebRTC: Signaling, defect, P2)
Tracking
()
RESOLVED
INVALID
| Tracking | Status | |
|---|---|---|
| firefox59 | --- | affected |
People
(Reporter: jib, Assigned: bwc)
Details
STRs:
Open https://jsfiddle.net/jib1/53swxd5s/ and share cam+mic
Expected result:
ontrack e.streams.length = 1
checking
connected
Actual result:
ontrack e.streams.length = 1
ontrack e.streams.length = 0
checking
connected
In addition, every time I mark the video checkbox as checked, I get another:
ontrack e.streams.length = 0
Workaround:
- pc1.addTransceiver("video", {streams: [stream]});
+ pc1.addTransceiver("video", {streams: [stream], direction: "inactive"});
| Reporter | ||
Updated•8 years ago
|
Rank: 14
| Reporter | ||
Comment 1•8 years ago
|
||
Actually, from further reading of the spec, it should. Closing as invalid. See bug 1425873 instead for why fiddle didn't work.
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•