Abstract: | This specification provides an XML mapping for translating the RFC 5766 Source-Specific Media Attributes from SDP to Jingle |
Author: | Philipp Hancke |
Copyright: | © 1999 - 2013 XMPP Standards Foundation. SEE LEGAL NOTICES. |
Status: | ProtoXEP |
Type: | Standards Track |
Version: | 0.0.1 |
Last Updated: | 2013-11-05 |
WARNING: This document has not yet been accepted for consideration or approved in any official manner by the XMPP Standards Foundation, and this document is not yet an XMPP Extension Protocol (XEP). If this document is accepted as a XEP by the XMPP Council, it will be published at <http://xmpp.org/extensions/> and announced on the <standards@xmpp.org> mailing list.
1. Introduction
2. Mapping to Session Description Protocol
2.1. The ssrc attribute
2.2. The ssrc-group attribute
3. Example
4. Determining Support
5. Acknowledgements
6. Security Considerations
7. IANA Considerations
8. XMPP Registrar Considerations
8.1. Protocol Namespaces
8.2. Protocol Versioning
9. XML Schema
Appendices
A: Document Information
B: Author Information
C: Legal Notices
D: Relation to XMPP
E: Discussion Venue
F: Requirements Conformance
G: Notes
H: Revision History
RFC 5576 [1] provides a mechanism to describe attributes of individual media sources (identified by their synchronization source) within a media stream. A mapping to Jingle as an extension to Jingle RTP Sessions (XEP-0167) [2] is defined in this document.
The SDP format defined in RFC 5576 is shown below.
a=ssrc:<ssrc-id> <attribute> a=ssrc:<ssrc-id> <attribute>:<value>
This maps to Jingle as a <source/> element qualified by the 'urn:xmpp:jingle:apps:rtp:ssma:0' namespace. Since 'ssrc' is a media attribute in SDP, the <source/> element is included as child of the Jingle <description/> element.
<source ssrc='ssrc-id' xmlns='urn:xmpp:jingle:apps:rtp:ssma:0'> <parameter name='attribute'/> <parameter name='attribute' value='value'/> </source>
Each ssrc-id maps to a <source/> element whose 'ssrc' attribute is set to the ssrc-id. The associated attributes map to <parameter/> children with 'name' and 'value' attributes. If there is no value in the SDP, the value parameter shall be omitted.
An example follows:
a=ssrc:1656081975 cname:Yv/wvbCdsDW2Prgd a=ssrc:1656081975 msid:MLTJKIHilGn71fNQoszkQ4jlPTuS5vJyKVIv MLTJKIHilGn71fNQoszkQ4jlPTuS5vJyKVIva0 a=ssrc:1656081975 mslabel:MLTJKIHilGn71fNQoszkQ4jlPTuS5vJyKVIv a=ssrc:1656081975 label:MLTJKIHilGn71fNQoszkQ4jlPTuS5vJyKVIva0
<source ssrc='1656081975' xmlns='urn:xmpp:jingle:apps:rtp:ssma:0'> <parameter name='cname' value='Yv/wvbCdsDW2Prgd'/> <parameter name='msid' value='MLTJKIHilGn71fNQoszkQ4jlPTuS5vJyKVIv MLTJKIHilGn71fNQoszkQ4jlPTuS5vJyKVIva0'/> <parameter name='mslabel' value='MLTJKIHilGn71fNQoszkQ4jlPTuS5vJyKVIv'/> <parameter name='label' value='MLTJKIHilGn71fNQoszkQ4jlPTuS5vJyKVIva0'/> </source>
The SDP format defined in RFC 5576 is shown below.
a=ssrc-group:<semantics> <ssrc-id> ...
This maps to Jingle as a <ssrc-group/> element qualified by the 'urn:xmpp:jingle:apps:rtp:ssma:0' namespace. Like the <source/> element, this is included as child of the Jingle <description/> element. The SDP 'semantics' parameter is mapped to the type attribute (for consistency with FIXME jingle-grouping FIXME) and the list of ssrc-ids is mapped to <source/> elements whole 'ssrc' attribute is set to the ssrc-id.
<ssrc-group xmlns='urn:xmpp:jingle:apps:rtp:ssma:0' type='semantics'> <source ssrc='ssrc-id'/> [...] </ssrc-group>
The following example is taken from RFC 5576.
m=video 49174 RTP/AVPF 96 98 a=rtpmap:96 H.264/90000 a=rtpmap:98 rtx/90000 a=fmtp:98 apt=96;rtx-time=3000 a=ssrc-group:FID 11111 22222 a=ssrc:11111 cname:user3@example.com a=ssrc:22222 cname:user3@example.com a=ssrc-group:FID 33333 44444 a=ssrc:33333 cname:user3@example.com a=ssrc:44444 cname:user3@example.com
This is mapped to Jingle as follows:
<content creator='initiator' name='webcam'> <description xmlns='urn:xmpp:jingle:apps:rtp:1' media='video'> <payload-type id='96' name='H.264' clockrate='90000'/> <payload-type id='98' name='rtx' clockrate='90000'> <parameter name='apt' value='96'/> <parameter name='rtx-time' value='3000'/> </payload-type> <ssrc-group xmlns='urn:xmpp:jingle:apps:rtp:ssma:0' type='FID'> <source ssrc='11111'/> <source ssrc='22222'/> </ssrc-group> <ssrc-group xmlns='urn:xmpp:jingle:apps:rtp:ssma:0' type='FID'> <source ssrc='33333'/> <source ssrc='44444'/> </ssrc-group> <source ssrc='11111' xmlns='urn:xmpp:jingle:apps:rtp:ssma:0'> <parameter name='cname' value='user3@example.com'/> </source> <source ssrc='22222' xmlns='urn:xmpp:jingle:apps:rtp:ssma:0'> <parameter name='cname' value='user3@example.com'/> </source> <source ssrc='33333' xmlns='urn:xmpp:jingle:apps:rtp:ssma:0'> <parameter name='cname' value='user3@example.com'/> </source> <source ssrc='44444' xmlns='urn:xmpp:jingle:apps:rtp:ssma:0'> <parameter name='cname' value='user3@example.com'/> </source> </description> </content>
If an entity supports source specific media attributes as described in RFC 5576, it MUST advertise that fact in its responses to Service Discovery (XEP-0030) [3] information ("disco#info") requests by returning a feature of 'urn:ietf:rfc:5576':
<iq type='get' from='calvin@usrobots.lit/lab' to='herbie@usrobots.lit/home' id='disco1'> <query xmlns='http://jabber.org/protocol/disco#info'/> </iq>
Example 2. A disco#info response
<iq type='result' from='herbie@usrobots.lit/home' to='calvin@usrobots.lit/lab' id='disco1'> <query xmlns='http://jabber.org/protocol/disco#info'> <feature var='urn:xmpp:jingle:1'/> <feature var='urn:ietf:rfc:5576'/> </query> </iq>
In order for an application to determine whether an entity supports this protocol, where possible it SHOULD use the dynamic, presence-based profile of service discovery defined in Entity Capabilities (XEP-0115) [4]. However, if an application has not received entity capabilities information from an entity, it SHOULD use explicit service discovery instead.
The SDP syntax examples are taken from RFC 5576.
This document introduces no additional security considerations above and beyond those defined in the documents on which it depends.
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [5].
This specification defines the following XML namespace:
The XMPP Registrar [6] includes the foregoing namespace to the registry located at <http://xmpp.org/registrar/namespaces.html>, as described in Section 4 of XMPP Registrar Function (XEP-0053) [7].
If the protocol defined in this specification undergoes a revision that is not fully backwards-compatible with an older version, the XMPP Registrar shall increment the protocol version number found at the end of the XML namespaces defined herein, as described in Section 4 of XEP-0053.
TODO
Series: XEP
Number: xxxx
Publisher: XMPP Standards Foundation
Status:
ProtoXEP
Type:
Standards Track
Version: 0.0.1
Last Updated: 2013-11-05
Approving Body: XMPP Council
Dependencies: XEP-0166
Supersedes: None
Superseded By: None
Short Name: NOT_YET_ASSIGNED
This document in other formats:
XML
PDF
JabberID:
fippo@psyced.org
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 6120) and XMPP IM (RFC 6121) specifications contributed by the XMPP Standards Foundation to the Internet Standards Process, which is managed by the Internet Engineering Task Force in accordance with RFC 2026. Any protocol defined in this document has been developed outside the Internet Standards Process and is to be understood as an extension to XMPP rather than as an evolution, development, or modification of XMPP itself.
The primary venue for discussion of XMPP Extension Protocols is the <standards@xmpp.org> discussion list.
Discussion on other xmpp.org discussion lists might also be appropriate; see <http://xmpp.org/about/discuss.shtml> for a complete list.
Errata can be sent to <editor@xmpp.org>.
The following requirements keywords as used in this document are to be interpreted as described in RFC 2119: "MUST", "SHALL", "REQUIRED"; "MUST NOT", "SHALL NOT"; "SHOULD", "RECOMMENDED"; "SHOULD NOT", "NOT RECOMMENDED"; "MAY", "OPTIONAL".
1. RFC 5576: Source-Specific Media Attributes in the Session Description Protocol (SDP) <http://tools.ietf.org/html/rfc5576>.
2. XEP-0167: Jingle RTP Sessions <http://xmpp.org/extensions/xep-0167.html>.
3. XEP-0030: Service Discovery <http://xmpp.org/extensions/xep-0030.html>.
4. XEP-0115: Entity Capabilities <http://xmpp.org/extensions/xep-0115.html>.
5. The Internet Assigned Numbers Authority (IANA) is the central coordinator for the assignment of unique parameter values for Internet protocols, such as port numbers and URI schemes. For further information, see <http://www.iana.org/>.
6. The XMPP Registrar maintains a list of reserved protocol namespaces as well as registries of parameters used in the context of XMPP extension protocols approved by the XMPP Standards Foundation. For further information, see <http://xmpp.org/registrar/>.
7. XEP-0053: XMPP Registrar Function <http://xmpp.org/extensions/xep-0053.html>.
Note: Older versions of this specification might be available at http://xmpp.org/extensions/attic/
First draft.
(ph)END