SIPPING Working Group G. Camarillo Internet-Draft Ericsson Expires: August 22, 2005 February 21, 2005 Conference Establishment Using Request-Contained Lists in the Session Initiation Protocol (SIP) draft-ietf-sipping-transc-framework-01.txt Status of this Memo This document is an Internet-Draft and is subject to all provisions of section 3 of RFC 3667. By submitting this Internet-Draft, each author represents that any applicable patent or other IPR claims of which he or she is aware have been or will be disclosed, and any of which he or she become aware will be disclosed, in accordance with RFC 3668. Internet-Drafts are working documents of the Internet Engineering Task Force (IETF), its areas, and its working groups. Note that other groups may also distribute working documents as Internet-Drafts. Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress." The list of current Internet-Drafts can be accessed at http://www.ietf.org/ietf/1id-abstracts.txt. The list of Internet-Draft Shadow Directories can be accessed at http://www.ietf.org/shadow.html. This Internet-Draft will expire on August 22, 2005. Copyright Notice Copyright (C) The Internet Society (2005). Abstract This document defines a framework for transcoding with SIP. This framework includes how to discover the need of transcoding services in a session and how to invoke those transcoding services. Two models for transcoding services invocation are discussed: the conference bridge model and the third party call control model. Both models meet the requirements for SIP regarding transcoding services invocation to support deaf, hard of hearing, and speech-impaired Camarillo Expires August 22, 2005 [Page 1] Internet-Draft Transcoding Framework February 2005 individuals. Table of Contents 1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 3 2. Discovery of the Need for Transcoding Services . . . . . . . . 3 3. Transcoding Services Invocation . . . . . . . . . . . . . . . 4 3.1 Third Party Call Control Transcoding Model . . . . . . . . 5 3.2 Conference Bridge Transcoding Model . . . . . . . . . . . 6 4. Security Considerations . . . . . . . . . . . . . . . . . . . 7 5. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 8 6. Contributors . . . . . . . . . . . . . . . . . . . . . . . . . 8 7. References . . . . . . . . . . . . . . . . . . . . . . . . . . 8 7.1 Normative References . . . . . . . . . . . . . . . . . . . . 8 7.2 Informational References . . . . . . . . . . . . . . . . . . 9 Author's Address . . . . . . . . . . . . . . . . . . . . . . . 9 Intellectual Property and Copyright Statements . . . . . . . . 10 Camarillo Expires August 22, 2005 [Page 2] Internet-Draft Transcoding Framework February 2005 1. Introduction Two user agents involved in a SIP [2] dialog may find it impossible to establish a media session due to a variety of incompatibilities. Assuming that both user agents understand the same session description format (e.g., SDP [9]), incompatibilities can be found at the user agent level and at the user level. At the user agent level, both terminals may not support any common codec or may not support common media types (e.g., a text-only terminal and an audio-only terminal). At the user level, a deaf person will not understand anything said over an audio stream. In order to make communications possible in the presence of incompatibilities, user agents need to introduce intermediaries that provide transcoding services to a session. From the SIP point of view, the introduction of a transcoder is done in the same way to resolve both user level and user agent level incompatibilities. So, the invocation mechanisms described in this document are generally applicable to any type of incompatibility related to how the information that needs to be communicated is encoded. Furthermore, although this framework focuses on transcoding, the mechanisms described are applicable to media manipulation in general. It would be possible to use them, for example, to invoke a server that simply increased the volume of an audio stream. This document does not describe media server discovery. That is an orthogonal problem that one can address using user agent provisioning or other methods. The remainder of this document is organized as follows. Section 2 deals with the discovery of the need of transcoding services for a particular session. Section 3 introduces the third party call control and conference bridge transcoding invocation models, which are further described in Section 3.1 and Section 3.2 respectively. Both models meet the requirements regarding transcoding services invocation in RFC3351 [4] to support deaf, hard of hearing and speech-impaired individuals. 2. Discovery of the Need for Transcoding Services According to the one-party consent model defined in RFC 3238 [1] , services that involve media manipulation invocation are best invoked by one of the end-points involved in the communication, as opposed to being invoked by an intermediary in the network. Following this principle, one of the end-points should be the one detecting that transcoding is needed for a particular session. Camarillo Expires August 22, 2005 [Page 3] Internet-Draft Transcoding Framework February 2005 In order to decide whether or not transcoding is needed, a user agent needs to know the capabilities of the remote user agent. A user agent acting as an offerer typically obtains this knowledge by downloading a presence document that includes media capabilities (e.g., Bob is available on a terminal that only supports audio) or by getting an SDP description of media capabilities as defined in RFC 3264 [3]. Presence documents are typically received in a NOTIFY request as a result of a subscription. SDP media capabilities descriptions are typically received in a 200 (OK) response to an OPTIONS request or in a 488 (Not Acceptable Here) response to an INVITE. It is recommended that an offerer does not invoke transcoding services before making sure that the answerer does not support the capabilities needed for the session. Making wrong assumptions about the answerer's capabilities can lead to situations where two transcoders are introduced (one by the offerer and one by the answerer) in a session that would not need any transcoding services at all. An example of the situation above is a call between two GSM phones (without using transcoding-free operation). Both phones use a GSM codec, but the speech is converted from GSM to PCM by the originating MSC and from PCM back to GSM by the terminating MSC. Note that transcoding services can be symmetric (e.g., speech-to-text plus text-to-speech) or asymmetric (e.g., a one-way speech-to-text transcoding for a hearing impaired user that can talk). 3. Transcoding Services Invocation Once the need for transcoding for a particular session has been identified as described in Section 2, one of the user agents needs to invoke transcoding services. As we said earlier, transcoder location is outside the scope of this document. So, we assume that the user agent invoking transcoding services knows the URI of a server that provides them. Invoking transcoding services from a server (T) for a session between two user agents (A and B) involves establishing two media sessions; one between A and T and another between T and B. How to invoke T's services (i.e., how to establish both A-T and T-B sessions) depends on how we model the transcoding service. We have considered two models for invoking a transcoding service. The first is to use third party call control [5], also referred to as 3pcc. The second is to use a (dial-in and dial-out) conference bridge that negotiates the Camarillo Expires August 22, 2005 [Page 4] Internet-Draft Transcoding Framework February 2005 appropriate media parameters on each individual leg (i.e., A-T and T-B). Section 3.1 analyzes the applicability of the third party call control model and Section 3.2 analyzes the applicability of the conference bridge transcoding invocation model. 3.1 Third Party Call Control Transcoding Model In the 3pcc transcoding model, defined in [7], the user agent invoking the transcoding service has a signalling relationship with the transcoder and another signalling relationship with the remote user agent. There is no signalling relationship between the transcoder and the remote user agent, as shown in Figure 1. +-------+ | | | T |** | | ** +-------+ ** ^ * ** | * ** | * ** SIP * ** | * ** | * ** v * ** +-------+ +-------+ | | | | | A |<-----SIP----->| B | | | | | +-------+ +-------+ <-SIP-> Signalling ******* Media Figure 1: Third party call control model This model is suitable for advanced end points that are able to perform third party call control. It allows end-points to invoke transcoding services on a stream basis. That is, the media streams that need transcoding are routed through the transcoder while the streams that do not need it are sent directly between the end points. This model also allows to invoke one transcoder for the sending direction and a different one for the receiving direction of the same stream. Camarillo Expires August 22, 2005 [Page 5] Internet-Draft Transcoding Framework February 2005 Invoking a transcoder in the middle of an ongoing session is also quite simple. This is useful when session changes occur (e.g., an audio session is upgraded to an audio/video session) and the end- points cannot cope with the changes (e.g., they had common audio codecs but no common video codecs). The privacy level that is achieved using 3pcc is high, since the transcoder does no see the signalling between both end-points. In this model, the transcoder only has access to the information that is strictly needed to perform its function. 3.2 Conference Bridge Transcoding Model OPEN ISSUE: this section outlines how to use the URI-list mechanism for INVITEs specified in [8] to invoke a transcoder. Some people think that having an even simpler mechanism to perform transcoding invocation would be useful. We need to decide whether we are happy with the current solution or we want to use a different mechanism. In a centralized conference, there are a number of media streams between the conference server and each participant of a conference. For a given media type (e.g., audio) the conference server sends, over each individual stream, the media received over the rest of the streams, typically performing some mixing. If the capabilities of all the end-points participating in the conference are not the same, the conference server may have to send audio to different participants using different audio codecs. Consequently, we can model a transcoding service as a two-party conference server that may change not only the codec in use, but also the format of the media (e.g., audio to text). Using this model, T behaves as a B2BUA and the whole A-T-B session is established as described in [draft-camarillo-sipping-transc-b2bua]. Figure 2 shows the signalling relationships between the end-points and the transcoder. Camarillo Expires August 22, 2005 [Page 6] Internet-Draft Transcoding Framework February 2005 +-------+ | |** | T | ** | |\ ** +-------+ \\ ** ^ * \\ ** | * \\ ** | * SIP ** SIP * \\ ** | * \\ ** | * \\ ** v * \ ** +-------+ +-------+ | | | | | A | | B | | | | | +-------+ +-------+ <-SIP-> Signalling ******* Media Figure 2: Conference bridge model In the conferencing bridge model, the end-point invoking the transcoder is generally involved in less signalling exchanges than in the 3pcc model. This may be an important feature for end-poing using low bandwidth or high-delay access links (e.g., some wireless accesses). On the other hand, this model is less flexible than the 3pcc model. It is not possible to use different transcoders for different streams or for different directions of a stream. Invoking a transcoder in the middle of an ongoing session or changing from one transcoder to another requires the remote end-point to support the Replaces [6] extension. At present, not many user agents support it. Simple end-points that cannot perform 3pcc and thus cannot use the 3pcc model, of course, need to use the conference bridge model. 4. Security Considerations TBD. Camarillo Expires August 22, 2005 [Page 7] Internet-Draft Transcoding Framework February 2005 5. IANA Considerations This document does not contain any IANA actions. 6. Contributors This document is the result of discussions amongst the conferencing design team. The members of this team include Eric Burger, Henning Schulzrinne and Arnoud van Wijk. 7. References 7.1 Normative References [1] Floyd, S. and L. Daigle, "IAB Architectural and Policy Considerations for Open Pluggable Edge Services", RFC 3238, January 2002. [2] Rosenberg, J., Schulzrinne, H., Camarillo, G., Johnston, A., Peterson, J., Sparks, R., Handley, M. and E. Schooler, "SIP: Session Initiation Protocol", RFC 3261, June 2002. [3] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer Model with Session Description Protocol (SDP)", RFC 3264, June 2002. [4] Charlton, N., Gasson, M., Gybels, G., Spanner, M. and A. van Wijk, "User Requirements for the Session Initiation Protocol (SIP) in Support of Deaf, Hard of Hearing and Speech-impaired Individuals", RFC 3351, August 2002. [5] Rosenberg, J., Peterson, J., Schulzrinne, H. and G. Camarillo, "Best Current Practices for Third Party Call Control (3pcc) in the Session Initiation Protocol (SIP)", BCP 85, RFC 3725, April 2004. [6] Mahy, R., Biggs, B. and R. Dean, "The Session Initiation Protocol (SIP) "Replaces" Header", RFC 3891, September 2004. [7] Camarillo, G., "Transcoding Services Invocation in the Session Initiation Protocol (SIP) Using Third Party Call Control (3pcc)", draft-ietf-sipping-transc-3pcc-02 (work in progress), September 2004. [8] Camarillo, G. and A. Johnston, "Conference Establishment Using Request-Contained Lists in the Session Initiation Protocol (SIP)", draft-ietf-sipping-uri-list-conferencing-01 (work in progress), October 2004. Camarillo Expires August 22, 2005 [Page 8] Internet-Draft Transcoding Framework February 2005 7.2 Informational References [9] Handley, M. and V. Jacobson, "SDP: Session Description Protocol", RFC 2327, April 1998. Author's Address Gonzalo Camarillo Ericsson Hirsalantie 11 Jorvas 02420 Finland EMail: Gonzalo.Camarillo@ericsson.com Camarillo Expires August 22, 2005 [Page 9] Internet-Draft Transcoding Framework February 2005 Intellectual Property Statement The IETF takes no position regarding the validity or scope of any Intellectual Property Rights or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; nor does it represent that it has made any independent effort to identify any such rights. Information on the procedures with respect to rights in RFC documents can be found in BCP 78 and BCP 79. Copies of IPR disclosures made to the IETF Secretariat and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementers or users of this specification can be obtained from the IETF on-line IPR repository at http://www.ietf.org/ipr. The IETF invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights that may cover technology that may be required to implement this standard. Please address the information to the IETF at ietf-ipr@ietf.org. Disclaimer of Validity This document and the information contained herein are provided on an "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Copyright Statement Copyright (C) The Internet Society (2005). This document is subject to the rights, licenses and restrictions contained in BCP 78, and except as set forth therein, the authors retain all their rights. Acknowledgment Funding for the RFC Editor function is currently provided by the Internet Society. Camarillo Expires August 22, 2005 [Page 10]