Closed
Bug 1006725
Opened 11 years ago
Closed 10 years ago
getUserMedia() fails if it finds width:N or height:N in constraints where N is a number
Categories
(Core :: WebRTC: Audio/Video, defect, P2)
Core
WebRTC: Audio/Video
Tracking
()
RESOLVED
DUPLICATE
of bug 1119335
mozilla34
People
(Reporter: jib, Assigned: jib)
References
(Depends on 1 open bug)
Details
(Whiteboard: [p=1])
Because of Bug 995352, we currently don't support the most basic of constraints:
> getUserMedia({ video: { width: 640 } }, success, failure);
Use this workaround instead:
> getUserMedia({ video: { width: { min: 640, max: 640 } } }, success, failure);
This bug is a reminder to fix this once 995352 is fixed.
Assignee | ||
Updated•10 years ago
|
Whiteboard: [p=1]
Target Milestone: --- → mozilla33
Updated•10 years ago
|
Priority: -- → P1
Updated•10 years ago
|
Target Milestone: mozilla33 → mozilla34
Updated•10 years ago
|
Priority: P1 → P2
Assignee | ||
Comment 1•10 years ago
|
||
Fixed by patches landed in Bug 1119335.
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•