Re: [rtcweb] New topic: Model for multi-unicast support

Harald Alvestrand <harald@alvestrand.no> Mon, 05 September 2011 15:13 UTC

Return-Path: <harald@alvestrand.no>
X-Original-To: rtcweb@ietfa.amsl.com
Delivered-To: rtcweb@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 31D8E21F8B9D for <rtcweb@ietfa.amsl.com>; Mon, 5 Sep 2011 08:13:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -107.228
X-Spam-Level:
X-Spam-Status: No, score=-107.228 tagged_above=-999 required=5 tests=[AWL=3.371, BAYES_00=-2.599, RCVD_IN_DNSWL_HI=-8, USER_IN_WHITELIST=-100]
Received: from mail.ietf.org ([12.22.58.30]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mgrUO23bKyDT for <rtcweb@ietfa.amsl.com>; Mon, 5 Sep 2011 08:13:10 -0700 (PDT)
Received: from eikenes.alvestrand.no (eikenes.alvestrand.no [158.38.152.233]) by ietfa.amsl.com (Postfix) with ESMTP id 224EE21F8B58 for <rtcweb@ietf.org>; Mon, 5 Sep 2011 08:13:10 -0700 (PDT)
Received: from localhost (localhost [127.0.0.1]) by eikenes.alvestrand.no (Postfix) with ESMTP id C026239E048; Mon, 5 Sep 2011 17:14:52 +0200 (CEST)
X-Virus-Scanned: Debian amavisd-new at eikenes.alvestrand.no
Received: from eikenes.alvestrand.no ([127.0.0.1]) by localhost (eikenes.alvestrand.no [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wL1TDIkc-CLK; Mon, 5 Sep 2011 17:14:52 +0200 (CEST)
Received: from hta-dell.lul.corp.google.com (unknown [62.20.124.50]) by eikenes.alvestrand.no (Postfix) with ESMTPS id 0E6DB39E040; Mon, 5 Sep 2011 17:14:52 +0200 (CEST)
Message-ID: <4E64E76B.9090306@alvestrand.no>
Date: Mon, 05 Sep 2011 17:14:51 +0200
From: Harald Alvestrand <harald@alvestrand.no>
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.18) Gecko/20110617 Thunderbird/3.1.11
MIME-Version: 1.0
To: Magnus Westerlund <magnus.westerlund@ericsson.com>
References: <4E5F7344.4060803@alvestrand.no> <4E64BAA6.4010200@ericsson.com>
In-Reply-To: <4E64BAA6.4010200@ericsson.com>
Content-Type: text/plain; charset="ISO-8859-1"; format="flowed"
Content-Transfer-Encoding: 7bit
Cc: "rtcweb@ietf.org" <rtcweb@ietf.org>
Subject: Re: [rtcweb] New topic: Model for multi-unicast support
X-BeenThere: rtcweb@ietf.org
X-Mailman-Version: 2.1.12
Precedence: list
List-Id: Real-Time Communication in WEB-browsers working group list <rtcweb.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/rtcweb>, <mailto:rtcweb-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/rtcweb>
List-Post: <mailto:rtcweb@ietf.org>
List-Help: <mailto:rtcweb-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/rtcweb>, <mailto:rtcweb-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 05 Sep 2011 15:13:11 -0000

On 09/05/11 14:03, Magnus Westerlund wrote:
> On 2011-09-01 13:57, Harald Alvestrand wrote:
>> In the thread about draft-perkins-rtcweb-usage, the following exchange
>> took place:
>>>>>   Speaking for some implementors of the WEBRTC API, it's also clear that there's a significant cost to implementing the multiway RTP session concept - both in code complexity and API complexity. I think this warrants more discussion, where all 3 outcomes should be on the table:
>>>>>
>>>>>   - We recommend doing multi-unicast with a shared RTP session only
>>>>>   - We recommend supporting both shared and split RTP sessions for multi-unicast
>>>>>   - We recommend doing multi-unicast with split RTP sessions only
>>>>>
>>>>>   We should probably do this in a new thread.
>>> Indeed; I'd be interested to know what complexity you're seeing. I would have expected the shared RTP session model to decrease complexity, since the RTP layer can be oblivious to the detail of the underlying transport connections, and wouldn't have to worry about tracking SSRC and payload type mapping separately for each session.
>> I think this is a topic that deserves its own thread.
>>
>> The context is use case 4.2.7, "Multiparty video communication", the one
>> without a central server; each party sends its video and audio streams
>> to all participants in the meeting directly.
>>
>> One can imagine supporting this with a single RTP session, where all
>> video streams are equal and sent with the same SSRC to all participants,
>> all participants send receiver reports (RRs) about all the SSRCs they
>> see to all other participants, and all senders send their SR reports to
>> all participants.
>>
>> Now, this has implications for both API design, service design and
>> protocol operation.
>>
>> API: The model presented is no longer "this object is your connection to
>> A; that object is your connection to B". There has to be a
>> representation of your "cloud" as a multidestination object, with
>> procedures for adding to and subtracting from the list of participants.
>> Error reporting must include which participant the error relates to.
>>
>> Service: The requirement for perfect equality means that you cannot
>> allow any party to adapt its presence to what it can receive; for
>> instance, as I understand it, nobody can drop the video and only be an
>> audio participant, because that would break the model of equality,
>> rendering sender reports meaningless to some participants.
>>
>> Protocol: The requirement for a single agreed RTCP bandwidth means that
>> this bandwidth has to be computed for the session as a whole - with the
>> simplistic answer being 5% of the lowest common denominator.
> I agree with the issues of having it being represented like this. And so
> far I don't think I have identified a use case that requires a joint RTP
> session for the multi-unicast case.
>
> The centralized mixer use case has certain benefits for a joint RTP
> session, but there you can apply a RTP mixer to enable difference in
> service on what being delivered and in what quality to each participant.
>
>> In contrast, if one chooses the multiple-RTP-session approach:
>>
>> - the API retains its "one object, one destination" orientation.
> I mostly agree, there are a few thinks I think it is important to
> discuss here. And I will have slides on this relation ship for Thursday.
Looking forward to it.
>> - the degree to which service is equal to all parties is a matter for
>> the application, not the protocol
> Yes, it is not dictated by the protocol, but I don't think the
> application will be in full control either. It can indicate what is
> desired, but local and network resources needs to be included in the
> consideration.
Yes, the application needs to adapt. That's an area where I expect 
applications to differ, and the successful ones will be the ones that 
adapt better.
>> - rate adaption, choice of RTP bandwidht and so on can be negotiated on
>> each link individually
> Yes, but there is clearly a need to take the combinations into account.
> An issue is clearly that one need to divide the available uplink
> bit-rate between the streams one needs to send. Another issue is that if
> one has three peers, and each request a different resolution one may not
> have the computing resources to encode three versions, and may have to
> limit it too two resolutions, where one is delivered to two peers.
Yes, the application needs to consider all the factors when negotiating.
The typical challenging scenario I see is a 4-way call with 3 
participants on the same high speed network and 1 participant calling in 
from a 3G phone. If the meeting is not called primarily for the guy on 
the phone, the 3 other participants might want to see each other in full 
HD and listen to each other using wideband codecs; the 4th one has to 
make a reasonable apportioning of his bandwidth.
> Also the need for joint identifiers between peers for streams that are
> the same source but may vary in representation likely needs to be kept
> between the different legs. Otherwise the application logic is
>
>> I think this forum needs to pick one of the options in my initial note,
>> and design its protocols and APIs accordingly.
> Sorry, I don't know which initial note you are referencing.
>
> But I do think we need to agree on how we handle RTP sessions in
> relation to the relevant API constructs and what binding between API
> resources that are needed to allow the lower layer to correctly keep
> semantics.
>
> We will have some opportunity to discuss this on Thursday in the Interim
> meeting.