Skip to content

Commit a438620

Browse files
committed
Minor tweaks
1 parent aff3004 commit a438620

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.bs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ interface mixin RTCRtpScriptSource {
599599
readonly attribute ReadableStream readable;
600600
Promise<unsigned long long> generateKeyFrame(optional DOMString rid);
601601
Promise<undefined> sendKeyFrameRequest();
602-
undefined bandwidthEstimate(BandwidthInfo info);
602+
undefined sendBandwidthEstimate(BandwidthInfo info);
603603
};
604604

605605
interface mixin RTCRtpScriptSink {
@@ -672,7 +672,7 @@ The <dfn method for="RTCRtpScriptSource">sendKeyFrameRequest()</dfn> method step
672672
1. Run the [$send request key frame algorithm$] with |promise| and |this|.`[[depacketizer]]`.
673673
1. Return |promise|.
674674

675-
The <dfn method for="RTCRtpScriptSource">bandwidthEstimate()</dfn> method step are:
675+
The <dfn method for="RTCRtpScriptSource">sendBandwidthEstimate()</dfn> method step are:
676676
1. Configure the upstream source with the new bandwidth information.
677677

678678
## Attributes ## {#RTCRtpScriptTransformer-attributes}
@@ -698,9 +698,9 @@ The <dfn attribute for="RTCRtpScriptSink">onkeyframerequest</dfn> EventHandler h
698698

699699
The following events fire on an RTCRtpScriptTransform:
700700

701-
* bandwidthestimate of type {{BandwidthEstimateEvent}} - fired when the sink determines that the bandwidth estimate has changed significantly from what has been previously signalled. In the context of {{RTCRtpScriptTransform}}, if the event is not cancelled, the information will be passed to the source as if the bandwidthEstimate() function had been called.
701+
* bandwidthestimate of type {{BandwidthEstimateEvent}} - fired when the sink determines that the bandwidth estimate has changed significantly from what has been previously signalled. In the context of {{RTCRtpScriptTransform}}, if the event is not cancelled, the information will be passed to the source as if the sendBandwidthEstimate() function had been called.
702702

703-
* keyframerequest of type {{KeyFrameRequestEvent}} - fired when the sink determines that a key frame has been requested. In the context of {{RTCRtpScriptTransform, if the event is not cancelled, the information will be passed to the source as if the generateKeyFrame() function had been called. <!-- NOTE IN DRAFT: generateKeyFrame() and requestKeyFrame() should merge -->
703+
* keyframerequest of type {{KeyFrameRequestEvent}} - fired when the sink determines that a key frame has been requested. In the context of {{RTCRtpScriptTransform}}, if the event is not cancelled, the information will be passed to the source as if the generateKeyFrame() function had been called. <!-- NOTE IN DRAFT: generateKeyFrame() and requestKeyFrame() should merge -->
704704

705705

706706
## KeyFrame Algorithms ## {#KeyFrame-algorithms}

0 commit comments

Comments
 (0)