You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {Boolean} options.simulcast - Enable simulcast. **Only available in Google Chrome and with H.264 or VP8 video codecs.**
49
49
* @param {String} options.scalabilityMode - Selected scalability mode. You can get the available capabilities using <a href="MillicastWebRTC#.getCapabilities">MillicastWebRTC.getCapabilities</a> method.
50
+
* **Only available in Google Chrome.**
50
51
* @returns {Promise<void>} Promise object which resolves when the broadcast started successfully.
* @param {Boolean} options.stereo - True to modify SDP for support stereo. Otherwise False.
135
135
* @param {MediaStream|Array<MediaStreamTrack>} options.mediaStream - MediaStream to offer in a stream. This object must have
136
136
* 1 audio track and 1 video track, or at least one of them. Alternative you can provide both tracks in an array.
137
-
* @param {'h264'|'vp8'|'vp9'|'av1'} options.codec - Selected codec for support simulcast.
138
-
* @param {Boolean} options.simulcast - True to modify SDP for support simulcast.
137
+
* @param {MillicastVideoCodec} options.codec - Selected codec for support simulcast.
138
+
* @param {Boolean} options.simulcast - True to modify SDP for support simulcast. **Only available in Google Chrome and with H.264 or VP8 video codecs.**
139
139
* @param {String} options.scalabilityMode - Selected scalability mode. You can get the available capabilities using <a href="MillicastWebRTC#.getCapabilities">MillicastWebRTC.getCapabilities</a> method.
140
+
* **Only available in Google Chrome.**
140
141
* @returns {Promise<String>} Promise object which represents the SDP information of the created offer.
0 commit comments