From 91a9bf0c0c7cfdf6de8d5baf7cc9ac5220d64317 Mon Sep 17 00:00:00 2001 From: John Riordan Date: Fri, 21 Oct 2022 12:35:45 -0400 Subject: [PATCH] Update session description handler documentation - State that it only supports up to one audio/video track per session - Issue #960 --- docs/session-description-handler.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/session-description-handler.md b/docs/session-description-handler.md index 1370476b1..c597e11ac 100644 --- a/docs/session-description-handler.md +++ b/docs/session-description-handler.md @@ -2,7 +2,7 @@ ## Overview -The `SessionDescriptionHandler` class provides an implementation of which adhears to the `SessionDescriptionHandler` interface required by the [API](./api.md). The class is intended to be suitable for extending to provide custom behaviour if needed. +The `SessionDescriptionHandler` class provides an implementation of which adhears to the `SessionDescriptionHandler` interface required by the [API](./api.md). The class is intended to be suitable for extending to provide custom behaviour if needed. It supports up to one audio track and/or one video track per session. ## Reference Documentation @@ -204,3 +204,9 @@ See [docs](./session-description-handler/sip.js.sessiondescriptionhandler.md) fo `SessionDescriptionHandler` has a `peerConnectionDelegate` property. See [docs](./session-description-handler/sip.js.sessiondescriptionhandler.md) for more info. + +## How do I use more than one audio and one video track? + +`SessionDescriptionHandler` only supports up to one audio and one video track. + +A custom session description handler needs to be created to support more tracks.