You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.bs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -80,8 +80,8 @@ insert the processing into the pipeline.
80
80
<pre class="idl">
81
81
// New dictionary.
82
82
dictionary RTCInsertableStreams {
83
-
ReadableStream readableStream;
84
-
WritableStream writableStream;
83
+
ReadableStream readable;
84
+
WritableStream writable;
85
85
};
86
86
87
87
// New enum for video frame types. Will eventually re-use the equivalent defined
@@ -160,8 +160,8 @@ called, run the following steps:
160
160
* If the data source does not permit access, throw an {{InvalidAccessError}} and abort these steps.
161
161
* If [[\Streams]] is not null, throw an {{InvalidStateError}}.
162
162
* Create an {{RTCInsertableStreams}} object 's'.
163
-
* Set s.readableStream to a ReadableStream representing the encoded data source.
164
-
* Set s.writableStream to a WritableStream representing the encoded data sink.
163
+
* Set s.readable to a ReadableStream representing the encoded data source.
164
+
* Set s.writable to a WritableStream representing the encoded data sink.
165
165
* Enable the encoded data source.
166
166
* Store 's' in the internal slot [[\Streams]].
167
167
* Return 's'
@@ -171,7 +171,7 @@ called, run the following steps:
171
171
When a frame is produced from the encoded data source, place it on the
172
172
[[\Streams]].readableStream'.
173
173
174
-
When a frame appears on the [[\Streams]].writableStream, do the following:
174
+
When a frame appears on the [[\Streams]].writable, do the following:
175
175
* Check that the frame is a a valid frame that has been created by the encoded data source; if it is not, discard it. A processor cannot create frames, or move frames between streams.
176
176
* Check that the frame's {{RTCEncodedVideoFrame/timestamp}} is equal to or larger than any previously received frame. A processor cannot reorder frames, although it may delay them or drop them.
177
177
* Process the frame as if it came directly from the encoded data source.
<p>When a frame is produced from the encoded data source, place it on the
1677
-
[[\Streams]].readableStream'.</p>
1678
-
<p>When a frame appears on the [[\Streams]].writableStream, do the following:</p>
1677
+
[[\Streams]].readable'.</p>
1678
+
<p>When a frame appears on the [[\Streams]].writable, do the following:</p>
1679
1679
<ul>
1680
1680
<lidata-md>
1681
1681
<p>Check that the frame is a a valid frame that has been created by the encoded data source; if it is not, discard it. A processor cannot create frames, or move frames between streams.</p>
0 commit comments