Skip to content

Commit bfcfc00

Browse files
committed
Add FIXME for pipeTo
1 parent bff486f commit bfcfc00

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

index.bs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ At construction of each {{RTCRtpSender}} or {{RTCRtpReceiver}}, run the followin
172172
9. If the {{RTCPeerConnection}}'s configuration does not have {{RTCConfiguration/encodedInsertableStreams}} set to "true", queue a task to run the following steps:
173173
1. If [=this=].`[[pipeToController]]` is not null, abort these steps.
174174
2. Set [=this=].`[[pipeToController]]` to a new {{AbortController}}.
175+
<!-- FIXME: Use pipeTo algorithm when available. -->
175176
3. Call <a href="https://streams.spec.whatwg.org/#readable-stream-pipe-to">pipeTo</a> with [=this=].`[[readable]]`, [=this=].`[[writable]]`, preventClose equal to true, preventAbort equal to true, preventCancel equal to true and [=this=].`[[pipeToController]]`.signal.
176177

177178
When {{RTCRtpSender/createEncodedStreams}}() is
@@ -230,6 +231,7 @@ The <dfn>chain transform algorithm</dfn> steps are defined as:
230231
2. [=ReadableStreamDefaultReader/Release=] |reader|.
231232
3. [=WritableStreamDefaultWriter/Release=] |writer|.
232233
4. Assert that |newPipeToController| is the same object as |rtcObject|.`[[pipeToController]]`.
234+
<!-- FIXME: Use pipeTo algorithm when available. -->
233235
5. Call <a href="https://streams.spec.whatwg.org/#readable-stream-pipe-to">pipeTo</a> with |rtcObject|.`[[readable]]`, |checkedTransform|.`[[writable]]`, preventClose equal to false, preventAbort equal to false, preventCancel equal to true and |newPipeToController|.signal.
234236
6. Call <a href="https://streams.spec.whatwg.org/#readable-stream-pipe-to">pipeTo</a> with |checkedTransform|.`[[readable]]`, |rtcObject|.`[[writable]]`, preventClose equal to true, preventAbort equal to true, preventCancel equal to false and |newPipeToController|.signal.
235237

0 commit comments

Comments
 (0)