RTCSessionDescription()
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The RTCSessionDescription() constructor creates a new RTCSessionDescription with its properties initialized as described in the specified object.
Note: This constructor has been deprecated because RTCPeerConnection.setLocalDescription() and other methods which take SDP as input now directly accept an object conforming to the RTCSessionDescriptionInit dictionary, so you don't have to instantiate an RTCSessionDescription yourself.
Syntax
sessionDescription = new RTCSessionDescription(rtcSessionDescriptionInit);
Values
-
rtcSessionDescriptionInitOptional -
An object providing the default values for the session description; the object conforms to the
RTCSessionDescriptionInitdictionary. That dictionary has the following properties:type-
Required. A string which is a member of the
RTCSdpTypeenum; it must have one of the following values:This enum defines strings that describe the current state of the session description, as used in the
typeproperty. The session description's type will be specified using one of these values.Value Description answerThe SDP contained in the sdpproperty is the definitive choice in the exchange. In other words, this session description describes the agreed-upon configuration, and is being sent to finalize negotiation.offerThe session description object describes the initial proposal in an offer/answer exchange. The session negotiation process begins with an offer being sent from the caller to the callee. pranswerThe session description object describes a provisional answer; that is, a response to a previous offer that is not the final answer. It is usually employed by legacy hardware. rollbackThis special type with an empty session description is used to roll back to the previous stable state. sdp-
A string containing a SDP message describing the session. This value is an empty string (
"") by default and may not benull.
Example
This example uses the constructor to convert an SDP offer into an RTCSessionDescription object.
Note: This is no longer necessary, however; RTCPeerConnection.setLocalDescription() and other methods which take SDP as input now directly accept an object conforming to the RTCSessionDescriptionInit dictionary, so you don't have to instantiate an RTCSessionDescription yourself.
navigator.getUserMedia({video: true}, function(stream) { pc.onaddstream({stream: stream}); // Adding a local stream won't trigger the onaddstream callback pc.addStream(stream); pc.createOffer(function(offer) { pc.setLocalDescription(new RTCSessionDescription(offer), function() { // send the offer to a server to be forwarded to the friend you're calling. }, error); }, error); }
Specifications
This feature is not part of any current specification. It is no longer on track to become a standard.
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
RTCSessionDescription |
23 |
15 |
44
22
|
No |
15 |
11 |
≤37 |
25 |
44
22
|
14 |
11 |
1.5 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/RTCSessionDescription