Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit a9a0bd4

Browse files
authored
Add query bwe proposal for subscription in client-portal protocol (#422)
* Add query bwe proposal for subscription in client-portal protocol * Change bitrate to estimatedBitrate
1 parent 2cdc161 commit a9a0bd4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

doc/Client-Portal Protocol.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,9 +484,10 @@ This a format for client reconnects.
484484
object(SubscriptionControlInfo)::
485485
{
486486
id: string(SubscriptionId),
487-
operation: "update" | "pause" | "play",
487+
operation: "update" | "pause" | "play" | "querybwe",
488488
data: object(SubscriptionUpdate)/*If operation equals "update"*/
489489
| ("audio" | "video" | "av")/*If operation equals "pause" or "play"*/
490+
| undefined /*If operation equals "querybwe"*/
490491
}
491492

492493
object(SubscriptionUpdate)::
@@ -506,7 +507,11 @@ This a format for client reconnects.
506507
parameters: object(VideoParametersSpecification)/*If any video parameters are wanted to be re-specified*/
507508
| undefined/*If the video parameters of the ongoing subscription are wanted to be kept*/
508509
}
509-
**ResponseData**: undefined if **ResponseStatus** is “ok”.
510+
**ResponseData**: undefined or object(BWEResult) for "querybwe" if **ResponseStatus** is “ok”.
511+
object(BWEResult)::
512+
{
513+
estimatedBitrate: number(bps) /*Send side estimated bitrate if enabled*/
514+
}
510515
### 3.3.14 Participant Sends Session Signaling
511516
**RequestName**: “soac”<br>
512517

0 commit comments

Comments
 (0)