eface2face / rtcninja.js

WebRTC library to make media management easier across different browsers.
MIT License
73 stars 23 forks source link

Mangle RTCOfferOptions #8

Closed ibc closed 9 years ago

ibc commented 9 years ago

Current spec for the options given to createOffer():

{
    mandatory: {
        OfferToReceiveVideo: true
    }
}

Latest spec (does not work with the Temasys plugin):

{
    offerToReceiveVideo: 1
}

Do something to "normalize" it and make it work in all the browsers.

ibc commented 9 years ago

Done.