Open
Bug 1259465
Opened 9 years ago
Updated 3 years ago
test_peerConnection_remoteReofferRollback fails if second stream added to initial offer/answer
Categories
(Core :: WebRTC, defect, P3)
Core
WebRTC
Tracking
()
NEW
People
(Reporter: mjf, Unassigned)
Details
If the test is run with audio streams only it works, or video streams only it works. However, the test will fail if line 62 is changed from:
test.setMediaConstraints([{audio: true}], [{audio: true}]);
to
test.setMediaConstraints([{audio: true}, {video: true}], [{audio: true}, {video: true}]);
I don't know if it is the existence of 2 streams in the initial offer/answer or the existence of both an audio and video streams in the initial offer/answer that causes the issue.
Note: the second setMediaConstrainsts call in PC_LOCAL_ADD_SECOND_STREAM does not seem to have any bearing on how the test behaves. It can be removed completely and the success cases and failure cases remain the same.
Comment 1•9 years ago
|
||
Byron -- Does P2 seem right for this bug? Or do we need to look at this sooner?
Rank: 25
Flags: needinfo?(docfaraday)
Priority: -- → P2
Comment 2•9 years ago
|
||
I guess it seems sane, although I have a suspicion that I might have seen this bug while working on the ontrack/onaddstream bug (in the rollback mochitests).
Flags: needinfo?(docfaraday)
Comment 3•8 years ago
|
||
Mass change P2->P3 to align with new Mozilla triage process.
Priority: P2 → P3
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•