Closed
Bug 889790
Opened 12 years ago
Closed 10 years ago
Need to be able to add Video to an existing audio-only webrtc call or remove Video
Categories
(Core :: WebRTC, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: sangyumin, Unassigned)
Details
Attachments
(1 file)
6.92 KB,
text/html
|
Details |
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1553.3 Safari/537.36
Steps to reproduce:
1. Load the test page.
2. Click "Start" and then "Call" button. Audio call is setup.
3. Click "Upgrade" button.
Firefox version: beta 23.0b2
Actual results:
1. Video is not displayed in the right window block.
2. The offer created by pc1 does not has video media description (m=video)
Expected results:
1. Video is displayed in the right window block.
2. The offer created by pc1 has video media description (m=video)
First time, the constraints for createOffer is
{
'mandatory' : {
'OfferToReceiveAudio' : true,
'OfferToReceiveVideo' : false
}
}.
Offer created has only audio media description (m=audio...).
Second time, the constrainsts for createOffer is
{
'mandatory' : {
'OfferToReceiveAudio' : true,
'OfferToReceiveVideo' : true
}
}.
Video media description (m=video...) is expected to be included in the offer created, but it isn't.
Attachment #770721 -
Attachment mime type: text/plain → text/html
Comment 2•12 years ago
|
||
We don't support renegotation yet (we'll link the bugs to this). I'm turning this into a bug on "I want to add (or remove) video from an existing call", since that's what the testcase was.
Note that this doesn't require *full* renegotation to be available - just enough for this usecase.
Status: UNCONFIRMED → NEW
Ever confirmed: true
OS: Windows 7 → All
Hardware: x86_64 → All
Summary: Constraints does not work when doing createOffer second time → Need to be able to add Video to an existing audio-only webrtc call or remove Video
Version: 23 Branch → 25 Branch
Comment 3•10 years ago
|
||
we support renegotiation now
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•