Closed
Bug 1249860
Opened 9 years ago
Closed 9 years ago
Add simulcast test for resolution scaling
Categories
(Core :: WebRTC, defect, P1)
Core
WebRTC
Tracking
()
RESOLVED
FIXED
mozilla47
| Tracking | Status | |
|---|---|---|
| firefox47 | --- | fixed |
| backlog | webrtc/webaudio+ |
People
(Reporter: jib, Assigned: jib)
References
Details
Attachments
(1 file)
Follow-up from Bug 1244913 comment 30.
| Assignee | ||
Comment 1•9 years ago
|
||
Review commit: https://reviewboard.mozilla.org/r/35751/diff/#index_header
See other reviews: https://reviewboard.mozilla.org/r/35751/
Attachment #8721612 -
Flags: review?(docfaraday)
| Assignee | ||
Updated•9 years ago
|
Assignee: nobody → jib
| Assignee | ||
Comment 2•9 years ago
|
||
| Assignee | ||
Comment 3•9 years ago
|
||
Comment on attachment 8721612 [details]
MozReview Request: Bug 1249860 - Add simulcast test for resolution scaling.
Review request updated; see interdiff: https://reviewboard.mozilla.org/r/35751/diff/1-2/
Comment 4•9 years ago
|
||
Comment on attachment 8721612 [details]
MozReview Request: Bug 1249860 - Add simulcast test for resolution scaling.
https://reviewboard.mozilla.org/r/35751/#review32465
::: dom/media/tests/mochitest/test_peerConnection_simulcastOffer.html:134
(Diff revision 2)
> function PC_REMOTE_WAIT_FOR_COLOR_CHANGE_2() {
> + var vlocal = document.getElementById('pcLocal_local1_video');
> var vremote = document.getElementById('pcRemote_remote1_video');
> + ok(vlocal, "Should have local video element for pcLocal");
> ok(vremote, "Should have remote video element for pcRemote");
> + ok(vlocal.videoWidth > 0, "source width is positive");
> + ok(vlocal.videoHeight > 0, "source height is positive");
> + is(vremote.videoWidth, vlocal.videoWidth / 2, "sink is 1/2 width of source");
> + is(vremote.videoHeight, vlocal.videoHeight / 2, "sink is 1/2 height of source");
> return waitForColorChange(helper, vremote);
> },
You probably want to put this stuff in a separate step, since the size isn't going to be guaranteed to change until after we've observed the color change.
Attachment #8721612 -
Flags: review?(docfaraday) → review+
Updated•9 years ago
|
backlog: --- → webrtc/webaudio+
Rank: 15
Priority: -- → P1
| Assignee | ||
Comment 5•9 years ago
|
||
Comment on attachment 8721612 [details]
MozReview Request: Bug 1249860 - Add simulcast test for resolution scaling.
Review request updated; see interdiff: https://reviewboard.mozilla.org/r/35751/diff/2-3/
| Assignee | ||
Comment 7•9 years ago
|
||
Comment 9•9 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla47
You need to log in
before you can comment on or make changes to this bug.
Description
•