Skip to content

Commit 75ca59f

Browse files
committed
addressing feedback from domenic - part 1
1 parent d66ffdd commit 75ca59f

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

index.html

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5170,14 +5170,13 @@ <h2 id="AudioWorkletNode">
51705170
</p>
51715171
</dd>
51725172
<dt>
5173-
void postMessage(any message, optional
5174-
sequence&lt;Transferable&gt; transfer)
5173+
void postMessage(any message, optional sequence&lt;Object&gt;
5174+
transfer)
51755175
</dt>
51765176
<dd>
51775177
<p>
51785178
<code>postMessage</code> may be called to send a message to the
5179-
corresponding <a>AudioWorkletProcessor</a> via the algorithm
5180-
defined by the [!Worker] specification.
5179+
corresponding <a>AudioWorkletProcessor</a>.
51815180
</p>
51825181
</dd>
51835182
</dl>
@@ -5247,7 +5246,7 @@ <h2 id="AudioWorkletGlobalScope">
52475246
<dl title="interface AudioWorkletGlobalScope : WorkletGlobalScope"
52485247
class="idl">
52495248
<dt>
5250-
void registerAudioWorkletProcessor (DOMString name, Function
5249+
void registerProcessor (DOMString name, Function
52515250
classConstructor)
52525251
</dt>
52535252
<dd>
@@ -5296,8 +5295,8 @@ <h2 id="AudioWorkletProcessor">
52965295
</p>
52975296
<dl title="interface AudioWorkletProcessor" class="idl">
52985297
<dt>
5299-
readonly attribute static sequence&lt;AudioParamDescriptor&gt;
5300-
parameterDescriptors
5298+
[SameObject] readonly attribute
5299+
FrozenArray&lt;AudioParamDescriptor&gt; parameterDescriptors
53015300
</dt>
53025301
<dd>
53035302
<p>
@@ -5333,12 +5332,14 @@ <h2 id="AudioWorkletProcessor">
53335332
</dt>
53345333
<dd>
53355334
<p>
5335+
Processes the audio data from the input and produce the content
5336+
of output buffer by executing the user-supplied script code.
53365337
This method is called synchronously by the audio <a>rendering
53375338
thread</a> that executes in an isochronous fashion.
53385339
</p>
53395340
<dl class="parameters">
53405341
<dt>
5341-
Float32Array[][] inputs
5342+
sequence&lt;sequence&lt;Float32Array&gt;&gt; inputs
53425343
</dt>
53435344
<dd>
53445345
<code>inputs[n][m]</code> is a <code>Float32Array</code> of
@@ -5348,7 +5349,7 @@ <h2 id="AudioWorkletProcessor">
53485349
dynamically.
53495350
</dd>
53505351
<dt>
5351-
Float32Array[][] outputs
5352+
sequence&lt;sequence&lt;Float32Array&gt;&gt; outputs
53525353
</dt>
53535354
<dd>
53545355
<code>outputs[n][m]</code> is a Float32Array object
@@ -5385,7 +5386,7 @@ <h2 id="AudioWorkletProcessor">
53855386
</dt>
53865387
<dd></dd>
53875388
<dt>
5388-
optional sequence&lt;Transferable&gt; transfer
5389+
optional sequence&lt;Object&gt; transfer
53895390
</dt>
53905391
<dd></dd>
53915392
</dl>

0 commit comments

Comments
 (0)