diff --git a/ed/algorithms/webaudio.json b/ed/algorithms/webaudio.json deleted file mode 100644 index d40e4bc58cb6..000000000000 --- a/ed/algorithms/webaudio.json +++ /dev/null @@ -1,2283 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://webaudio.github.io/web-audio-api/" - }, - "algorithms": [ - { - "name": "BaseAudioContext.createPeriodicWave()", - "html": "When calling this method,\n execute these steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "
If real and imag are not of the same\nlength, an IndexSizeError MUST be thrown.
Let o be a new object of type PeriodicWaveOptions.
Respectively set the real and imag parameters passed to this factory method to\nthe attributes of the same name on o.
Set the disableNormalization attribute on o to the value of the disableNormalization attribute of the constraints attribute passed to the factory\nmethod.
Construct a new PeriodicWave p, passing the BaseAudioContext this factory\nmethod has been called on as a first argument, and o.
Return p.
" - } - ] - }, - { - "name": "decodeAudioData()", - "html": "WhendecodeAudioData is\n called, the following steps MUST be performed on the control\n thread:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.
Let promise be a new Promise.
" - }, - { - "html": "IfaudioData is detached, execute the following steps:",
- "rationale": "append",
- "steps": [
- {
- "html": "Append promise to [[pending promises]].
Detach the audioData ArrayBuffer.\nIf this operations throws, jump to the step 3.
Queue a decoding operation to be performed on another thread.
" - } - ] - }, - { - "html": "Else, execute the following error steps:", - "rationale": "let", - "steps": [ - { - "html": "Let error be a DataCloneError.
Reject promise with error, and remove it from [[pending promises]].
Queue a media element task to invoke errorCallback with error.
Return promise.
" - } - ] - }, - { - "name": "queue a decode operation", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decoding-thread", - "html": "When queuing a decoding operation to be performed on another\n thread, the following steps MUST happen on a thread that is not\n the control thread nor the rendering thread,\n called thedecoding thread.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let can decode be a boolean flag, initially set to true.
" - }, - { - "html": "Attempt to determine the MIME type of audioData, using MIME Sniffing § 6.2 Matching an audio or video type pattern. If the audio or\nvideo type pattern matching algorithm returns undefined,\nset can decode to false.
If can decode is true, attempt to decode the encoded audioData into linear PCM. In case of\nfailure, set can decode to false.
If the media byte-stream contains multiple audio tracks, only decode the\nfirst track to linear pcm.
" - }, - { - "html": "If can decode isfalse, queue a media element task to execute the following steps:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let error be a DOMException whose name is EncodingError.",
- "rationale": "reject",
- "steps": [
- {
- "html": "Reject promise with error, and remove it from [[pending promises]].
If errorCallback is\nnot missing, invoke errorCallback with error.
Take the result, representing the decoded linear PCM audio data, and resample it to the sample-rate of the BaseAudioContext if it is different from\nthe sample-rate of audioData.
Let buffer be an AudioBuffer containing the final result\n(after possibly performing sample-rate conversion).
Resolve promise with buffer.
" - }, - { - "html": "If successCallback is not missing, invoke successCallback with buffer.
InvalidStateError\" and abort these steps.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let context be a new AudioContext object.
Set a [[control thread state]] to suspended on context.
Set a [[rendering thread state]] to suspended on context.
Let messageChannel be a new MessageChannel.
Let controlSidePort be the value of messageChannel’s port1 attribute.
Let renderingSidePort be the value of messageChannel’s port2 attribute.
Let serializedRenderingSidePort be the result of StructuredSerializeWithTransfer(renderingSidePort,\n« renderingSidePort »).
" - }, - { - "html": "Set this audioWorklet's port to controlSidePort.
Queue a control message to set the\nMessagePort on the AudioContextGlobalScope, with serializedRenderingSidePort.
" - }, - { - "html": "IfcontextOptions is given, perform the following\nsubsteps:",
- "rationale": "if",
- "steps": [
- {
- "html": "If sinkId is specified, let sinkId be\nthe value of contextOptions.sinkId and\nrun the following substeps:",
- "rationale": "if",
- "steps": [
- {
- "html": "If both sinkId and [[sink ID]] are a type of DOMString, and they are equal to each other, abort these\nsubsteps.
If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of AudioSinkInfo, and type in sinkId and type in [[sink ID]] are equal, abort these substeps.
Let validationResult be the return value of sink identifier validation of sinkId.
" - }, - { - "html": "If validationResult is a type of DOMException, throw an\nexception with validationResult and abort these substeps.
If sinkId is a type of DOMString, set [[sink ID]] to sinkId and abort these\nsubsteps.
If sinkId is a type of AudioSinkOptions, set [[sink ID]] to a new instance of AudioSinkInfo created with the value of type of sinkId.
Set the internal latency of context according to contextOptions.,\nas described in latencyHintlatencyHint.
contextOptions.sampleRate is specified, set the sampleRate of context to this value. Otherwise, follow these substeps:",
- "rationale": "if",
- "steps": [
- {
- "html": "If sinkId is the empty string or a type of AudioSinkOptions, use the sample rate of the default output\ndevice. Abort these substeps.
If sinkId is a DOMString, use the sample rate of the\noutput device identified by sinkId. Abort these substeps.
If context is allowed to start, send a control message to start processing.
" - }, - { - "html": "Return context.
" - } - ] - }, - { - "name": "sending a control message to start processing", - "html": "Sending a control message to start processing means\n executing the following steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let document be the current settings object's relevant global object's associated Document.
" - }, - { - "html": "Attempt to acquire system resources to use a following audio output device\nbased on[[sink ID]] for rendering:",
- "rationale": "if",
- "steps": [
- {
- "html": "If resource acquisition fails, execute the following steps:",
- "rationale": "if",
- "steps": [
- {
- "html": "If document is not allowed to use the feature identified by \"speaker-selection\", abort these substeps.
Queue a media element task to fire an event named error at the AudioContext, and abort the following\nsteps.
Set this [[rendering thread state]] to running on the AudioContext.
Set the state attribute of the AudioContext to \"running\".
fire an event named statechange at the AudioContext.
MessagePort on the AudioWorkletGlobalScope means executing the following steps, on\n the rendering thread, with serializedRenderingSidePort, that has been transfered to\n the AudioWorkletGlobalScope:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let deserializedPort be the result of StructuredDeserialize(serializedRenderingSidePort,\nthe current Realm).
" - }, - { - "html": "Set port to deserializedPort.
If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.
Let promise be a new Promise.
" - }, - { - "html": "If the [[control thread state]] flag on the AudioContext is closed reject the promise\nwith InvalidStateError, abort these steps,\nreturning promise.
Set the [[control thread state]] flag on the AudioContext to closed.
Queue a control message to close the AudioContext.
Return promise.
" - } - ] - }, - { - "name": "run a control message to close an AudioContext", - "html": "Running a control message to close anAudioContext means running these steps on the rendering thread:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Attempt to release system resources.
" - }, - { - "html": "Set the [[rendering thread state]] to suspended.
If this control message is being run in a reaction to the\ndocument being unloaded, abort this algorithm.
" - }, - { - "html": " queue a media element task to execute the following steps:", - "rationale": "resolve", - "steps": [ - { - "html": "Resolve promise.
" - }, - { - "html": "If thestate attribute of the AudioContext is not already \"closed\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the AudioContext to \"closed\".
queue a media element task to fire\nan event named statechange at the AudioContext.
If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.
Let promise be a new Promise.
" - }, - { - "html": "If the [[control thread state]] on the AudioContext is closed reject the\npromise with InvalidStateError, abort these steps,\nreturning promise.
Set [[suspended by user]] to false.
If the context is not allowed to start, append promise to [[pending promises]] and [[pending resume promises]] and abort these steps, returning promise.
Set the [[control thread state]] on the AudioContext to running.
Queue a control message to resume the AudioContext.
Return promise.
" - } - ] - }, - { - "name": "run a control message in AudioContext", - "href": "https://webaudio.github.io/web-audio-api/#context-resume", - "html": "Running a control message to resume anAudioContext means running these steps on the rendering thread:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Attempt to acquire system resources.
" - }, - { - "html": "Set the [[rendering thread state]] on the AudioContext to running.
Start rendering the audio graph.
" - }, - { - "html": "In case of failure, queue a media element task to execute the following steps:", - "rationale": "reject", - "steps": [ - { - "html": "Reject all promises from [[pending resume promises]] in order, then clear [[pending resume promises]].
Additionally, remove those promises from [[pending\npromises]].
Resolve all promises from [[pending resume promises]] in order.
Clear [[pending resume promises]]. Additionally, remove those\npromises from [[pending promises]].
Resolve promise.
" - }, - { - "html": "If thestate attribute of the AudioContext is not already \"running\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the AudioContext to \"running\".
Queue a media element task to fire an event named statechange at the AudioContext.
If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.
Let promise be a new Promise.
" - }, - { - "html": "If the [[control thread state]] on the AudioContext is closed reject the promise\nwith InvalidStateError, abort these steps,\nreturning promise.
Append promise to [[pending promises]].
Set [[suspended by user]] to true.
Set the [[control thread state]] on the AudioContext to suspended.
Queue a control message to suspend the AudioContext.
Return promise.
" - } - ] - }, - { - "name": "run a control message to suspend an AudioContext", - "html": "Running a control message to suspend anAudioContext means running these steps on the rendering thread:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Attempt to release system resources.
" - }, - { - "html": "Set the [[rendering thread state]] on the AudioContext to suspended.
Resolve promise.
" - }, - { - "html": "If thestate attribute of the AudioContext is not already \"suspended\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the AudioContext to \"suspended\".
Queue a media element task to fire an event named statechange at the AudioContext.
Let sinkId be the method’s first argument.
" - }, - { - "html": "If sinkId is equal to [[sink ID]], return a\npromise, resolve it immediately and abort these steps.
Let validationResult be the return value of sink identifier validation of sinkId.
" - }, - { - "html": "If validationResult is not null, return a promise\nrejected with validationResult. Abort these steps.
Let p be a new promise.
" - }, - { - "html": "Send a control message with p and sinkId to start\nprocessing.
" - }, - { - "html": "Return p.
" - } - ] - }, - { - "name": "run a control message for setSinkId", - "html": "Sending a control message to start processing duringsetSinkId() means executing the following steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let p be the promise passed into this algorithm.
" - }, - { - "html": "Let sinkId be the sink identifier passed into this algorithm.
" - }, - { - "html": "If both sinkId and [[sink ID]] are a type of DOMString, and they are equal to each other, queue a media element task to resolve p and abort these steps.
If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of AudioSinkInfo, and type in sinkId and type in [[sink ID]] are equal, queue a media element task to resolve p and abort these steps.
Let wasRunning be true.
" - }, - { - "html": "Set wasRunning to false if the [[rendering thread state]] on\nthe AudioContext is \"suspended\".
Pause the renderer after processing the current render quantum.
" - }, - { - "html": "Attempt to release system resources.
" - }, - { - "html": "If wasRunning is true:", - "rationale": "set", - "steps": [ - { - "html": "Set the [[rendering thread state]] on the AudioContext to \"suspended\".
state attribute of the AudioContext is not already \"suspended\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the AudioContext to \"suspended\".
Fire an event named statechange at the\nassociated AudioContext.
Attempt to acquire system resources to use\na following audio output device based on [[sink ID]] for rendering:
The default audio output device for the empty string.
\nA audio output device identified by [[sink ID]].
In case of failure, reject p with \"InvalidAccessError\" abort\nthe following steps.
If sinkId is a type of DOMString, set [[sink ID]] to sinkId. Abort these steps.
If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of DOMString,\nset [[sink ID]] to a new instance of AudioSinkInfo created with the value of type of sinkId.
If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of AudioSinkInfo,\nset type of [[sink ID]] to\nthe type value of sinkId.
Resolve p.
" - }, - { - "html": "Fire an event named sinkchange at the\nassociated AudioContext.
Set the [[rendering thread state]] on the AudioContext to \"running\".
state attribute of the AudioContext is not already \"running\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the AudioContext to \"running\".
Fire an event named statechange at the\nassociated AudioContext.
Let document be the current settings object’s associated Document.
" - }, - { - "html": "Let sinkIdArg be the value passed in to this algorithm.
" - }, - { - "html": "If document is not allowed to use the feature identified by \"speaker-selection\", return a new DOMException whose name\nis \"NotAllowedError\".
If sinkIdArg is a type of DOMString but it is not equal to the empty\nstring or it does not match any audio output device identified by the\nresult that would be provided by enumerateDevices(),\nreturn a new DOMException whose name is \"NotFoundError\".
Return null.
InvalidStateError and abort these steps.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Set the [[control thread state]] for c to \"suspended\".
Set the [[rendering thread state]] for c to \"suspended\".
[[render quantum size]] for this OfflineAudioContext,\n based on the value of the renderSizeHint:",
- "rationale": "if",
- "steps": [
- {
- "html": "If it has the default value of \"default\" or \"hardware\", set the [[render quantum size]] private\n slot to 128.
Else, if an integer has been passed, the User-Agent can decide to\n honour this value by setting it to the [[render quantum size]] private slot.
Construct an AudioDestinationNode with its channelCount set to contextOptions.numberOfChannels.
Let messageChannel be a new MessageChannel.
Let controlSidePort be the value of messageChannel’s port1 attribute.
Let renderingSidePort be the value of messageChannel’s port2 attribute.
Let serializedRenderingSidePort be the result of StructuredSerializeWithTransfer(renderingSidePort,\n« renderingSidePort »).
" - }, - { - "html": "Set this audioWorklet's port to controlSidePort.
Queue a control message to set the\nMessagePort on the AudioContextGlobalScope, with serializedRenderingSidePort.
" - } - ] - }, - { - "name": "OfflineAudioContext.startRendering()", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-rendering-started-slot", - "html": "Let[[rendering started]] be an internal slot of this OfflineAudioContext. Initialize this slot to false. \n When startRendering is\n called, the following steps MUST be performed on the control\n thread:
InvalidStateError\" DOMException."
- },
- {
- "html": "If the [[rendering started]] slot on the OfflineAudioContext is true, return a rejected\n promise with InvalidStateError, and abort these\n steps."
- },
- {
- "html": "Set the [[rendering started]] slot of the OfflineAudioContext to true."
- },
- {
- "html": "Let promise be a new promise."
- },
- {
- "html": "Create a new AudioBuffer, with a number of\n channels, length and sample rate equal respectively to the numberOfChannels, length and sampleRate values passed to this instance’s\n constructor in the contextOptions parameter.\n Assign this buffer to an internal slot [[rendered buffer]] in the OfflineAudioContext."
- },
- {
- "html": "If an exception was thrown during the preceding AudioBuffer constructor call, reject promise with this exception."
- },
- {
- "html": "Otherwise, in the case that the buffer was successfully\n constructed, begin offline rendering."
- },
- {
- "html": "Append promise to [[pending promises]]."
- },
- {
- "html": "Return promise."
- }
- ]
- },
- {
- "name": "begin offline rendering",
- "href": "https://webaudio.github.io/web-audio-api/#begin-offline-rendering",
- "html": "To begin offline rendering, the following steps MUST\n happen on a rendering thread that is created for the\n occasion.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Given the current connections and scheduled changes, start\n rendering length sample-frames of audio into [[rendered buffer]]"
- },
- {
- "html": "For every render quantum, check and suspend rendering if necessary."
- },
- {
- "html": "If a suspended context is resumed, continue to render the\n buffer."
- },
- {
- "html": "Once the rendering is complete, queue a media element task to execute the following steps:",
- "rationale": "resolve",
- "steps": [
- {
- "html": "Resolve the promise created by startRendering() with [[rendered buffer]]."
- },
- {
- "html": "Queue a media element task to fire an event named complete at the OfflineAudioContext using OfflineAudioCompletionEvent whose renderedBuffer property is set to [[rendered buffer]]."
- }
- ]
- }
- ]
- },
- {
- "name": "OfflineAudioContext::resume()",
- "html": "When resume is called,\n execute these steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If this's relevant global object's associated Document is\nnot fully active then return a promise rejected with \"InvalidStateError\" DOMException.
Let promise be a new Promise.
" - }, - { - "html": "Abort these steps and reject promise with InvalidStateError when any of following conditions is true:
The [[control thread state]] on the OfflineAudioContext is closed.
The [[rendering started]] slot on the OfflineAudioContext is false.
Set the [[control thread state]] flag on the OfflineAudioContext to running.
Queue a control message to resume the OfflineAudioContext.
Return promise.
" - } - ] - }, - { - "name": "run a control message in OfflineAudioContext", - "html": "Running a control message to resume anOfflineAudioContext means running these steps on the rendering thread:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Set the [[rendering thread state]] on the OfflineAudioContext to running.
Start rendering the audio graph.
" - }, - { - "html": "In case of failure, queue a media element task to reject promise and abort the remaining steps.
" - }, - { - "html": " queue a media element task to execute the following steps:", - "rationale": "resolve", - "steps": [ - { - "html": "Resolve promise.
" - }, - { - "html": "If thestate attribute of the OfflineAudioContext is not already \"running\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the OfflineAudioContext to \"running\".
Queue a media element task to fire an event named statechange at the OfflineAudioContext.
If any of the values in options lie outside its nominal range, throw a NotSupportedError exception and abort the following steps.
Let b be a new AudioBuffer object.
Respectively assign the values of the attributes numberOfChannels, length, sampleRate of the AudioBufferOptions passed\nin the constructor to the internal slots [[number of channels]], [[length]], [[sample rate]].
Set the internal slot [[internal data]] of this AudioBuffer to the result of calling CreateByteDataBlock(.[[length]] * [[number of channels]])
Return b.
" - } - ] - }, - { - "name": "acquire the content of an AudioBuffer", - "href": "https://webaudio.github.io/web-audio-api/#acquire-the-content", - "html": "When an acquire the content operation occurs on anAudioBuffer, run the following steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If any of the AudioBuffer's ArrayBuffers are detached, return true, abort these steps, and\nreturn a zero-length channel data buffer to the invoker.
Detach all ArrayBuffers for arrays previously returned\nby getChannelData() on this AudioBuffer.
Retain the underlying [[internal data]] from those ArrayBuffers and return references to them to the\ninvoker.
Attach ArrayBuffers containing copies of the data to\nthe AudioBuffer, to be returned by the next call to getChannelData().
AudioNode of a particular type n using its factory method, called on a BaseAudioContext c, execute these steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let node be a new object of type n.
" - }, - { - "html": "Let option be a dictionary of the type associated to the interface associated to this factory method.
" - }, - { - "html": "For each parameter passed to the factory method, set the\ndictionary member of the same name on option to the\nvalue of this parameter.
" - }, - { - "html": "Call the constructor for n on node with c and option as arguments.
" - }, - { - "html": "Return node
" - } - ] - }, - { - "name": "initialize an AudioNode", - "href": "https://webaudio.github.io/web-audio-api/#audionode-constructor-init", - "html": "Initializing an object o that inherits fromAudioNode means executing the following\n steps, given the arguments context and dict passed to\n the constructor of this interface.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Set o’s associated BaseAudioContext to context.
Set its value for numberOfInputs, numberOfOutputs, channelCount, channelCountMode, channelInterpretation to the\ndefault value for this\nspecific interface outlined in the section for each AudioNode.
If k is the name of an AudioParam on this\ninterface, set the value attribute of this AudioParam to v.
Else if k is the name of an attribute on this\ninterface, set the object associated with this attribute to v.
" - } - ] - } - ] - }, - { - "name": "cancel and hold", - "html": "LetcancelTime. Then",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let
Let
If
Otherwise, go to step 4.
" - } - ] - }, - { - "html": "IfIf setTarget event,
setValueCurve with a start\ntime of If
Otherwise,
", - "ignored": [ - "Effectively replace this event with a setValueCurve event with a start time of t3t3t_3 and a new duration of tc−t3tc−t3t_c-t_3. However, this is not a true replacement; this automation MUST take care to produce the same output as the original, and not one computed using a different duration. (That would cause sampling of the value curve in a slightly different way, producing different results.) Go to step 5." - ] - } - ] - } - ] - }, - { - "html": "Remove all events with time greater than
paramIntrinsicValue will be calculated at\neach time, which is either the value set directly to\nthe value attribute, or, if there are\nany automation\nevents with times before or at this time, the\nvalue as calculated from these events. If automation\nevents are removed from a given time range, then the paramIntrinsicValue value will remain\nunchanged and stay at its previous value until either\nthe value attribute is directly set, or\nautomation events are added for the time range.
Set [[current value]] to the value of paramIntrinsicValue at the beginning of\nthis render quantum.
paramComputedValue is the sum of the paramIntrinsicValue value and the value of the input\nAudioParam buffer. If the sum is NaN, replace the sum with the defaultValue.
If this AudioParam is a compound parameter,\ncompute its final value with other AudioParams.
Set computedValue to paramComputedValue.
" - } - ] - }, - { - "name": "AudioScheduledSourceNode.start()", - "html": "When this method is called, execute\n these steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "If this AudioScheduledSourceNode internal\nslot [[source started]] is true, an InvalidStateError exception MUST be thrown.
Check for any errors that must be thrown due to parameter\nconstraints described below. If any exception is thrown during this\nstep, abort those steps.
" - }, - { - "html": "Set the internal slot [[source started]] on\nthis AudioScheduledSourceNode to true.
Queue a control message to start the AudioScheduledSourceNode, including the parameter\nvalues in the message.
Send a control message to the associated AudioContext to start running its rendering thread only when\nall the following conditions are met:
If this AudioScheduledSourceNode internal\nslot [[source started]] is not true,\nan InvalidStateError exception MUST be thrown.
Check for any errors that must be thrown due to parameter\nconstraints described below.
" - }, - { - "html": "Queue a control message to stop the AudioScheduledSourceNode, including the parameter\nvalues in the message.
Compute the current time-domain data.
" - }, - { - "html": "Apply a Blackman window to the time domain input data.
" - }, - { - "html": "Apply a Fourier transform to the\nwindowed time domain input data to get real and imaginary\nfrequency data.
" - }, - { - "html": "Smooth over time the frequency domain data.
" - }, - { - "html": "" - } - ] - }, - { - "name": "set the buffer attribute", - "html": "To set thebuffer attribute, execute these steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let new buffer be the AudioBuffer or null value to be assigned to buffer.
If new buffer is not null and [[buffer set]] is true, throw an InvalidStateError and abort these steps.
If new buffer is not null, set [[buffer set]] to true.
Assign new buffer to the buffer attribute.
If start() has previously been called on this\nnode, perform the operation acquire the content on buffer.
If this AudioBufferSourceNode internal\nslot [[source started]] is true, an InvalidStateError exception MUST be thrown.
Check for any errors that must be thrown due to parameter\nconstraints described below. If any\nexception is thrown during this step,\nabort those steps.
" - }, - { - "html": "Set the internal slot [[source started]] on\nthis AudioBufferSourceNode to true.
Queue a control message to start the AudioBufferSourceNode, including the parameter values\nin the message.
Acquire the contents of the buffer if the buffer has been set.
Send a control message to the associated AudioContext to start running its rendering thread only when\nall the following conditions are met:
BaseAudioContext context and\nan option object options, execute these steps:",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the attributes normalize to the inverse of the\nvalue of disableNormalization.
If buffer exists, set the buffer attribute to its value.
Let o be new AudioNodeOptions dictionary.
If channelCount exists in options, set channelCount on o with the same value.
If channelCountMode exists in options, set channelCountMode on o with the same value.
If channelInterpretation exists in options, set channelInterpretation on o with the same value.
Initialize the AudioNode this, with c and o as argument.
" - } - ] - }, - { - "name": "set convolver buffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolvernode-buffer-attribute", - "html": "When setting thebuffer attribute, execute the following steps synchronously:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If the buffer number of channels is not 1, 2, 4, or if the sample-rate of the buffer is not the same as the sample-rate of its associated BaseAudioContext, a NotSupportedError MUST be thrown.
Acquire the content of the AudioBuffer.
Let attack and release have the values of attack and release, respectively, sampled at the time of\nprocessing (those are k-rate parameters), mutiplied by the\nsample-rate of the BaseAudioContext this DynamicsCompressorNode is associated with.
Let detector average be the value of the slot [[detector average]].
Let compressor gain be the value of the slot [[compressor gain]].
If the absolute value of input is less than\n0.0001, let attenuation be 1.0. Else, let shaped input be the value of applying the compression curve to the absolute\nvalue of input. Let attenuation be shaped input divided by the absolute value of input.
" - }, - { - "html": "Let releasing be true if attenuation is greater than compressor\ngain, false otherwise.
Let detector rate be the result of applying the detector curve to attenuation.
" - }, - { - "html": "Subtract detector average from attenuation, and multiply the result by detector rate. Add this new result to detector average.
" - }, - { - "html": "Clamp detector average to a maximum of 1.0.
" - }, - { - "html": "Let envelope rate be the result of computing the envelope rate based on values of attack and release.
" - }, - { - "html": "If releasing is true, set compressor gain to be the product of compressor gain and envelope rate, clamped\nto a maximum of 1.0.
Else, if releasing is false, let gain increment to be detector average minus compressor gain. Multiply gain\nincrement by envelope rate, and add the result\nto compressor gain.
Compute reduction gain to be compressor\ngain multiplied by the return value of computing the\nmakeup gain.
" - }, - { - "html": "Compute metering gain to be reduction gain, converted to\ndecibel.
" - } - ] - }, - { - "html": "Set [[compressor gain]] to compressor\ngain.
Set [[detector average]] to detector\naverage.
Atomically set the internal slot [[internal reduction]] to the value of metering gain.
Let full range gain be the value returned by\napplying the compression curve to the value 1.0.
" - }, - { - "html": "Let full range makeup gain be the inverse of full\nrange gain.
" - }, - { - "html": "Return the result of taking the 0.6 power of full range makeup\ngain.
" - } - ] - }, - { - "name": "apply decompression", - "href": "https://webaudio.github.io/web-audio-api/#compression-curve", - "html": "Applying a compression curve to a value means computing\n the value of this sample when passed to a function, and returning\n the computed value. This function MUST respect the following\n characteristics:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let threshold and knee have the\nvalues of threshold and knee, respectively, converted to linear\nunits and sampled at the time of processing of this\nblock (as k-rate parameters).
Calculate the sum of threshold plus knee also sampled at the time\nof processing of this block (as k-rate parameters).
Let knee end threshold have the value of this\nsum converted to linear\nunits.
" - }, - { - "html": "Let ratio have the value of the ratio, sampled at the time\nof processing of this block (as a k-rate parameter).
This function is the identity up to the value of the linear threshold (i.e.,
From the threshold up to the knee end threshold, User-Agents can choose the\ncurve shape. The whole function MUST be monotonically\nincreasing and continuous.
" - }, - { - "html": "This function is linear, based on the ratio, after the threshold and the soft knee (i.e.,
If
Else, return
initialize the AudioNode this, with context and options as arguments.
" - } - ] - }, - { - "name": "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context, options)", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "html": "", - "rationale": "initialize", - "steps": [ - { - "html": "Initialize the AudioNode this, with context and options as arguments.
" - } - ] - }, - { - "name": "MediaStreamAudioSourceNode/MediaStreamAudioSourceNode(context, options)", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "html": "", - "rationale": "if", - "steps": [ - { - "html": "If the mediaStream member of options does not reference a MediaStream that has at least one MediaStreamTrack whose kind attribute has the value \"audio\",\nthrow an InvalidStateError and abort these steps. Else, let\nthis stream be inputStream.
Let tracks be the list of all MediaStreamTracks of inputStream that have a kind of \"audio\".
Sort the elements in tracks based on their id attribute using an ordering on sequences of code unit values.
Initialize the AudioNode this, with context and options as arguments.
" - }, - { - "html": "Set an internal slot [[input track]] on this MediaStreamAudioSourceNode to be the first element of tracks. This is the track used as the input audio for this MediaStreamAudioSourceNode.
If the mediaStreamTrack's kind attribute is not \"audio\", throw an InvalidStateError and abort these steps.
Initialize the AudioNode this, with context and options as arguments.
" - } - ] - }, - { - "name": "construct periodic wave", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwave-real-slot", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let p be a new PeriodicWave object. Let [[real]] and [[imag]] be two internal slots of type Float32Array, and let [[normalize]] be an internal slot.
options according to one of the following cases:",
- "rationale": "if",
- "steps": [
- {
- "html": "If both options.real and options.imag are present",
- "rationale": "if",
- "steps": [
- {
- "html": "If the lengths of options.real and options.imag are different or if either length is less than 2, throw an IndexSizeError and abort this algorithm.
Set [[real]] and [[imag]] to new arrays with the same length as options.real.
Copy all elements from options.real to [[real]] and options.imag to [[imag]].
options.real is present",
- "rationale": "if",
- "steps": [
- {
- "html": "If length of options.real is less than 2, throw an IndexSizeError and abort this algorithm.
Set [[real]] and [[imag]] to arrays with the same length as options.real.
Copy options.real to [[real]] and set [[imag]] to all zeros.
options.imag is present",
- "rationale": "if",
- "steps": [
- {
- "html": "If length of options.imag is less than 2, throw an IndexSizeError and abort this algorithm.
Set [[real]] and [[imag]] to arrays with the same length as options.imag.
Copy options.imag to [[imag]] and set [[real]] to all zeros.
Set [[real]] and [[imag]] to zero-filled arrays of length 2.
Set element at index 1 of [[imag]] to 1.
Set element at index 0 of both [[real]] and [[imag]] to 0. (This sets the DC component to 0.)
Initialize [[normalize]] to the inverse of the disableNormalization attribute of the PeriodicWaveConstraints on the PeriodicWaveOptions.
Return p.
" - } - ] - }, - { - "name": "wave-shaper-curve", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let curve, and curve.
Let
\n" - }, - { - "html": "\nvkf=N−12(x+1)=⌊v⌋=v−k
Then
\n" - } - ] - }, - { - "name": "WaveShaperNode.curve", - "html": "To set the\ny=⎧⎩⎨c0cN−1(1−f)ck+fck+1v<0v≥N−1otherwise
curve attribute, execute these steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let new curve be a Float32Array to be assigned to curve or null.\n.
If new curve is not null and [[curve set]] is true, throw an InvalidStateError and abort these steps.
If new curve is not null, set [[curve set]] to true.
Assign new curve to the curve attribute.
2x\" or \"4x\" means that the following steps MUST be\n performed:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Up-sample the input samples to 2x or 4x the sample-rate of\nthe AudioContext. Thus for each render\nquantum, generate twice (for 2x) or four times (for 4x) samples.
Apply the shaping curve.
" - }, - { - "html": "Down-sample the result back to the sample-rate of the AudioContext. Thus taking the previously processed samples\nprocessed samples, generating a single render quantum worth of\nsamples as the final result.
registerProcessor(name, processorCtor) method is called, perform the following steps. If an\n exception is thrown in any step, abort the remaining\n steps.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If name is an empty string, throw a NotSupportedError.
If name already exists as a key in the node name to processor constructor map, throw a NotSupportedError.
If the result of IsConstructor(argument=processorCtor) is false, throw a TypeError .
Let prototype be the result of Get(O=processorCtor,\nP=\"prototype\").
If the result of Type(argument=prototype) is not Object, throw a TypeError .
Let parameterDescriptorsValue be the\nresult of Get(O=processorCtor, P=\"parameterDescriptors\").
undefined,\nexecute the following steps:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let parameterDescriptorSequence be the result of the conversion from parameterDescriptorsValue to an IDL value of type sequence<AudioParamDescriptor>.
Let paramNames be an empty Array.
" - }, - { - "html": "\n For each descriptor of parameterDescriptorSequence:", - "rationale": "let", - "steps": [ - { - "html": "Let paramName be the value of\nthe member name in descriptor. Throw\na NotSupportedError if paramNames already\ncontains paramName value.
Append paramName to\nthe paramNames array.
" - }, - { - "html": "Let defaultValue be the value of\nthe member defaultValue in descriptor.
Let minValue be the value of\nthe member minValue in descriptor.
Let maxValue be the value of\nthe member maxValue in descriptor.
If the expresstion minValue <= defaultValue <= maxValue is false, throw\nan InvalidStateError.
Append the key-value pair name → processorCtor to node name to processor constructor map of the associated AudioWorkletGlobalScope.
queue a media element task to append the key-value pair name → parameterDescriptorSequence to the node name to parameter descriptor map of the\nassociated BaseAudioContext.
Let constructionData be the processor construction data transferred from the control thread.
" - }, - { - "html": "Let processorName, nodeReference and serializedPort be constructionData’s name, node, and port respectively.
" - }, - { - "html": "Let serializedOptions be constructionData’s options.
" - }, - { - "html": "Let deserializedPort be the result of StructuredDeserialize(serializedPort,\nthe current Realm).
" - }, - { - "html": "Let deserializedOptions be the result of StructuredDeserialize(serializedOptions,\nthe current Realm).
" - }, - { - "html": "Let processorCtor be the result of looking\nup processorName on the AudioWorkletGlobalScope's node name to processor constructor map.
Store nodeReference and deserializedPort to node reference and transferred port of this AudioWorkletGlobalScope's pending processor construction data respectively.
Construct a callback function from processorCtor with\nthe argument of deserializedOptions. If any exceptions are thrown in the callback, queue a task to the control thread to fire an event named processorerror at nodeReference using ErrorEvent.
Empty the pending processor construction data slot.
" - } - ] - }, - { - "name": "AudioWorkletNode()", - "html": "When theAudioWorkletNode constructor\n is invoked with context, nodeName, options:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If nodeName does not exist as a key in the BaseAudioContext’s node name to parameter\ndescriptor map, throw a InvalidStateError exception and abort these steps.
Let node be this value.
" - }, - { - "html": "Initialize the AudioNode node with context and options as\narguments.
" - }, - { - "html": "Configure input, output and output channels of node with options.\nAbort the remaining steps if any exception is\nthrown.
" - }, - { - "html": "Let messageChannel be a new MessageChannel.
Let nodePort be the value of messageChannel’s port1 attribute.
Let processorPortOnThisSide be the value of messageChannel’s port2 attribute.
Let serializedProcessorPort be the result of StructuredSerializeWithTransfer(processorPortOnThisSide,\n« processorPortOnThisSide »).
" - }, - { - "html": "Convert options dictionary to optionsObject.
" - }, - { - "html": "Let serializedOptions be the result of StructuredSerialize(optionsObject).
" - }, - { - "html": "Set node’s port to nodePort.
Let audioParamMap be a new AudioParamMap object.
Let paramName be the value of name member in descriptor.
Let audioParam be a new AudioParam instance with automationRate, defaultValue, minValue, and maxValue having values equal to the values of\ncorresponding members on descriptor.
Append a key-value pair paramName → audioParam to audioParamMap’s\nentries.
" - } - ] - }, - { - "html": "IfparameterData is\npresent on options, perform the\nfollowing steps:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let parameterData be the value of parameterData.
If there exists a map entry on audioParamMap with\nkey paramName, let audioParamInMap be\nsuch entry.
" - }, - { - "html": "Set value property\nof audioParamInMap to paramValue.
Set node’s parameters to audioParamMap.
Queue a control message to invoke the constructor of\nthe corresponding AudioWorkletProcessor with\nthe processor construction data that consists of: nodeName, node, serializedOptions, and serializedProcessorPort.
Let node be an AudioWorkletNode instance that is\ngiven to this algorithm.
If both numberOfInputs and numberOfOutputs are zero,\nthrow a NotSupportedError and abort the remaining steps.
outputChannelCount exists,",
- "rationale": "if",
- "steps": [
- {
- "html": "If any value in outputChannelCount is zero\nor greater than the implementation’s maximum number\nof channels, throw a NotSupportedError and abort\nthe remaining steps.
If the length of outputChannelCount does not\nequal numberOfOutputs,\nthrow an IndexSizeError and abort the remaining\nsteps.
If both numberOfInputs and numberOfOutputs are 1,\nset the channel count of the node output to\nthe one value in outputChannelCount.
Otherwise set the channel count of the kth output\nof the node to the kth element\nof outputChannelCount sequence and return.
outputChannelCount does not exists,",
- "rationale": "if",
- "steps": [
- {
- "html": "If both numberOfInputs and numberOfOutputs are 1,\nset the initial channel count of the node output to 1 and return.
Otherwise set the channel count of each output of the node to 1 and return.
" - } - ] - } - ] - }, - { - "name": "AudioWorkletProcessor()", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let nodeReference be the result of\nlooking up node reference on the pending processor construction data of the\ncurrent AudioWorkletGlobalScope.\nThrow a TypeError exception if the slot is\nempty.
Let processor be the this value.
" - }, - { - "html": "Set processor’s [[node reference]] to nodeReference.
Set processor’s [[callable process]] to true.
Let deserializedPort be the result of\nlooking up transferred port from the pending processor construction data.
" - }, - { - "html": "Set processor’s port to deserializedPort.
Empty the pending processor construction data slot.
" - } - ] - }, - { - "name": "freeze parameter object", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let parameter be the ordered map of the name and parameter values.
" - }, - { - "html": "SetIntegrityLevel(parameter, frozen)
" - } - ] - }, - { - "name": "audioworklet sequence", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "An AudioContext is created.
In the main scope, context.audioWorklet is requested to add a script module.
Since none exists yet, a new AudioWorkletGlobalScope is created in association with the context. This is the global scope in which AudioWorkletProcessor class definitions will be evaluated. (On subsequent calls, this previously created scope will be used.)
The imported script is run in the newly created global scope.
" - }, - { - "html": "As part of running the imported script, an AudioWorkletProcessor is registered under\na key (\"custom\" in the above diagram) within the AudioWorkletGlobalScope.\nThis populates maps both in the global scope and in the AudioContext.
The promise for the addModule() call is resolved.
In the main scope, an AudioWorkletNode is created using\nthe user-specified key along with a\ndictionary of options.
As part of the node’s creation, this key is used to look up the\ncorrect AudioWorkletProcessor subclass for instantiation.
An instance of the AudioWorkletProcessor subclass is\ninstantiated with a structured clone of the same options\ndictionary. This instance is paired with the previously created AudioWorkletNode.
Let QC be a new, empty control message\nqueue.
" - }, - { - "html": "Move all the control messages QA to QC.
" - }, - { - "html": "Move all the control messages QB to QA.
" - }, - { - "html": "Move all the control messages QC to QB.
" - } - ] - }, - { - "name": "initialize rendering loop", - "href": "https://webaudio.github.io/web-audio-api/#rendering-initialization", - "html": "The following step MUST be performed once before the rendering loop starts.", - "rationale": ".algorithm", - "steps": [ - { - "html": "Set the internal slot [[current frame]] of the BaseAudioContext to 0. Also set currentTime to 0.
Let render result be false.
Let Qrendering be an empty control message\nqueue. Atomically swap Qrendering with the current control message queue.
" - }, - { - "html": "While there are messages in Qrendering, execute the\nfollowing steps:", - "rationale": "execute", - "steps": [ - { - "html": "Execute the asynchronous section of the oldest message of Qrendering.
" - }, - { - "html": "Remove the oldest message of Qrendering.
" - } - ] - } - ] - }, - { - "html": "Process theBaseAudioContext's associated task queue.",
- "rationale": "let",
- "steps": [
- {
- "html": "Let task queue be the BaseAudioContext's associated task queue.
Let task count be the number of tasks in the in task queue
" - }, - { - "html": "While task count is not equal to 0, execute the following steps:", - "rationale": "let", - "steps": [ - { - "html": "Let oldest task be the first runnable task in task queue, and remove it from task queue.
" - }, - { - "html": "Set the rendering loop’s currently running task to oldest task.
" - }, - { - "html": "Perform oldest task’s steps.
" - }, - { - "html": "Set the rendering loop currently running task back to null.
Decrement task count
" - }, - { - "html": "Perform a microtask checkpoint.
" - } - ] - } - ] - }, - { - "html": "Process a render quantum.", - "rationale": "if", - "steps": [ - { - "html": "If the [[rendering thread state]] of the BaseAudioContext is not running, return false.
AudioNodes of the BaseAudioContext to be processed.",
- "rationale": "let",
- "steps": [
- {
- "html": "Let ordered node list be an empty list of AudioNodes and AudioListener. It will contain an ordered list of AudioNodes and\nthe AudioListener when this ordering algorithm terminates.
Let nodes be the set of all nodes created by this BaseAudioContext, and still alive.
Add the AudioListener to nodes.
Let cycle breakers be an empty set of DelayNodes. It will\ncontain all the DelayNodes that are part of a cycle.
AudioNode node in nodes:",
- "rationale": "if",
- "steps": [
- {
- "html": "If node is a DelayNode that is part of a cycle, add it\nto cycle breakers and remove it from nodes.
DelayNode delay in cycle breakers:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let delayWriter and delayReader respectively be a DelayWriter and a DelayReader, for delay.\n Add delayWriter and delayReader to nodes. Disconnect delay from all its input and\n outputs.
" - } - ] - }, - { - "html": "If nodes contains cycles, mute all the AudioNodes that are part of this cycle, and remove them from nodes.
Choose an element node in nodes.
" - }, - { - "html": "Visit node.
" - } - ], - "additional": [ - { - "html": "Visiting a node means performing\n the following steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "If node is marked, abort these steps.
" - }, - { - "html": "Mark node.
" - }, - { - "html": "If node is an AudioNode, Visit each AudioNode connected to the input of node.
AudioParam param of node:",
- "rationale": "for",
- "steps": [
- {
- "html": "For each AudioNode param input node connected to param:",
- "rationale": "visit",
- "steps": [
- {
- "html": "Visit param input node
" - } - ] - } - ] - }, - { - "html": "Add node to the beginning of ordered node list.
" - } - ] - } - ] - }, - { - "html": "Reverse the order of ordered node list.
" - } - ] - }, - { - "html": "Compute the value(s) of the AudioListener's AudioParams for this block.
AudioNode, in ordered node list:",
- "rationale": "for",
- "steps": [
- {
- "html": "For each AudioParam of this AudioNode, execute these steps:",
- "rationale": "if",
- "steps": [
- {
- "html": "If this AudioParam has any AudioNode connected to it, sum the buffers made available for reading by\nall AudioNode connected to this AudioParam, down mix the resulting buffer down to a mono\nchannel, and call this buffer the input AudioParam buffer.
Compute the value(s) of this AudioParam for this block.
Queue a control message to set the [[current value]] slot\nof this AudioParam according to § 1.6.3 Computation of Value.
If this AudioNode has any AudioNodes connected to its input, sum the buffers made available for reading by all AudioNodes connected to this AudioNode. The resulting buffer is\ncalled the input buffer. Up or down-mix it to\nmatch if number of input channels of this AudioNode.
If this AudioNode is a source node, compute a block of audio, and make it available for reading.
AudioNode is an AudioWorkletNode, execute these substeps:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let processor be the associated AudioWorkletProcessor instance of AudioWorkletNode.
Let O be the ECMAScript object corresponding to processor.
" - }, - { - "html": "Let processCallback be an uninitialized variable.
" - }, - { - "html": "Let completion be an uninitialized variable.
" - }, - { - "html": "Prepare to run script with the current settings object.
" - }, - { - "html": "Prepare to run a callback with the current settings object.
" - }, - { - "html": "Let getResult be Get(O, \"process\").
" - }, - { - "html": "If getResult is an abrupt completion, set completion to getResult and jump to the step\nlabeled return.
" - }, - { - "html": "Set processCallback to getResult.[[Value]].
" - }, - { - "html": "If ! IsCallable(processCallback) isfalse, then:",
- "rationale": "set",
- "steps": [
- {
- "html": "Set completion to new Completion {[[Type]]: throw, [[Value]]: a newly created TypeError object, [[Target]]: empty}.
" - }, - { - "html": "Jump to the step labeled return.
" - } - ] - }, - { - "html": "Set [[callable process]] to true.
Let args be a Web IDL arguments list consisting of inputs, outputs, and parameters.
Let esArgs be the result of converting args to an ECMAScript arguments list.
" - }, - { - "html": "Let callResult be the Call(processCallback, O, esArgs). This operation computes a block of audio with esArgs.\nUpon a successful function call, a buffer containing copies of\nthe elements of the Float32Arrays passed via the outputs is made available for reading.\nAny Promise resolved within this call will be queued into the\nmicrotask queue in the AudioWorkletGlobalScope.
If callResult is an abrupt completion, set completion to callResult and jump to the\nstep labeled return.
" - }, - { - "html": "Set processor’s active source flag to ToBoolean(callResult.[[Value]]).
" - } - ] - }, - { - "html": "Return: at this point completion will be set to an ECMAScript completion value.", - "rationale": "clean", - "steps": [ - { - "html": "Clean up after running a callback with the current settings object.
" - }, - { - "html": "Clean up after running script with the current settings object.
" - }, - { - "html": "If completion is an abrupt completion:", - "rationale": "set", - "steps": [ - { - "html": "Set [[callable process]] to false.
Set processor’s active source flag to false.
Make a silent output buffer available for reading.
" - }, - { - "html": "Queue a task to the control thread to fire an event named processorerror at the associated AudioWorkletNode using ErrorEvent.
If this AudioNode is a destination node, record the input of this AudioNode.
Else, process the input buffer, and make available for reading the\nresulting buffer.
" - } - ] - }, - { - "html": "Atomically perform the following steps:", - "rationale": "increment", - "steps": [ - { - "html": "Increment [[current frame]] by the render quantum size.
Set currentTime to [[current frame]] divided\nby sampleRate.
Set render result to true.
Perform a microtask checkpoint.
" - }, - { - "html": "Return render result.
" - } - ] - }, - { - "html": "TheAudioContext audioContext performs the following steps on rendering thread in the\n event of an audio system resource error.",
- "rationale": "if",
- "steps": [
- {
- "html": "If the audioContext’s [[rendering thread state]] is running:",
- "rationale": "attempt",
- "steps": [
- {
- "html": "Attempt to release system resources.
" - }, - { - "html": "Set the audioContext’s [[rendering thread state]] to suspended.
Fire an event named error at audioContext.
Set the audioContext’s [[suspended by user]] to false.
Set the audioContext’s [[control thread state]] to suspended.
Set the audioContext’s state attribute to\n\"suspended\".
Fire an event named statechange at the audioContext.
Abort these steps.
" - } - ] - }, - { - "html": "If the audioContext’s[[rendering thread state]] is suspended:",
- "rationale": "queue",
- "steps": [
- {
- "html": "Queue a media element taskto execute the following steps:",
- "rationale": "fire",
- "steps": [
- {
- "html": "Fire an event named error at audioContext.
AudioContext audioContext performs the following steps on rendering thread in the\n event of an audio system resource error.",
- "rationale": "reject",
- "steps": [
- {
- "html": "Reject all the promises of [[pending promises]] with InvalidStateError, for each AudioContext and OfflineAudioContext whose relevant global object is the same as\nthe document’s associated Window.
Stop all decoding threads.
Queue a control message to close() the AudioContext or OfflineAudioContext.
AudioNode, an implementation\n MUST:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Compute computedNumberOfChannels.
" - }, - { - "html": "For each connection to the input:", - "rationale": "up-mix", - "steps": [ - { - "html": "up-mix or down-mix the connection to computedNumberOfChannels according to the ChannelInterpretation value given by the node’s channelInterpretation attribute.
Mix it together with all of the other mixed streams (from other\nconnections). This is a straight-forward summing together of each of\nthe corresponding channels that have been up-mixed or down-mixed in step 1 for each connection.
" - } - ] - } - ] - }, - { - "name": "equalpower panning", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "For each sample to be computed by thisAudioNode:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let azimuth be the value computed in the azimuth and elevation section.
" - }, - { - "html": "The azimuth value is first contained to be within\nthe range [-90, 90] according to:
\n" - }, - { - "html": "// First, clamp azimuth to allowed range of [-180, 180]. \nazimuth= max( - 180 , azimuth); \nazimuth= min( 180 , azimuth); \n\n// Then wrap to range [-90, 90]. \nif ( azimuth< - 90 ) \n azimuth= - 180 - azimuth; \nelse if ( azimuth> 90 ) \n azimuth= 180 - azimuth; \n
A normalized value x is calculated from azimuth for a mono input as:
\nx\n= ( azimuth+ 90 ) / 180 ; \n
Or for a stereo input as:
\n" - }, - { - "html": "if ( azimuth<= 0 ) { // -90 -> 0 \n// Transform the azimuth value from [-90, 0] degrees into the range [-90, 90]. \n x= ( azimuth+ 90 ) / 90 ; \n} else { // 0 -> 90 \n// Transform the azimuth value from [0, 90] degrees into the range [-90, 90]. \n x= azimuth/ 90 ; \n} \n
Left and right gain values are calculated as:
\ngainL" - }, - { - "html": "= cos( x* Math. PI/ 2 ); \ngainR= sin( x* Math. PI/ 2 ); \n
For mono input, the stereo output is calculated as:
\noutputL\n= input* gainL; \noutputR= input* gainR; \n
Else for stereo input, the output is calculated as:
\n" - }, - { - "html": "if ( azimuth<= 0 ) { \n outputL= inputL+ inputR* gainL; \n outputR= inputR* gainR; \n} else { \n outputL= inputL* gainL; \n outputR= inputR+ inputL* gainR; \n} \n
Apply the distance gain and cone gain where the\ncomputation of the distance is described in Distance\nEffects and the cone gain is described in Sound Cones:
\n" - } - ] - } - ] - }, - { - "name": "pan a StereoPannerNode", - "html": "For alet distance= distance(); \nlet distanceGain= distanceModel( distance); \nlet totalGain= coneGain() * distanceGain(); \noutputL= totalGain* outputL; \noutputR= totalGain* outputR; \n
StereoPannerNode, the following algorithm\n MUST be implemented.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "For each sample to be computed by this AudioNode",
- "rationale": "let",
- "steps": [
- {
- "html": "Let pan be the computedValue of the pan AudioParam of this StereoPannerNode.
Clamp pan to [-1, 1].
\npan" - }, - { - "html": "= max( - 1 , pan); \npan= min( 1 , pan); \n
Calculate x by normalizing pan value to\n[0, 1]. For mono input:
\nx\n= ( pan+ 1 ) / 2 ; \n
For stereo input:
\n" - }, - { - "html": "if ( pan<= 0 ) \n x= pan+ 1 ; \nelse \n x= pan; \n
Left and right gain values are calculated as:
\ngainL" - }, - { - "html": "= cos( x* Math. PI/ 2 ); \ngainR= sin( x* Math. PI/ 2 ); \n
For mono input, the stereo output is calculated as:
\noutputL\n= input* gainL; \noutputR= input* gainR; \n
Else for stereo input, the output is calculated as:
\n" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/ed/dfns/webaudio.json b/ed/dfns/webaudio.json deleted file mode 100644 index 9d355ec72784..000000000000 --- a/ed/dfns/webaudio.json +++ /dev/null @@ -1,16737 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://webaudio.github.io/web-audio-api/" - }, - "dfns": [ - { - "id": "inputs", - "href": "https://webaudio.github.io/web-audio-api/#inputs", - "linkingText": [ - "inputs" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "ModularRouting", - "href": "https://webaudio.github.io/web-audio-api/#ModularRouting", - "title": "Modular Routing" - }, - "definedIn": "prose" - }, - { - "id": "outputs", - "href": "https://webaudio.github.io/web-audio-api/#outputs", - "linkingText": [ - "outputs" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "source-node", - "href": "https://webaudio.github.io/web-audio-api/#source-node", - "linkingText": [ - "source node" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "destination-node", - "href": "https://webaudio.github.io/web-audio-api/#destination-node", - "linkingText": [ - "destination node" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "BaseAudioContext", - "href": "https://webaudio.github.io/web-audio-api/#BaseAudioContext", - "linkingText": [ - "BaseAudioContext" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://webaudio.github.io/web-audio-api/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "heading" - }, - { - "id": "dom-baseaudiocontext-pending-promises-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-pending-promises-slot", - "linkingText": [ - "[[pending promises]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-rendering-thread-state-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-rendering-thread-state-slot", - "linkingText": [ - "[[rendering thread state]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-control-thread-state-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-control-thread-state-slot", - "linkingText": [ - "[[control thread state]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-render-quantum-size-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-render-quantum-size-slot", - "linkingText": [ - "[[render quantum size]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-audiocontextstate", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-audiocontextstate", - "linkingText": [ - "AudioContextState" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontextstate-suspended", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextstate-suspended", - "linkingText": [ - "\"suspended\"", - "suspended" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextState" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontextstate-running", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextstate-running", - "linkingText": [ - "\"running\"", - "running" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextState" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontextstate-closed", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextstate-closed", - "linkingText": [ - "\"closed\"", - "closed" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextState" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "enumdef-audiocontextrendersizecategory", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-audiocontextrendersizecategory", - "linkingText": [ - "AudioContextRenderSizeCategory" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontextrendersizecategory-default", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextrendersizecategory-default", - "linkingText": [ - "\"default\"", - "default" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextRenderSizeCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontextrendersizecategory-hardware", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextrendersizecategory-hardware", - "linkingText": [ - "\"hardware\"", - "hardware" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextRenderSizeCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-decodeerrorcallback-error", - "href": "https://webaudio.github.io/web-audio-api/#dom-decodeerrorcallback-error", - "linkingText": [ - "error" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DecodeErrorCallback" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-decodesuccesscallback-decodeddata", - "href": "https://webaudio.github.io/web-audio-api/#dom-decodesuccesscallback-decodeddata", - "linkingText": [ - "decodedData" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DecodeSuccessCallback" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", - "linkingText": [ - "feedforward" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createIIRFilter(feedforward, feedback)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", - "linkingText": [ - "feedback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createIIRFilter(feedforward, feedback)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", - "linkingText": [ - "real" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave(real, imag, constraints)", - "BaseAudioContext/createPeriodicWave(real, imag)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", - "linkingText": [ - "imag" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave(real, imag, constraints)", - "BaseAudioContext/createPeriodicWave(real, imag)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", - "linkingText": [ - "constraints" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave(real, imag, constraints)", - "BaseAudioContext/createPeriodicWave(real, imag)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "linkingText": [ - "audioData" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData(audioData, successCallback, errorCallback)", - "BaseAudioContext/decodeAudioData(audioData, successCallback)", - "BaseAudioContext/decodeAudioData(audioData)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", - "linkingText": [ - "successCallback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData(audioData, successCallback, errorCallback)", - "BaseAudioContext/decodeAudioData(audioData, successCallback)", - "BaseAudioContext/decodeAudioData(audioData)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", - "linkingText": [ - "errorCallback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData(audioData, successCallback, errorCallback)", - "BaseAudioContext/decodeAudioData(audioData, successCallback)", - "BaseAudioContext/decodeAudioData(audioData)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-audioworklet", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-audioworklet", - "linkingText": [ - "audioWorklet" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://webaudio.github.io/web-audio-api/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-currenttime", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-currenttime", - "linkingText": [ - "currentTime" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-destination", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-destination", - "linkingText": [ - "destination" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-listener", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-listener", - "linkingText": [ - "listener" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-onstatechange", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-onstatechange", - "linkingText": [ - "onstatechange" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-baseaudiocontext-statechange", - "href": "https://webaudio.github.io/web-audio-api/#eventdef-baseaudiocontext-statechange", - "linkingText": [ - "statechange" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-samplerate", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "--nyquist-frequency", - "href": "https://webaudio.github.io/web-audio-api/#--nyquist-frequency", - "linkingText": [ - "Nyquist frequency" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "/" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-state", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-state", - "linkingText": [ - "state" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-renderquantumsize", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-renderquantumsize", - "linkingText": [ - "renderQuantumSize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createanalyser", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createanalyser", - "linkingText": [ - "createAnalyser()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://webaudio.github.io/web-audio-api/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createbiquadfilter", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbiquadfilter", - "linkingText": [ - "createBiquadFilter()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createbuffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer", - "linkingText": [ - "createBuffer(numberOfChannels, length, sampleRate)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createbuffer-numberofchannels", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createbuffer-length", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createbuffer-samplerate", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createbuffersource", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffersource", - "linkingText": [ - "createBufferSource()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createchannelmerger", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createchannelmerger", - "linkingText": [ - "createChannelMerger(numberOfInputs)", - "createChannelMerger()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "linkingText": [ - "numberOfInputs" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createChannelMerger(numberOfInputs)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createchannelsplitter", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createchannelsplitter", - "linkingText": [ - "createChannelSplitter(numberOfOutputs)", - "createChannelSplitter()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "linkingText": [ - "numberOfOutputs" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createChannelSplitter(numberOfOutputs)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createconstantsource", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createconstantsource", - "linkingText": [ - "createConstantSource()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createconvolver", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createconvolver", - "linkingText": [ - "createConvolver()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createdelay", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createdelay", - "linkingText": [ - "createDelay(maxDelayTime)", - "createDelay()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "linkingText": [ - "maxDelayTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createDelay(maxDelayTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createdynamicscompressor", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createdynamicscompressor", - "linkingText": [ - "createDynamicsCompressor()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-creategain", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-creategain", - "linkingText": [ - "createGain()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createiirfilter", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createiirfilter", - "linkingText": [ - "createIIRFilter(feedforward, feedback)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createiirfilter-feedforward", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createiirfilter-feedforward", - "linkingText": [ - "feedforward" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createIIRFilter()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createiirfilter-feedback", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createiirfilter-feedback", - "linkingText": [ - "feedback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createIIRFilter()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createoscillator", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createoscillator", - "linkingText": [ - "createOscillator()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createpanner", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createpanner", - "linkingText": [ - "createPanner()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave", - "linkingText": [ - "createPeriodicWave(real, imag, constraints)", - "createPeriodicWave(real, imag)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-real", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-real", - "linkingText": [ - "real" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-imag", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-imag", - "linkingText": [ - "imag" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-constraints", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-constraints", - "linkingText": [ - "constraints" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createscriptprocessor", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createscriptprocessor", - "linkingText": [ - "createScriptProcessor(bufferSize, numberOfInputChannels, numberOfOutputChannels)", - "createScriptProcessor(bufferSize, numberOfInputChannels)", - "createScriptProcessor(bufferSize)", - "createScriptProcessor()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "linkingText": [ - "bufferSize" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createScriptProcessor(bufferSize, numberOfInputChannels, numberOfOutputChannels)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "linkingText": [ - "numberOfInputChannels" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createScriptProcessor(bufferSize, numberOfInputChannels, numberOfOutputChannels)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "linkingText": [ - "numberOfOutputChannels" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createScriptProcessor(bufferSize, numberOfInputChannels, numberOfOutputChannels)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createstereopanner", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createstereopanner", - "linkingText": [ - "createStereoPanner()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createwaveshaper", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createwaveshaper", - "linkingText": [ - "createWaveShaper()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata", - "linkingText": [ - "decodeAudioData(audioData, successCallback, errorCallback)", - "decodeAudioData(audioData, successCallback)", - "decodeAudioData(audioData)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-decoding-thread", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decoding-thread", - "linkingText": [ - "decoding thread" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-audiodata", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-audiodata", - "linkingText": [ - "audioData" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-successcallback", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-successcallback", - "linkingText": [ - "successCallback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-errorcallback", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-errorcallback", - "linkingText": [ - "errorCallback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "callback-decodesuccesscallback-parameters", - "href": "https://webaudio.github.io/web-audio-api/#callback-decodesuccesscallback-parameters", - "linkingText": [ - "DecodeSuccessCallback", - "DecodeSuccessCallback()" - ], - "localLinkingText": [], - "type": "callback", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "callback-decodesuccesscallback-parameters", - "href": "https://webaudio.github.io/web-audio-api/#callback-decodesuccesscallback-parameters", - "title": "Callback DecodeSuccessCallback() Parameters", - "number": "1.1.3" - }, - "definedIn": "heading" - }, - { - "id": "callback-decodeerrorcallback-parameters", - "href": "https://webaudio.github.io/web-audio-api/#callback-decodeerrorcallback-parameters", - "linkingText": [ - "DecodeErrorCallback", - "DecodeErrorCallback()" - ], - "localLinkingText": [], - "type": "callback", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "callback-decodeerrorcallback-parameters", - "href": "https://webaudio.github.io/web-audio-api/#callback-decodeerrorcallback-parameters", - "title": "Callback DecodeErrorCallback() Parameters", - "number": "1.1.4" - }, - "definedIn": "heading" - }, - { - "id": "acquiring", - "href": "https://webaudio.github.io/web-audio-api/#acquiring", - "linkingText": [ - "acquiring system resources" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "system-resources-associated-with-baseaudiocontext-subclasses", - "href": "https://webaudio.github.io/web-audio-api/#system-resources-associated-with-baseaudiocontext-subclasses", - "title": "System Resources Associated with BaseAudioContext Subclasses", - "number": "1.1.7" - }, - "definedIn": "prose" - }, - { - "id": "releasing", - "href": "https://webaudio.github.io/web-audio-api/#releasing", - "linkingText": [ - "release system resources" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "AudioContext", - "href": "https://webaudio.github.io/web-audio-api/#AudioContext", - "linkingText": [ - "AudioContext" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://webaudio.github.io/web-audio-api/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "heading" - }, - { - "id": "enumdef-audiocontextlatencycategory", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-audiocontextlatencycategory", - "linkingText": [ - "AudioContextLatencyCategory" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontextlatencycategory-balanced", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextlatencycategory-balanced", - "linkingText": [ - "\"balanced\"", - "balanced" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextLatencyCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontextlatencycategory-interactive", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextlatencycategory-interactive", - "linkingText": [ - "\"interactive\"", - "interactive" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextLatencyCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontextlatencycategory-playback", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextlatencycategory-playback", - "linkingText": [ - "\"playback\"", - "playback" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextLatencyCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "enumdef-audiosinktype", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-audiosinktype", - "linkingText": [ - "AudioSinkType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiosinktype-none", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiosinktype-none", - "linkingText": [ - "\"none\"", - "none" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioSinkType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-setsinkid", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-setsinkid", - "linkingText": [ - "setSinkId(sinkId)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontext-setsinkid-sinkid-sinkid", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-setsinkid-sinkid-sinkid", - "linkingText": [ - "sinkId" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/setSinkId(sinkId)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", - "linkingText": [ - "mediaElement" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaElementSource(mediaElement)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontext-createmediastreamsource-mediastream-mediastream", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamsource-mediastream-mediastream", - "linkingText": [ - "mediaStream" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaStreamSource(mediaStream)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", - "linkingText": [ - "mediaStreamTrack" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaStreamTrackSource(mediaStreamTrack)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "allowed-to-start", - "href": "https://webaudio.github.io/web-audio-api/#allowed-to-start", - "linkingText": [ - "allowed to start" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiocontext-suspended-by-user-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-suspended-by-user-slot", - "linkingText": [ - "[[suspended by user]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-sink-id-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-sink-id-slot", - "linkingText": [ - "[[sink ID]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-pending-resume-promises-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-pending-resume-promises-slot", - "linkingText": [ - "[[pending resume promises]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-audiocontext", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-audiocontext", - "linkingText": [ - "AudioContext(contextOptions)", - "constructor(contextOptions)", - "AudioContext()", - "constructor()" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AudioContext-constructors", - "title": "Constructors", - "number": "1.2.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-constructor-contextoptions-contextoptions", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-constructor-contextoptions-contextoptions", - "linkingText": [ - "contextOptions" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/constructor(contextOptions)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-baselatency", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-baselatency", - "linkingText": [ - "baseLatency" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-outputlatency", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-outputlatency", - "linkingText": [ - "outputLatency" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-rendercapacity", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-rendercapacity", - "linkingText": [ - "renderCapacity" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-sinkid", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-sinkid", - "linkingText": [ - "sinkId" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-onsinkchange", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-onsinkchange", - "linkingText": [ - "onsinkchange" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audiocontext-sinkchange", - "href": "https://webaudio.github.io/web-audio-api/#eventdef-audiocontext-sinkchange", - "linkingText": [ - "sinkchange" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiocontext-onerror", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-onerror", - "linkingText": [ - "onerror" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audiocontext-error", - "href": "https://webaudio.github.io/web-audio-api/#eventdef-audiocontext-error", - "linkingText": [ - "error" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiocontext-close", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-close", - "linkingText": [ - "close()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediaelementsource", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediaelementsource", - "linkingText": [ - "createMediaElementSource(mediaElement)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediaelementsource-mediaelement", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediaelementsource-mediaelement", - "linkingText": [ - "mediaElement" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaElementSource()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-createmediastreamdestination", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamdestination", - "linkingText": [ - "createMediaStreamDestination()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediastreamsource", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamsource", - "linkingText": [ - "createMediaStreamSource(mediaStream)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediastreamsource-mediastream", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamsource-mediastream", - "linkingText": [ - "mediaStream" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaStreamSource()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-createmediastreamtracksource", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamtracksource", - "linkingText": [ - "createMediaStreamTrackSource(mediaStreamTrack)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediastreamtracksource-mediastreamtrack", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack", - "linkingText": [ - "mediaStreamTrack" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaStreamTrackSource()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-getoutputtimestamp", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-getoutputtimestamp", - "linkingText": [ - "getOutputTimestamp()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-resume", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-resume", - "linkingText": [ - "resume()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-suspend", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-suspend", - "linkingText": [ - "suspend()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-setsinkid-domstring-or-audiosinkoptions-sinkid", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontext-setsinkid-domstring-or-audiosinkoptions-sinkid", - "linkingText": [ - "setSinkId((DOMString or AudioSinkOptions) sinkId)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioContextOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioContextOptions", - "linkingText": [ - "AudioContextOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContextOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioContextOptions", - "title": "AudioContextOptions", - "number": "1.2.5" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiocontextoptions-latencyhint", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-latencyhint", - "linkingText": [ - "latencyHint" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiocontextoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audiocontextoptions-members", - "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontextoptions-samplerate", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontextoptions-sinkid", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-sinkid", - "linkingText": [ - "sinkId" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontextoptions-rendersizehint", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-rendersizehint", - "linkingText": [ - "renderSizeHint" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioSinkOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioSinkOptions", - "linkingText": [ - "AudioSinkOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioSinkOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioSinkOptions", - "title": "AudioSinkOptions", - "number": "1.2.6" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiosinkoptions-type", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiosinkoptions-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioSinkOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiosinkoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audiosinkoptions-members", - "title": "Dictionary AudioSinkOptions Members", - "number": "1.2.6.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioSinkInfo", - "href": "https://webaudio.github.io/web-audio-api/#AudioSinkInfo", - "linkingText": [ - "AudioSinkInfo" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioSinkInfo", - "href": "https://webaudio.github.io/web-audio-api/#AudioSinkInfo", - "title": "AudioSinkInfo", - "number": "1.2.7" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiosinkinfo-type", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiosinkinfo-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioSinkInfo" - ], - "access": "public", - "informative": false, - "heading": { - "id": "audiosinkinfo-attributes", - "href": "https://webaudio.github.io/web-audio-api/#audiosinkinfo-attributes", - "title": "Attributes", - "number": "1.2.7.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioTimestamp", - "href": "https://webaudio.github.io/web-audio-api/#AudioTimestamp", - "linkingText": [ - "AudioTimestamp" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioTimestamp", - "href": "https://webaudio.github.io/web-audio-api/#AudioTimestamp", - "title": "AudioTimestamp", - "number": "1.2.8" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiotimestamp-contexttime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiotimestamp-contexttime", - "linkingText": [ - "contextTime" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioTimestamp" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiotimestamp-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audiotimestamp-members", - "title": "Dictionary AudioTimestamp Members", - "number": "1.2.8.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiotimestamp-performancetime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiotimestamp-performancetime", - "linkingText": [ - "performanceTime" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioTimestamp" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioRenderCapacity", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacity", - "linkingText": [ - "audiorenderCapacity" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacity", - "title": "AudioRenderCapacity", - "number": "1.2.9" - }, - "definedIn": "heading" - }, - { - "id": "audiorendercapacity", - "href": "https://webaudio.github.io/web-audio-api/#audiorendercapacity", - "linkingText": [ - "AudioRenderCapacity" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacity-start-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacity-start-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioRenderCapacity/start(options)", - "AudioRenderCapacity/start()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacity-onupdate", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacity-onupdate", - "linkingText": [ - "onupdate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacity-attributes", - "title": "Attributes", - "number": "1.2.9.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audiorendercapacity-update", - "href": "https://webaudio.github.io/web-audio-api/#eventdef-audiorendercapacity-update", - "linkingText": [ - "update" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiorendercapacity-start", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacity-start", - "linkingText": [ - "start(options)", - "start()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacity-methods", - "title": "Methods", - "number": "1.2.9.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacity-stop", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacity-stop", - "linkingText": [ - "stop()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioRenderCapacityOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityOptions", - "linkingText": [ - "audiorenderCapacityoptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityOptions", - "title": "AudioRenderCapacityOptions", - "number": "1.2.10" - }, - "definedIn": "heading" - }, - { - "id": "dictdef-audiorendercapacityoptions", - "href": "https://webaudio.github.io/web-audio-api/#dictdef-audiorendercapacityoptions", - "linkingText": [ - "AudioRenderCapacityOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityoptions-updateinterval", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityoptions-updateinterval", - "linkingText": [ - "updateInterval" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-AudioRenderCapacityOptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-AudioRenderCapacityOptions-members", - "title": "Dictionary AudioRenderCapacityOptions Members", - "number": "1.2.10.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioRenderCapacityEvent", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityEvent", - "linkingText": [ - "audiorenderCapacityevent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "heading" - }, - { - "id": "audiorendercapacityevent", - "href": "https://webaudio.github.io/web-audio-api/#audiorendercapacityevent", - "linkingText": [ - "AudioRenderCapacityEvent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-audiorendercapacityevent", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-audiorendercapacityevent", - "linkingText": [ - "AudioRenderCapacityEvent(type, eventInitDict)", - "constructor(type, eventInitDict)", - "AudioRenderCapacityEvent(type)", - "constructor(type)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-type", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type, eventInitDict)", - "AudioRenderCapacityEvent/constructor(type, eventInitDict)", - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type)", - "AudioRenderCapacityEvent/constructor(type)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-eventinitdict", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-eventinitdict", - "linkingText": [ - "eventInitDict" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type, eventInitDict)", - "AudioRenderCapacityEvent/constructor(type, eventInitDict)", - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type)", - "AudioRenderCapacityEvent/constructor(type)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dictdef-audiorendercapacityeventinit", - "href": "https://webaudio.github.io/web-audio-api/#dictdef-audiorendercapacityeventinit", - "linkingText": [ - "AudioRenderCapacityEventInit" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-timestamp", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityeventinit-timestamp", - "linkingText": [ - "timestamp" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-averageload", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityeventinit-averageload", - "linkingText": [ - "averageLoad" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-peakload", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityeventinit-peakload", - "linkingText": [ - "peakLoad" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-underrunratio", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityeventinit-underrunratio", - "linkingText": [ - "underrunRatio" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-timestamp", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-timestamp", - "linkingText": [ - "timestamp" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityEvent-attributes", - "title": "Attributes", - "number": "1.2.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacityevent-averageload", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-averageload", - "linkingText": [ - "averageLoad" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacityevent-peakload", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-peakload", - "linkingText": [ - "peakLoad" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacityevent-underrunratio", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-underrunratio", - "linkingText": [ - "underrunRatio" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "OfflineAudioContext", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext", - "linkingText": [ - "OfflineAudioContext" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext", - "title": "The OfflineAudioContext Interface", - "number": "1.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-offlineaudiocontext-suspend-suspendtime-suspendtime", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-suspend-suspendtime-suspendtime", - "linkingText": [ - "suspendTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/suspend(suspendTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-offlineaudiocontext-offlineaudiocontext", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-offlineaudiocontext", - "linkingText": [ - "OfflineAudioContext(contextOptions)", - "constructor(contextOptions)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-constructors", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext-constructors", - "title": "Constructors", - "number": "1.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "linkingText": [ - "contextOptions" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/constructor(contextOptions)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "linkingText": [ - "OfflineAudioContext(numberOfChannels, length, sampleRate)", - "constructor(numberOfChannels, length, sampleRate)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/constructor(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/constructor(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/constructor(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-offlineaudiocontext-length", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-attributes", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext-attributes", - "title": "Attributes", - "number": "1.3.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-oncomplete", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-oncomplete", - "linkingText": [ - "oncomplete" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-offlineaudiocontext-complete", - "href": "https://webaudio.github.io/web-audio-api/#eventdef-offlineaudiocontext-complete", - "linkingText": [ - "complete" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-offlineaudiocontext-startrendering", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-startrendering", - "linkingText": [ - "startRendering()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-methods", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext-methods", - "title": "Methods", - "number": "1.3.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-rendering-started-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-rendering-started-slot", - "linkingText": [ - "[[rendering started]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-offlineaudiocontext-rendered-buffer-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-rendered-buffer-slot", - "linkingText": [ - "[[rendered buffer]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "begin-offline-rendering", - "href": "https://webaudio.github.io/web-audio-api/#begin-offline-rendering", - "linkingText": [ - "begin offline rendering" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-offlineaudiocontext-resume", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-resume", - "linkingText": [ - "resume()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-suspend", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-suspend", - "linkingText": [ - "suspend(suspendTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-suspend-suspendtime", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-suspend-suspendtime", - "linkingText": [ - "suspendTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/suspend()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "OfflineAudioContextOptions", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContextOptions", - "linkingText": [ - "OfflineAudioContextOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContextOptions", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContextOptions", - "title": "OfflineAudioContextOptions", - "number": "1.3.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-offlineaudiocontextoptions-length", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontextoptions-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-offlineaudiocontextoptions-members", - "title": "Dictionary OfflineAudioContextOptions Members", - "number": "1.3.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontextoptions-numberofchannels", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontextoptions-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontextoptions-samplerate", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontextoptions-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontextoptions-rendersizehint", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontextoptions-rendersizehint", - "linkingText": [ - "renderSizeHint" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "OfflineAudioCompletionEvent", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEvent", - "linkingText": [ - "OfflineAudioCompletionEvent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioCompletionEvent", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEvent", - "title": "The OfflineAudioCompletionEvent Interface", - "number": "1.3.5" - }, - "definedIn": "heading" - }, - { - "id": "dom-offlineaudiocompletionevent-offlineaudiocompletionevent", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent", - "linkingText": [ - "OfflineAudioCompletionEvent(type, eventInitDict)", - "constructor(type, eventInitDict)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "OfflineAudioCompletionEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioCompletionEvent/OfflineAudioCompletionEvent(type, eventInitDict)", - "OfflineAudioCompletionEvent/constructor(type, eventInitDict)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", - "linkingText": [ - "eventInitDict" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioCompletionEvent/OfflineAudioCompletionEvent(type, eventInitDict)", - "OfflineAudioCompletionEvent/constructor(type, eventInitDict)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-offlineaudiocompletionevent-renderedbuffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletionevent-renderedbuffer", - "linkingText": [ - "renderedBuffer" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OfflineAudioCompletionEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioCompletionEvent-attributes", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEvent-attributes", - "title": "Attributes", - "number": "1.3.5.1" - }, - "definedIn": "dt" - }, - { - "id": "OfflineAudioCompletionEventInit", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEventInit", - "linkingText": [ - "OfflineAudioCompletionEventInit" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioCompletionEventInit", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEventInit", - "title": "OfflineAudioCompletionEventInit", - "number": "1.3.5.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-offlineaudiocompletioneventinit-renderedbuffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletioneventinit-renderedbuffer", - "linkingText": [ - "renderedBuffer" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioCompletionEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-offlineaudiocompletioneventinit-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-offlineaudiocompletioneventinit-members", - "title": "Dictionary OfflineAudioCompletionEventInit Members", - "number": "1.3.5.2.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioBuffer", - "href": "https://webaudio.github.io/web-audio-api/#AudioBuffer", - "linkingText": [ - "AudioBuffer" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://webaudio.github.io/web-audio-api/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiobuffer-number-of-channels-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-number-of-channels-slot", - "linkingText": [ - "[[number of channels]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-length-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-length-slot", - "linkingText": [ - "[[length]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-sample-rate-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-sample-rate-slot", - "linkingText": [ - "[[sample rate]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-internal-data-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-internal-data-slot", - "linkingText": [ - "[[internal data]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-audiobuffer-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-audiobuffer-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/AudioBuffer(options)", - "AudioBuffer/constructor(options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-getchanneldata-channel-channel", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-getchanneldata-channel-channel", - "linkingText": [ - "channel" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/getChannelData(channel)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", - "linkingText": [ - "destination" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel(destination, channelNumber, bufferOffset)", - "AudioBuffer/copyFromChannel(destination, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", - "linkingText": [ - "channelNumber" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel(destination, channelNumber, bufferOffset)", - "AudioBuffer/copyFromChannel(destination, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", - "linkingText": [ - "bufferOffset" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel(destination, channelNumber, bufferOffset)", - "AudioBuffer/copyFromChannel(destination, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", - "linkingText": [ - "source" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel(source, channelNumber, bufferOffset)", - "AudioBuffer/copyToChannel(source, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", - "linkingText": [ - "channelNumber" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel(source, channelNumber, bufferOffset)", - "AudioBuffer/copyToChannel(source, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", - "linkingText": [ - "bufferOffset" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel(source, channelNumber, bufferOffset)", - "AudioBuffer/copyToChannel(source, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-audiobuffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-audiobuffer", - "linkingText": [ - "AudioBuffer(options)", - "constructor(options)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AudioBuffer-constructors", - "title": "Constructors", - "number": "1.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-duration", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-duration", - "linkingText": [ - "duration" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioBuffer-attributes", - "title": "Attributes", - "number": "1.4.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-length", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-numberofchannels", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-samplerate", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-copyfromchannel", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel", - "linkingText": [ - "copyFromChannel(destination, channelNumber, bufferOffset)", - "copyFromChannel(destination, channelNumber)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-copyfromchannel-destination", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-destination", - "linkingText": [ - "destination" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-copyfromchannel-channelnumber", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-channelnumber", - "linkingText": [ - "channelNumber" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-copyfromchannel-bufferoffset", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-bufferoffset", - "linkingText": [ - "bufferOffset" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-copytochannel", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel", - "linkingText": [ - "copyToChannel(source, channelNumber, bufferOffset)", - "copyToChannel(source, channelNumber)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-copytochannel-source", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-source", - "linkingText": [ - "source" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-copytochannel-channelnumber", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-channelnumber", - "linkingText": [ - "channelNumber" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-copytochannel-bufferoffset", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-bufferoffset", - "linkingText": [ - "bufferOffset" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-getchanneldata", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-getchanneldata", - "linkingText": [ - "getChannelData(channel)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-getchanneldata-channel", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-getchanneldata-channel", - "linkingText": [ - "channel" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/getChannelData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "acquire-the-content", - "href": "https://webaudio.github.io/web-audio-api/#acquire-the-content", - "linkingText": [ - "acquire the content", - "acquire the contents of an AudioBuffer" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "AudioBufferOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferOptions", - "linkingText": [ - "AudioBufferOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferOptions", - "title": "AudioBufferOptions", - "number": "1.4.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiobufferoptions-length", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobufferoptions-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobufferoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audiobufferoptions-members", - "title": "Dictionary AudioBufferOptions Members", - "number": "1.4.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobufferoptions-numberofchannels", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobufferoptions-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobufferoptions-samplerate", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobufferoptions-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode", - "linkingText": [ - "AudioNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode", - "title": "The AudioNode Interface", - "number": "1.5" - }, - "definedIn": "heading" - }, - { - "id": "connection", - "href": "https://webaudio.github.io/web-audio-api/#connection", - "linkingText": [ - "connection" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "input", - "href": "https://webaudio.github.io/web-audio-api/#input", - "linkingText": [ - "input" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "factory-method", - "href": "https://webaudio.github.io/web-audio-api/#factory-method", - "linkingText": [ - "factory method" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "prose" - }, - { - "id": "associated", - "href": "https://webaudio.github.io/web-audio-api/#associated", - "linkingText": [ - "associated BaseAudioContext" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "audionode-constructor-init", - "href": "https://webaudio.github.io/web-audio-api/#audionode-constructor-init", - "linkingText": [ - "Initializing" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "associated-interface", - "href": "https://webaudio.github.io/web-audio-api/#associated-interface", - "linkingText": [ - "associated interface" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "associated-option-object", - "href": "https://webaudio.github.io/web-audio-api/#associated-option-object", - "linkingText": [ - "associated option object" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-channelcountmode", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-channelcountmode", - "linkingText": [ - "ChannelCountMode" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "computednumberofchannels", - "href": "https://webaudio.github.io/web-audio-api/#computednumberofchannels", - "linkingText": [ - "computedNumberOfChannels" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-channelcountmode-max", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelcountmode-max", - "linkingText": [ - "\"max\"", - "max" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ChannelCountMode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-channelcountmode-clamped-max", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelcountmode-clamped-max", - "linkingText": [ - "\"clamped-max\"", - "clamped-max" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ChannelCountMode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-channelcountmode-explicit", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelcountmode-explicit", - "linkingText": [ - "\"explicit\"", - "explicit" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ChannelCountMode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "enumdef-channelinterpretation", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-channelinterpretation", - "linkingText": [ - "ChannelInterpretation" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-channelinterpretation-speakers", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelinterpretation-speakers", - "linkingText": [ - "\"speakers\"", - "speakers" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ChannelInterpretation" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-channelinterpretation-discrete", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelinterpretation-discrete", - "linkingText": [ - "\"discrete\"", - "discrete" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ChannelInterpretation" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "tail-time", - "href": "https://webaudio.github.io/web-audio-api/#tail-time", - "linkingText": [ - "tail-time" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-tail", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode-tail", - "title": "AudioNode Tail-Time", - "number": "1.5.2" - }, - "definedIn": "prose" - }, - { - "id": "actively-processing", - "href": "https://webaudio.github.io/web-audio-api/#actively-processing", - "linkingText": [ - "actively processing" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-actively-processing", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode-actively-processing", - "title": "AudioNode Lifetime", - "number": "1.5.3" - }, - "definedIn": "prose" - }, - { - "id": "dom-audionode-channelcount", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-channelcount", - "linkingText": [ - "channelCount" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "dt" - }, - { - "id": "audionode-channelcount-constraints", - "href": "https://webaudio.github.io/web-audio-api/#audionode-channelcount-constraints", - "linkingText": [ - "channelCount constraints" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioNode" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audionode-channelcountmode", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-channelcountmode", - "linkingText": [ - "channelCountMode" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "audionode-channelcountmode-constraints", - "href": "https://webaudio.github.io/web-audio-api/#audionode-channelcountmode-constraints", - "linkingText": [ - "channelCountMode constraints" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioNode" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audionode-channelinterpretation", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-channelinterpretation", - "linkingText": [ - "channelInterpretation" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "audionode-channelinterpretation-constraints", - "href": "https://webaudio.github.io/web-audio-api/#audionode-channelinterpretation-constraints", - "linkingText": [ - "channelInterpretation constraints" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioNode" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audionode-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-numberofinputs", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-numberofinputs", - "linkingText": [ - "numberOfInputs" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "audionode-source-nodes", - "href": "https://webaudio.github.io/web-audio-api/#audionode-source-nodes", - "linkingText": [ - "source nodes" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioNode" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audionode-numberofoutputs", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-numberofoutputs", - "linkingText": [ - "numberOfOutputs" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-connect", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-connect", - "linkingText": [ - "connect(destinationNode, output, input)", - "connect(destinationNode, output)", - "connect(destinationNode)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-connect-destinationnode-output-input-destinationnode", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationnode-output-input-destinationnode", - "linkingText": [ - "destinationNode" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/connect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-connect-destinationnode-output-input-output", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationnode-output-input-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/connect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-connect-destinationnode-output-input-input", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationnode-output-input-input", - "linkingText": [ - "input" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/connect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "cycle", - "href": "https://webaudio.github.io/web-audio-api/#cycle", - "linkingText": [ - "cycle" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-connect-destinationparam-output", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationparam-output", - "linkingText": [ - "connect(destinationParam, output)", - "connect(destinationParam)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-connect-destinationparam-output-destinationparam", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationparam-output-destinationparam", - "linkingText": [ - "destinationParam" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/connect(destinationParam, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-connect-destinationparam-output-output", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationparam-output-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/connect(destinationParam, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect", - "linkingText": [ - "disconnect()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-output", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-output", - "linkingText": [ - "disconnect(output)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-output-output", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-output-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode", - "linkingText": [ - "disconnect(destinationNode)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-destinationnode-destinationnode", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-destinationnode", - "linkingText": [ - "destinationNode" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output", - "linkingText": [ - "disconnect(destinationNode, output)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-destinationnode", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-destinationnode", - "linkingText": [ - "destinationNode" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-output", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-input", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-input", - "linkingText": [ - "disconnect(destinationNode, output, input)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "linkingText": [ - "destinationNode" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-input-output", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-input-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-input-input", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-input-input", - "linkingText": [ - "input" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationparam", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationparam", - "linkingText": [ - "disconnect(destinationParam)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-destinationparam-destinationparam", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationparam-destinationparam", - "linkingText": [ - "destinationParam" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationParam)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationparam-output", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationparam-output", - "linkingText": [ - "disconnect(destinationParam, output)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-destinationparam-output-destinationparam", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationparam-output-destinationparam", - "linkingText": [ - "destinationParam" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationParam, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationparam-output-output", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationparam-output-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationParam, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "AudioNodeOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioNodeOptions", - "linkingText": [ - "AudioNodeOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNodeOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioNodeOptions", - "title": "AudioNodeOptions", - "number": "1.5.6" - }, - "definedIn": "heading" - }, - { - "id": "dom-audionodeoptions-channelcount", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionodeoptions-channelcount", - "linkingText": [ - "channelCount" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audionodeoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audionodeoptions-members", - "title": "Dictionary AudioNodeOptions Members", - "number": "1.5.6.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionodeoptions-channelcountmode", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionodeoptions-channelcountmode", - "linkingText": [ - "channelCountMode" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionodeoptions-channelinterpretation", - "href": "https://webaudio.github.io/web-audio-api/#dom-audionodeoptions-channelinterpretation", - "linkingText": [ - "channelInterpretation" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioParam", - "href": "https://webaudio.github.io/web-audio-api/#AudioParam", - "linkingText": [ - "AudioParam" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://webaudio.github.io/web-audio-api/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "heading" - }, - { - "id": "k-rate", - "href": "https://webaudio.github.io/web-audio-api/#k-rate", - "linkingText": [ - "k-rate" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "a-rate", - "href": "https://webaudio.github.io/web-audio-api/#a-rate", - "linkingText": [ - "a-rate" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "simple-nominal-range", - "href": "https://webaudio.github.io/web-audio-api/#simple-nominal-range", - "linkingText": [ - "simple nominal range" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "most-positive-single-float", - "href": "https://webaudio.github.io/web-audio-api/#most-positive-single-float", - "linkingText": [ - "most-positive-single-float" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "most-negative-single-float", - "href": "https://webaudio.github.io/web-audio-api/#most-negative-single-float", - "linkingText": [ - "most-negative-single-float" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dfn-automation-event", - "href": "https://webaudio.github.io/web-audio-api/#dfn-automation-event", - "linkingText": [ - "automation events" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "automation-event-time", - "href": "https://webaudio.github.io/web-audio-api/#automation-event-time", - "linkingText": [ - "automation event time" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dfn-automation-method", - "href": "https://webaudio.github.io/web-audio-api/#dfn-automation-method", - "linkingText": [ - "automation method" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-automationrate", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-automationrate", - "linkingText": [ - "AutomationRate" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-automationrate-a-rate", - "href": "https://webaudio.github.io/web-audio-api/#dom-automationrate-a-rate", - "linkingText": [ - "\"a-rate\"", - "a-rate" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AutomationRate" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-automationrate-k-rate", - "href": "https://webaudio.github.io/web-audio-api/#dom-automationrate-k-rate", - "linkingText": [ - "\"k-rate\"", - "k-rate" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AutomationRate" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-current-value-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-current-value-slot", - "linkingText": [ - "[[current value]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioparam-setvalueattime-value-starttime-value", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime-value-starttime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueAtTime(value, startTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-setvalueattime-value-starttime-starttime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime-value-starttime-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueAtTime(value, startTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-linearramptovalueattime-value-endtime-value", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-linearramptovalueattime-value-endtime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/linearRampToValueAtTime(value, endTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-linearramptovalueattime-value-endtime-endtime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-linearramptovalueattime-value-endtime-endtime", - "linkingText": [ - "endTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/linearRampToValueAtTime(value, endTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-exponentialramptovalueattime-value-endtime-value", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-exponentialramptovalueattime-value-endtime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/exponentialRampToValueAtTime(value, endTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", - "linkingText": [ - "endTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/exponentialRampToValueAtTime(value, endTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-settargetattime-target-starttime-timeconstant-target", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-target-starttime-timeconstant-target", - "linkingText": [ - "target" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime(target, startTime, timeConstant)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime(target, startTime, timeConstant)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", - "linkingText": [ - "timeConstant" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime(target, startTime, timeConstant)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-setvaluecurveattime-values-starttime-duration-values", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-values-starttime-duration-values", - "linkingText": [ - "values" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime(values, startTime, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime(values, startTime, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", - "linkingText": [ - "duration" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime(values, startTime, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-cancelscheduledvalues-canceltime-canceltime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelscheduledvalues-canceltime-canceltime", - "linkingText": [ - "cancelTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/cancelScheduledValues(cancelTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-cancelandholdattime-canceltime-canceltime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelandholdattime-canceltime-canceltime", - "linkingText": [ - "cancelTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/cancelAndHoldAtTime(cancelTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-automationrate", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-automationrate", - "linkingText": [ - "automationRate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioParam-attributes", - "title": "Attributes", - "number": "1.6.1" - }, - "definedIn": "dt" - }, - { - "id": "audioparam-automation-rate-constraints", - "href": "https://webaudio.github.io/web-audio-api/#audioparam-automation-rate-constraints", - "linkingText": [ - "automation rate constraints" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioParam" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioparam-defaultvalue", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-defaultvalue", - "linkingText": [ - "defaultValue" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-maxvalue", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-maxvalue", - "linkingText": [ - "maxValue" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-minvalue", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-minvalue", - "linkingText": [ - "minValue" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-value", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-cancelandholdattime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelandholdattime", - "linkingText": [ - "cancelAndHoldAtTime(cancelTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-cancelandholdattime-canceltime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelandholdattime-canceltime", - "linkingText": [ - "cancelTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/cancelAndHoldAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-cancelscheduledvalues", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelscheduledvalues", - "linkingText": [ - "cancelScheduledValues(cancelTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-cancelscheduledvalues-canceltime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelscheduledvalues-canceltime", - "linkingText": [ - "cancelTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/cancelScheduledValues()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-exponentialramptovalueattime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-exponentialramptovalueattime", - "linkingText": [ - "exponentialRampToValueAtTime(value, endTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-exponentialramptovalueattime-value", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-exponentialramptovalueattime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/exponentialRampToValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-exponentialramptovalueattime-endtime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-exponentialramptovalueattime-endtime", - "linkingText": [ - "endTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/exponentialRampToValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-linearramptovalueattime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-linearramptovalueattime", - "linkingText": [ - "linearRampToValueAtTime(value, endTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-linearramptovalueattime-value", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-linearramptovalueattime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/linearRampToValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-linearramptovalueattime-endtime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-linearramptovalueattime-endtime", - "linkingText": [ - "endTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/linearRampToValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-settargetattime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime", - "linkingText": [ - "setTargetAtTime(target, startTime, timeConstant)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-settargetattime-target", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-target", - "linkingText": [ - "target" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-settargetattime-starttime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-settargetattime-timeconstant", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-timeconstant", - "linkingText": [ - "timeConstant" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-setvalueattime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime", - "linkingText": [ - "setValueAtTime(value, startTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-setvalueattime-value", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-setvalueattime-starttime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-setvaluecurveattime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime", - "linkingText": [ - "setValueCurveAtTime(values, startTime, duration)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-setvaluecurveattime-values", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-values", - "linkingText": [ - "values" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-setvaluecurveattime-starttime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-setvaluecurveattime-duration", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-duration", - "linkingText": [ - "duration" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "simple-parameter", - "href": "https://webaudio.github.io/web-audio-api/#simple-parameter", - "linkingText": [ - "simple parameter" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "computation-of-value", - "href": "https://webaudio.github.io/web-audio-api/#computation-of-value", - "title": "Computation of Value", - "number": "1.6.3" - }, - "definedIn": "prose" - }, - { - "id": "compound-parameter", - "href": "https://webaudio.github.io/web-audio-api/#compound-parameter", - "linkingText": [ - "compound parameter" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "computedvalue", - "href": "https://webaudio.github.io/web-audio-api/#computedvalue", - "linkingText": [ - "computedValue" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "nominal-range", - "href": "https://webaudio.github.io/web-audio-api/#nominal-range", - "linkingText": [ - "nominal range" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "AudioScheduledSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode", - "linkingText": [ - "AudioScheduledSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode", - "title": "The AudioScheduledSourceNode Interface", - "number": "1.7" - }, - "definedIn": "heading" - }, - { - "id": "playing", - "href": "https://webaudio.github.io/web-audio-api/#playing", - "linkingText": [ - "playing" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioscheduledsourcenode-source-started-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-source-started-slot", - "linkingText": [ - "[[source started]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioScheduledSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioscheduledsourcenode-onended", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-onended", - "linkingText": [ - "onended" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioScheduledSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode-attributes", - "title": "Attributes", - "number": "1.7.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audioscheduledsourcenode-ended", - "href": "https://webaudio.github.io/web-audio-api/#eventdef-audioscheduledsourcenode-ended", - "linkingText": [ - "ended" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioScheduledSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioscheduledsourcenode-start", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-start", - "linkingText": [ - "start(when)", - "start()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioScheduledSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode-methods", - "title": "Methods", - "number": "1.7.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioscheduledsourcenode-start-when-when", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-start-when-when", - "linkingText": [ - "when" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioScheduledSourceNode/start(when)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioscheduledsourcenode-stop", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-stop", - "linkingText": [ - "stop(when)", - "stop()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioScheduledSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioscheduledsourcenode-stop-when-when", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-stop-when-when", - "linkingText": [ - "when" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioScheduledSourceNode/stop(when)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "AnalyserNode", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserNode", - "linkingText": [ - "AnalyserNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserNode", - "title": "The AnalyserNode Interface", - "number": "1.8" - }, - "definedIn": "heading" - }, - { - "id": "dom-analysernode-analysernode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-analysernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/AnalyserNode(context, options)", - "AnalyserNode/constructor(context, options)", - "AnalyserNode/AnalyserNode(context)", - "AnalyserNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-analysernode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-analysernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/AnalyserNode(context, options)", - "AnalyserNode/constructor(context, options)", - "AnalyserNode/AnalyserNode(context)", - "AnalyserNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-getfloatfrequencydata-array-array", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloatfrequencydata-array-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getFloatFrequencyData(array)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-getbytefrequencydata-array-array", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytefrequencydata-array-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getByteFrequencyData(array)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-getfloattimedomaindata-array-array", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloattimedomaindata-array-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getFloatTimeDomainData(array)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-getbytetimedomaindata-array-array", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytetimedomaindata-array-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getByteTimeDomainData(array)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-analysernode", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-analysernode", - "linkingText": [ - "AnalyserNode(context, options)", - "constructor(context, options)", - "AnalyserNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserNode-constructors", - "title": "Constructors", - "number": "1.8.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-analysernode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-analysernode-fftsize", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-fftsize", - "linkingText": [ - "fftSize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserNode-attributes", - "title": "Attributes", - "number": "1.8.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-frequencybincount", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-frequencybincount", - "linkingText": [ - "frequencyBinCount" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-maxdecibels", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-maxdecibels", - "linkingText": [ - "maxDecibels" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-mindecibels", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-mindecibels", - "linkingText": [ - "minDecibels" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-smoothingtimeconstant", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-smoothingtimeconstant", - "linkingText": [ - "smoothingTimeConstant" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-getbytefrequencydata", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytefrequencydata", - "linkingText": [ - "getByteFrequencyData(array)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserNode-methods", - "title": "Methods", - "number": "1.8.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-getbytefrequencydata-array", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytefrequencydata-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getByteFrequencyData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-analysernode-getbytetimedomaindata", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytetimedomaindata", - "linkingText": [ - "getByteTimeDomainData(array)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-getbytetimedomaindata-array", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytetimedomaindata-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getByteTimeDomainData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-analysernode-getfloatfrequencydata", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloatfrequencydata", - "linkingText": [ - "getFloatFrequencyData(array)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-getfloatfrequencydata-array", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloatfrequencydata-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getFloatFrequencyData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-analysernode-getfloattimedomaindata", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloattimedomaindata", - "linkingText": [ - "getFloatTimeDomainData(array)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-getfloattimedomaindata-array", - "href": "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloattimedomaindata-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getFloatTimeDomainData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "AnalyserOptions", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserOptions", - "linkingText": [ - "AnalyserOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserOptions", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserOptions", - "title": "AnalyserOptions", - "number": "1.8.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-analyseroptions-fftsize", - "href": "https://webaudio.github.io/web-audio-api/#dom-analyseroptions-fftsize", - "linkingText": [ - "fftSize" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AnalyserOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-analyseroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-analyseroptions-members", - "title": "Dictionary AnalyserOptions Members", - "number": "1.8.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analyseroptions-maxdecibels", - "href": "https://webaudio.github.io/web-audio-api/#dom-analyseroptions-maxdecibels", - "linkingText": [ - "maxDecibels" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AnalyserOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analyseroptions-mindecibels", - "href": "https://webaudio.github.io/web-audio-api/#dom-analyseroptions-mindecibels", - "linkingText": [ - "minDecibels" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AnalyserOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analyseroptions-smoothingtimeconstant", - "href": "https://webaudio.github.io/web-audio-api/#dom-analyseroptions-smoothingtimeconstant", - "linkingText": [ - "smoothingTimeConstant" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AnalyserOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "current-time-domain-data", - "href": "https://webaudio.github.io/web-audio-api/#current-time-domain-data", - "linkingText": [ - "current time-domain data" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "time-domain-down-mixing", - "href": "https://webaudio.github.io/web-audio-api/#time-domain-down-mixing", - "title": "Time-Domain Down-Mixing", - "number": "1.8.5" - }, - "definedIn": "prose" - }, - { - "id": "current-frequency-data", - "href": "https://webaudio.github.io/web-audio-api/#current-frequency-data", - "linkingText": [ - "current frequency data" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "fft-windowing-and-smoothing-over-time", - "href": "https://webaudio.github.io/web-audio-api/#fft-windowing-and-smoothing-over-time", - "title": "FFT Windowing and Smoothing over Time", - "number": "1.8.6" - }, - "definedIn": "prose" - }, - { - "id": "blackman-window", - "href": "https://webaudio.github.io/web-audio-api/#blackman-window", - "linkingText": [ - "Applying a Blackman window" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "fourier-transform", - "href": "https://webaudio.github.io/web-audio-api/#fourier-transform", - "linkingText": [ - "Applying a Fourier transform" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "smoothing-over-time", - "href": "https://webaudio.github.io/web-audio-api/#smoothing-over-time", - "linkingText": [ - "Smoothing over time" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "previous-block", - "href": "https://webaudio.github.io/web-audio-api/#previous-block", - "linkingText": [ - "previous block" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "conversion-to-db", - "href": "https://webaudio.github.io/web-audio-api/#conversion-to-db", - "linkingText": [ - "Conversion to dB" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "AudioBufferSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode", - "linkingText": [ - "AudioBufferSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode", - "title": "The AudioBufferSourceNode Interface", - "number": "1.9" - }, - "definedIn": "heading" - }, - { - "id": "playhead-position", - "href": "https://webaudio.github.io/web-audio-api/#playhead-position", - "linkingText": [ - "playhead position" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "computedplaybackrate", - "href": "https://webaudio.github.io/web-audio-api/#computedplaybackrate", - "linkingText": [ - "computedPlaybackRate" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiobuffersourcenode-buffer-set-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-buffer-set-slot", - "linkingText": [ - "[[buffer set]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/AudioBufferSourceNode(context, options)", - "AudioBufferSourceNode/constructor(context, options)", - "AudioBufferSourceNode/AudioBufferSourceNode(context)", - "AudioBufferSourceNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/AudioBufferSourceNode(context, options)", - "AudioBufferSourceNode/constructor(context, options)", - "AudioBufferSourceNode/AudioBufferSourceNode(context)", - "AudioBufferSourceNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffersourcenode-audiobuffersourcenode", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-audiobuffersourcenode", - "linkingText": [ - "AudioBufferSourceNode(context, options)", - "constructor(context, options)", - "AudioBufferSourceNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode-constructors", - "title": "Constructors", - "number": "1.9.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffersourcenode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffersourcenode-buffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-buffer", - "linkingText": [ - "buffer" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode-attributes", - "title": "Attributes", - "number": "1.9.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-detune", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-loop", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-loop", - "linkingText": [ - "loop" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-loopend", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-loopend", - "linkingText": [ - "loopEnd" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-loopstart", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-loopstart", - "linkingText": [ - "loopStart" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-playbackrate", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-playbackrate", - "linkingText": [ - "playbackRate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-start", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-start", - "linkingText": [ - "start(when, offset, duration)", - "start(when, offset)", - "start(when)", - "start()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode-methods", - "title": "Methods", - "number": "1.9.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-start-when-offset-duration-when", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-start-when-offset-duration-when", - "linkingText": [ - "when" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/start(when, offset, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffersourcenode-start-when-offset-duration-offset", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-start-when-offset-duration-offset", - "linkingText": [ - "offset" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/start(when, offset, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffersourcenode-start-when-offset-duration-duration", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-start-when-offset-duration-duration", - "linkingText": [ - "duration" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/start(when, offset, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "AudioBufferSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceOptions", - "linkingText": [ - "AudioBufferSourceOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceOptions", - "title": "AudioBufferSourceOptions", - "number": "1.9.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiobuffersourceoptions-buffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-buffer", - "linkingText": [ - "buffer" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audiobuffersourceoptions-members", - "title": "Dictionary AudioBufferSourceOptions Members", - "number": "1.9.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourceoptions-detune", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourceoptions-loop", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-loop", - "linkingText": [ - "loop" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourceoptions-loopend", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-loopend", - "linkingText": [ - "loopEnd" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourceoptions-loopstart", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-loopstart", - "linkingText": [ - "loopStart" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourceoptions-playbackrate", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-playbackrate", - "linkingText": [ - "playbackRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioDestinationNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioDestinationNode", - "linkingText": [ - "AudioDestinationNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioDestinationNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioDestinationNode", - "title": "The AudioDestinationNode Interface", - "number": "1.10" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiodestinationnode-maxchannelcount", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiodestinationnode-maxchannelcount", - "linkingText": [ - "maxChannelCount" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioDestinationNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioDestinationNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioDestinationNode-attributes", - "title": "Attributes", - "number": "1.10.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioListener", - "href": "https://webaudio.github.io/web-audio-api/#AudioListener", - "linkingText": [ - "AudioListener" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://webaudio.github.io/web-audio-api/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiolistener-setposition-x-y-z-x", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-x-y-z-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setposition-x-y-z-y", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-x-y-z-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setposition-x-y-z-z", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-x-y-z-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", - "linkingText": [ - "xUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", - "linkingText": [ - "yUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", - "linkingText": [ - "zUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-forwardx", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-forwardx", - "linkingText": [ - "forwardX" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioListener-attributes", - "title": "Attributes", - "number": "1.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-forwardy", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-forwardy", - "linkingText": [ - "forwardY" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-forwardz", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-forwardz", - "linkingText": [ - "forwardZ" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-positionx", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-positionx", - "linkingText": [ - "positionX" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-positiony", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-positiony", - "linkingText": [ - "positionY" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-positionz", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-positionz", - "linkingText": [ - "positionZ" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-upx", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-upx", - "linkingText": [ - "upX" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-upy", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-upy", - "linkingText": [ - "upY" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-upz", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-upz", - "linkingText": [ - "upZ" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-setorientation", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation", - "linkingText": [ - "setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "dt" - }, - { - "id": "audiolistener-forward", - "href": "https://webaudio.github.io/web-audio-api/#audiolistener-forward", - "linkingText": [ - "forward" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioListener" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "audiolistener-up", - "href": "https://webaudio.github.io/web-audio-api/#audiolistener-up", - "linkingText": [ - "up" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioListener" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiolistener-setorientation-x", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setorientation-y", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setorientation-z", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setorientation-xup", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-xup", - "linkingText": [ - "xUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setorientation-yup", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-yup", - "linkingText": [ - "yUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setorientation-zup", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-zup", - "linkingText": [ - "zUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setposition", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition", - "linkingText": [ - "setPosition(x, y, z)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-setposition-x", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setposition-y", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setposition-z", - "href": "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "AudioProcessingEvent", - "href": "https://webaudio.github.io/web-audio-api/#AudioProcessingEvent", - "linkingText": [ - "AudioProcessingEvent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEvent", - "href": "https://webaudio.github.io/web-audio-api/#AudioProcessingEvent", - "title": "The AudioProcessingEvent Interface - DEPRECATED", - "number": "1.12" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioprocessingevent-audioprocessingevent", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-audioprocessingevent", - "linkingText": [ - "AudioProcessingEvent(type, eventInitDict)", - "constructor(type, eventInitDict)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioProcessingEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioProcessingEvent/AudioProcessingEvent(type, eventInitDict)", - "AudioProcessingEvent/constructor(type, eventInitDict)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", - "linkingText": [ - "eventInitDict" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioProcessingEvent/AudioProcessingEvent(type, eventInitDict)", - "AudioProcessingEvent/constructor(type, eventInitDict)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioprocessingevent-inputbuffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-inputbuffer", - "linkingText": [ - "inputBuffer" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioProcessingEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEvent-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioProcessingEvent-attributes", - "title": "Attributes", - "number": "1.12.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioprocessingevent-outputbuffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-outputbuffer", - "linkingText": [ - "outputBuffer" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioProcessingEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioprocessingevent-playbacktime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-playbacktime", - "linkingText": [ - "playbackTime" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioProcessingEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioProcessingEventInit", - "href": "https://webaudio.github.io/web-audio-api/#AudioProcessingEventInit", - "linkingText": [ - "AudioProcessingEventInit" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEventInit", - "href": "https://webaudio.github.io/web-audio-api/#AudioProcessingEventInit", - "title": "AudioProcessingEventInit", - "number": "1.12.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioprocessingeventinit-inputbuffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioprocessingeventinit-inputbuffer", - "linkingText": [ - "inputBuffer" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioProcessingEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioprocessingeventinit-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audioprocessingeventinit-members", - "title": "Dictionary AudioProcessingEventInit Members", - "number": "1.12.2.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioprocessingeventinit-outputbuffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioprocessingeventinit-outputbuffer", - "linkingText": [ - "outputBuffer" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioProcessingEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioprocessingeventinit-playbacktime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioprocessingeventinit-playbacktime", - "linkingText": [ - "playbackTime" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioProcessingEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "BiquadFilterNode", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode", - "linkingText": [ - "BiquadFilterNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "heading" - }, - { - "id": "computedfrequency", - "href": "https://webaudio.github.io/web-audio-api/#computedfrequency", - "linkingText": [ - "computedFrequency" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-biquadfiltertype", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-biquadfiltertype", - "linkingText": [ - "BiquadFilterType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfiltertype-lowpass", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-lowpass", - "linkingText": [ - "\"lowpass\"", - "lowpass" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-highpass", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-highpass", - "linkingText": [ - "\"highpass\"", - "highpass" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-bandpass", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-bandpass", - "linkingText": [ - "\"bandpass\"", - "bandpass" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-lowshelf", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-lowshelf", - "linkingText": [ - "\"lowshelf\"", - "lowshelf" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-highshelf", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-highshelf", - "linkingText": [ - "\"highshelf\"", - "highshelf" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-peaking", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-peaking", - "linkingText": [ - "\"peaking\"", - "peaking" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-notch", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-notch", - "linkingText": [ - "\"notch\"", - "notch" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-allpass", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-allpass", - "linkingText": [ - "\"allpass\"", - "allpass" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfilternode-biquadfilternode", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-biquadfilternode", - "linkingText": [ - "BiquadFilterNode(context, options)", - "constructor(context, options)", - "BiquadFilterNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-biquadfilternode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-biquadfilternode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/BiquadFilterNode(context, options)", - "BiquadFilterNode/constructor(context, options)", - "BiquadFilterNode/BiquadFilterNode(context)", - "BiquadFilterNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-biquadfilternode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-biquadfilternode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/BiquadFilterNode(context, options)", - "BiquadFilterNode/constructor(context, options)", - "BiquadFilterNode/BiquadFilterNode(context)", - "BiquadFilterNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "linkingText": [ - "frequencyHz" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "linkingText": [ - "magResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "linkingText": [ - "phaseResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-biquadfilternode-context-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-biquadfilternode-context-options", - "linkingText": [ - "BiquadFilterNode(context, options)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-constructors", - "title": "Constructors", - "number": "1.13.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-constructors", - "title": "Constructors", - "number": "1.13.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfilternode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-constructors", - "title": "Constructors", - "number": "1.13.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfilternode-q", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-q", - "linkingText": [ - "Q" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-attributes", - "title": "Attributes", - "number": "1.13.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-detune", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-frequency", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-frequency", - "linkingText": [ - "frequency" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-gain", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-gain", - "linkingText": [ - "gain" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-type", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse", - "linkingText": [ - "getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-methods", - "title": "Methods", - "number": "1.13.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-frequencyhz", - "linkingText": [ - "frequencyHz" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-magresponse", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-magresponse", - "linkingText": [ - "magResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-phaseresponse", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-phaseresponse", - "linkingText": [ - "phaseResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "BiquadFilterOptions", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterOptions", - "linkingText": [ - "BiquadFilterOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterOptions", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterOptions", - "title": "BiquadFilterOptions", - "number": "1.13.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-biquadfilteroptions-q", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-q", - "linkingText": [ - "Q" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "BiquadFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-biquadfilteroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-biquadfilteroptions-members", - "title": "Dictionary BiquadFilterOptions Members", - "number": "1.13.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilteroptions-detune", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "BiquadFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilteroptions-frequency", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-frequency", - "linkingText": [ - "frequency" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "BiquadFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilteroptions-gain", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-gain", - "linkingText": [ - "gain" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "BiquadFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilteroptions-type", - "href": "https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "BiquadFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "ChannelMergerNode", - "href": "https://webaudio.github.io/web-audio-api/#ChannelMergerNode", - "linkingText": [ - "ChannelMergerNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelMergerNode", - "href": "https://webaudio.github.io/web-audio-api/#ChannelMergerNode", - "title": "The ChannelMergerNode Interface", - "number": "1.14" - }, - "definedIn": "heading" - }, - { - "id": "dom-channelmergernode-channelmergernode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-channelmergernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelMergerNode/ChannelMergerNode(context, options)", - "ChannelMergerNode/constructor(context, options)", - "ChannelMergerNode/ChannelMergerNode(context)", - "ChannelMergerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-channelmergernode-channelmergernode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-channelmergernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelMergerNode/ChannelMergerNode(context, options)", - "ChannelMergerNode/constructor(context, options)", - "ChannelMergerNode/ChannelMergerNode(context)", - "ChannelMergerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-channelmergernode-channelmergernode", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-channelmergernode", - "linkingText": [ - "ChannelMergerNode(context, options)", - "constructor(context, options)", - "ChannelMergerNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "ChannelMergerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelMergerNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#ChannelMergerNode-constructors", - "title": "Constructors", - "number": "1.14.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-channelmergernode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelMergerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-channelmergernode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelMergerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "ChannelMergerOptions", - "href": "https://webaudio.github.io/web-audio-api/#ChannelMergerOptions", - "linkingText": [ - "ChannelMergerOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelMergerOptions", - "href": "https://webaudio.github.io/web-audio-api/#ChannelMergerOptions", - "title": "ChannelMergerOptions", - "number": "1.14.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-channelmergeroptions-numberofinputs", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelmergeroptions-numberofinputs", - "linkingText": [ - "numberOfInputs" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "ChannelMergerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-channelmergeroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-channelmergeroptions-members", - "title": "Dictionary ChannelMergerOptions Members", - "number": "1.14.2.1" - }, - "definedIn": "dt" - }, - { - "id": "ChannelSplitterNode", - "href": "https://webaudio.github.io/web-audio-api/#ChannelSplitterNode", - "linkingText": [ - "ChannelSplitterNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelSplitterNode", - "href": "https://webaudio.github.io/web-audio-api/#ChannelSplitterNode", - "title": "The ChannelSplitterNode Interface", - "number": "1.15" - }, - "definedIn": "heading" - }, - { - "id": "dom-channelsplitternode-channelsplitternode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-channelsplitternode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelSplitterNode/ChannelSplitterNode(context, options)", - "ChannelSplitterNode/constructor(context, options)", - "ChannelSplitterNode/ChannelSplitterNode(context)", - "ChannelSplitterNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-channelsplitternode-channelsplitternode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-channelsplitternode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelSplitterNode/ChannelSplitterNode(context, options)", - "ChannelSplitterNode/constructor(context, options)", - "ChannelSplitterNode/ChannelSplitterNode(context)", - "ChannelSplitterNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-channelsplitternode-channelsplitternode", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-channelsplitternode", - "linkingText": [ - "ChannelSplitterNode(context, options)", - "constructor(context, options)", - "ChannelSplitterNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "ChannelSplitterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelSplitterNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#ChannelSplitterNode-constructors", - "title": "Constructors", - "number": "1.15.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-channelsplitternode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelSplitterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-channelsplitternode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelSplitterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "ChannelSplitterOptions", - "href": "https://webaudio.github.io/web-audio-api/#ChannelSplitterOptions", - "linkingText": [ - "ChannelSplitterOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelSplitterOptions", - "href": "https://webaudio.github.io/web-audio-api/#ChannelSplitterOptions", - "title": "ChannelSplitterOptions", - "number": "1.15.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-channelsplitteroptions-numberofoutputs", - "href": "https://webaudio.github.io/web-audio-api/#dom-channelsplitteroptions-numberofoutputs", - "linkingText": [ - "numberOfOutputs" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "ChannelSplitterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-channelsplitteroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-channelsplitteroptions-members", - "title": "Dictionary ChannelSplitterOptions Members", - "number": "1.15.2.1" - }, - "definedIn": "dt" - }, - { - "id": "ConstantSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#ConstantSourceNode", - "linkingText": [ - "ConstantSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#ConstantSourceNode", - "title": "The ConstantSourceNode Interface", - "number": "1.16" - }, - "definedIn": "heading" - }, - { - "id": "dom-constantsourcenode-constantsourcenode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constantsourcenode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConstantSourceNode/ConstantSourceNode(context, options)", - "ConstantSourceNode/constructor(context, options)", - "ConstantSourceNode/ConstantSourceNode(context)", - "ConstantSourceNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-constantsourcenode-constantsourcenode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constantsourcenode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConstantSourceNode/ConstantSourceNode(context, options)", - "ConstantSourceNode/constructor(context, options)", - "ConstantSourceNode/ConstantSourceNode(context)", - "ConstantSourceNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-constantsourcenode-constantsourcenode", - "href": "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constantsourcenode", - "linkingText": [ - "ConstantSourceNode(context, options)", - "constructor(context, options)", - "ConstantSourceNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "ConstantSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#ConstantSourceNode-constructors", - "title": "Constructors", - "number": "1.16.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-constantsourcenode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConstantSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-constantsourcenode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConstantSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-constantsourcenode-offset", - "href": "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-offset", - "linkingText": [ - "offset" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ConstantSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#ConstantSourceNode-attributes", - "title": "Attributes", - "number": "1.16.2" - }, - "definedIn": "dt" - }, - { - "id": "ConstantSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#ConstantSourceOptions", - "linkingText": [ - "ConstantSourceOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#ConstantSourceOptions", - "title": "ConstantSourceOptions", - "number": "1.16.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-constantsourceoptions-offset", - "href": "https://webaudio.github.io/web-audio-api/#dom-constantsourceoptions-offset", - "linkingText": [ - "offset" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "ConstantSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-constantsourceoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-constantsourceoptions-members", - "title": "Dictionary ConstantSourceOptions Members", - "number": "1.16.3.1" - }, - "definedIn": "dt" - }, - { - "id": "ConvolverNode", - "href": "https://webaudio.github.io/web-audio-api/#ConvolverNode", - "linkingText": [ - "ConvolverNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode", - "href": "https://webaudio.github.io/web-audio-api/#ConvolverNode", - "title": "The ConvolverNode Interface", - "number": "1.17" - }, - "definedIn": "heading" - }, - { - "id": "dom-convolvernode-convolvernode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolvernode-convolvernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConvolverNode/ConvolverNode(context, options)", - "ConvolverNode/constructor(context, options)", - "ConvolverNode/ConvolverNode(context)", - "ConvolverNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-convolvernode-convolvernode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolvernode-convolvernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConvolverNode/ConvolverNode(context, options)", - "ConvolverNode/constructor(context, options)", - "ConvolverNode/ConvolverNode(context)", - "ConvolverNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-convolvernode-convolvernode", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolvernode-convolvernode", - "linkingText": [ - "ConvolverNode(context, options)", - "constructor(context, options)", - "ConvolverNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "ConvolverNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#ConvolverNode-constructors", - "title": "Constructors", - "number": "1.17.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-convolvernode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolvernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConvolverNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-convolvernode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolvernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConvolverNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-convolvernode-buffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolvernode-buffer", - "linkingText": [ - "buffer" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ConvolverNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#ConvolverNode-attributes", - "title": "Attributes", - "number": "1.17.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-convolvernode-buffer-attribute", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolvernode-buffer-attribute", - "linkingText": [ - "buffer attribute" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ConvolverNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-convolvernode-normalize", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolvernode-normalize", - "linkingText": [ - "normalize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ConvolverNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "ConvolverOptions", - "href": "https://webaudio.github.io/web-audio-api/#ConvolverOptions", - "linkingText": [ - "ConvolverOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverOptions", - "href": "https://webaudio.github.io/web-audio-api/#ConvolverOptions", - "title": "ConvolverOptions", - "number": "1.17.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-convolveroptions-buffer", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolveroptions-buffer", - "linkingText": [ - "buffer" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "ConvolverOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-convolveroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-convolveroptions-members", - "title": "Dictionary ConvolverOptions Members", - "number": "1.17.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-convolveroptions-disablenormalization", - "href": "https://webaudio.github.io/web-audio-api/#dom-convolveroptions-disablenormalization", - "linkingText": [ - "disableNormalization" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "ConvolverOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "DelayNode", - "href": "https://webaudio.github.io/web-audio-api/#DelayNode", - "linkingText": [ - "DelayNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "DelayNode", - "href": "https://webaudio.github.io/web-audio-api/#DelayNode", - "title": "The DelayNode Interface", - "number": "1.18" - }, - "definedIn": "heading" - }, - { - "id": "dom-delaynode-delaynode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-delaynode-delaynode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DelayNode/DelayNode(context, options)", - "DelayNode/constructor(context, options)", - "DelayNode/DelayNode(context)", - "DelayNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-delaynode-delaynode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-delaynode-delaynode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DelayNode/DelayNode(context, options)", - "DelayNode/constructor(context, options)", - "DelayNode/DelayNode(context)", - "DelayNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-delaynode-delaynode", - "href": "https://webaudio.github.io/web-audio-api/#dom-delaynode-delaynode", - "linkingText": [ - "DelayNode(context, options)", - "constructor(context, options)", - "DelayNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "DelayNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DelayNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#DelayNode-constructors", - "title": "Constructors", - "number": "1.18.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-delaynode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-delaynode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DelayNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-delaynode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-delaynode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DelayNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-delaynode-delaytime", - "href": "https://webaudio.github.io/web-audio-api/#dom-delaynode-delaytime", - "linkingText": [ - "delayTime" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DelayNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DelayNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#DelayNode-attributes", - "title": "Attributes", - "number": "1.18.2" - }, - "definedIn": "dt" - }, - { - "id": "DelayOptions", - "href": "https://webaudio.github.io/web-audio-api/#DelayOptions", - "linkingText": [ - "DelayOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "DelayOptions", - "href": "https://webaudio.github.io/web-audio-api/#DelayOptions", - "title": "DelayOptions", - "number": "1.18.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-delayoptions-delaytime", - "href": "https://webaudio.github.io/web-audio-api/#dom-delayoptions-delaytime", - "linkingText": [ - "delayTime" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DelayOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-delayoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-delayoptions-members", - "title": "Dictionary DelayOptions Members", - "number": "1.18.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-delayoptions-maxdelaytime", - "href": "https://webaudio.github.io/web-audio-api/#dom-delayoptions-maxdelaytime", - "linkingText": [ - "maxDelayTime" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DelayOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "delaywriter", - "href": "https://webaudio.github.io/web-audio-api/#delaywriter", - "linkingText": [ - "DelayWriter" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DelayNode-processing", - "href": "https://webaudio.github.io/web-audio-api/#DelayNode-processing", - "title": "Processing", - "number": "1.18.4" - }, - "definedIn": "prose" - }, - { - "id": "delayreader", - "href": "https://webaudio.github.io/web-audio-api/#delayreader", - "linkingText": [ - "DelayReader" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "DynamicsCompressorNode", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode", - "linkingText": [ - "DynamicsCompressorNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode", - "title": "The DynamicsCompressorNode Interface", - "number": "1.19" - }, - "definedIn": "heading" - }, - { - "id": "dom-dynamicscompressornode-dynamicscompressornode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-dynamicscompressornode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DynamicsCompressorNode/DynamicsCompressorNode(context, options)", - "DynamicsCompressorNode/constructor(context, options)", - "DynamicsCompressorNode/DynamicsCompressorNode(context)", - "DynamicsCompressorNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-dynamicscompressornode-dynamicscompressornode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-dynamicscompressornode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DynamicsCompressorNode/DynamicsCompressorNode(context, options)", - "DynamicsCompressorNode/constructor(context, options)", - "DynamicsCompressorNode/DynamicsCompressorNode(context)", - "DynamicsCompressorNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-dynamicscompressornode-dynamicscompressornode", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-dynamicscompressornode", - "linkingText": [ - "DynamicsCompressorNode(context, options)", - "constructor(context, options)", - "DynamicsCompressorNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode-constructors", - "title": "Constructors", - "number": "1.19.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-internal-reduction-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-internal-reduction-slot", - "linkingText": [ - "[[internal reduction]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-dynamicscompressornode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DynamicsCompressorNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-dynamicscompressornode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DynamicsCompressorNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-dynamicscompressornode-attack", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-attack", - "linkingText": [ - "attack" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode-attributes", - "title": "Attributes", - "number": "1.19.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-knee", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-knee", - "linkingText": [ - "knee" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-ratio", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-ratio", - "linkingText": [ - "ratio" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-reduction", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-reduction", - "linkingText": [ - "reduction" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-release", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-release", - "linkingText": [ - "release" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-threshold", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-threshold", - "linkingText": [ - "threshold" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "DynamicsCompressorOptions", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorOptions", - "linkingText": [ - "DynamicsCompressorOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorOptions", - "title": "DynamicsCompressorOptions", - "number": "1.19.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-dynamicscompressoroptions-attack", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-attack", - "linkingText": [ - "attack" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DynamicsCompressorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-dynamicscompressoroptions-members", - "title": "Dictionary DynamicsCompressorOptions Members", - "number": "1.19.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressoroptions-knee", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-knee", - "linkingText": [ - "knee" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DynamicsCompressorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressoroptions-ratio", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-ratio", - "linkingText": [ - "ratio" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DynamicsCompressorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressoroptions-release", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-release", - "linkingText": [ - "release" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DynamicsCompressorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressoroptions-threshold", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-threshold", - "linkingText": [ - "threshold" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DynamicsCompressorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "envelopefollower", - "href": "https://webaudio.github.io/web-audio-api/#envelopefollower", - "linkingText": [ - "EnvelopeFollower" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions-processing", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorOptions-processing", - "title": "Processing", - "number": "1.19.4" - }, - "definedIn": "prose" - }, - { - "id": "dom-dynamicscompressornode-detector-average-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-detector-average-slot", - "linkingText": [ - "[[detector average]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-dynamicscompressornode-compressor-gain-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-compressor-gain-slot", - "linkingText": [ - "[[compressor gain]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "computing-the-makeup-gain", - "href": "https://webaudio.github.io/web-audio-api/#computing-the-makeup-gain", - "linkingText": [ - "Computing the makeup gain" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "computing-the-envelope-rate", - "href": "https://webaudio.github.io/web-audio-api/#computing-the-envelope-rate", - "linkingText": [ - "Computing the envelope rate" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "detector-curve", - "href": "https://webaudio.github.io/web-audio-api/#detector-curve", - "linkingText": [ - "detector curve" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "compression-curve", - "href": "https://webaudio.github.io/web-audio-api/#compression-curve", - "linkingText": [ - "compression curve" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "linear-to-decibel", - "href": "https://webaudio.github.io/web-audio-api/#linear-to-decibel", - "linkingText": [ - "linear gain unit to decibel" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "decibels-to-linear-gain-unit", - "href": "https://webaudio.github.io/web-audio-api/#decibels-to-linear-gain-unit", - "linkingText": [ - "decibels to linear gain unit" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "GainNode", - "href": "https://webaudio.github.io/web-audio-api/#GainNode", - "linkingText": [ - "GainNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "GainNode", - "href": "https://webaudio.github.io/web-audio-api/#GainNode", - "title": "The GainNode Interface", - "number": "1.20" - }, - "definedIn": "heading" - }, - { - "id": "dom-gainnode-gainnode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-gainnode-gainnode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "GainNode/GainNode(context, options)", - "GainNode/constructor(context, options)", - "GainNode/GainNode(context)", - "GainNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-gainnode-gainnode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-gainnode-gainnode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "GainNode/GainNode(context, options)", - "GainNode/constructor(context, options)", - "GainNode/GainNode(context)", - "GainNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-gainnode-gainnode", - "href": "https://webaudio.github.io/web-audio-api/#dom-gainnode-gainnode", - "linkingText": [ - "GainNode(context, options)", - "constructor(context, options)", - "GainNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "GainNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "GainNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#GainNode-constructors", - "title": "Constructors", - "number": "1.20.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-gainnode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-gainnode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "GainNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-gainnode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-gainnode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "GainNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-gainnode-gain", - "href": "https://webaudio.github.io/web-audio-api/#dom-gainnode-gain", - "linkingText": [ - "gain" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "GainNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "GainNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#GainNode-attributes", - "title": "Attributes", - "number": "1.20.2" - }, - "definedIn": "dt" - }, - { - "id": "GainOptions", - "href": "https://webaudio.github.io/web-audio-api/#GainOptions", - "linkingText": [ - "GainOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "GainOptions", - "href": "https://webaudio.github.io/web-audio-api/#GainOptions", - "title": "GainOptions", - "number": "1.20.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-gainoptions-gain", - "href": "https://webaudio.github.io/web-audio-api/#dom-gainoptions-gain", - "linkingText": [ - "gain" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "GainOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-gainoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-gainoptions-members", - "title": "Dictionary GainOptions Members", - "number": "1.20.3.1" - }, - "definedIn": "dt" - }, - { - "id": "IIRFilterNode", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterNode", - "linkingText": [ - "IIRFilterNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterNode", - "title": "The IIRFilterNode Interface", - "number": "1.21" - }, - "definedIn": "heading" - }, - { - "id": "dom-iirfilternode-iirfilternode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-iirfilternode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/IIRFilterNode(context, options)", - "IIRFilterNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-iirfilternode-iirfilternode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-iirfilternode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/IIRFilterNode(context, options)", - "IIRFilterNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "linkingText": [ - "frequencyHz" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "linkingText": [ - "magResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "linkingText": [ - "phaseResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-iirfilternode-iirfilternode", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-iirfilternode", - "linkingText": [ - "IIRFilterNode(context, options)", - "constructor(context, options)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "IIRFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterNode-constructors", - "title": "Constructors", - "number": "1.21.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-iirfilternode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-iirfilternode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse", - "linkingText": [ - "getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "IIRFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterNode-methods", - "title": "Methods", - "number": "1.21.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-frequencyhz", - "linkingText": [ - "frequencyHz" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-magresponse", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-magresponse", - "linkingText": [ - "magResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-phaseresponse", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-phaseresponse", - "linkingText": [ - "phaseResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "IIRFilterOptions", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterOptions", - "linkingText": [ - "IIRFilterOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterOptions", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterOptions", - "title": "IIRFilterOptions", - "number": "1.21.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-iirfilteroptions-feedforward", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilteroptions-feedforward", - "linkingText": [ - "feedforward" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "IIRFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-iirfilteroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-iirfilteroptions-members", - "title": "Dictionary IIRFilterOptions Members", - "number": "1.21.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-iirfilteroptions-feedback", - "href": "https://webaudio.github.io/web-audio-api/#dom-iirfilteroptions-feedback", - "linkingText": [ - "feedback" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "IIRFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "MediaElementAudioSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode", - "linkingText": [ - "MediaElementAudioSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode", - "title": "The MediaElementAudioSourceNode Interface", - "number": "1.22" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaElementAudioSourceNode/MediaElementAudioSourceNode(context, options)", - "MediaElementAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaElementAudioSourceNode/MediaElementAudioSourceNode(context, options)", - "MediaElementAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "linkingText": [ - "MediaElementAudioSourceNode(context, options)", - "constructor(context, options)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "MediaElementAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.22.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-mediaelementaudiosourcenode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaElementAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediaelementaudiosourcenode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaElementAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediaelementaudiosourcenode-mediaelement", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-mediaelement", - "linkingText": [ - "mediaElement" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "MediaElementAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode-attributes", - "title": "Attributes", - "number": "1.22.2" - }, - "definedIn": "dt" - }, - { - "id": "MediaElementAudioSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceOptions", - "linkingText": [ - "MediaElementAudioSourceOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceOptions", - "title": "MediaElementAudioSourceOptions", - "number": "1.22.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediaelementaudiosourceoptions-mediaelement", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourceoptions-mediaelement", - "linkingText": [ - "mediaElement" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "MediaElementAudioSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-mediaelementaudiosourceoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-mediaelementaudiosourceoptions-members", - "title": "Dictionary MediaElementAudioSourceOptions Members", - "number": "1.22.3.1" - }, - "definedIn": "dt" - }, - { - "id": "MediaStreamAudioDestinationNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioDestinationNode", - "linkingText": [ - "MediaStreamAudioDestinationNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioDestinationNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioDestinationNode", - "title": "The MediaStreamAudioDestinationNode Interface", - "number": "1.23" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context, options)", - "MediaStreamAudioDestinationNode/constructor(context, options)", - "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context)", - "MediaStreamAudioDestinationNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context, options)", - "MediaStreamAudioDestinationNode/constructor(context, options)", - "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context)", - "MediaStreamAudioDestinationNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "linkingText": [ - "MediaStreamAudioDestinationNode(context, options)", - "constructor(context, options)", - "MediaStreamAudioDestinationNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "MediaStreamAudioDestinationNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioDestinationNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioDestinationNode-constructors", - "title": "Constructors", - "number": "1.23.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-mediastreamaudiodestinationnode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioDestinationNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediastreamaudiodestinationnode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioDestinationNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediastreamaudiodestinationnode-stream", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-stream", - "linkingText": [ - "stream" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "MediaStreamAudioDestinationNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioDestinationNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioDestinationNode-attributes", - "title": "Attributes", - "number": "1.23.2" - }, - "definedIn": "dt" - }, - { - "id": "MediaStreamAudioSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceNode", - "linkingText": [ - "MediaStreamAudioSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceNode", - "title": "The MediaStreamAudioSourceNode Interface", - "number": "1.24" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioSourceNode/MediaStreamAudioSourceNode(context, options)", - "MediaStreamAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioSourceNode/MediaStreamAudioSourceNode(context, options)", - "MediaStreamAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "linkingText": [ - "MediaStreamAudioSourceNode(context, options)", - "constructor(context, options)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "MediaStreamAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.24.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-mediastreamaudiosourcenode-input-track-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-input-track-slot", - "linkingText": [ - "[[input track]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "MediaStreamAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-mediastreamaudiosourcenode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediastreamaudiosourcenode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediastreamaudiosourcenode-mediastream", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-mediastream", - "linkingText": [ - "mediaStream" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "MediaStreamAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceNode-attributes", - "title": "Attributes", - "number": "1.24.2" - }, - "definedIn": "dt" - }, - { - "id": "MediaStreamAudioSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceOptions", - "linkingText": [ - "MediaStreamAudioSourceOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceOptions", - "title": "MediaStreamAudioSourceOptions", - "number": "1.24.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediastreamaudiosourceoptions-mediastream", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourceoptions-mediastream", - "linkingText": [ - "mediaStream" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "MediaStreamAudioSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-mediastreamaudiosourceoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-mediastreamaudiosourceoptions-members", - "title": "Dictionary MediaStreamAudioSourceOptions Members", - "number": "1.24.3.1" - }, - "definedIn": "dt" - }, - { - "id": "MediaStreamTrackAudioSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceNode", - "linkingText": [ - "MediaStreamTrackAudioSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamTrackAudioSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceNode", - "title": "The MediaStreamTrackAudioSourceNode Interface", - "number": "1.25" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamTrackAudioSourceNode/MediaStreamTrackAudioSourceNode(context, options)", - "MediaStreamTrackAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamTrackAudioSourceNode/MediaStreamTrackAudioSourceNode(context, options)", - "MediaStreamTrackAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "linkingText": [ - "MediaStreamTrackAudioSourceNode(context, options)", - "constructor(context, options)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "MediaStreamTrackAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamTrackAudioSourceNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.25.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-mediastreamtrackaudiosourcenode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourcenode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamTrackAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediastreamtrackaudiosourcenode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourcenode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamTrackAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "MediaStreamTrackAudioSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceOptions", - "linkingText": [ - "MediaStreamTrackAudioSourceOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamTrackAudioSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceOptions", - "title": "MediaStreamTrackAudioSourceOptions", - "number": "1.25.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "href": "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "linkingText": [ - "mediaStreamTrack" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "MediaStreamTrackAudioSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-mediastreamtrackaudiosourceoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-mediastreamtrackaudiosourceoptions-members", - "title": "Dictionary MediaStreamTrackAudioSourceOptions Members", - "number": "1.25.2.1" - }, - "definedIn": "dt" - }, - { - "id": "OscillatorNode", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorNode", - "linkingText": [ - "OscillatorNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "heading" - }, - { - "id": "computedoscfrequency", - "href": "https://webaudio.github.io/web-audio-api/#computedoscfrequency", - "linkingText": [ - "computedOscFrequency" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-oscillatortype", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-oscillatortype", - "linkingText": [ - "OscillatorType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-oscillatortype-sine", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatortype-sine", - "linkingText": [ - "\"sine\"", - "sine" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OscillatorType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatortype-square", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatortype-square", - "linkingText": [ - "\"square\"", - "square" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OscillatorType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatortype-sawtooth", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatortype-sawtooth", - "linkingText": [ - "\"sawtooth\"", - "sawtooth" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OscillatorType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatortype-triangle", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatortype-triangle", - "linkingText": [ - "\"triangle\"", - "triangle" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OscillatorType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatortype-custom", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatortype-custom", - "linkingText": [ - "\"custom\"", - "custom" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OscillatorType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatornode-oscillatornode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-oscillatornode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/OscillatorNode(context, options)", - "OscillatorNode/constructor(context, options)", - "OscillatorNode/OscillatorNode(context)", - "OscillatorNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-oscillatornode-oscillatornode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-oscillatornode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/OscillatorNode(context, options)", - "OscillatorNode/constructor(context, options)", - "OscillatorNode/OscillatorNode(context)", - "OscillatorNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", - "linkingText": [ - "periodicWave" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/setPeriodicWave(periodicWave)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-oscillatornode-oscillatornode", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-oscillatornode", - "linkingText": [ - "OscillatorNode(context, options)", - "constructor(context, options)", - "OscillatorNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "OscillatorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorNode-constructors", - "title": "Constructors", - "number": "1.26.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatornode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatornode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatornode-detune", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OscillatorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorNode-attributes", - "title": "Attributes", - "number": "1.26.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatornode-frequency", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-frequency", - "linkingText": [ - "frequency" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OscillatorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatornode-type", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OscillatorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatornode-setperiodicwave", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-setperiodicwave", - "linkingText": [ - "setPeriodicWave(periodicWave)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "OscillatorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorNode-methods", - "title": "Methods", - "number": "1.26.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatornode-setperiodicwave-periodicwave", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-setperiodicwave-periodicwave", - "linkingText": [ - "periodicWave" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/setPeriodicWave()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "OscillatorOptions", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorOptions", - "linkingText": [ - "OscillatorOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorOptions", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorOptions", - "title": "OscillatorOptions", - "number": "1.26.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-oscillatoroptions-detune", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatoroptions-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OscillatorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-oscillatoroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-oscillatoroptions-members", - "title": "Dictionary OscillatorOptions Members", - "number": "1.26.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatoroptions-frequency", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatoroptions-frequency", - "linkingText": [ - "frequency" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OscillatorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatoroptions-periodicwave", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatoroptions-periodicwave", - "linkingText": [ - "periodicWave" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OscillatorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatoroptions-type", - "href": "https://webaudio.github.io/web-audio-api/#dom-oscillatoroptions-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OscillatorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "PannerNode", - "href": "https://webaudio.github.io/web-audio-api/#PannerNode", - "linkingText": [ - "PannerNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://webaudio.github.io/web-audio-api/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "heading" - }, - { - "id": "enumdef-panningmodeltype", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-panningmodeltype", - "linkingText": [ - "PanningModelType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-panningmodeltype-equalpower", - "href": "https://webaudio.github.io/web-audio-api/#dom-panningmodeltype-equalpower", - "linkingText": [ - "\"equalpower\"", - "equalpower" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "PanningModelType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-panningmodeltype-hrtf", - "href": "https://webaudio.github.io/web-audio-api/#dom-panningmodeltype-hrtf", - "linkingText": [ - "\"HRTF\"", - "HRTF" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "PanningModelType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "effective-automation-rate", - "href": "https://webaudio.github.io/web-audio-api/#effective-automation-rate", - "linkingText": [ - "effective automation rate" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-distancemodeltype", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-distancemodeltype", - "linkingText": [ - "DistanceModelType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-distancemodeltype-linear", - "href": "https://webaudio.github.io/web-audio-api/#dom-distancemodeltype-linear", - "linkingText": [ - "\"linear\"", - "linear" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "DistanceModelType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-distancemodeltype-inverse", - "href": "https://webaudio.github.io/web-audio-api/#dom-distancemodeltype-inverse", - "linkingText": [ - "\"inverse\"", - "inverse" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "DistanceModelType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-distancemodeltype-exponential", - "href": "https://webaudio.github.io/web-audio-api/#dom-distancemodeltype-exponential", - "linkingText": [ - "\"exponential\"", - "exponential" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "DistanceModelType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-pannernode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-pannernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/PannerNode(context, options)", - "PannerNode/constructor(context, options)", - "PannerNode/PannerNode(context)", - "PannerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-pannernode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-pannernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/PannerNode(context, options)", - "PannerNode/constructor(context, options)", - "PannerNode/PannerNode(context)", - "PannerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setposition-x-y-z-x", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-x-y-z-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setposition-x-y-z-y", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-x-y-z-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setposition-x-y-z-z", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-x-y-z-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setorientation-x-y-z-x", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-x-y-z-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setorientation-x-y-z-y", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-x-y-z-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setorientation-x-y-z-z", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-x-y-z-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-pannernode", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-pannernode", - "linkingText": [ - "PannerNode(context, options)", - "constructor(context, options)", - "PannerNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#PannerNode-constructors", - "title": "Constructors", - "number": "1.27.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-coneinnerangle", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-coneinnerangle", - "linkingText": [ - "coneInnerAngle" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-coneouterangle", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-coneouterangle", - "linkingText": [ - "coneOuterAngle" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-coneoutergain", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-coneoutergain", - "linkingText": [ - "coneOuterGain" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-distancemodel", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-distancemodel", - "linkingText": [ - "distanceModel" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-maxdistance", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-maxdistance", - "linkingText": [ - "maxDistance" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-orientationx", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-orientationx", - "linkingText": [ - "orientationX" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-orientationy", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-orientationy", - "linkingText": [ - "orientationY" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-orientationz", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-orientationz", - "linkingText": [ - "orientationZ" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-panningmodel", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-panningmodel", - "linkingText": [ - "panningModel" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-positionx", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-positionx", - "linkingText": [ - "positionX" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-positiony", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-positiony", - "linkingText": [ - "positionY" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-positionz", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-positionz", - "linkingText": [ - "positionZ" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-refdistance", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-refdistance", - "linkingText": [ - "refDistance" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-rollofffactor", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-rollofffactor", - "linkingText": [ - "rolloffFactor" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-setorientation", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation", - "linkingText": [ - "setOrientation(x, y, z)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#PannerNode-methods", - "title": "Methods", - "number": "1.27.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-setorientation-x", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-setorientation-y", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-setorientation-z", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-setposition", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition", - "linkingText": [ - "setPosition(x, y, z)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-setposition-x", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-setposition-y", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-setposition-z", - "href": "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "PannerOptions", - "href": "https://webaudio.github.io/web-audio-api/#PannerOptions", - "linkingText": [ - "PannerOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PannerOptions", - "href": "https://webaudio.github.io/web-audio-api/#PannerOptions", - "title": "PannerOptions", - "number": "1.27.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-panneroptions-coneinnerangle", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-coneinnerangle", - "linkingText": [ - "coneInnerAngle" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-coneouterangle", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-coneouterangle", - "linkingText": [ - "coneOuterAngle" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-coneoutergain", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-coneoutergain", - "linkingText": [ - "coneOuterGain" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-distancemodel", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-distancemodel", - "linkingText": [ - "distanceModel" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-maxdistance", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-maxdistance", - "linkingText": [ - "maxDistance" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-orientationx", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-orientationx", - "linkingText": [ - "orientationX" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-orientationy", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-orientationy", - "linkingText": [ - "orientationY" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-orientationz", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-orientationz", - "linkingText": [ - "orientationZ" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-panningmodel", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-panningmodel", - "linkingText": [ - "panningModel" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-positionx", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-positionx", - "linkingText": [ - "positionX" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-positiony", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-positiony", - "linkingText": [ - "positionY" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-positionz", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-positionz", - "linkingText": [ - "positionZ" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-refdistance", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-refdistance", - "linkingText": [ - "refDistance" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-rollofffactor", - "href": "https://webaudio.github.io/web-audio-api/#dom-panneroptions-rollofffactor", - "linkingText": [ - "rolloffFactor" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "PeriodicWave", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWave", - "linkingText": [ - "PeriodicWave" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWave", - "title": "The PeriodicWave Interface", - "number": "1.28" - }, - "definedIn": "heading" - }, - { - "id": "dom-periodicwave-periodicwave-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwave-periodicwave-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PeriodicWave/PeriodicWave(context, options)", - "PeriodicWave/constructor(context, options)", - "PeriodicWave/PeriodicWave(context)", - "PeriodicWave/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-periodicwave-periodicwave-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwave-periodicwave-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PeriodicWave/PeriodicWave(context, options)", - "PeriodicWave/constructor(context, options)", - "PeriodicWave/PeriodicWave(context)", - "PeriodicWave/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-periodicwave-periodicwave", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwave-periodicwave", - "linkingText": [ - "PeriodicWave(context, options)", - "constructor(context, options)", - "PeriodicWave(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "PeriodicWave" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave-constructors", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWave-constructors", - "title": "Constructors", - "number": "1.28.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-periodicwave-real-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwave-real-slot", - "linkingText": [ - "[[real]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PeriodicWave" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-periodicwave-imag-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwave-imag-slot", - "linkingText": [ - "[[imag]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PeriodicWave" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-periodicwave-normalize-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwave-normalize-slot", - "linkingText": [ - "[[normalize]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PeriodicWave" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-periodicwave-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwave-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PeriodicWave/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-periodicwave-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwave-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PeriodicWave/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "PeriodicWaveConstraints", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWaveConstraints", - "linkingText": [ - "PeriodicWaveConstraints" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWaveConstraints", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWaveConstraints", - "title": "PeriodicWaveConstraints", - "number": "1.28.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-periodicwaveconstraints-disablenormalization", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwaveconstraints-disablenormalization", - "linkingText": [ - "disableNormalization" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PeriodicWaveConstraints" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-periodicwaveconstraints-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-periodicwaveconstraints-members", - "title": "Dictionary PeriodicWaveConstraints Members", - "number": "1.28.2.1" - }, - "definedIn": "dt" - }, - { - "id": "PeriodicWaveOptions", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWaveOptions", - "linkingText": [ - "PeriodicWaveOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWaveOptions", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWaveOptions", - "title": "PeriodicWaveOptions", - "number": "1.28.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-periodicwaveoptions-imag", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwaveoptions-imag", - "linkingText": [ - "imag" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PeriodicWaveOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-periodicwaveoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-periodicwaveoptions-members", - "title": "Dictionary PeriodicWaveOptions Members", - "number": "1.28.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-periodicwaveoptions-real", - "href": "https://webaudio.github.io/web-audio-api/#dom-periodicwaveoptions-real", - "linkingText": [ - "real" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PeriodicWaveOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "ScriptProcessorNode", - "href": "https://webaudio.github.io/web-audio-api/#ScriptProcessorNode", - "linkingText": [ - "ScriptProcessorNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ScriptProcessorNode", - "href": "https://webaudio.github.io/web-audio-api/#ScriptProcessorNode", - "title": "The ScriptProcessorNode Interface - DEPRECATED", - "number": "1.29" - }, - "definedIn": "heading" - }, - { - "id": "dom-scriptprocessornode-buffersize", - "href": "https://webaudio.github.io/web-audio-api/#dom-scriptprocessornode-buffersize", - "linkingText": [ - "bufferSize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ScriptProcessorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ScriptProcessorNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#ScriptProcessorNode-attributes", - "title": "Attributes", - "number": "1.29.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-scriptprocessornode-onaudioprocess", - "href": "https://webaudio.github.io/web-audio-api/#dom-scriptprocessornode-onaudioprocess", - "linkingText": [ - "onaudioprocess" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ScriptProcessorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-scriptprocessornode-audioprocess", - "href": "https://webaudio.github.io/web-audio-api/#eventdef-scriptprocessornode-audioprocess", - "linkingText": [ - "audioprocess" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "ScriptProcessorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "stereopannernode", - "href": "https://webaudio.github.io/web-audio-api/#stereopannernode", - "linkingText": [ - "StereoPannerNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "stereopannernode", - "href": "https://webaudio.github.io/web-audio-api/#stereopannernode", - "title": "The StereoPannerNode Interface", - "number": "1.30" - }, - "definedIn": "heading" - }, - { - "id": "dom-stereopannernode-stereopannernode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-stereopannernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "StereoPannerNode/StereoPannerNode(context, options)", - "StereoPannerNode/constructor(context, options)", - "StereoPannerNode/StereoPannerNode(context)", - "StereoPannerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-stereopannernode-stereopannernode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-stereopannernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "StereoPannerNode/StereoPannerNode(context, options)", - "StereoPannerNode/constructor(context, options)", - "StereoPannerNode/StereoPannerNode(context)", - "StereoPannerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-stereopannernode-stereopannernode", - "href": "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-stereopannernode", - "linkingText": [ - "StereoPannerNode(context, options)", - "constructor(context, options)", - "StereoPannerNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "StereoPannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "StereoPannerNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#StereoPannerNode-constructors", - "title": "Constructors", - "number": "1.30.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-stereopannernode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "StereoPannerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-stereopannernode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "StereoPannerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-stereopannernode-pan", - "href": "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-pan", - "linkingText": [ - "pan" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "StereoPannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "StereoPannerNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#StereoPannerNode-attributes", - "title": "Attributes", - "number": "1.30.2" - }, - "definedIn": "dt" - }, - { - "id": "StereoPannerOptions", - "href": "https://webaudio.github.io/web-audio-api/#StereoPannerOptions", - "linkingText": [ - "StereoPannerOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "StereoPannerOptions", - "href": "https://webaudio.github.io/web-audio-api/#StereoPannerOptions", - "title": "StereoPannerOptions", - "number": "1.30.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-stereopanneroptions-pan", - "href": "https://webaudio.github.io/web-audio-api/#dom-stereopanneroptions-pan", - "linkingText": [ - "pan" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "StereoPannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-stereopanneroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-stereopanneroptions-members", - "title": "Dictionary StereoPannerOptions Members", - "number": "1.30.3.1" - }, - "definedIn": "dt" - }, - { - "id": "WaveShaperNode", - "href": "https://webaudio.github.io/web-audio-api/#WaveShaperNode", - "linkingText": [ - "WaveShaperNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode", - "href": "https://webaudio.github.io/web-audio-api/#WaveShaperNode", - "title": "The WaveShaperNode Interface", - "number": "1.31" - }, - "definedIn": "heading" - }, - { - "id": "enumdef-oversampletype", - "href": "https://webaudio.github.io/web-audio-api/#enumdef-oversampletype", - "linkingText": [ - "OverSampleType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-oversampletype-none", - "href": "https://webaudio.github.io/web-audio-api/#dom-oversampletype-none", - "linkingText": [ - "\"none\"", - "none" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OverSampleType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oversampletype-2x", - "href": "https://webaudio.github.io/web-audio-api/#dom-oversampletype-2x", - "linkingText": [ - "\"2x\"", - "2x" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OverSampleType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oversampletype-4x", - "href": "https://webaudio.github.io/web-audio-api/#dom-oversampletype-4x", - "linkingText": [ - "\"4x\"", - "4x" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OverSampleType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-waveshapernode-waveshapernode-context-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-waveshapernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "WaveShaperNode/WaveShaperNode(context, options)", - "WaveShaperNode/constructor(context, options)", - "WaveShaperNode/WaveShaperNode(context)", - "WaveShaperNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-waveshapernode-waveshapernode-context-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-waveshapernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "WaveShaperNode/WaveShaperNode(context, options)", - "WaveShaperNode/constructor(context, options)", - "WaveShaperNode/WaveShaperNode(context)", - "WaveShaperNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-waveshapernode-waveshapernode", - "href": "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-waveshapernode", - "linkingText": [ - "WaveShaperNode(context, options)", - "constructor(context, options)", - "WaveShaperNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "WaveShaperNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#WaveShaperNode-constructors", - "title": "Constructors", - "number": "1.31.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-waveshapernode-curve-set-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-curve-set-slot", - "linkingText": [ - "[[curve set]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "WaveShaperNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-waveshapernode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "WaveShaperNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-waveshapernode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "WaveShaperNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-waveshapernode-curve", - "href": "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-curve", - "linkingText": [ - "curve" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "WaveShaperNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#WaveShaperNode-attributes", - "title": "Attributes", - "number": "1.31.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-waveshapernode-oversample", - "href": "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-oversample", - "linkingText": [ - "oversample" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "WaveShaperNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "WaveShaperOptions", - "href": "https://webaudio.github.io/web-audio-api/#WaveShaperOptions", - "linkingText": [ - "WaveShaperOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperOptions", - "href": "https://webaudio.github.io/web-audio-api/#WaveShaperOptions", - "title": "WaveShaperOptions", - "number": "1.31.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-waveshaperoptions-curve", - "href": "https://webaudio.github.io/web-audio-api/#dom-waveshaperoptions-curve", - "linkingText": [ - "curve" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "WaveShaperOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-waveshaperoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-waveshaperoptions-members", - "title": "Dictionary WaveShaperOptions Members", - "number": "1.31.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-waveshaperoptions-oversample", - "href": "https://webaudio.github.io/web-audio-api/#dom-waveshaperoptions-oversample", - "linkingText": [ - "oversample" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "WaveShaperOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioWorklet", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorklet", - "linkingText": [ - "AudioWorklet" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorklet", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorklet", - "title": "The AudioWorklet Interface", - "number": "1.32" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioworklet-port", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworklet-port", - "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorklet" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorklet-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorklet-attributes", - "title": "Attributes", - "number": "1.32.1" - }, - "definedIn": "dt" - }, - { - "id": "node-name-to-parameter-descriptor-map", - "href": "https://webaudio.github.io/web-audio-api/#node-name-to-parameter-descriptor-map", - "linkingText": [ - "node name to parameter descriptor map" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorklet-concepts", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorklet-concepts", - "title": "Concepts", - "number": "1.32.2" - }, - "definedIn": "prose" - }, - { - "id": "AudioWorkletGlobalScope", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletGlobalScope", - "linkingText": [ - "AudioWorkletGlobalScope" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletGlobalScope", - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - "definedIn": "heading" - }, - { - "id": "node-name-to-processor-constructor-map", - "href": "https://webaudio.github.io/web-audio-api/#node-name-to-processor-constructor-map", - "linkingText": [ - "node name to processor constructor map" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "pending-processor-construction-data", - "href": "https://webaudio.github.io/web-audio-api/#pending-processor-construction-data", - "linkingText": [ - "pending processor construction data" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "pending-processor-construction-data-node-reference", - "href": "https://webaudio.github.io/web-audio-api/#pending-processor-construction-data-node-reference", - "linkingText": [ - "node reference" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "pending processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "pending-processor-construction-data-transferred-port", - "href": "https://webaudio.github.io/web-audio-api/#pending-processor-construction-data-transferred-port", - "linkingText": [ - "transferred port" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "pending processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "callbackdef-audioworkletprocessorconstructor", - "href": "https://webaudio.github.io/web-audio-api/#callbackdef-audioworkletprocessorconstructor", - "linkingText": [ - "AudioWorkletProcessorConstructor" - ], - "localLinkingText": [], - "type": "callback", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletprocessorconstructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocessorconstructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletProcessorConstructor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletglobalscope-currentframe", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-currentframe", - "linkingText": [ - "currentFrame" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletGlobalScope-attributes", - "title": "Attributes", - "number": "1.32.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-currenttime", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-currenttime", - "linkingText": [ - "currentTime" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-samplerate", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-renderquantumsize", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-renderquantumsize", - "linkingText": [ - "renderQuantumSize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-port", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-port", - "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-registerprocessor", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-registerprocessor", - "linkingText": [ - "registerProcessor(name, processorCtor)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletGlobalScope-methods", - "title": "Methods", - "number": "1.32.3.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "linkingText": [ - "name" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletGlobalScope/registerProcessor(name, processorCtor)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "linkingText": [ - "processorCtor" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletGlobalScope/registerProcessor(name, processorCtor)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "processor-construction-data", - "href": "https://webaudio.github.io/web-audio-api/#processor-construction-data", - "linkingText": [ - "processor construction data" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor-instantiation", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletProcessor-instantiation", - "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" - }, - "definedIn": "prose" - }, - { - "id": "processor-construction-data-name", - "href": "https://webaudio.github.io/web-audio-api/#processor-construction-data-name", - "linkingText": [ - "name" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "processor-construction-data-node", - "href": "https://webaudio.github.io/web-audio-api/#processor-construction-data-node", - "linkingText": [ - "node" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "processor-construction-data-options", - "href": "https://webaudio.github.io/web-audio-api/#processor-construction-data-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "processor-construction-data-port", - "href": "https://webaudio.github.io/web-audio-api/#processor-construction-data-port", - "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "AudioWorkletNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletNode", - "linkingText": [ - "AudioWorkletNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletNode", - "title": "The AudioWorkletNode Interface", - "number": "1.32.4" - }, - "definedIn": "heading" - }, - { - "id": "active-source", - "href": "https://webaudio.github.io/web-audio-api/#active-source", - "linkingText": [ - "active source" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "audioparammap", - "href": "https://webaudio.github.io/web-audio-api/#audioparammap", - "linkingText": [ - "AudioParamMap" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletnode-audioworkletnode-context-name-options-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-audioworkletnode-context-name-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/AudioWorkletNode(context, name, options)", - "AudioWorkletNode/constructor(context, name, options)", - "AudioWorkletNode/AudioWorkletNode(context, name)", - "AudioWorkletNode/constructor(context, name)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletnode-audioworkletnode-context-name-options-name", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-audioworkletnode-context-name-options-name", - "linkingText": [ - "name" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/AudioWorkletNode(context, name, options)", - "AudioWorkletNode/constructor(context, name, options)", - "AudioWorkletNode/AudioWorkletNode(context, name)", - "AudioWorkletNode/constructor(context, name)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletnode-audioworkletnode-context-name-options-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-audioworkletnode-context-name-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/AudioWorkletNode(context, name, options)", - "AudioWorkletNode/constructor(context, name, options)", - "AudioWorkletNode/AudioWorkletNode(context, name)", - "AudioWorkletNode/constructor(context, name)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletnode-audioworkletnode", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-audioworkletnode", - "linkingText": [ - "AudioWorkletNode(context, name, options)", - "constructor(context, name, options)", - "AudioWorkletNode(context, name)", - "constructor(context, name)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioWorkletNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletNode-constructors", - "title": "Constructors", - "number": "1.32.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnode-constructor-context", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioworkletnode-constructor-name", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-constructor-name", - "linkingText": [ - "name" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioworkletnode-constructor-options", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioworkletnode-onprocessorerror", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-onprocessorerror", - "linkingText": [ - "onprocessorerror" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletNode-attributes", - "title": "Attributes", - "number": "1.32.4.2" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audioworkletnode-processorerror", - "href": "https://webaudio.github.io/web-audio-api/#eventdef-audioworkletnode-processorerror", - "linkingText": [ - "processorerror" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioWorkletNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioworkletnode-parameters", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-parameters", - "linkingText": [ - "parameters" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnode-port", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-port", - "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioWorkletNodeOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletNodeOptions", - "linkingText": [ - "AudioWorkletNodeOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNodeOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletNodeOptions", - "title": "AudioWorkletNodeOptions", - "number": "1.32.4.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioworkletnodeoptions-numberofinputs", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnodeoptions-numberofinputs", - "linkingText": [ - "numberOfInputs" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioWorkletNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audioworkletnodeoptions-members", - "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnodeoptions-numberofoutputs", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnodeoptions-numberofoutputs", - "linkingText": [ - "numberOfOutputs" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioWorkletNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnodeoptions-outputchannelcount", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnodeoptions-outputchannelcount", - "linkingText": [ - "outputChannelCount" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioWorkletNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnodeoptions-parameterdata", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnodeoptions-parameterdata", - "linkingText": [ - "parameterData" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioWorkletNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnodeoptions-processoroptions", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletnodeoptions-processoroptions", - "linkingText": [ - "processorOptions" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioWorkletNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioWorkletProcessor", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletProcessor", - "linkingText": [ - "AudioWorkletProcessor" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletProcessor", - "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioworkletprocesscallback-inputs", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocesscallback-inputs", - "linkingText": [ - "inputs" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletProcessCallback" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletprocesscallback-outputs", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocesscallback-outputs", - "linkingText": [ - "outputs" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletProcessCallback" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletprocesscallback-parameters", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocesscallback-parameters", - "linkingText": [ - "parameters" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletProcessCallback" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletprocessor-node-reference-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocessor-node-reference-slot", - "linkingText": [ - "[[node reference]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletProcessor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletprocessor-callable-process-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocessor-callable-process-slot", - "linkingText": [ - "[[callable process]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletProcessor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletprocessor-audioworkletprocessor", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocessor-audioworkletprocessor", - "linkingText": [ - "AudioWorkletProcessor()", - "constructor()" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioWorkletProcessor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorketProcessor-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorketProcessor-constructors", - "title": "Constructors", - "number": "1.32.5.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletprocessor-port", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocessor-port", - "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletProcessor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletProcessor-attributes", - "title": "Attributes", - "number": "1.32.5.2" - }, - "definedIn": "dt" - }, - { - "id": "process", - "href": "https://webaudio.github.io/web-audio-api/#process", - "linkingText": [ - "process()" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "callback-audioworketprocess-callback", - "href": "https://webaudio.github.io/web-audio-api/#callback-audioworketprocess-callback", - "title": "Callback AudioWorkletProcessCallback", - "number": "1.32.5.3" - }, - "definedIn": "prose" - }, - { - "id": "parameterdescriptors", - "href": "https://webaudio.github.io/web-audio-api/#parameterdescriptors", - "linkingText": [ - "parameterDescriptors" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "audioworkletprocess-callback-parameters", - "href": "https://webaudio.github.io/web-audio-api/#audioworkletprocess-callback-parameters", - "linkingText": [ - "AudioWorkletProcessCallback", - "AudioWorkletProcessCallback()" - ], - "localLinkingText": [], - "type": "callback", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "audioworkletprocess-callback-parameters", - "href": "https://webaudio.github.io/web-audio-api/#audioworkletprocess-callback-parameters", - "title": "Callback AudioWorkletProcessCallback Parameters", - "number": "1.32.5.3.1" - }, - "definedIn": "heading" - }, - { - "id": "AudioParamDescriptor", - "href": "https://webaudio.github.io/web-audio-api/#AudioParamDescriptor", - "linkingText": [ - "AudioParamDescriptor" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParamDescriptor", - "href": "https://webaudio.github.io/web-audio-api/#AudioParamDescriptor", - "title": "AudioParamDescriptor", - "number": "1.32.5.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioparamdescriptor-automationrate", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-automationrate", - "linkingText": [ - "automationRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioParamDescriptor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioparamdescriptor-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audioparamdescriptor-members", - "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparamdescriptor-defaultvalue", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-defaultvalue", - "linkingText": [ - "defaultValue" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioParamDescriptor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparamdescriptor-maxvalue", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-maxvalue", - "linkingText": [ - "maxValue" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioParamDescriptor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparamdescriptor-minvalue", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-minvalue", - "linkingText": [ - "minValue" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioParamDescriptor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparamdescriptor-name", - "href": "https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-name", - "linkingText": [ - "name" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioParamDescriptor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "dt" - }, - { - "id": "control-thread", - "href": "https://webaudio.github.io/web-audio-api/#control-thread", - "linkingText": [ - "control thread" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "control-thread-and-rendering-thread", - "href": "https://webaudio.github.io/web-audio-api/#control-thread-and-rendering-thread", - "title": "Control Thread and Rendering Thread", - "number": "2.2" - }, - "definedIn": "prose" - }, - { - "id": "rendering-thread", - "href": "https://webaudio.github.io/web-audio-api/#rendering-thread", - "linkingText": [ - "rendering thread" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "control-message-queue", - "href": "https://webaudio.github.io/web-audio-api/#control-message-queue", - "linkingText": [ - "control message queue" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "control-message", - "href": "https://webaudio.github.io/web-audio-api/#control-message", - "linkingText": [ - "control message" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "queuing", - "href": "https://webaudio.github.io/web-audio-api/#queuing", - "linkingText": [ - "queue a control message" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "oldest-message", - "href": "https://webaudio.github.io/web-audio-api/#oldest-message", - "linkingText": [ - "oldest message" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "swap", - "href": "https://webaudio.github.io/web-audio-api/#swap", - "linkingText": [ - "swap" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "render-quantum-size", - "href": "https://webaudio.github.io/web-audio-api/#render-quantum-size", - "linkingText": [ - "render quantum size" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://webaudio.github.io/web-audio-api/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "render-quantum", - "href": "https://webaudio.github.io/web-audio-api/#render-quantum", - "linkingText": [ - "render quantum" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "atomically", - "href": "https://webaudio.github.io/web-audio-api/#atomically", - "linkingText": [ - "atomically" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "system-level-audio-callback", - "href": "https://webaudio.github.io/web-audio-api/#system-level-audio-callback", - "linkingText": [ - "system-level audio callback" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "system-level-audio-callback-buffer-size", - "href": "https://webaudio.github.io/web-audio-api/#system-level-audio-callback-buffer-size", - "linkingText": [ - "system-level audio callback buffer size" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "load-value", - "href": "https://webaudio.github.io/web-audio-api/#load-value", - "linkingText": [ - "load value" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "audio-buffer-underrun", - "href": "https://webaudio.github.io/web-audio-api/#audio-buffer-underrun", - "linkingText": [ - "audio buffer underrun" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "baseaudiocontext-associated-task-queue", - "href": "https://webaudio.github.io/web-audio-api/#baseaudiocontext-associated-task-queue", - "linkingText": [ - "associated task queue" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "BaseAudioContext" - ], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-current-frame-slot", - "href": "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-current-frame-slot", - "linkingText": [ - "[[current frame]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "visit", - "href": "https://webaudio.github.io/web-audio-api/#visit", - "linkingText": [ - "Visit" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "input-audioparam-buffer", - "href": "https://webaudio.github.io/web-audio-api/#input-audioparam-buffer", - "linkingText": [ - "input AudioParam buffer" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "input-buffer", - "href": "https://webaudio.github.io/web-audio-api/#input-buffer", - "linkingText": [ - "input buffer" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "mute", - "href": "https://webaudio.github.io/web-audio-api/#mute", - "linkingText": [ - "Muting" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "available-for-reading", - "href": "https://webaudio.github.io/web-audio-api/#available-for-reading", - "linkingText": [ - "Making a buffer available for reading" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "recording-the-input", - "href": "https://webaudio.github.io/web-audio-api/#recording-the-input", - "linkingText": [ - "Recording the input" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "computing-a-block-of-audio", - "href": "https://webaudio.github.io/web-audio-api/#computing-a-block-of-audio", - "linkingText": [ - "Computing a block of audio" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "processing-an-input-buffer", - "href": "https://webaudio.github.io/web-audio-api/#processing-an-input-buffer", - "linkingText": [ - "Processing an input buffer" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "mixing-rules", - "href": "https://webaudio.github.io/web-audio-api/#mixing-rules", - "linkingText": [ - "mixing rules" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "channel-up-mixing-and-down-mixing", - "href": "https://webaudio.github.io/web-audio-api/#channel-up-mixing-and-down-mixing", - "title": "Channel Up-Mixing and Down-Mixing", - "number": "4" - }, - "definedIn": "prose" - }, - { - "id": "up-mixing", - "href": "https://webaudio.github.io/web-audio-api/#up-mixing", - "linkingText": [ - "up-mixing" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "down-mixing", - "href": "https://webaudio.github.io/web-audio-api/#down-mixing", - "linkingText": [ - "down-mixing" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "title": "Web Audio API 1.1" - }, - "definedIn": "prose" - }, - { - "id": "linear-pcm", - "href": "https://webaudio.github.io/web-audio-api/#linear-pcm", - "linkingText": [ - "linear PCM" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "audio-sample-format", - "href": "https://webaudio.github.io/web-audio-api/#audio-sample-format", - "title": "Audio sample format", - "number": "5.1" - }, - "definedIn": "prose" - } - ] -} \ No newline at end of file diff --git a/ed/events/webaudio.json b/ed/events/webaudio.json deleted file mode 100644 index 23cb2e487d00..000000000000 --- a/ed/events/webaudio.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://webaudio.github.io/web-audio-api/" - }, - "events": [ - { - "src": { - "format": "fire an event phrasing", - "href": "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire" - }, - "href": "https://webaudio.github.io/web-audio-api/#eventdef-audiocontext-error", - "type": "error", - "targets": [ - "AudioContext" - ], - "interface": "Event" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A0" - }, - "href": "https://webaudio.github.io/web-audio-api/#eventdef-baseaudiocontext-statechange", - "type": "statechange", - "targets": [ - "BaseAudioContext" - ], - "interface": "Event" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A5" - }, - "href": "https://webaudio.github.io/web-audio-api/#eventdef-audiocontext-sinkchange", - "type": "sinkchange", - "targets": [ - "AudioContext" - ], - "interface": "Event" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A7" - }, - "href": "https://webaudio.github.io/web-audio-api/#eventdef-audiorendercapacity-update", - "type": "update", - "targets": [ - "AudioRenderCapacity" - ], - "interface": "AudioRenderCapacityEvent" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A8" - }, - "href": "https://webaudio.github.io/web-audio-api/#eventdef-offlineaudiocontext-complete", - "type": "complete", - "targets": [ - "OfflineAudioContext" - ], - "interface": "OfflineAudioCompletionEvent" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A0%E2%91%A0" - }, - "href": "https://webaudio.github.io/web-audio-api/#eventdef-audioworkletnode-processorerror", - "type": "processorerror", - "targets": [ - "AudioWorkletNode" - ], - "interface": "ErrorEvent" - }, - { - "type": "ended", - "targets": [ - "AudioScheduledSourceNode" - ], - "src": { - "format": "IDL eventHandler" - }, - "href": "https://webaudio.github.io/web-audio-api/#eventdef-audioscheduledsourcenode-ended" - }, - { - "type": "audioprocess", - "targets": [ - "ScriptProcessorNode" - ], - "src": { - "format": "IDL eventHandler" - }, - "href": "https://webaudio.github.io/web-audio-api/#eventdef-scriptprocessornode-audioprocess" - } - ] -} \ No newline at end of file diff --git a/ed/headings/webaudio.json b/ed/headings/webaudio.json deleted file mode 100644 index 82dcb4c69e20..000000000000 --- a/ed/headings/webaudio.json +++ /dev/null @@ -1,1884 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://webaudio.github.io/web-audio-api/" - }, - "headings": [ - { - "id": "title", - "href": "https://webaudio.github.io/web-audio-api/#title", - "level": 1, - "title": "Web Audio API 1.1" - }, - { - "id": "abstract", - "href": "https://webaudio.github.io/web-audio-api/#abstract", - "level": 2, - "title": "Abstract" - }, - { - "id": "sotd", - "href": "https://webaudio.github.io/web-audio-api/#sotd", - "level": 2, - "title": "Status of this document" - }, - { - "id": "toc", - "href": "https://webaudio.github.io/web-audio-api/#toc", - "level": 2, - "title": "Table of Contents" - }, - { - "id": "introductory", - "href": "https://webaudio.github.io/web-audio-api/#introductory", - "level": 2, - "title": "Introduction" - }, - { - "id": "Features", - "href": "https://webaudio.github.io/web-audio-api/#Features", - "level": 3, - "title": "Features" - }, - { - "id": "ModularRouting", - "href": "https://webaudio.github.io/web-audio-api/#ModularRouting", - "level": 4, - "title": "Modular Routing" - }, - { - "id": "APIOverview", - "href": "https://webaudio.github.io/web-audio-api/#APIOverview", - "level": 3, - "title": "API Overview" - }, - { - "id": "audioapi", - "href": "https://webaudio.github.io/web-audio-api/#audioapi", - "level": 2, - "title": "The Audio API", - "number": "1" - }, - { - "id": "BaseAudioContext", - "href": "https://webaudio.github.io/web-audio-api/#BaseAudioContext", - "level": 3, - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - { - "id": "BaseAudioContext-attributes", - "href": "https://webaudio.github.io/web-audio-api/#BaseAudioContext-attributes", - "level": 4, - "title": "Attributes", - "number": "1.1.1" - }, - { - "id": "BaseAudioContent-methods", - "href": "https://webaudio.github.io/web-audio-api/#BaseAudioContent-methods", - "level": 4, - "title": "Methods", - "number": "1.1.2" - }, - { - "id": "callback-decodesuccesscallback-parameters", - "href": "https://webaudio.github.io/web-audio-api/#callback-decodesuccesscallback-parameters", - "level": 4, - "title": "Callback DecodeSuccessCallback() Parameters", - "number": "1.1.3" - }, - { - "id": "callback-decodeerrorcallback-parameters", - "href": "https://webaudio.github.io/web-audio-api/#callback-decodeerrorcallback-parameters", - "level": 4, - "title": "Callback DecodeErrorCallback() Parameters", - "number": "1.1.4" - }, - { - "id": "lifetime-AudioContext", - "href": "https://webaudio.github.io/web-audio-api/#lifetime-AudioContext", - "level": 4, - "title": "Lifetime", - "number": "1.1.5" - }, - { - "id": "lack-of-introspection-or-serialization-primitives", - "href": "https://webaudio.github.io/web-audio-api/#lack-of-introspection-or-serialization-primitives", - "level": 4, - "title": "Lack of Introspection or Serialization Primitives", - "number": "1.1.6" - }, - { - "id": "system-resources-associated-with-baseaudiocontext-subclasses", - "href": "https://webaudio.github.io/web-audio-api/#system-resources-associated-with-baseaudiocontext-subclasses", - "level": 4, - "title": "System Resources Associated with BaseAudioContext Subclasses", - "number": "1.1.7" - }, - { - "id": "AudioContext", - "href": "https://webaudio.github.io/web-audio-api/#AudioContext", - "level": 3, - "title": "The AudioContext Interface", - "number": "1.2" - }, - { - "id": "AudioContext-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AudioContext-constructors", - "level": 4, - "title": "Constructors", - "number": "1.2.1" - }, - { - "id": "AudioContext-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioContext-attributes", - "level": 4, - "title": "Attributes", - "number": "1.2.2" - }, - { - "id": "AudioContext-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioContext-methods", - "level": 4, - "title": "Methods", - "number": "1.2.3" - }, - { - "id": "validating-sink-identifier", - "href": "https://webaudio.github.io/web-audio-api/#validating-sink-identifier", - "level": 4, - "title": "Validating sinkId", - "number": "1.2.4" - }, - { - "id": "AudioContextOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioContextOptions", - "level": 4, - "title": "AudioContextOptions", - "number": "1.2.5" - }, - { - "id": "dictionary-audiocontextoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audiocontextoptions-members", - "level": 5, - "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" - }, - { - "id": "AudioSinkOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioSinkOptions", - "level": 4, - "title": "AudioSinkOptions", - "number": "1.2.6" - }, - { - "id": "dictionary-audiosinkoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audiosinkoptions-members", - "level": 5, - "title": "Dictionary AudioSinkOptions Members", - "number": "1.2.6.1" - }, - { - "id": "AudioSinkInfo", - "href": "https://webaudio.github.io/web-audio-api/#AudioSinkInfo", - "level": 4, - "title": "AudioSinkInfo", - "number": "1.2.7" - }, - { - "id": "audiosinkinfo-attributes", - "href": "https://webaudio.github.io/web-audio-api/#audiosinkinfo-attributes", - "level": 5, - "title": "Attributes", - "number": "1.2.7.1" - }, - { - "id": "AudioTimestamp", - "href": "https://webaudio.github.io/web-audio-api/#AudioTimestamp", - "level": 4, - "title": "AudioTimestamp", - "number": "1.2.8" - }, - { - "id": "dictionary-audiotimestamp-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audiotimestamp-members", - "level": 5, - "title": "Dictionary AudioTimestamp Members", - "number": "1.2.8.1" - }, - { - "id": "AudioRenderCapacity", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacity", - "level": 4, - "title": "AudioRenderCapacity", - "number": "1.2.9" - }, - { - "id": "AudioRenderCapacity-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacity-attributes", - "level": 5, - "title": "Attributes", - "number": "1.2.9.1" - }, - { - "id": "AudioRenderCapacity-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacity-methods", - "level": 5, - "title": "Methods", - "number": "1.2.9.2" - }, - { - "id": "AudioRenderCapacityOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityOptions", - "level": 4, - "title": "AudioRenderCapacityOptions", - "number": "1.2.10" - }, - { - "id": "dictionary-AudioRenderCapacityOptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-AudioRenderCapacityOptions-members", - "level": 5, - "title": "Dictionary AudioRenderCapacityOptions Members", - "number": "1.2.10.1" - }, - { - "id": "AudioRenderCapacityEvent", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityEvent", - "level": 4, - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityEvent-attributes", - "level": 5, - "title": "Attributes", - "number": "1.2.11.1" - }, - { - "id": "OfflineAudioContext", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext", - "level": 3, - "title": "The OfflineAudioContext Interface", - "number": "1.3" - }, - { - "id": "OfflineAudioContext-constructors", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext-constructors", - "level": 4, - "title": "Constructors", - "number": "1.3.1" - }, - { - "id": "OfflineAudioContext-attributes", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext-attributes", - "level": 4, - "title": "Attributes", - "number": "1.3.2" - }, - { - "id": "OfflineAudioContext-methods", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContext-methods", - "level": 4, - "title": "Methods", - "number": "1.3.3" - }, - { - "id": "OfflineAudioContextOptions", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioContextOptions", - "level": 4, - "title": "OfflineAudioContextOptions", - "number": "1.3.4" - }, - { - "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-offlineaudiocontextoptions-members", - "level": 5, - "title": "Dictionary OfflineAudioContextOptions Members", - "number": "1.3.4.1" - }, - { - "id": "OfflineAudioCompletionEvent", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEvent", - "level": 4, - "title": "The OfflineAudioCompletionEvent Interface", - "number": "1.3.5" - }, - { - "id": "OfflineAudioCompletionEvent-attributes", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEvent-attributes", - "level": 5, - "title": "Attributes", - "number": "1.3.5.1" - }, - { - "id": "OfflineAudioCompletionEventInit", - "href": "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEventInit", - "level": 5, - "title": "OfflineAudioCompletionEventInit", - "number": "1.3.5.2" - }, - { - "id": "dictionary-offlineaudiocompletioneventinit-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-offlineaudiocompletioneventinit-members", - "level": 6, - "title": "Dictionary OfflineAudioCompletionEventInit Members", - "number": "1.3.5.2.1" - }, - { - "id": "AudioBuffer", - "href": "https://webaudio.github.io/web-audio-api/#AudioBuffer", - "level": 3, - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - { - "id": "AudioBuffer-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AudioBuffer-constructors", - "level": 4, - "title": "Constructors", - "number": "1.4.1" - }, - { - "id": "AudioBuffer-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioBuffer-attributes", - "level": 4, - "title": "Attributes", - "number": "1.4.2" - }, - { - "id": "AudioBuffer-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioBuffer-methods", - "level": 4, - "title": "Methods", - "number": "1.4.3" - }, - { - "id": "AudioBufferOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferOptions", - "level": 4, - "title": "AudioBufferOptions", - "number": "1.4.4" - }, - { - "id": "dictionary-audiobufferoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audiobufferoptions-members", - "level": 5, - "title": "Dictionary AudioBufferOptions Members", - "number": "1.4.4.1" - }, - { - "id": "AudioNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode", - "level": 3, - "title": "The AudioNode Interface", - "number": "1.5" - }, - { - "id": "AudioNode-creation", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode-creation", - "level": 4, - "title": "AudioNode Creation", - "number": "1.5.1" - }, - { - "id": "AudioNode-tail", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode-tail", - "level": 4, - "title": "AudioNode Tail-Time", - "number": "1.5.2" - }, - { - "id": "AudioNode-actively-processing", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode-actively-processing", - "level": 4, - "title": "AudioNode Lifetime", - "number": "1.5.3" - }, - { - "id": "AudioNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.5.4" - }, - { - "id": "AudioNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioNode-methods", - "level": 4, - "title": "Methods", - "number": "1.5.5" - }, - { - "id": "AudioNodeOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioNodeOptions", - "level": 4, - "title": "AudioNodeOptions", - "number": "1.5.6" - }, - { - "id": "dictionary-audionodeoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audionodeoptions-members", - "level": 5, - "title": "Dictionary AudioNodeOptions Members", - "number": "1.5.6.1" - }, - { - "id": "AudioParam", - "href": "https://webaudio.github.io/web-audio-api/#AudioParam", - "level": 3, - "title": "The AudioParam Interface", - "number": "1.6" - }, - { - "id": "AudioParam-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioParam-attributes", - "level": 4, - "title": "Attributes", - "number": "1.6.1" - }, - { - "id": "AudioParam-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioParam-methods", - "level": 4, - "title": "Methods", - "number": "1.6.2" - }, - { - "id": "computation-of-value", - "href": "https://webaudio.github.io/web-audio-api/#computation-of-value", - "level": 4, - "title": "Computation of Value", - "number": "1.6.3" - }, - { - "id": "example1-AudioParam", - "href": "https://webaudio.github.io/web-audio-api/#example1-AudioParam", - "level": 4, - "title": "AudioParam Automation Example", - "number": "1.6.4" - }, - { - "id": "AudioScheduledSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode", - "level": 3, - "title": "The AudioScheduledSourceNode Interface", - "number": "1.7" - }, - { - "id": "AudioScheduledSourceNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.7.1" - }, - { - "id": "AudioScheduledSourceNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode-methods", - "level": 4, - "title": "Methods", - "number": "1.7.2" - }, - { - "id": "AnalyserNode", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserNode", - "level": 3, - "title": "The AnalyserNode Interface", - "number": "1.8" - }, - { - "id": "AnalyserNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.8.1" - }, - { - "id": "AnalyserNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.8.2" - }, - { - "id": "AnalyserNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserNode-methods", - "level": 4, - "title": "Methods", - "number": "1.8.3" - }, - { - "id": "AnalyserOptions", - "href": "https://webaudio.github.io/web-audio-api/#AnalyserOptions", - "level": 4, - "title": "AnalyserOptions", - "number": "1.8.4" - }, - { - "id": "dictionary-analyseroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-analyseroptions-members", - "level": 5, - "title": "Dictionary AnalyserOptions Members", - "number": "1.8.4.1" - }, - { - "id": "time-domain-down-mixing", - "href": "https://webaudio.github.io/web-audio-api/#time-domain-down-mixing", - "level": 4, - "title": "Time-Domain Down-Mixing", - "number": "1.8.5" - }, - { - "id": "fft-windowing-and-smoothing-over-time", - "href": "https://webaudio.github.io/web-audio-api/#fft-windowing-and-smoothing-over-time", - "level": 4, - "title": "FFT Windowing and Smoothing over Time", - "number": "1.8.6" - }, - { - "id": "AudioBufferSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode", - "level": 3, - "title": "The AudioBufferSourceNode Interface", - "number": "1.9" - }, - { - "id": "AudioBufferSourceNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.9.1" - }, - { - "id": "AudioBufferSourceNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.9.2" - }, - { - "id": "AudioBufferSourceNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode-methods", - "level": 4, - "title": "Methods", - "number": "1.9.3" - }, - { - "id": "AudioBufferSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioBufferSourceOptions", - "level": 4, - "title": "AudioBufferSourceOptions", - "number": "1.9.4" - }, - { - "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audiobuffersourceoptions-members", - "level": 5, - "title": "Dictionary AudioBufferSourceOptions Members", - "number": "1.9.4.1" - }, - { - "id": "looping-AudioBufferSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#looping-AudioBufferSourceNode", - "level": 4, - "title": "Looping", - "number": "1.9.5" - }, - { - "id": "playback-AudioBufferSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#playback-AudioBufferSourceNode", - "level": 4, - "title": "Playback of AudioBuffer Contents", - "number": "1.9.6" - }, - { - "id": "AudioDestinationNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioDestinationNode", - "level": 3, - "title": "The AudioDestinationNode Interface", - "number": "1.10" - }, - { - "id": "AudioDestinationNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioDestinationNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.10.1" - }, - { - "id": "AudioListener", - "href": "https://webaudio.github.io/web-audio-api/#AudioListener", - "level": 3, - "title": "The AudioListener Interface", - "number": "1.11" - }, - { - "id": "AudioListener-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioListener-attributes", - "level": 4, - "title": "Attributes", - "number": "1.11.1" - }, - { - "id": "AudioListener-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioListener-methods", - "level": 4, - "title": "Methods", - "number": "1.11.2" - }, - { - "id": "listenerprocessing", - "href": "https://webaudio.github.io/web-audio-api/#listenerprocessing", - "level": 4, - "title": "Processing", - "number": "1.11.3" - }, - { - "id": "AudioProcessingEvent", - "href": "https://webaudio.github.io/web-audio-api/#AudioProcessingEvent", - "level": 3, - "title": "The AudioProcessingEvent Interface - DEPRECATED", - "number": "1.12" - }, - { - "id": "AudioProcessingEvent-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioProcessingEvent-attributes", - "level": 4, - "title": "Attributes", - "number": "1.12.1" - }, - { - "id": "AudioProcessingEventInit", - "href": "https://webaudio.github.io/web-audio-api/#AudioProcessingEventInit", - "level": 4, - "title": "AudioProcessingEventInit", - "number": "1.12.2" - }, - { - "id": "dictionary-audioprocessingeventinit-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audioprocessingeventinit-members", - "level": 5, - "title": "Dictionary AudioProcessingEventInit Members", - "number": "1.12.2.1" - }, - { - "id": "BiquadFilterNode", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode", - "level": 3, - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - { - "id": "BiquadFilterNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.13.1" - }, - { - "id": "BiquadFilterNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.13.2" - }, - { - "id": "BiquadFilterNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-methods", - "level": 4, - "title": "Methods", - "number": "1.13.3" - }, - { - "id": "BiquadFilterOptions", - "href": "https://webaudio.github.io/web-audio-api/#BiquadFilterOptions", - "level": 4, - "title": "BiquadFilterOptions", - "number": "1.13.4" - }, - { - "id": "dictionary-biquadfilteroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-biquadfilteroptions-members", - "level": 5, - "title": "Dictionary BiquadFilterOptions Members", - "number": "1.13.4.1" - }, - { - "id": "filters-characteristics", - "href": "https://webaudio.github.io/web-audio-api/#filters-characteristics", - "level": 4, - "title": "Filters Characteristics", - "number": "1.13.5" - }, - { - "id": "ChannelMergerNode", - "href": "https://webaudio.github.io/web-audio-api/#ChannelMergerNode", - "level": 3, - "title": "The ChannelMergerNode Interface", - "number": "1.14" - }, - { - "id": "ChannelMergerNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#ChannelMergerNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.14.1" - }, - { - "id": "ChannelMergerOptions", - "href": "https://webaudio.github.io/web-audio-api/#ChannelMergerOptions", - "level": 4, - "title": "ChannelMergerOptions", - "number": "1.14.2" - }, - { - "id": "dictionary-channelmergeroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-channelmergeroptions-members", - "level": 5, - "title": "Dictionary ChannelMergerOptions Members", - "number": "1.14.2.1" - }, - { - "id": "ChannelSplitterNode", - "href": "https://webaudio.github.io/web-audio-api/#ChannelSplitterNode", - "level": 3, - "title": "The ChannelSplitterNode Interface", - "number": "1.15" - }, - { - "id": "ChannelSplitterNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#ChannelSplitterNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.15.1" - }, - { - "id": "ChannelSplitterOptions", - "href": "https://webaudio.github.io/web-audio-api/#ChannelSplitterOptions", - "level": 4, - "title": "ChannelSplitterOptions", - "number": "1.15.2" - }, - { - "id": "dictionary-channelsplitteroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-channelsplitteroptions-members", - "level": 5, - "title": "Dictionary ChannelSplitterOptions Members", - "number": "1.15.2.1" - }, - { - "id": "ConstantSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#ConstantSourceNode", - "level": 3, - "title": "The ConstantSourceNode Interface", - "number": "1.16" - }, - { - "id": "ConstantSourceNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#ConstantSourceNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.16.1" - }, - { - "id": "ConstantSourceNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#ConstantSourceNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.16.2" - }, - { - "id": "ConstantSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#ConstantSourceOptions", - "level": 4, - "title": "ConstantSourceOptions", - "number": "1.16.3" - }, - { - "id": "dictionary-constantsourceoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-constantsourceoptions-members", - "level": 5, - "title": "Dictionary ConstantSourceOptions Members", - "number": "1.16.3.1" - }, - { - "id": "ConvolverNode", - "href": "https://webaudio.github.io/web-audio-api/#ConvolverNode", - "level": 3, - "title": "The ConvolverNode Interface", - "number": "1.17" - }, - { - "id": "ConvolverNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#ConvolverNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.17.1" - }, - { - "id": "ConvolverNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#ConvolverNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.17.2" - }, - { - "id": "ConvolverOptions", - "href": "https://webaudio.github.io/web-audio-api/#ConvolverOptions", - "level": 4, - "title": "ConvolverOptions", - "number": "1.17.3" - }, - { - "id": "dictionary-convolveroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-convolveroptions-members", - "level": 5, - "title": "Dictionary ConvolverOptions Members", - "number": "1.17.3.1" - }, - { - "id": "Convolution-channel-configurations", - "href": "https://webaudio.github.io/web-audio-api/#Convolution-channel-configurations", - "level": 4, - "title": "Channel Configurations for Input, Impulse Response and Output", - "number": "1.17.4" - }, - { - "id": "DelayNode", - "href": "https://webaudio.github.io/web-audio-api/#DelayNode", - "level": 3, - "title": "The DelayNode Interface", - "number": "1.18" - }, - { - "id": "DelayNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#DelayNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.18.1" - }, - { - "id": "DelayNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#DelayNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.18.2" - }, - { - "id": "DelayOptions", - "href": "https://webaudio.github.io/web-audio-api/#DelayOptions", - "level": 4, - "title": "DelayOptions", - "number": "1.18.3" - }, - { - "id": "dictionary-delayoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-delayoptions-members", - "level": 5, - "title": "Dictionary DelayOptions Members", - "number": "1.18.3.1" - }, - { - "id": "DelayNode-processing", - "href": "https://webaudio.github.io/web-audio-api/#DelayNode-processing", - "level": 4, - "title": "Processing", - "number": "1.18.4" - }, - { - "id": "DynamicsCompressorNode", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode", - "level": 3, - "title": "The DynamicsCompressorNode Interface", - "number": "1.19" - }, - { - "id": "DynamicsCompressorNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.19.1" - }, - { - "id": "DynamicsCompressorNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.19.2" - }, - { - "id": "DynamicsCompressorOptions", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorOptions", - "level": 4, - "title": "DynamicsCompressorOptions", - "number": "1.19.3" - }, - { - "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-dynamicscompressoroptions-members", - "level": 5, - "title": "Dictionary DynamicsCompressorOptions Members", - "number": "1.19.3.1" - }, - { - "id": "DynamicsCompressorOptions-processing", - "href": "https://webaudio.github.io/web-audio-api/#DynamicsCompressorOptions-processing", - "level": 4, - "title": "Processing", - "number": "1.19.4" - }, - { - "id": "GainNode", - "href": "https://webaudio.github.io/web-audio-api/#GainNode", - "level": 3, - "title": "The GainNode Interface", - "number": "1.20" - }, - { - "id": "GainNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#GainNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.20.1" - }, - { - "id": "GainNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#GainNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.20.2" - }, - { - "id": "GainOptions", - "href": "https://webaudio.github.io/web-audio-api/#GainOptions", - "level": 4, - "title": "GainOptions", - "number": "1.20.3" - }, - { - "id": "dictionary-gainoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-gainoptions-members", - "level": 5, - "title": "Dictionary GainOptions Members", - "number": "1.20.3.1" - }, - { - "id": "IIRFilterNode", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterNode", - "level": 3, - "title": "The IIRFilterNode Interface", - "number": "1.21" - }, - { - "id": "IIRFilterNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.21.1" - }, - { - "id": "IIRFilterNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterNode-methods", - "level": 4, - "title": "Methods", - "number": "1.21.2" - }, - { - "id": "IIRFilterOptions", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterOptions", - "level": 4, - "title": "IIRFilterOptions", - "number": "1.21.3" - }, - { - "id": "dictionary-iirfilteroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-iirfilteroptions-members", - "level": 5, - "title": "Dictionary IIRFilterOptions Members", - "number": "1.21.3.1" - }, - { - "id": "IIRFilterNode-filter-definition", - "href": "https://webaudio.github.io/web-audio-api/#IIRFilterNode-filter-definition", - "level": 4, - "title": "Filter Definition", - "number": "1.21.4" - }, - { - "id": "MediaElementAudioSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode", - "level": 3, - "title": "The MediaElementAudioSourceNode Interface", - "number": "1.22" - }, - { - "id": "MediaElementAudioSourceNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.22.1" - }, - { - "id": "MediaElementAudioSourceNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.22.2" - }, - { - "id": "MediaElementAudioSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceOptions", - "level": 4, - "title": "MediaElementAudioSourceOptions", - "number": "1.22.3" - }, - { - "id": "dictionary-mediaelementaudiosourceoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-mediaelementaudiosourceoptions-members", - "level": 5, - "title": "Dictionary MediaElementAudioSourceOptions Members", - "number": "1.22.3.1" - }, - { - "id": "MediaElementAudioSourceOptions-security", - "href": "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceOptions-security", - "level": 4, - "title": "Security with MediaElementAudioSourceNode and Cross-Origin Resources", - "number": "1.22.4" - }, - { - "id": "MediaStreamAudioDestinationNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioDestinationNode", - "level": 3, - "title": "The MediaStreamAudioDestinationNode Interface", - "number": "1.23" - }, - { - "id": "MediaStreamAudioDestinationNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioDestinationNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.23.1" - }, - { - "id": "MediaStreamAudioDestinationNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioDestinationNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.23.2" - }, - { - "id": "MediaStreamAudioSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceNode", - "level": 3, - "title": "The MediaStreamAudioSourceNode Interface", - "number": "1.24" - }, - { - "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.24.1" - }, - { - "id": "MediaStreamAudioSourceNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.24.2" - }, - { - "id": "MediaStreamAudioSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceOptions", - "level": 4, - "title": "MediaStreamAudioSourceOptions", - "number": "1.24.3" - }, - { - "id": "dictionary-mediastreamaudiosourceoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-mediastreamaudiosourceoptions-members", - "level": 5, - "title": "Dictionary MediaStreamAudioSourceOptions Members", - "number": "1.24.3.1" - }, - { - "id": "MediaStreamTrackAudioSourceNode", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceNode", - "level": 3, - "title": "The MediaStreamTrackAudioSourceNode Interface", - "number": "1.25" - }, - { - "id": "MediaStreamTrackAudioSourceNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.25.1" - }, - { - "id": "MediaStreamTrackAudioSourceOptions", - "href": "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceOptions", - "level": 4, - "title": "MediaStreamTrackAudioSourceOptions", - "number": "1.25.2" - }, - { - "id": "dictionary-mediastreamtrackaudiosourceoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-mediastreamtrackaudiosourceoptions-members", - "level": 5, - "title": "Dictionary MediaStreamTrackAudioSourceOptions Members", - "number": "1.25.2.1" - }, - { - "id": "OscillatorNode", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorNode", - "level": 3, - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - { - "id": "OscillatorNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.26.1" - }, - { - "id": "OscillatorNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.26.2" - }, - { - "id": "OscillatorNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorNode-methods", - "level": 4, - "title": "Methods", - "number": "1.26.3" - }, - { - "id": "OscillatorOptions", - "href": "https://webaudio.github.io/web-audio-api/#OscillatorOptions", - "level": 4, - "title": "OscillatorOptions", - "number": "1.26.4" - }, - { - "id": "dictionary-oscillatoroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-oscillatoroptions-members", - "level": 5, - "title": "Dictionary OscillatorOptions Members", - "number": "1.26.4.1" - }, - { - "id": "basic-waveform-phase", - "href": "https://webaudio.github.io/web-audio-api/#basic-waveform-phase", - "level": 4, - "title": "Basic Waveform Phase", - "number": "1.26.5" - }, - { - "id": "PannerNode", - "href": "https://webaudio.github.io/web-audio-api/#PannerNode", - "level": 3, - "title": "The PannerNode Interface", - "number": "1.27" - }, - { - "id": "PannerNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#PannerNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.27.1" - }, - { - "id": "PannerNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#PannerNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.27.2" - }, - { - "id": "PannerNode-methods", - "href": "https://webaudio.github.io/web-audio-api/#PannerNode-methods", - "level": 4, - "title": "Methods", - "number": "1.27.3" - }, - { - "id": "PannerOptions", - "href": "https://webaudio.github.io/web-audio-api/#PannerOptions", - "level": 4, - "title": "PannerOptions", - "number": "1.27.4" - }, - { - "id": "dictionary-pannernode-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-pannernode-members", - "level": 5, - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - { - "id": "panner-channel-limitations", - "href": "https://webaudio.github.io/web-audio-api/#panner-channel-limitations", - "level": 4, - "title": "Channel Limitations", - "number": "1.27.5" - }, - { - "id": "PeriodicWave", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWave", - "level": 3, - "title": "The PeriodicWave Interface", - "number": "1.28" - }, - { - "id": "PeriodicWave-constructors", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWave-constructors", - "level": 4, - "title": "Constructors", - "number": "1.28.1" - }, - { - "id": "PeriodicWaveConstraints", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWaveConstraints", - "level": 4, - "title": "PeriodicWaveConstraints", - "number": "1.28.2" - }, - { - "id": "dictionary-periodicwaveconstraints-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-periodicwaveconstraints-members", - "level": 5, - "title": "Dictionary PeriodicWaveConstraints Members", - "number": "1.28.2.1" - }, - { - "id": "PeriodicWaveOptions", - "href": "https://webaudio.github.io/web-audio-api/#PeriodicWaveOptions", - "level": 4, - "title": "PeriodicWaveOptions", - "number": "1.28.3" - }, - { - "id": "dictionary-periodicwaveoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-periodicwaveoptions-members", - "level": 5, - "title": "Dictionary PeriodicWaveOptions Members", - "number": "1.28.3.1" - }, - { - "id": "waveform-generation", - "href": "https://webaudio.github.io/web-audio-api/#waveform-generation", - "level": 4, - "title": "Waveform Generation", - "number": "1.28.4" - }, - { - "id": "waveform-normalization", - "href": "https://webaudio.github.io/web-audio-api/#waveform-normalization", - "level": 4, - "title": "Waveform Normalization", - "number": "1.28.5" - }, - { - "id": "oscillator-coefficients", - "href": "https://webaudio.github.io/web-audio-api/#oscillator-coefficients", - "level": 4, - "title": "Oscillator Coefficients", - "number": "1.28.6" - }, - { - "id": "ScriptProcessorNode", - "href": "https://webaudio.github.io/web-audio-api/#ScriptProcessorNode", - "level": 3, - "title": "The ScriptProcessorNode Interface - DEPRECATED", - "number": "1.29" - }, - { - "id": "ScriptProcessorNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#ScriptProcessorNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.29.1" - }, - { - "id": "stereopannernode", - "href": "https://webaudio.github.io/web-audio-api/#stereopannernode", - "level": 3, - "title": "The StereoPannerNode Interface", - "number": "1.30" - }, - { - "id": "StereoPannerNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#StereoPannerNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.30.1" - }, - { - "id": "StereoPannerNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#StereoPannerNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.30.2" - }, - { - "id": "StereoPannerOptions", - "href": "https://webaudio.github.io/web-audio-api/#StereoPannerOptions", - "level": 4, - "title": "StereoPannerOptions", - "number": "1.30.3" - }, - { - "id": "dictionary-stereopanneroptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-stereopanneroptions-members", - "level": 5, - "title": "Dictionary StereoPannerOptions Members", - "number": "1.30.3.1" - }, - { - "id": "StereoPanner-channel-limitations", - "href": "https://webaudio.github.io/web-audio-api/#StereoPanner-channel-limitations", - "level": 4, - "title": "Channel Limitations", - "number": "1.30.4" - }, - { - "id": "WaveShaperNode", - "href": "https://webaudio.github.io/web-audio-api/#WaveShaperNode", - "level": 3, - "title": "The WaveShaperNode Interface", - "number": "1.31" - }, - { - "id": "WaveShaperNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#WaveShaperNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.31.1" - }, - { - "id": "WaveShaperNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#WaveShaperNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.31.2" - }, - { - "id": "WaveShaperOptions", - "href": "https://webaudio.github.io/web-audio-api/#WaveShaperOptions", - "level": 4, - "title": "WaveShaperOptions", - "number": "1.31.3" - }, - { - "id": "dictionary-waveshaperoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-waveshaperoptions-members", - "level": 5, - "title": "Dictionary WaveShaperOptions Members", - "number": "1.31.3.1" - }, - { - "id": "AudioWorklet", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorklet", - "level": 3, - "title": "The AudioWorklet Interface", - "number": "1.32" - }, - { - "id": "AudioWorklet-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorklet-attributes", - "level": 4, - "title": "Attributes", - "number": "1.32.1" - }, - { - "id": "AudioWorklet-concepts", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorklet-concepts", - "level": 4, - "title": "Concepts", - "number": "1.32.2" - }, - { - "id": "AudioWorkletGlobalScope", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletGlobalScope", - "level": 4, - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - { - "id": "AudioWorkletGlobalScope-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletGlobalScope-attributes", - "level": 5, - "title": "Attributes", - "number": "1.32.3.1" - }, - { - "id": "AudioWorkletGlobalScope-methods", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletGlobalScope-methods", - "level": 5, - "title": "Methods", - "number": "1.32.3.2" - }, - { - "id": "AudioWorkletProcessor-instantiation", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletProcessor-instantiation", - "level": 5, - "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" - }, - { - "id": "AudioWorkletNode", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletNode", - "level": 4, - "title": "The AudioWorkletNode Interface", - "number": "1.32.4" - }, - { - "id": "AudioWorkletNode-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletNode-constructors", - "level": 5, - "title": "Constructors", - "number": "1.32.4.1" - }, - { - "id": "AudioWorkletNode-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletNode-attributes", - "level": 5, - "title": "Attributes", - "number": "1.32.4.2" - }, - { - "id": "AudioWorkletNodeOptions", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletNodeOptions", - "level": 5, - "title": "AudioWorkletNodeOptions", - "number": "1.32.4.3" - }, - { - "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audioworkletnodeoptions-members", - "level": 6, - "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" - }, - { - "id": "configuring-channels-with-audioworkletnodeoptions", - "href": "https://webaudio.github.io/web-audio-api/#configuring-channels-with-audioworkletnodeoptions", - "level": 6, - "title": "Configuring Channels with AudioWorkletNodeOptions", - "number": "1.32.4.3.2" - }, - { - "id": "AudioWorkletProcessor", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletProcessor", - "level": 4, - "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" - }, - { - "id": "AudioWorketProcessor-constructors", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorketProcessor-constructors", - "level": 5, - "title": "Constructors", - "number": "1.32.5.1" - }, - { - "id": "AudioWorkletProcessor-attributes", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorkletProcessor-attributes", - "level": 5, - "title": "Attributes", - "number": "1.32.5.2" - }, - { - "id": "callback-audioworketprocess-callback", - "href": "https://webaudio.github.io/web-audio-api/#callback-audioworketprocess-callback", - "level": 5, - "title": "Callback AudioWorkletProcessCallback", - "number": "1.32.5.3" - }, - { - "id": "audioworkletprocess-callback-parameters", - "href": "https://webaudio.github.io/web-audio-api/#audioworkletprocess-callback-parameters", - "level": 6, - "title": "Callback AudioWorkletProcessCallback Parameters", - "number": "1.32.5.3.1" - }, - { - "id": "AudioParamDescriptor", - "href": "https://webaudio.github.io/web-audio-api/#AudioParamDescriptor", - "level": 5, - "title": "AudioParamDescriptor", - "number": "1.32.5.4" - }, - { - "id": "dictionary-audioparamdescriptor-members", - "href": "https://webaudio.github.io/web-audio-api/#dictionary-audioparamdescriptor-members", - "level": 6, - "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" - }, - { - "id": "AudioWorklet-Sequence", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorklet-Sequence", - "level": 4, - "title": "AudioWorklet Sequence of Events", - "number": "1.32.6" - }, - { - "id": "AudioWorklet-Examples", - "href": "https://webaudio.github.io/web-audio-api/#AudioWorklet-Examples", - "level": 4, - "title": "AudioWorklet Examples", - "number": "1.32.7" - }, - { - "id": "the-bitcrusher-node", - "href": "https://webaudio.github.io/web-audio-api/#the-bitcrusher-node", - "level": 5, - "title": "The BitCrusher Node", - "number": "1.32.7.1" - }, - { - "id": "vu-meter-mode", - "href": "https://webaudio.github.io/web-audio-api/#vu-meter-mode", - "level": 5, - "title": "VU Meter Node", - "number": "1.32.7.2" - }, - { - "id": "processing-model", - "href": "https://webaudio.github.io/web-audio-api/#processing-model", - "level": 2, - "title": "Processing model", - "number": "2" - }, - { - "id": "processing-model-background", - "href": "https://webaudio.github.io/web-audio-api/#processing-model-background", - "level": 3, - "title": "Background", - "number": "2.1" - }, - { - "id": "control-thread-and-rendering-thread", - "href": "https://webaudio.github.io/web-audio-api/#control-thread-and-rendering-thread", - "level": 3, - "title": "Control Thread and Rendering Thread", - "number": "2.2" - }, - { - "id": "asynchronous-operations", - "href": "https://webaudio.github.io/web-audio-api/#asynchronous-operations", - "level": 3, - "title": "Asynchronous Operations", - "number": "2.3" - }, - { - "id": "rendering-loop", - "href": "https://webaudio.github.io/web-audio-api/#rendering-loop", - "level": 3, - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - { - "id": "error-handling-on-a-running-audio-context", - "href": "https://webaudio.github.io/web-audio-api/#error-handling-on-a-running-audio-context", - "level": 3, - "title": "Handling an error from System Audio Resources on the AudioContext", - "number": "2.5" - }, - { - "id": "unloading-a-document", - "href": "https://webaudio.github.io/web-audio-api/#unloading-a-document", - "level": 3, - "title": "Unloading a document", - "number": "2.6" - }, - { - "id": "DynamicLifetime", - "href": "https://webaudio.github.io/web-audio-api/#DynamicLifetime", - "level": 2, - "title": "Dynamic Lifetime", - "number": "3" - }, - { - "id": "dynamic-lifetime-background", - "href": "https://webaudio.github.io/web-audio-api/#dynamic-lifetime-background", - "level": 3, - "title": "Background", - "number": "3.1" - }, - { - "id": "dynamic-lifetime-example", - "href": "https://webaudio.github.io/web-audio-api/#dynamic-lifetime-example", - "level": 3, - "title": "Example", - "number": "3.2" - }, - { - "id": "channel-up-mixing-and-down-mixing", - "href": "https://webaudio.github.io/web-audio-api/#channel-up-mixing-and-down-mixing", - "level": 2, - "title": "Channel Up-Mixing and Down-Mixing", - "number": "4" - }, - { - "id": "ChannelLayouts", - "href": "https://webaudio.github.io/web-audio-api/#ChannelLayouts", - "level": 3, - "title": "Speaker Channel Layouts", - "number": "4.1" - }, - { - "id": "ChannelOrdering", - "href": "https://webaudio.github.io/web-audio-api/#ChannelOrdering", - "level": 3, - "title": "Channel Ordering", - "number": "4.2" - }, - { - "id": "channels-tail-time", - "href": "https://webaudio.github.io/web-audio-api/#channels-tail-time", - "level": 3, - "title": "Implication of tail-time on input and output channel count", - "number": "4.3" - }, - { - "id": "UpMix-sub", - "href": "https://webaudio.github.io/web-audio-api/#UpMix-sub", - "level": 3, - "title": "Up Mixing Speaker Layouts", - "number": "4.4" - }, - { - "id": "down-mix", - "href": "https://webaudio.github.io/web-audio-api/#down-mix", - "level": 3, - "title": "Down Mixing Speaker Layouts", - "number": "4.5" - }, - { - "id": "ChannelRules-section", - "href": "https://webaudio.github.io/web-audio-api/#ChannelRules-section", - "level": 3, - "title": "Channel Rules Examples", - "number": "4.6" - }, - { - "id": "audio-signal-values", - "href": "https://webaudio.github.io/web-audio-api/#audio-signal-values", - "level": 2, - "title": "Audio Signal Values", - "number": "5" - }, - { - "id": "audio-sample-format", - "href": "https://webaudio.github.io/web-audio-api/#audio-sample-format", - "level": 3, - "title": "Audio sample format", - "number": "5.1" - }, - { - "id": "audio-values-rendering", - "href": "https://webaudio.github.io/web-audio-api/#audio-values-rendering", - "level": 3, - "title": "Rendering", - "number": "5.2" - }, - { - "id": "Spatialization", - "href": "https://webaudio.github.io/web-audio-api/#Spatialization", - "level": 2, - "title": "Spatialization/Panning", - "number": "6" - }, - { - "id": "Spatialization-background", - "href": "https://webaudio.github.io/web-audio-api/#Spatialization-background", - "level": 3, - "title": "Background", - "number": "6.1" - }, - { - "id": "azimuth-elevation", - "href": "https://webaudio.github.io/web-audio-api/#azimuth-elevation", - "level": 3, - "title": "Azimuth and Elevation", - "number": "6.2" - }, - { - "id": "Spatialization-panning-algorithm", - "href": "https://webaudio.github.io/web-audio-api/#Spatialization-panning-algorithm", - "level": 3, - "title": "Panning Algorithm", - "number": "6.3" - }, - { - "id": "Spatialization-equal-power-panning", - "href": "https://webaudio.github.io/web-audio-api/#Spatialization-equal-power-panning", - "level": 4, - "title": "PannerNode \"equalpower\" Panning", - "number": "6.3.1" - }, - { - "id": "Spatialization-hrtf-panning", - "href": "https://webaudio.github.io/web-audio-api/#Spatialization-hrtf-panning", - "level": 4, - "title": "PannerNode \"HRTF\" Panning (Stereo Only)", - "number": "6.3.2" - }, - { - "id": "stereopanner-algorithm", - "href": "https://webaudio.github.io/web-audio-api/#stereopanner-algorithm", - "level": 4, - "title": "StereoPannerNode Panning", - "number": "6.3.3" - }, - { - "id": "Spatialization-distance-effects", - "href": "https://webaudio.github.io/web-audio-api/#Spatialization-distance-effects", - "level": 3, - "title": "Distance Effects", - "number": "6.4" - }, - { - "id": "Spatialization-sound-cones", - "href": "https://webaudio.github.io/web-audio-api/#Spatialization-sound-cones", - "level": 3, - "title": "Sound Cones", - "number": "6.5" - }, - { - "id": "Performance", - "href": "https://webaudio.github.io/web-audio-api/#Performance", - "level": 2, - "title": "Performance Considerations", - "number": "7" - }, - { - "id": "latency", - "href": "https://webaudio.github.io/web-audio-api/#latency", - "level": 3, - "title": "Latency", - "number": "7.1" - }, - { - "id": "audio-buffer-copying", - "href": "https://webaudio.github.io/web-audio-api/#audio-buffer-copying", - "level": 3, - "title": "Audio Buffer Copying", - "number": "7.2" - }, - { - "id": "audioparam-transitions", - "href": "https://webaudio.github.io/web-audio-api/#audioparam-transitions", - "level": 3, - "title": "AudioParam Transitions", - "number": "7.3" - }, - { - "id": "audio-glitching", - "href": "https://webaudio.github.io/web-audio-api/#audio-glitching", - "level": 3, - "title": "Audio Glitching", - "number": "7.4" - }, - { - "id": "priv-sec", - "href": "https://webaudio.github.io/web-audio-api/#priv-sec", - "level": 2, - "title": "Security and Privacy Considerations", - "number": "8" - }, - { - "id": "requirements", - "href": "https://webaudio.github.io/web-audio-api/#requirements", - "level": 2, - "title": "Requirements and Use Cases", - "number": "9" - }, - { - "id": "common-definitions", - "href": "https://webaudio.github.io/web-audio-api/#common-definitions", - "level": 2, - "title": "10. Common Definitions for Specification Code" - }, - { - "id": "changes", - "href": "https://webaudio.github.io/web-audio-api/#changes", - "level": 2, - "title": "11. Change Log" - }, - { - "id": "acks", - "href": "https://webaudio.github.io/web-audio-api/#acks", - "level": 2, - "title": "12. Acknowledgements" - }, - { - "id": "w3c-conformance", - "href": "https://webaudio.github.io/web-audio-api/#w3c-conformance", - "level": 2, - "title": "Conformance" - }, - { - "id": "w3c-conventions", - "href": "https://webaudio.github.io/web-audio-api/#w3c-conventions", - "level": 3, - "title": "Document conventions" - }, - { - "id": "w3c-conformant-algorithms", - "href": "https://webaudio.github.io/web-audio-api/#w3c-conformant-algorithms", - "level": 3, - "title": "Conformant Algorithms" - }, - { - "id": "index", - "href": "https://webaudio.github.io/web-audio-api/#index", - "level": 2, - "title": "Index" - }, - { - "id": "index-defined-here", - "href": "https://webaudio.github.io/web-audio-api/#index-defined-here", - "level": 3, - "title": "Terms defined by this specification" - }, - { - "id": "index-defined-elsewhere", - "href": "https://webaudio.github.io/web-audio-api/#index-defined-elsewhere", - "level": 3, - "title": "Terms defined by reference" - }, - { - "id": "references", - "href": "https://webaudio.github.io/web-audio-api/#references", - "level": 2, - "title": "References" - }, - { - "id": "normative", - "href": "https://webaudio.github.io/web-audio-api/#normative", - "level": 3, - "title": "Normative References" - }, - { - "id": "informative", - "href": "https://webaudio.github.io/web-audio-api/#informative", - "level": 3, - "title": "Informative References" - }, - { - "id": "idl-index", - "href": "https://webaudio.github.io/web-audio-api/#idl-index", - "level": 2, - "title": "IDL Index" - } - ] -} \ No newline at end of file diff --git a/ed/ids/webaudio.json b/ed/ids/webaudio.json deleted file mode 100644 index a476ef17b40a..000000000000 --- a/ed/ids/webaudio.json +++ /dev/null @@ -1,14040 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://webaudio.github.io/web-audio-api/" - }, - "ids": [ - "https://webaudio.github.io/web-audio-api/#MathJax_Hidden", - "https://webaudio.github.io/web-audio-api/#MathJax_Message", - "https://webaudio.github.io/web-audio-api/#toc-nav", - "https://webaudio.github.io/web-audio-api/#toc-jump", - "https://webaudio.github.io/web-audio-api/#toc-toggle", - "https://webaudio.github.io/web-audio-api/#title", - "https://webaudio.github.io/web-audio-api/#w3c-state", - "https://webaudio.github.io/web-audio-api/#abstract", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode", - "https://webaudio.github.io/web-audio-api/#sotd", - "https://webaudio.github.io/web-audio-api/#w3c_process_revision", - "https://webaudio.github.io/web-audio-api/#toc", - "https://webaudio.github.io/web-audio-api/#contents", - "https://webaudio.github.io/web-audio-api/#introductory", - "https://webaudio.github.io/web-audio-api/#ref-for-audio", - "https://webaudio.github.io/web-audio-api/#Features", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam", - "https://webaudio.github.io/web-audio-api/#ref-for-audio%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-video", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediadevices-getusermedia", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode", - "https://webaudio.github.io/web-audio-api/#ModularRouting", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#inputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-inputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-inputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-inputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-inputs", - "https://webaudio.github.io/web-audio-api/#outputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-outputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-outputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-outputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-outputs", - "https://webaudio.github.io/web-audio-api/#source-node", - "https://webaudio.github.io/web-audio-api/#infopanel-for-source-node", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-source-node", - "https://webaudio.github.io/web-audio-api/#infopanel-for-source-node", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-source-node", - "https://webaudio.github.io/web-audio-api/#destination-node", - "https://webaudio.github.io/web-audio-api/#infopanel-for-destination-node", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-destination-node", - "https://webaudio.github.io/web-audio-api/#infopanel-for-destination-node", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-destination-node", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#example-05baec05", - "https://webaudio.github.io/web-audio-api/#example-86265d42", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A7%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#example-6d1537ab", - "https://webaudio.github.io/web-audio-api/#APIOverview", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-audio%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-video%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEvent", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#audioapi", - "https://webaudio.github.io/web-audio-api/#BaseAudioContext", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-BaseAudioContext", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-BaseAudioContext", - "https://webaudio.github.io/web-audio-api/#infopanel-for-BaseAudioContext", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-BaseAudioContext", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-pending-promises-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-pending-promises-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-pending-promises-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-pending-promises-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-pending-promises-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-rendering-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-rendering-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-rendering-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-rendering-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-rendering-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-control-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-control-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-control-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-control-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-control-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiocontextstate", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-render-quantum-size-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-render-quantum-size-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-render-quantum-size-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-render-quantum-size-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-render-quantum-size-slot", - "https://webaudio.github.io/web-audio-api/#enumdef-audiocontextstate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-audiocontextstate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-audiocontextstate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-audiocontextstate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-audiocontextstate", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-suspended", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-closed", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiocontextstate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextstate-suspended", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextstate-suspended", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextstate-suspended", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextstate-suspended", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextstate-suspended", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextstate-running", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextstate-running", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextstate-running", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextstate-running", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextstate-running", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextstate-closed", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextstate-closed", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextstate-closed", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextstate-closed", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextstate-closed", - "https://webaudio.github.io/web-audio-api/#enumdef-audiocontextrendersizecategory", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-audiocontextrendersizecategory", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-audiocontextrendersizecategory", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-audiocontextrendersizecategory", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-audiocontextrendersizecategory", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextrendersizecategory-default", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextrendersizecategory-hardware", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextrendersizecategory-default", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextrendersizecategory-default", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextrendersizecategory-default", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextrendersizecategory-default", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextrendersizecategory-default", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum-size", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextrendersizecategory-hardware", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextrendersizecategory-hardware", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextrendersizecategory-hardware", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextrendersizecategory-hardware", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextrendersizecategory-hardware", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum-size%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-callback-decodeerrorcallback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException", - "https://webaudio.github.io/web-audio-api/#dom-decodeerrorcallback-error", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-decodeerrorcallback-error", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-decodeerrorcallback-error", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-decodeerrorcallback-error", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-decodeerrorcallback-error", - "https://webaudio.github.io/web-audio-api/#ref-for-callback-decodesuccesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-decodesuccesscallback-decodeddata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-decodesuccesscallback-decodeddata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-decodesuccesscallback-decodeddata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-decodesuccesscallback-decodeddata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-decodesuccesscallback-decodeddata", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-eventtarget", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-destination", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-listener", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiocontextstate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#ref-for-SameObject", - "https://webaudio.github.io/web-audio-api/#ref-for-SecureContext", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-audioworklet", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-onstatechange", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createanalyser", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbiquadfilter", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbuffersource", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelmerger", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelsplitter", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createconstantsource", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createconvolver", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createdelay", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createdynamicscompressor", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-creategain", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createoscillator", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createpanner", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createperiodicwave", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveConstraints", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createstereopanner", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createwaveshaper", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-ArrayBuffer", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "https://webaudio.github.io/web-audio-api/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", - "https://webaudio.github.io/web-audio-api/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", - "https://webaudio.github.io/web-audio-api/#BaseAudioContext-attributes", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-audioworklet", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-audioworklet", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-audioworklet", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-audioworklet", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-audioworklet", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-currenttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-currenttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-currenttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-currenttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-currenttime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum", - "https://webaudio.github.io/web-audio-api/#ref-for-atomically", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-destination", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-destination", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-destination", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-destination", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-destination", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-destination%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-listener", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-listener", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-listener", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-listener", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-listener", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-onstatechange", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-onstatechange", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-onstatechange", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-onstatechange", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-onstatechange", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-event-handlers", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#eventdef-baseaudiocontext-statechange", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-baseaudiocontext-statechange", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-baseaudiocontext-statechange", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-baseaudiocontext-statechange", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-baseaudiocontext-statechange", - "https://webaudio.github.io/web-audio-api/#ref-for-event", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-offlineaudiocontext-complete", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#--nyquist-frequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for---nyquist-frequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for---nyquist-frequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for---nyquist-frequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for---nyquist-frequency", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-state", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-state", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-state", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-state", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-state", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiocontextstate%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-render-quantum-size-slot", - "https://webaudio.github.io/web-audio-api/#BaseAudioContent-methods", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createanalyser", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createanalyser", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createanalyser", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createanalyser", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createanalyser", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbiquadfilter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbiquadfilter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbiquadfilter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbiquadfilter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbiquadfilter", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbuffer-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbuffer-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbuffer-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbuffer-length", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-linear-pcm", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createbuffersource", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbuffersource", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbuffersource", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createbuffersource", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createbuffersource", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createchannelmerger", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createchannelmerger", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createchannelmerger", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createchannelmerger", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createchannelmerger", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createchannelsplitter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createchannelsplitter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createchannelsplitter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createchannelsplitter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createchannelsplitter", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createconstantsource", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createconstantsource", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createconstantsource", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createconstantsource", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createconstantsource", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createconvolver", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createconvolver", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createconvolver", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createconvolver", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createconvolver", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createdelay", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createdelay", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createdelay", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createdelay", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createdelay", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createdelay%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createdynamicscompressor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createdynamicscompressor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createdynamicscompressor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createdynamicscompressor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createdynamicscompressor", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-creategain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-creategain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-creategain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-creategain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-creategain", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createiirfilter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createiirfilter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createiirfilter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createiirfilter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createiirfilter", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createiirfilter-feedforward", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createiirfilter-feedforward", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createiirfilter-feedforward", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createiirfilter-feedforward", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createiirfilter-feedforward", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createiirfilter-feedback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createiirfilter-feedback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createiirfilter-feedback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createiirfilter-feedback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createiirfilter-feedback", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createoscillator", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createoscillator", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createoscillator", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createoscillator", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createoscillator", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createpanner", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createpanner", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createpanner", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createpanner", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createpanner", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createperiodicwave", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createperiodicwave", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createperiodicwave", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createperiodicwave", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createperiodicwave-real", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createperiodicwave-imag", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createperiodicwave-real%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createperiodicwave-imag%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveconstraints-disablenormalization", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-real", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createperiodicwave-real", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createperiodicwave-real", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createperiodicwave-real", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createperiodicwave-real", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-imag", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createperiodicwave-imag", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createperiodicwave-imag", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createperiodicwave-imag", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createperiodicwave-imag", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-imag", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createperiodicwave-constraints", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveConstraints%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createscriptprocessor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createscriptprocessor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createscriptprocessor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createscriptprocessor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createscriptprocessor", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-scriptprocessornode-buffersize", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-scriptprocessornode-audioprocess", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createstereopanner", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createstereopanner", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createstereopanner", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createstereopanner", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createstereopanner", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createwaveshaper", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createwaveshaper", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createwaveshaper", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-createwaveshaper", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-createwaveshaper", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-decodeaudiodata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-decodeaudiodata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-decodeaudiodata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-decodeaudiodata", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-ArrayBuffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-ArrayBuffer%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-audio%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-this", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-relevant-global", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-document-window", - "https://webaudio.github.io/web-audio-api/#ref-for-fully-active", - "https://webaudio.github.io/web-audio-api/#ref-for-a-promise-rejected-with", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "https://webaudio.github.io/web-audio-api/#ref-for-buffersource-detached", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-pending-promises-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dfn-detach", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-ArrayBuffer%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-datacloneerror", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#6d54a0c50", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decoding-thread", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-decoding-thread", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-decoding-thread", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-decoding-thread", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-decoding-thread", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decoding-thread", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-linear-pcm%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-linear-pcm%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#6d54a0c51", - "https://webaudio.github.io/web-audio-api/#ref-for-encodingerror", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-linear-pcm%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#6d54a0c52", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata-successcallback", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata-successcallback%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decodeaudiodata%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-audiodata", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-ArrayBuffer%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-successcallback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-decodeaudiodata-successcallback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-decodeaudiodata-successcallback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-decodeaudiodata-successcallback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-decodeaudiodata-successcallback", - "https://webaudio.github.io/web-audio-api/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-decodeaudiodata-errorcallback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-decodeaudiodata-errorcallback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-decodeaudiodata-errorcallback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-decodeaudiodata-errorcallback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-decodeaudiodata-errorcallback", - "https://webaudio.github.io/web-audio-api/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#callback-decodesuccesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-callback-decodesuccesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-callback-decodesuccesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#infopanel-for-callback-decodesuccesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-callback-decodesuccesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-decodesuccesscallback-decodeddata", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#callback-decodeerrorcallback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-callback-decodeerrorcallback-parameters", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-callback-decodeerrorcallback-parameters", - "https://webaudio.github.io/web-audio-api/#infopanel-for-callback-decodeerrorcallback-parameters", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-callback-decodeerrorcallback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-decodeerrorcallback-error", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#lifetime-AudioContext", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#lack-of-introspection-or-serialization-primitives", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-source-nodes", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#system-resources-associated-with-baseaudiocontext-subclasses", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#acquiring", - "https://webaudio.github.io/web-audio-api/#infopanel-for-acquiring", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-acquiring", - "https://webaudio.github.io/web-audio-api/#infopanel-for-acquiring", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-acquiring", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-close", - "https://webaudio.github.io/web-audio-api/#releasing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-releasing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-releasing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-releasing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-releasing", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-resume", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#AudioContext", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioContext", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioContext", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioContext", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioContext", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#enumdef-audiocontextlatencycategory", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-audiocontextlatencycategory", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-audiocontextlatencycategory", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-audiocontextlatencycategory", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-audiocontextlatencycategory", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextlatencycategory-balanced", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextlatencycategory-interactive", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextlatencycategory-playback", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiocontextlatencycategory", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextlatencycategory-balanced", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextlatencycategory-balanced", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextlatencycategory-balanced", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextlatencycategory-balanced", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextlatencycategory-balanced", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextlatencycategory-interactive", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextlatencycategory-interactive", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextlatencycategory-interactive", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextlatencycategory-interactive", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextlatencycategory-interactive", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextlatencycategory-playback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextlatencycategory-playback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextlatencycategory-playback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextlatencycategory-playback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextlatencycategory-playback", - "https://webaudio.github.io/web-audio-api/#enumdef-audiosinktype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-audiosinktype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-audiosinktype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-audiosinktype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-audiosinktype", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinktype-none", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiosinktype", - "https://webaudio.github.io/web-audio-api/#dom-audiosinktype-none", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiosinktype-none", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiosinktype-none", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiosinktype-none", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiosinktype-none", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-audiocontext", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContextOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-baselatency", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-outputlatency", - "https://webaudio.github.io/web-audio-api/#ref-for-SecureContext%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sinkid", - "https://webaudio.github.io/web-audio-api/#ref-for-SecureContext%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-audiorendercapacity", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-rendercapacity", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-onsinkchange", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-onerror", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioTimestamp", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-getoutputtimestamp", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-resume%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-suspend%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-close%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-SecureContext%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-setsinkid", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-setsinkid", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-setsinkid", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-setsinkid", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-setsinkid", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-setsinkid-sinkid-sinkid", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-createmediaelementsource", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-createmediastreamsource", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamsource-mediastream-mediastream", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-createmediastreamtracksource", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-createmediastreamdestination", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#allowed-to-start", - "https://webaudio.github.io/web-audio-api/#infopanel-for-allowed-to-start", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-allowed-to-start", - "https://webaudio.github.io/web-audio-api/#infopanel-for-allowed-to-start", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-allowed-to-start", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-suspended%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-relevant-global%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-sticky-activation", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-suspended-by-user-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-suspended-by-user-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-suspended-by-user-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-suspended-by-user-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-suspended-by-user-slot", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-sink-id-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-sink-id-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-sink-id-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-sink-id-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-sink-id-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-pending-resume-promises-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-pending-resume-promises-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-pending-resume-promises-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-pending-resume-promises-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-pending-resume-promises-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-resume%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#AudioContext-constructors", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-audiocontext", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-audiocontext", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-audiocontext", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-audiocontext", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-audiocontext", - "https://webaudio.github.io/web-audio-api/#ref-for-current-settings-object", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-relevant-global%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-document-window%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-fully-active%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-messagechannel", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-messagechannel-port1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-messagechannel-port2", - "https://webaudio.github.io/web-audio-api/#ref-for-structuredserializewithtransfer", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-audioworklet%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworklet-port", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-sinkid", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-sinkid%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinkoptions-type", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinkinfo-type", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinkoptions-type%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-latencyhint", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-latencyhint%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-allowed-to-start", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-current-settings-object%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-relevant-global%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-document-window%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-acquiring", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-media-element-task", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-audiocontext-error", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-this%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-media-element-task%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-baseaudiocontext-statechange", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#setting-the-messageport-on-the-scope", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-structureddeserialize", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-port", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-audiocontext%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContextOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#AudioContext-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-baselatency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-baselatency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-baselatency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-baselatency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-baselatency", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-1-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-5", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-6", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-7", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-8", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-9", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-10", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-11", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-12", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-13", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-14", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-15", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-16", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-17", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-1", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-outputlatency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-outputlatency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-outputlatency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-outputlatency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-outputlatency", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-outputlatency%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-outputlatency%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-rendercapacity", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-rendercapacity", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-rendercapacity", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-rendercapacity", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-rendercapacity", - "https://webaudio.github.io/web-audio-api/#ref-for-audiorendercapacity%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-audiorendercapacity%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-sinkid", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-sinkid", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-sinkid", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-sinkid", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-sinkid", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-onsinkchange", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-onsinkchange", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-onsinkchange", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-onsinkchange", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-onsinkchange", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-event-handlers%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-setsinkid", - "https://webaudio.github.io/web-audio-api/#eventdef-audiocontext-sinkchange", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-audiocontext-sinkchange", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-audiocontext-sinkchange", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-audiocontext-sinkchange", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-audiocontext-sinkchange", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-onerror", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-onerror", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-onerror", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-onerror", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-onerror", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-event-handlers%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-event%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#eventdef-audiocontext-error", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-audiocontext-error", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-audiocontext-error", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-audiocontext-error", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-audiocontext-error", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#AudioContext-methods", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-close", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-close", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-close", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-close", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-close", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-releasing", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-this%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-relevant-global%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-document-window%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-fully-active%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-a-promise-rejected-with%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-releasing%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#6d54a0c53", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-closed%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-closed%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#6d54a0c54", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediaelementsource", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-createmediaelementsource", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-createmediaelementsource", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-createmediaelementsource", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-createmediaelementsource", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediaelementsource-mediaelement", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamdestination", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-createmediastreamdestination", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-createmediastreamdestination", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-createmediastreamdestination", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-createmediastreamdestination", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamsource", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-createmediastreamsource", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-createmediastreamsource", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-createmediastreamsource", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-createmediastreamsource", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-createmediastreamsource%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamsource-mediastream", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamtracksource", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-createmediastreamtracksource", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-createmediastreamtracksource", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-createmediastreamtracksource", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-createmediastreamtracksource", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-createmediastreamtracksource%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-getoutputtimestamp", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-getoutputtimestamp", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-getoutputtimestamp", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-getoutputtimestamp", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-getoutputtimestamp", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioTimestamp%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiotimestamp-contexttime", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiotimestamp-performancetime", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioTimestamp%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiotimestamp-contexttime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#example-a967f6fb", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiotimestamp-contexttime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-outputlatency%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioTimestamp%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-resume", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-resume", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-resume", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-resume", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-resume", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-this%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-relevant-global%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-document-window%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-fully-active%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-a-promise-rejected-with%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-suspended-by-user-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-allowed-to-start%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-pending-resume-promises-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#context-resume", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-acquiring%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#6d54a0c55", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#6d54a0c56", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-media-element-task%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-releasing%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-this%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-relevant-global%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-document-window%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-fully-active%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-a-promise-rejected-with%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-releasing%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#6d54a0c57", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-suspended%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-suspended%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-media-element-task%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-audiocontext-setsinkid-domstring-or-audiosinkoptions-sinkid", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-setsinkid%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#6d54a0c58", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinkoptions-type%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinkinfo-type%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#6d54a0c59", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-releasing%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#6d54a0c510", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-suspended%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A5%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-suspended%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-acquiring%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidaccesserror", - "https://webaudio.github.io/web-audio-api/#6d54a0c511", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinkoptions-type%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinkinfo-type%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinkoptions-type%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-audiocontext-sinkchange", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#6d54a0c512", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#validating-sink-identifier", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sinkid%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sinkid%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-document-window%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-notallowederror", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediadevices-enumeratedevices", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-notfounderror", - "https://webaudio.github.io/web-audio-api/#AudioContextOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContextOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContextOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioContextOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioContextOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioContextOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioContextOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContextOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContextOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiocontextlatencycategory%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-latencyhint%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-sinkid%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiocontextrendersizecategory", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#dictionary-audiocontextoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContextOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-latencyhint", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextoptions-latencyhint", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextoptions-latencyhint", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextoptions-latencyhint", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextoptions-latencyhint", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiocontextlatencycategory%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-baselatency%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-sinkid", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextoptions-sinkid", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextoptions-sinkid", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextoptions-sinkid", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextoptions-sinkid", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sinkid%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum-size%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum-size%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#AudioSinkOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioSinkOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioSinkOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioSinkOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioSinkOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sinkid%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiosinktype%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinkoptions-type%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dictionary-audiosinkoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkOptions%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiosinkoptions-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiosinkoptions-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiosinkoptions-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiosinkoptions-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiosinkoptions-type", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiosinktype%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiosinktype%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#AudioSinkInfo", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioSinkInfo", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioSinkInfo", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioSinkInfo", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioSinkInfo", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-sinkid%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioSinkInfo%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiosinktype%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiosinkinfo-type%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#audiosinkinfo-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audiosinkinfo-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiosinkinfo-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiosinkinfo-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiosinkinfo-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiosinkinfo-type", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiosinktype%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiosinktype%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#AudioTimestamp", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioTimestamp%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioTimestamp%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioTimestamp", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioTimestamp", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioTimestamp", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioTimestamp", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioTimestamp%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiotimestamp-contexttime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-domhighrestimestamp", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiotimestamp-performancetime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dictionary-audiotimestamp-members", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioTimestamp%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiotimestamp-contexttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiotimestamp-contexttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiotimestamp-contexttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiotimestamp-contexttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiotimestamp-contexttime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiotimestamp-performancetime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiotimestamp-performancetime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiotimestamp-performancetime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiotimestamp-performancetime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiotimestamp-performancetime", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-domhighrestimestamp%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#AudioRenderCapacity", - "https://webaudio.github.io/web-audio-api/#ref-for-audiorendercapacity%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioRenderCapacity", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioRenderCapacity", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioRenderCapacity", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioRenderCapacity", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioRenderCapacity", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#audiorendercapacity", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audiorendercapacity", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audiorendercapacity", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audiorendercapacity", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audiorendercapacity", - "https://webaudio.github.io/web-audio-api/#ref-for-eventtarget%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiorendercapacity-start", - "https://webaudio.github.io/web-audio-api/#ref-for-dictdef-audiorendercapacityoptions", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacity-start-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiorendercapacity-stop", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiorendercapacity-onupdate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A6%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-load-value", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback", - "https://webaudio.github.io/web-audio-api/#AudioRenderCapacity-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacity-onupdate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacity-onupdate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacity-onupdate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacity-onupdate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacity-onupdate", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#eventdef-audiorendercapacity-update", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-audiorendercapacity-update", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-audiorendercapacity-update", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-audiorendercapacity-update", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-audiorendercapacity-update", - "https://webaudio.github.io/web-audio-api/#ref-for-audiorendercapacityevent", - "https://webaudio.github.io/web-audio-api/#AudioRenderCapacity-methods", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacity-start", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacity-start", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacity-start", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacity-start", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacity-start", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-audiorendercapacity-update", - "https://webaudio.github.io/web-audio-api/#ref-for-audiorendercapacity%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-audiorendercapacityevent%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacity-stop", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacity-stop", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacity-stop", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacity-stop", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacity-stop", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-audiorendercapacity-update%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioRenderCapacityOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioRenderCapacityOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioRenderCapacityOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioRenderCapacityOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioRenderCapacityOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audiorendercapacity%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dictdef-audiorendercapacityoptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dictdef-audiorendercapacityoptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dictdef-audiorendercapacityoptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dictdef-audiorendercapacityoptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dictdef-audiorendercapacityoptions", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiorendercapacityoptions-updateinterval", - "https://webaudio.github.io/web-audio-api/#dictionary-AudioRenderCapacityOptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityoptions-updateinterval", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacityoptions-updateinterval", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacityoptions-updateinterval", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacityoptions-updateinterval", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacityoptions-updateinterval", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-audiorendercapacityevent%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-load-value%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityEvent", - "https://webaudio.github.io/web-audio-api/#ref-for-audiorendercapacityevent%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioRenderCapacityEvent", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioRenderCapacityEvent", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioRenderCapacityEvent", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioRenderCapacityEvent", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioRenderCapacityEvent", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#audiorendercapacityevent", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audiorendercapacityevent", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audiorendercapacityevent", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audiorendercapacityevent", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audiorendercapacityevent", - "https://webaudio.github.io/web-audio-api/#ref-for-event%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-audiorendercapacityevent", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-type", - "https://webaudio.github.io/web-audio-api/#ref-for-dictdef-audiorendercapacityeventinit", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-eventinitdict", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiorendercapacityevent-timestamp", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiorendercapacityevent-averageload", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiorendercapacityevent-peakload", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiorendercapacityevent-underrunratio", - "https://webaudio.github.io/web-audio-api/#dictdef-audiorendercapacityeventinit", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dictdef-audiorendercapacityeventinit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dictdef-audiorendercapacityeventinit", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dictdef-audiorendercapacityeventinit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dictdef-audiorendercapacityeventinit", - "https://webaudio.github.io/web-audio-api/#ref-for-dictdef-eventinit", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityeventinit-timestamp", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityeventinit-averageload", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityeventinit-peakload", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityeventinit-underrunratio", - "https://webaudio.github.io/web-audio-api/#AudioRenderCapacityEvent-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-timestamp", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacityevent-timestamp", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacityevent-timestamp", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacityevent-timestamp", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacityevent-timestamp", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-averageload", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacityevent-averageload", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacityevent-averageload", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacityevent-averageload", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacityevent-averageload", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-peakload", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacityevent-peakload", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacityevent-peakload", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacityevent-peakload", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacityevent-peakload", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audiorendercapacityevent-underrunratio", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacityevent-underrunratio", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacityevent-underrunratio", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiorendercapacityevent-underrunratio", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiorendercapacityevent-underrunratio", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-load-value%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-2-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-18", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-19", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-20", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-3-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-21", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-22", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-23", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-3", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-4-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-24", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-25", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-26", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-4", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-5-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-27", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-28", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-29", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-30", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-31", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-32", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-33", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-5", - "https://webaudio.github.io/web-audio-api/#OfflineAudioContext", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OfflineAudioContext", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OfflineAudioContext", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OfflineAudioContext", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OfflineAudioContext", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-offlineaudiocontext", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContextOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-startrendering", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-resume", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-suspend-suspendtime-suspendtime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-length", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-oncomplete", - "https://webaudio.github.io/web-audio-api/#OfflineAudioContext-constructors", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-offlineaudiocontext", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-offlineaudiocontext", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-offlineaudiocontext", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-offlineaudiocontext", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-offlineaudiocontext", - "https://webaudio.github.io/web-audio-api/#ref-for-current-settings-object%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-relevant-global%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-document-window%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-fully-active%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount", - "https://webaudio.github.io/web-audio-api/#ref-for-messagechannel%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-messagechannel-port1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-messagechannel-port2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-structuredserializewithtransfer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-audioworklet%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworklet-port%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-offlineaudiocontext%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-linear-pcm%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#OfflineAudioContext-attributes", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-length", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-oncomplete", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-oncomplete", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-oncomplete", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-oncomplete", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-oncomplete", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#eventdef-offlineaudiocontext-complete", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-offlineaudiocontext-complete", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-offlineaudiocontext-complete", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-offlineaudiocontext-complete", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-offlineaudiocontext-complete", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioCompletionEvent", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#OfflineAudioContext-methods", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-startrendering", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-startrendering", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-startrendering", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-startrendering", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-startrendering", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-rendering-started-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-rendering-started-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-rendering-started-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-rendering-started-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-rendering-started-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-this%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-relevant-global%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-document-window%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-fully-active%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-a-promise-rejected-with%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-rendering-started-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-rendering-started-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-rendered-buffer-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-rendered-buffer-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-rendered-buffer-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-rendered-buffer-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-rendered-buffer-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-begin-offline-rendering", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#begin-offline-rendering", - "https://webaudio.github.io/web-audio-api/#infopanel-for-begin-offline-rendering", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-begin-offline-rendering", - "https://webaudio.github.io/web-audio-api/#infopanel-for-begin-offline-rendering", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-begin-offline-rendering", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-suspend%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#6d54a0c513", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-startrendering%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-media-element-task%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-offlineaudiocontext-complete%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioCompletionEvent%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-resume", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-resume", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-resume", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-resume", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-resume", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-this%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-relevant-global%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-document-window%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-fully-active%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-a-promise-rejected-with%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMException%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-rendering-started-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#6d54a0c514", - "https://webaudio.github.io/web-audio-api/#6d54a0c515", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-running%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-media-element-task%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontext-suspend", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontext-suspend%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontext-suspend-suspendtime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#OfflineAudioContextOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContextOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContextOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OfflineAudioContextOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OfflineAudioContextOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OfflineAudioContextOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OfflineAudioContextOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContextOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontextoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontextoptions-length", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-audiocontextrendersizecategory%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocontextoptions-rendersizehint%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dictionary-offlineaudiocontextoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContextOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontextoptions-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontextoptions-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontextoptions-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontextoptions-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontextoptions-length", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontextoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontextoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontextoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontextoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontextoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontextoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocontextoptions-rendersizehint", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum-size%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEvent", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioCompletionEvent%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioCompletionEvent%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OfflineAudioCompletionEvent", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OfflineAudioCompletionEvent", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OfflineAudioCompletionEvent", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OfflineAudioCompletionEvent", - "https://webaudio.github.io/web-audio-api/#ref-for-event%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioCompletionEvent%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-event%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioCompletionEventInit", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocompletionevent-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEvent-attributes", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletionevent-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocompletionevent-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocompletionevent-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocompletionevent-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocompletionevent-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEventInit", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioCompletionEventInit%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioCompletionEventInit%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OfflineAudioCompletionEventInit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OfflineAudioCompletionEventInit", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OfflineAudioCompletionEventInit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OfflineAudioCompletionEventInit", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioCompletionEventInit%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dictdef-eventinit%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocompletioneventinit-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#dictionary-offlineaudiocompletioneventinit-members", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioCompletionEventInit%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-offlineaudiocompletioneventinit-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocompletioneventinit-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocompletioneventinit-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-offlineaudiocompletioneventinit-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-offlineaudiocompletioneventinit-renderedbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-offlineaudiocompletionevent-renderedbuffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#AudioBuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A7%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioBuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioBuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioBuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioBuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-linear-pcm%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-6-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-34", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-35", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-36", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-37", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-38", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-39", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-40", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-41", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-6", - "https://webaudio.github.io/web-audio-api/#ref-for-audio%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-number-of-channels-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-number-of-channels-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-number-of-channels-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-number-of-channels-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-number-of-channels-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-length-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-length-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-length-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-length-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-length-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-sample-rate-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-sample-rate-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-sample-rate-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-sample-rate-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-sample-rate-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-internal-data-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-internal-data-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-internal-data-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-internal-data-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-internal-data-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-sec-data-blocks", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-audiobuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferOptions", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-audiobuffer-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-length", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-duration", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-getchanneldata", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-getchanneldata-channel-channel", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copyfromchannel", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copytochannel", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", - "https://webaudio.github.io/web-audio-api/#AudioBuffer-constructors", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-audiobuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-audiobuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-audiobuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-audiobuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-audiobuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobufferoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobufferoptions-length", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobufferoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-number-of-channels-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-length-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-sample-rate-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-internal-data-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-length-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-audiobuffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-constructor-options", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-constructor-options", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-constructor-options", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-constructor-options", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#AudioBuffer-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-duration", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-duration", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-duration", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-duration", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-duration", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-length-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-length-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-length", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-length-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#AudioBuffer-methods", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copyfromchannel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copyfromchannel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copyfromchannel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copyfromchannel", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-7-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-42", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-43", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-44", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-45", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-46", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-7", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-8-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-47", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-48", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-49", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-50", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-51", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copyfromchannel-destination", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-9-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-52", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-53", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-54", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-9", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copyfromchannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-10-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-55", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-56", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-57", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-58", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-59", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-60", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-61", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-62", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-63", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-64", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-65", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-66", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-67", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-68", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-69", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-70", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-71", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-72", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-73", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-10", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-11-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-74", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-75", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-76", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-77", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-78", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-11", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-destination", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copyfromchannel-destination", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copyfromchannel-destination", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copyfromchannel-destination", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copyfromchannel-destination", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-channelnumber", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copyfromchannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copyfromchannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copyfromchannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copyfromchannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copyfromchannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copytochannel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copytochannel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copytochannel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copytochannel", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copytochannel%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-unknownerror", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copytochannel-source", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-12-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-79", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-80", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-81", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-82", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-83", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-12", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-13-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-84", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-85", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-86", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-87", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-88", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-13", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-14-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-89", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-90", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-91", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-14", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copytochannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-15-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-92", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-93", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-94", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-95", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-96", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-97", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-98", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-99", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-100", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-101", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-102", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-103", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-104", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-105", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-106", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-107", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-108", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-109", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-110", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-15", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-16-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-111", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-112", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-113", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-114", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-115", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-16", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copytochannel%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-source", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copytochannel-source", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copytochannel-source", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copytochannel-source", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copytochannel-source", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-channelnumber", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-copytochannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copytochannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copytochannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-copytochannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-copytochannel-bufferoffset", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-getchanneldata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-getchanneldata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-getchanneldata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffer-getchanneldata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffer-getchanneldata", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content", - "https://webaudio.github.io/web-audio-api/#ref-for-arraybufferview-write", - "https://webaudio.github.io/web-audio-api/#ref-for-dfn-get-buffer-source-copy", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-unknownerror%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffer-getchanneldata-channel", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copytochannel%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#acquire-the-content", - "https://webaudio.github.io/web-audio-api/#infopanel-for-acquire-the-content", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-acquire-the-content", - "https://webaudio.github.io/web-audio-api/#infopanel-for-acquire-the-content", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-acquire-the-content", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-ArrayBuffer%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-buffersource-detached%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dfn-detach%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-ArrayBuffer%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-ArrayBuffer%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-ArrayBuffer%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEvent%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingevent-outputbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-copytochannel%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#AudioBufferOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferOptions%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioBufferOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioBufferOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioBufferOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioBufferOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobufferoptions-length%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobufferoptions-samplerate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobufferoptions-numberofchannels%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobufferoptions-length%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobufferoptions-samplerate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dictionary-audiobufferoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audiobufferoptions-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobufferoptions-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobufferoptions-length", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobufferoptions-length", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobufferoptions-length", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbuffer-length", - "https://webaudio.github.io/web-audio-api/#dom-audiobufferoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobufferoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobufferoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobufferoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobufferoptions-numberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbuffer-numberofchannels", - "https://webaudio.github.io/web-audio-api/#dom-audiobufferoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobufferoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobufferoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobufferoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobufferoptions-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createbuffer-samplerate", - "https://webaudio.github.io/web-audio-api/#AudioNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-inputs", - "https://webaudio.github.io/web-audio-api/#ref-for-outputs", - "https://webaudio.github.io/web-audio-api/#ref-for-source-node", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#connection", - "https://webaudio.github.io/web-audio-api/#infopanel-for-connection", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-connection", - "https://webaudio.github.io/web-audio-api/#infopanel-for-connection", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-connection", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#input", - "https://webaudio.github.io/web-audio-api/#infopanel-for-input", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-input", - "https://webaudio.github.io/web-audio-api/#infopanel-for-input", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-input", - "https://webaudio.github.io/web-audio-api/#ref-for-connection", - "https://webaudio.github.io/web-audio-api/#ref-for-input", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-eventtarget%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-output-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode-destinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode-output", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode-output-destinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode-output-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode-output-input", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationparam", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationparam-destinationparam", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-context", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelcountmode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#AudioNode-creation", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#factory-method", - "https://webaudio.github.io/web-audio-api/#infopanel-for-factory-method", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-factory-method", - "https://webaudio.github.io/web-audio-api/#infopanel-for-factory-method", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-factory-method", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#associated", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-associated", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-associated", - "https://webaudio.github.io/web-audio-api/#infopanel-for-associated", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-associated", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-associated", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-factory-method%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-associated-option-object", - "https://webaudio.github.io/web-audio-api/#ref-for-associated-interface", - "https://webaudio.github.io/web-audio-api/#audionode-constructor-init", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audionode-constructor-init", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audionode-constructor-init", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audionode-constructor-init", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audionode-constructor-init", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#associated-interface", - "https://webaudio.github.io/web-audio-api/#infopanel-for-associated-interface", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-associated-interface", - "https://webaudio.github.io/web-audio-api/#infopanel-for-associated-interface", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-associated-interface", - "https://webaudio.github.io/web-audio-api/#associated-option-object", - "https://webaudio.github.io/web-audio-api/#infopanel-for-associated-option-object", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-associated-option-object", - "https://webaudio.github.io/web-audio-api/#infopanel-for-associated-option-object", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-associated-option-object", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-eventtarget%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-eventtarget%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#enumdef-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-channelcountmode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-clamped-max", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelcountmode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#computednumberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computednumberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computednumberofchannels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computednumberofchannels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computednumberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-computednumberofchannels", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelcountmode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-channelcountmode-max", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelcountmode-max", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelcountmode-max", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelcountmode-max", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelcountmode-max", - "https://webaudio.github.io/web-audio-api/#ref-for-computednumberofchannels%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-channelcountmode-clamped-max", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelcountmode-clamped-max", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelcountmode-clamped-max", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelcountmode-clamped-max", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelcountmode-clamped-max", - "https://webaudio.github.io/web-audio-api/#ref-for-computednumberofchannels%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-channelcountmode-explicit", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelcountmode-explicit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelcountmode-explicit", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelcountmode-explicit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelcountmode-explicit", - "https://webaudio.github.io/web-audio-api/#ref-for-computednumberofchannels%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#enumdef-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-discrete", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelinterpretation%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-channelinterpretation-speakers", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelinterpretation-speakers", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelinterpretation-speakers", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelinterpretation-speakers", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelinterpretation-speakers", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-discrete%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-channelinterpretation-discrete", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelinterpretation-discrete", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelinterpretation-discrete", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelinterpretation-discrete", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelinterpretation-discrete", - "https://webaudio.github.io/web-audio-api/#AudioNode-tail", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#tail-time", - "https://webaudio.github.io/web-audio-api/#infopanel-for-tail-time", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-tail-time", - "https://webaudio.github.io/web-audio-api/#infopanel-for-tail-time", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-tail-time", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#AudioNode-actively-processing", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#actively-processing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-actively-processing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-actively-processing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-actively-processing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-actively-processing", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing", - "https://webaudio.github.io/web-audio-api/#ref-for-playing", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediaelementaudiosourcenode-mediaelement", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-17-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-116", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-117", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-118", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-119", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-120", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-121", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-122", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-123", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-17", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocessor-callable-process-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-active-source", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A5%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#AudioNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audionode-channelcount", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-channelcount", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-channelcount", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-channelcount", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-channelcount", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#audionode-channelcount-constraints", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audionode-channelcount-constraints", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audionode-channelcount-constraints", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audionode-channelcount-constraints", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audionode-channelcount-constraints", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiodestinationnode-maxchannelcount", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audionode-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-channelcountmode", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelcountmode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#audionode-channelcountmode-constraints", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audionode-channelcountmode-constraints", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audionode-channelcountmode-constraints", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audionode-channelcountmode-constraints", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audionode-channelcountmode-constraints", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-destination%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audionode-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelinterpretation%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#audionode-channelinterpretation-constraints", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audionode-channelinterpretation-constraints", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audionode-channelinterpretation-constraints", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audionode-channelinterpretation-constraints", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audionode-channelinterpretation-constraints", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-discrete%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audionode-context", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-context", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-context", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-context", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audionode-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-numberofinputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#audionode-source-nodes", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audionode-source-nodes", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audionode-source-nodes", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audionode-source-nodes", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audionode-source-nodes", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audionode-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A6%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#AudioNode-methods", - "https://webaudio.github.io/web-audio-api/#dom-audionode-connect", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect", - "https://webaudio.github.io/web-audio-api/#example-bbcc3e9e", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A7%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidaccesserror%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A7%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#cycle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-cycle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-cycle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-cycle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-cycle", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A8%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#example-8779522d", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect-destinationparam-output%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect-destinationparam-output-destinationparam%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidaccesserror%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audionode-connect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-connect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-connect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-output", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-output%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-output-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-output-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-output-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-output-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-output-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-destinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidaccesserror%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode-output%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-destinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidaccesserror%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-input", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-input", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-input", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-input", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-input", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationnode-output-input%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidaccesserror%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-input-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationnode-output-input-input", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationparam", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationparam%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationparam-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationparam-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationparam-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationparam-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationparam-destinationparam", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidaccesserror%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationparam-output", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-disconnect-destinationparam-output%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationparam-output-destinationparam", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidaccesserror%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audionode-disconnect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionode-disconnect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionode-disconnect-destinationparam-output-output", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#AudioNodeOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioNodeOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioNodeOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioNodeOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioNodeOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionodeoptions-channelcount", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelcountmode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionodeoptions-channelcountmode", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelinterpretation%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionodeoptions-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#dictionary-audionodeoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audionodeoptions-channelcount", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionodeoptions-channelcount", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionodeoptions-channelcount", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionodeoptions-channelcount", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionodeoptions-channelcount", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-audionodeoptions-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionodeoptions-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionodeoptions-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionodeoptions-channelcountmode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionodeoptions-channelcountmode", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelcountmode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audionodeoptions-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionodeoptions-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionodeoptions-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audionodeoptions-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audionodeoptions-channelinterpretation", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelinterpretation%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#AudioParam", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A7%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioParam", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioParam", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioParam", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioParam", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-k-rate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#k-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-k-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-k-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-k-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-k-rate", - "https://webaudio.github.io/web-audio-api/#a-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-a-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-a-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-a-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-a-rate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue", - "https://webaudio.github.io/web-audio-api/#simple-nominal-range", - "https://webaudio.github.io/web-audio-api/#infopanel-for-simple-nominal-range", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-simple-nominal-range", - "https://webaudio.github.io/web-audio-api/#infopanel-for-simple-nominal-range", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-simple-nominal-range", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-18-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-124", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-125", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-126", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-127", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-128", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-129", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-130", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-131", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-132", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-133", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-134", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-135", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-136", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-137", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-138", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-139", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-140", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-141", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-142", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-143", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-144", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-145", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-146", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-147", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-148", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-18", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#most-positive-single-float", - "https://webaudio.github.io/web-audio-api/#infopanel-for-most-positive-single-float", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-most-positive-single-float", - "https://webaudio.github.io/web-audio-api/#infopanel-for-most-positive-single-float", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-most-positive-single-float", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#most-negative-single-float", - "https://webaudio.github.io/web-audio-api/#infopanel-for-most-negative-single-float", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-most-negative-single-float", - "https://webaudio.github.io/web-audio-api/#infopanel-for-most-negative-single-float", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-most-negative-single-float", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dfn-automation-event", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dfn-automation-event", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dfn-automation-event", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dfn-automation-event", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dfn-automation-event", - "https://webaudio.github.io/web-audio-api/#automation-event-time", - "https://webaudio.github.io/web-audio-api/#infopanel-for-automation-event-time", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-automation-event-time", - "https://webaudio.github.io/web-audio-api/#infopanel-for-automation-event-time", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-automation-event-time", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dfn-automation-method", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dfn-automation-method", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dfn-automation-method", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dfn-automation-method", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dfn-automation-method", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvalueattime", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-linearramptovalueattime", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-exponentialramptovalueattime", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-settargetattime", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime", - "https://webaudio.github.io/web-audio-api/#ref-for-automation-event-time", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-19-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-149", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-150", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-151", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-19", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-20-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-152", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-153", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-154", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-20", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-21-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-155", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-156", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-157", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-21", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-22-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-158", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-159", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-160", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-161", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-162", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-22", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dfn-automation-method", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-23-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-163", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-164", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-165", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-166", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-167", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-168", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-169", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-170", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-171", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-23", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-24-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-172", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-173", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-174", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-24", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-25-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-175", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-176", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-177", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-25", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#enumdef-automationrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-automationrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-automationrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-automationrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-automationrate", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-automationrate", - "https://webaudio.github.io/web-audio-api/#dom-automationrate-a-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-automationrate-a-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-automationrate-a-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-automationrate-a-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-automationrate-a-rate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-automationrate-k-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-automationrate-k-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-automationrate-k-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-automationrate-k-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-automationrate-k-rate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-k-rate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-current-value-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-current-value-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-current-value-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-current-value-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-current-value-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-automationrate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvalueattime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime-value-starttime-value", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime-value-starttime-starttime", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-linearramptovalueattime-value-endtime-value", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-linearramptovalueattime-value-endtime-endtime", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-exponentialramptovalueattime-value-endtime-value", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-settargetattime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-target-starttime-timeconstant-target", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-values-starttime-duration-values", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelscheduledvalues", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelscheduledvalues-canceltime-canceltime", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelandholdattime-canceltime-canceltime", - "https://webaudio.github.io/web-audio-api/#AudioParam-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-automationrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-automationrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-automationrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-automationrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-automationrate", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-automationrate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#audioparam-automation-rate-constraints", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audioparam-automation-rate-constraints", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audioparam-automation-rate-constraints", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audioparam-automation-rate-constraints", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audioparam-automation-rate-constraints", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-playbackrate", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-threshold", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-knee", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-ratio", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-attack", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-release", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-panningmodel", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panningmodeltype-hrtf", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-defaultvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-defaultvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-defaultvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-defaultvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-defaultvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-maxvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-maxvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-maxvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-maxvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-maxvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-nominal-range", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-minvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-minvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-minvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-minvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-minvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-nominal-range%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-value", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-value", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-value", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-value", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-value", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-current-value-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-current-value-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvalueattime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-current-value-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#AudioParam-methods", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelandholdattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-cancelandholdattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-cancelandholdattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-cancelandholdattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-cancelandholdattime", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelscheduledvalues%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime-canceltime", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-26-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-178", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-179", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-180", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-181", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-182", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-26", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-27-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-183", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-184", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-185", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-186", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-187", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-27", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-28-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-188", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-189", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-190", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-191", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-192", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-28", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-29-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-193", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-194", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-195", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-196", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-197", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-29", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-30-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-198", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-199", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-200", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-201", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-202", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-203", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-204", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-205", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-206", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-30", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-31-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-207", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-208", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-209", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-210", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-211", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-31", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-32-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-212", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-213", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-214", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-215", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-216", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-32", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-33-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-217", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-218", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-219", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-220", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-221", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-33", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-34-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-222", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-223", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-224", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-225", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-226", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-227", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-228", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-229", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-230", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-34", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-35-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-231", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-232", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-233", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-234", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-235", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-35", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-36-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-236", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-237", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-238", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-239", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-240", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-36", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-37-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-241", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-242", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-243", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-244", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-245", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-37", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-38-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-246", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-247", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-248", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-249", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-250", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-38", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-39-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-251", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-252", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-253", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-254", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-255", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-39", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-40-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-256", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-257", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-258", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-259", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-260", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-40", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-41-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-261", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-262", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-263", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-264", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-265", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-41", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-42-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-266", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-267", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-268", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-269", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-270", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-42", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-43-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-271", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-272", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-273", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-274", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-275", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-43", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-44-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-276", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-277", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-278", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-279", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-280", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-44", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-45-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-281", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-282", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-283", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-284", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-285", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-45", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-46-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-286", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-287", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-288", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-46", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-47-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-289", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-290", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-291", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-292", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-293", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-294", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-295", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-296", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-297", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-298", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-299", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-47", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-48-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-300", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-301", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-302", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-303", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-304", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-48", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-49-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-305", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-306", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-307", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-308", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-309", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-310", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-311", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-312", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-313", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-49", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-50-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-314", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-315", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-316", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-317", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-318", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-50", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-51-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-319", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-320", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-321", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-322", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-323", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-51", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelandholdattime-canceltime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-cancelandholdattime-canceltime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-cancelandholdattime-canceltime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-cancelandholdattime-canceltime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-cancelandholdattime-canceltime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelscheduledvalues", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-cancelscheduledvalues", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-cancelscheduledvalues", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-cancelscheduledvalues", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-cancelscheduledvalues", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime", - "https://webaudio.github.io/web-audio-api/#ref-for-automation-event-time%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-52-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-324", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-325", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-326", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-327", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-328", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-52", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-53-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-329", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-330", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-331", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-332", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-333", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-53", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime-starttime", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime-duration", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-54-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-334", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-335", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-336", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-337", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-338", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-339", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-340", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-341", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-342", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-343", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-344", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-345", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-346", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-347", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-348", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-54", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-cancelscheduledvalues%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-cancelscheduledvalues-canceltime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-cancelscheduledvalues-canceltime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-cancelscheduledvalues-canceltime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-cancelscheduledvalues-canceltime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-cancelscheduledvalues-canceltime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-exponentialramptovalueattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-exponentialramptovalueattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-exponentialramptovalueattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-exponentialramptovalueattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-exponentialramptovalueattime", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-55-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-349", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-350", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-351", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-352", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-353", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-354", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-355", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-356", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-357", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-358", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-359", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-55", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-56-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-360", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-361", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-362", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-363", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-364", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-56", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-57-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-365", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-366", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-367", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-368", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-369", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-57", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-exponentialramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-58-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-370", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-371", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-372", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-373", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-374", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-375", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-376", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-377", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-378", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-379", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-380", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-381", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-382", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-383", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-384", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-385", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-386", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-387", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-388", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-389", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-390", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-391", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-392", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-393", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-394", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-395", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-396", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-397", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-398", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-399", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-400", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-401", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-402", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-403", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-404", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-405", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-58", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-59-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-406", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-407", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-408", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-409", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-410", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-59", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-60-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-411", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-412", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-413", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-414", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-415", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-60", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-61-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-416", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-417", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-418", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-419", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-420", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-61", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-exponentialramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-62-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-421", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-422", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-423", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-424", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-425", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-62", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-63-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-426", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-427", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-428", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-429", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-430", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-63", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-64-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-431", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-432", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-433", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-434", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-435", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-64", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-65-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-436", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-437", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-438", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-439", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-440", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-441", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-442", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-443", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-444", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-445", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-65", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-66-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-446", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-447", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-448", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-449", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-450", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-451", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-452", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-453", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-454", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-455", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-456", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-66", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-settargetattime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-67-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-457", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-458", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-459", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-460", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-461", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-462", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-463", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-67", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-68-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-464", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-465", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-466", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-467", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-468", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-469", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-470", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-471", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-472", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-473", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-68", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvalueattime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-69-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-474", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-475", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-476", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-477", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-478", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-69", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-70-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-479", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-480", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-481", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-482", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-483", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-70", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-71-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-484", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-485", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-486", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-487", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-488", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-71", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-72-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-489", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-490", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-491", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-492", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-493", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-72", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-73-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-494", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-495", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-496", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-497", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-498", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-73", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-74-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-499", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-500", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-501", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-502", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-503", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-74", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-75-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-504", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-505", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-506", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-507", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-508", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-75", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-exponentialramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-exponentialramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-exponentialramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-exponentialramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-exponentialramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-exponentialramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-exponentialramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-exponentialramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-exponentialramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-exponentialramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-linearramptovalueattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-linearramptovalueattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-linearramptovalueattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-linearramptovalueattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-linearramptovalueattime", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-76-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-509", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-510", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-511", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-512", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-513", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-514", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-515", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-516", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-517", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-518", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-519", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-76", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-77-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-520", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-521", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-522", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-523", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-524", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-77", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-78-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-525", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-526", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-527", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-528", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-529", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-78", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-linearramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-79-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-530", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-531", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-532", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-533", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-534", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-535", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-536", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-537", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-538", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-539", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-540", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-541", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-542", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-543", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-544", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-545", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-546", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-547", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-548", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-549", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-550", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-551", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-552", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-553", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-554", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-555", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-556", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-557", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-558", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-559", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-560", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-561", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-562", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-563", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-564", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-79", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-80-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-565", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-566", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-567", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-568", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-569", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-80", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-81-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-570", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-571", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-572", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-573", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-574", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-81", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-82-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-575", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-576", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-577", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-578", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-579", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-82", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-linearramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-83-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-580", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-581", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-582", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-583", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-584", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-585", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-586", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-83", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-84-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-587", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-588", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-589", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-590", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-591", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-592", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-593", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-594", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-595", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-596", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-84", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvalueattime%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-85-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-597", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-598", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-599", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-600", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-601", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-85", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-86-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-602", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-603", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-604", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-605", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-606", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-86", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-87-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-607", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-608", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-609", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-610", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-611", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-87", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-88-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-612", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-613", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-614", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-615", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-616", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-88", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-89-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-617", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-618", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-619", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-620", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-621", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-89", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-90-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-622", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-623", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-624", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-625", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-626", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-90", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-91-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-627", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-628", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-629", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-630", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-631", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-91", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-linearramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-linearramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-linearramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-linearramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-linearramptovalueattime-value", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-linearramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-linearramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-linearramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-linearramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-linearramptovalueattime-endtime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-settargetattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-settargetattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-settargetattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-settargetattime", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-92-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-632", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-633", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-634", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-635", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-636", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-637", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-638", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-92", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-93-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-639", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-640", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-641", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-642", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-643", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-93", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-settargetattime-starttime", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-94-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-644", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-645", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-646", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-647", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-648", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-649", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-650", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-651", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-652", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-653", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-654", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-655", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-656", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-657", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-658", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-659", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-660", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-661", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-662", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-663", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-664", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-665", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-666", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-667", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-668", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-669", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-670", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-671", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-672", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-673", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-674", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-675", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-676", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-677", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-678", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-679", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-680", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-94", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-95-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-681", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-682", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-683", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-684", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-685", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-95", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-current-value-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-96-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-686", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-687", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-688", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-689", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-690", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-96", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-settargetattime-starttime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-97-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-691", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-692", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-693", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-694", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-695", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-97", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-settargetattime-target", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-98-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-696", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-697", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-698", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-98", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-settargetattime-timeconstant", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-settargetattime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-target", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-settargetattime-target", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-settargetattime-target", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-settargetattime-target", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-settargetattime-target", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-settargetattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-settargetattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-settargetattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-settargetattime-starttime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A8%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-settargetattime-timeconstant", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-settargetattime-timeconstant", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-settargetattime-timeconstant", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-settargetattime-timeconstant", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-settargetattime-timeconstant", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-99-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-699", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-700", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-701", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-702", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-703", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-704", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-705", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-706", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-707", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-99", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvalueattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvalueattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvalueattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvalueattime", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-100-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-708", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-709", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-710", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-711", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-712", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-713", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-714", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-100", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-101-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-715", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-716", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-717", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-718", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-719", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-720", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-721", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-722", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-101", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-102-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-723", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-724", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-725", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-726", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-727", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-102", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvalueattime-starttime", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-103-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-728", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-729", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-730", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-103", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvalueattime-value", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-104-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-731", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-732", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-733", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-734", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-735", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-104", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-105-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-736", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-737", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-738", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-739", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-740", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-741", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-742", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-743", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-744", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-745", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-746", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-105", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-106-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-747", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-748", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-749", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-750", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-751", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-752", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-753", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-754", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-106", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvalueattime%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvalueattime-value", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvalueattime-value", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvalueattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvalueattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvalueattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvalueattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvalueattime-starttime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvaluecurveattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvaluecurveattime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvaluecurveattime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvaluecurveattime", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-107-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-755", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-756", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-757", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-758", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-759", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-107", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime-starttime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-108-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-760", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-761", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-762", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-763", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-764", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-108", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime-duration%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-109-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-765", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-766", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-767", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-109", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime-values", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-110-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-768", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-769", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-770", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-110", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime-values%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-111-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-771", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-772", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-773", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-774", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-775", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-776", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-777", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-778", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-779", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-780", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-781", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-782", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-783", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-784", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-785", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-111", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-112-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-786", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-787", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-788", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-789", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-790", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-791", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-792", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-793", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-794", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-795", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-796", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-797", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-798", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-799", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-800", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-801", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-802", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-803", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-804", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-805", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-806", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-807", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-808", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-809", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-810", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-811", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-812", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-813", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-112", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-113-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-814", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-815", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-816", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-817", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-818", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-819", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-113", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-114-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-820", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-821", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-822", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-823", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-824", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-825", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-114", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-115-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-826", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-827", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-828", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-829", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-830", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-831", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-832", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-833", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-115", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-116-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-834", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-835", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-836", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-837", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-838", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-839", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-840", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-841", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-842", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-843", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-844", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-116", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvalueattime%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-117-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-845", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-846", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-847", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-848", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-849", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-850", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-851", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-852", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-853", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-117", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-118-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-854", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-855", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-856", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-857", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-858", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-859", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-860", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-861", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-118", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-values", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvaluecurveattime-values", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvaluecurveattime-values", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvaluecurveattime-values", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvaluecurveattime-values", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvaluecurveattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvaluecurveattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvaluecurveattime-starttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvaluecurveattime-starttime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audioparam-setvaluecurveattime-duration", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvaluecurveattime-duration", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvaluecurveattime-duration", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparam-setvaluecurveattime-duration", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparam-setvaluecurveattime-duration", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#computation-of-value", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-simple-parameter", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter", - "https://webaudio.github.io/web-audio-api/#simple-parameter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-simple-parameter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-simple-parameter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-simple-parameter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-simple-parameter", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#compound-parameter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-compound-parameter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-compound-parameter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-compound-parameter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-compound-parameter", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A5%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#computedvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computedvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computedvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computedvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computedvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dfn-automation-event", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dfn-automation-event%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-current-value-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-input-audioparam-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-computedvalue", - "https://webaudio.github.io/web-audio-api/#nominal-range", - "https://webaudio.github.io/web-audio-api/#infopanel-for-nominal-range", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-nominal-range", - "https://webaudio.github.io/web-audio-api/#infopanel-for-nominal-range", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-nominal-range", - "https://webaudio.github.io/web-audio-api/#ref-for-computedvalue%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-simple-parameter%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-computedvalue%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-simple-nominal-range", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-nominal-range%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#example-7a3be3df", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-119-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-862", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-863", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-864", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-119", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-120-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-865", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-866", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-867", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-120", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-121-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-868", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-869", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-870", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-871", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-872", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-873", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-874", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-121", - "https://webaudio.github.io/web-audio-api/#example1-AudioParam", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#example-ab13e619", - "https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioScheduledSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioScheduledSourceNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioScheduledSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioScheduledSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-start", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-stop", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#playing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-playing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-playing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-playing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-playing", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-source-started-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-source-started-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-source-started-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-source-started-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-source-started-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-onended", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-start-when-when", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-stop-when-when", - "https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-onended", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-onended", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-onended", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-onended", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-onended", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-event-handlers%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#eventdef-audioscheduledsourcenode-ended", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-audioscheduledsourcenode-ended", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-audioscheduledsourcenode-ended", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-audioscheduledsourcenode-ended", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-audioscheduledsourcenode-ended", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-event%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-audioscheduledsourcenode-ended", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode-methods", - "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-start", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-start", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-start", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-start", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-start", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-source-started-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-suspended%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-allowed-to-start%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-allowed-to-start%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-start-when-when", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-start-when-when", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-start-when-when", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-start-when-when", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-start-when-when", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-start-when-when%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-stop", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-stop", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-stop", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-stop", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-stop", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioscheduledsourcenode-stop-when-when", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-stop-when-when", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-stop-when-when", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioscheduledsourcenode-stop-when-when", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioscheduledsourcenode-stop-when-when", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-stop-when-when%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#AnalyserNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AnalyserNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AnalyserNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AnalyserNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AnalyserNode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-analysernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-analysernode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserOptions", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-analysernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getfloatfrequencydata", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloatfrequencydata-array-array", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getbytefrequencydata", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Uint8Array", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytefrequencydata-array-array", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getfloattimedomaindata", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloattimedomaindata-array-array", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getbytetimedomaindata", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Uint8Array%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytetimedomaindata-array-array", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-frequencybincount", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-mindecibels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-maxdecibels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#AnalyserNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-analysernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-analysernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-analysernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-analysernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-analysernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-analysernode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#AnalyserNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-fftsize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-fftsize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-fftsize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-fftsize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-fftsize", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-previous-block", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-122-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-875", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-876", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-877", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-878", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-879", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-880", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-881", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-882", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-883", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-884", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-885", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-886", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-887", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-888", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-889", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-122", - "https://webaudio.github.io/web-audio-api/#ref-for-smoothing-over-time", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-123-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-890", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-891", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-892", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-123", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-current-time-domain-data", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-current-time-domain-data%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-frequencybincount", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-frequencybincount", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-frequencybincount", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-frequencybincount", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-frequencybincount", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-maxdecibels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-maxdecibels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-maxdecibels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-maxdecibels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-maxdecibels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-maxdecibels%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-mindecibels%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-mindecibels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-mindecibels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-mindecibels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-mindecibels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-mindecibels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-mindecibels%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-maxdecibels%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#AnalyserNode-methods", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytefrequencydata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-getbytefrequencydata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-getbytefrequencydata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-getbytefrequencydata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-getbytefrequencydata", - "https://webaudio.github.io/web-audio-api/#ref-for-arraybufferview-write%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-current-frequency-data", - "https://webaudio.github.io/web-audio-api/#ref-for-buffersource-byte-length", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-frequencybincount%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-buffersource-byte-length%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-frequencybincount%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-current-frequency-data%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-124-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-893", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-894", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-895", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-896", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-897", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-898", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-124", - "https://webaudio.github.io/web-audio-api/#ref-for-current-frequency-data%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-125-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-899", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-900", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-901", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-902", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-903", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-904", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-125", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-126-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-905", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-906", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-907", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-908", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-909", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-910", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-911", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-912", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-913", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-914", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-915", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-916", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-917", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-918", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-919", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-920", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-921", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-922", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-923", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-924", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-925", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-926", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-927", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-928", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-929", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-930", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-931", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-932", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-933", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-934", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-935", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-936", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-937", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-938", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-939", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-940", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-941", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-942", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-943", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-944", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-945", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-946", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-947", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-948", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-949", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-950", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-951", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-952", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-953", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-126", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-127-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-954", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-955", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-956", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-957", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-958", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-959", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-960", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-961", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-962", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-963", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-964", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-127", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-mindecibels%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-128-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-965", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-966", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-967", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-968", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-969", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-970", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-971", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-972", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-973", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-974", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-975", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-128", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-maxdecibels%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-129-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-976", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-977", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-978", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-979", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-980", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-981", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-129", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-130-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-982", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-983", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-984", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-985", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-986", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-987", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-130", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytefrequencydata-array", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Uint8Array%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytetimedomaindata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-getbytetimedomaindata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-getbytetimedomaindata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-getbytetimedomaindata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-getbytetimedomaindata", - "https://webaudio.github.io/web-audio-api/#ref-for-arraybufferview-write%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-current-time-domain-data%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-buffersource-byte-length%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-buffersource-byte-length%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-131-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-988", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-989", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-990", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-991", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-992", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-993", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-131", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-132-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-994", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-995", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-996", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-997", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-998", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-999", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-132", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-133-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1000", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1001", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1002", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1003", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1004", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1005", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1006", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1007", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1008", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1009", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1010", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1011", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1012", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1013", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1014", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1015", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1016", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1017", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1018", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1019", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-133", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-134-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1020", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1021", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1022", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1023", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1024", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1025", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-134", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-135-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1026", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1027", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1028", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1029", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1030", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1031", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-135", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getbytetimedomaindata%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getbytetimedomaindata-array", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Uint8Array%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloatfrequencydata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-getfloatfrequencydata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-getfloatfrequencydata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-getfloatfrequencydata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-getfloatfrequencydata", - "https://webaudio.github.io/web-audio-api/#ref-for-arraybufferview-write%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-current-frequency-data%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-frequencybincount%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-frequencybincount%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-current-frequency-data%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloatfrequencydata-array", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloattimedomaindata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-getfloattimedomaindata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-getfloattimedomaindata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analysernode-getfloattimedomaindata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analysernode-getfloattimedomaindata", - "https://webaudio.github.io/web-audio-api/#ref-for-arraybufferview-write%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-current-time-domain-data%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getfloattimedomaindata%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-analysernode-getfloattimedomaindata-array", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#AnalyserOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AnalyserOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AnalyserOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AnalyserOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AnalyserOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analyseroptions-fftsize", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analyseroptions-maxdecibels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analyseroptions-mindecibels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analyseroptions-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#dictionary-analyseroptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-analyseroptions-fftsize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analyseroptions-fftsize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analyseroptions-fftsize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analyseroptions-fftsize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analyseroptions-fftsize", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-analyseroptions-maxdecibels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analyseroptions-maxdecibels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analyseroptions-maxdecibels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analyseroptions-maxdecibels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analyseroptions-maxdecibels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-analyseroptions-mindecibels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analyseroptions-mindecibels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analyseroptions-mindecibels", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analyseroptions-mindecibels", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analyseroptions-mindecibels", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-analyseroptions-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analyseroptions-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analyseroptions-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-analyseroptions-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-analyseroptions-smoothingtimeconstant", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#time-domain-down-mixing", - "https://webaudio.github.io/web-audio-api/#current-time-domain-data", - "https://webaudio.github.io/web-audio-api/#infopanel-for-current-time-domain-data", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-current-time-domain-data", - "https://webaudio.github.io/web-audio-api/#infopanel-for-current-time-domain-data", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-current-time-domain-data", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#fft-windowing-and-smoothing-over-time", - "https://webaudio.github.io/web-audio-api/#current-frequency-data", - "https://webaudio.github.io/web-audio-api/#infopanel-for-current-frequency-data", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-current-frequency-data", - "https://webaudio.github.io/web-audio-api/#infopanel-for-current-frequency-data", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-current-frequency-data", - "https://webaudio.github.io/web-audio-api/#ref-for-current-time-domain-data%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-blackman-window", - "https://webaudio.github.io/web-audio-api/#ref-for-fourier-transform", - "https://webaudio.github.io/web-audio-api/#ref-for-smoothing-over-time%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-conversion-to-db", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-136-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1032", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1033", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1034", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-136", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#blackman-window", - "https://webaudio.github.io/web-audio-api/#infopanel-for-blackman-window", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-blackman-window", - "https://webaudio.github.io/web-audio-api/#infopanel-for-blackman-window", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-blackman-window", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-137-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1035", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1036", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1037", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1038", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1039", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1040", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-137", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-138-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1041", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1042", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1043", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1044", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1045", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1046", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1047", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1048", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1049", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1050", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1051", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-138", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-139-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1052", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1053", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1054", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1055", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1056", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1057", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1065", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1066", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1067", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1068", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1069", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1080", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1081", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1082", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1083", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1084", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1092", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1093", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1094", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1095", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1096", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1104", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1105", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1106", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1107", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1108", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1109", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1058", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1059", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1060", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1061", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1062", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1063", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1064", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1070", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1071", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1072", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1073", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1074", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1075", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1076", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1077", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1078", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1079", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1085", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1086", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1087", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1088", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1089", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1090", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1091", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1097", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1098", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1099", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1100", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1101", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1102", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1103", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1110", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1111", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1112", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1113", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1114", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1115", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1116", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1117", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1118", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1119", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1120", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1121", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1122", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1123", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1124", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1125", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1126", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1127", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1128", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1129", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1130", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1131", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1132", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1133", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1134", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1135", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1136", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1137", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1138", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1139", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1140", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1141", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1142", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1143", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1144", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1145", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1146", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1147", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1148", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1149", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1150", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1151", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1152", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1153", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-139", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-140-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1154", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1155", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1156", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1157", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1158", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1159", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1160", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1161", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1162", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1163", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-140", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-141-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1164", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1165", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1166", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1167", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1168", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1169", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1170", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1171", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1172", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1173", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1174", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1175", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1176", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1177", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1178", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1179", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1180", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1181", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1182", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1183", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1184", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1185", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1186", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1187", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1188", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1189", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1190", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1191", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1192", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1193", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1194", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1195", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-141", - "https://webaudio.github.io/web-audio-api/#fourier-transform", - "https://webaudio.github.io/web-audio-api/#infopanel-for-fourier-transform", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-fourier-transform", - "https://webaudio.github.io/web-audio-api/#infopanel-for-fourier-transform", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-fourier-transform", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-142-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1196", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1197", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1198", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1199", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1200", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1201", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-142", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-143-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1202", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1203", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1204", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1205", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1206", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1207", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1208", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1209", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1210", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1211", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-143", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-144-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1212", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1213", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1214", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1215", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1216", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1217", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1218", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1219", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1220", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1221", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1222", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1223", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1224", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1225", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1226", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1227", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1228", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1229", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1230", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1231", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1232", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1233", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1234", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1235", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1236", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1237", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1238", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1239", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1240", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1241", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1242", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1243", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1244", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1245", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1246", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1247", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1248", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1249", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1250", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1251", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1252", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-144", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-145-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1253", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1254", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1255", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1256", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1257", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1258", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1259", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1260", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1261", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1262", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1263", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1264", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1265", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1266", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1267", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-145", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-146-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1268", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1269", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1270", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1271", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1272", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1273", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1274", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1275", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1276", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1277", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1278", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1279", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1280", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1281", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1282", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1283", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1284", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-146", - "https://webaudio.github.io/web-audio-api/#smoothing-over-time", - "https://webaudio.github.io/web-audio-api/#infopanel-for-smoothing-over-time", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-smoothing-over-time", - "https://webaudio.github.io/web-audio-api/#infopanel-for-smoothing-over-time", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-smoothing-over-time", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-147-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1285", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1286", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1287", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1288", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1289", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1290", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1291", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1292", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1293", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1294", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1295", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1296", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1297", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1298", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1299", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-147", - "https://webaudio.github.io/web-audio-api/#ref-for-previous-block%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#previous-block", - "https://webaudio.github.io/web-audio-api/#infopanel-for-previous-block", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-previous-block", - "https://webaudio.github.io/web-audio-api/#infopanel-for-previous-block", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-previous-block", - "https://webaudio.github.io/web-audio-api/#ref-for-smoothing-over-time%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-148-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1300", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1301", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1302", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-148", - "https://webaudio.github.io/web-audio-api/#ref-for-smoothing-over-time%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-149-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1303", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1304", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1305", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-149", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-smoothingtimeconstant%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-150-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1306", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1307", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1308", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1309", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1310", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1311", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-150", - "https://webaudio.github.io/web-audio-api/#ref-for-fourier-transform%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-151-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1312", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1313", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1314", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1315", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1316", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1317", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1318", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1319", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1320", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1321", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-151", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-152-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1322", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1323", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1324", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1325", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1326", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1327", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1328", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1329", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1330", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1331", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1332", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1333", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1334", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1335", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1336", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1337", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1338", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1339", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1340", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1341", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1342", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1343", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1344", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1345", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1346", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1347", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1348", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1349", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1350", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1351", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1352", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1353", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1354", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1355", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1356", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1357", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1358", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1359", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1360", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1361", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-152", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-153-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1362", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1363", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1364", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1365", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1366", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1367", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1368", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1369", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1370", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1371", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-153", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-154-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1372", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1373", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1374", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1375", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1376", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1377", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1378", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1379", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1380", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1381", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-154", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-155-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1382", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1383", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1384", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1385", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1386", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1387", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1388", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1389", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1390", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1391", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1392", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-155", - "https://webaudio.github.io/web-audio-api/#conversion-to-db", - "https://webaudio.github.io/web-audio-api/#infopanel-for-conversion-to-db", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-conversion-to-db", - "https://webaudio.github.io/web-audio-api/#infopanel-for-conversion-to-db", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-conversion-to-db", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-156-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1393", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1394", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1395", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1396", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1397", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1398", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1399", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1400", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1401", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1402", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-156", - "https://webaudio.github.io/web-audio-api/#ref-for-smoothing-over-time%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-157-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1403", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1404", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1405", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1406", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1407", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1408", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1409", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1410", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1411", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1412", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1413", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1414", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1415", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1416", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1417", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1418", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1419", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1420", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1421", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1422", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1423", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1424", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-157", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-158-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1425", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1426", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1427", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1428", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1429", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1430", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1431", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1432", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1433", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1434", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1435", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-158", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-159-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1436", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1437", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1438", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1439", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1440", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1441", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-159", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-160-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1442", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1443", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1444", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1445", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1446", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1447", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-160", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-mindecibels%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-maxdecibels%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-mindecibels%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-analysernode-maxdecibels%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioBufferSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioBufferSourceNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioBufferSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioBufferSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loop", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-stop-when-when%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#playhead-position", - "https://webaudio.github.io/web-audio-api/#infopanel-for-playhead-position", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-playhead-position", - "https://webaudio.github.io/web-audio-api/#infopanel-for-playhead-position", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-playhead-position", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#computedplaybackrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computedplaybackrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computedplaybackrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computedplaybackrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computedplaybackrate", - "https://webaudio.github.io/web-audio-api/#ref-for-nominal-range%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-161-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1448", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1449", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1450", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1451", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1452", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1453", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1454", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1455", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-161", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-buffer-set-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-buffer-set-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-buffer-set-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-buffer-set-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-buffer-set-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-audiobuffersourcenode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceOptions", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-when", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-offset", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A5%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-constructor-audiobuffersourcenode", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-audiobuffersourcenode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-audiobuffersourcenode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-audiobuffersourcenode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-audiobuffersourcenode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-audiobuffersourcenode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-audiobuffersourcenode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer-set-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer-set-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-computedplaybackrate", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-loop", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-loop", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-loop", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-loop", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-loop", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-loopend", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-loopend", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-loopend", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-loopend", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-loopend", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-playhead-position", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-loopstart", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-loopstart", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-loopstart", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-loopstart", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-loopstart", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-playhead-position%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-playbackrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-playbackrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-playbackrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-playbackrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-playbackrate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A6%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-computedplaybackrate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#AudioBufferSourceNode-methods", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-start", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-start", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-start", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-start", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-start", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-suspended%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-allowed-to-start%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-allowed-to-start%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-start-when-offset-duration-when", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-start-when-offset-duration-when", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-start-when-offset-duration-when", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-start-when-offset-duration-when", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-start-when-offset-duration-when", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-start-when-offset-duration-offset", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-start-when-offset-duration-offset", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-start-when-offset-duration-offset", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-start-when-offset-duration-offset", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-start-when-offset-duration-offset", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-playhead-position%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourcenode-start-when-offset-duration-duration", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-start-when-offset-duration-duration", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-start-when-offset-duration-duration", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourcenode-start-when-offset-duration-duration", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourcenode-start-when-offset-duration-duration", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#AudioBufferSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioBufferSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioBufferSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioBufferSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioBufferSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourceoptions-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourceoptions-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourceoptions-loop", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourceoptions-loopend", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourceoptions-loopstart", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourceoptions-playbackrate", - "https://webaudio.github.io/web-audio-api/#dictionary-audiobuffersourceoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourceoptions-buffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-loop", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-loop", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-loop", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-loop", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-loop", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-loopend", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-loopend", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-loopend", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-loopend", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-loopend", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-loopstart", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-loopstart", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-loopstart", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-loopstart", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-loopstart", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiobuffersourceoptions-playbackrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-playbackrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-playbackrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiobuffersourceoptions-playbackrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiobuffersourceoptions-playbackrate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#looping-AudioBufferSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#playback-AudioBufferSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-computedplaybackrate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffersourcenode-start%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#AudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#AudioDestinationNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audiodestinationnode-maxchannelcount", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiodestinationnode-maxchannelcount", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiodestinationnode-maxchannelcount", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiodestinationnode-maxchannelcount", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiodestinationnode-maxchannelcount", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#AudioListener", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioListener", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioListener", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioListener", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioListener", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-listener%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positionx", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positiony", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positionz", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardx", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardy", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardz", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positionx%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positiony%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positionz%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardx%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardy%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardz%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-upx", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-upy", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-upz", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setposition", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-x-y-z-x", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-x-y-z-y", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-x-y-z-z", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setorientation", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", - "https://webaudio.github.io/web-audio-api/#AudioListener-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-forwardx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-forwardx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-forwardx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-forwardx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-forwardx", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A7%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-forwardy", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-forwardy", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-forwardy", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-forwardy", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-forwardy", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-forwardz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-forwardz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-forwardz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-forwardz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-forwardz", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-positionx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-positionx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-positionx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-positionx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-positionx", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-positiony", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-positiony", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-positiony", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-positiony", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-positiony", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-positionz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-positionz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-positionz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-positionz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-positionz", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-upx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-upx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-upx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-upx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-upx", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-upy", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-upy", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-upy", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-upy", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-upy", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-upz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-upz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-upz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-upz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-upz", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#AudioListener-methods", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardx%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardy%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardz%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-upx%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-upy%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-upz%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardx%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardy%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-forwardz%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-upx%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-upy%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-upz%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setorientation%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-audiolistener-forward", - "https://webaudio.github.io/web-audio-api/#ref-for-audiolistener-up", - "https://webaudio.github.io/web-audio-api/#audiolistener-forward", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audiolistener-forward", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audiolistener-forward", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audiolistener-forward", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audiolistener-forward", - "https://webaudio.github.io/web-audio-api/#audiolistener-up", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audiolistener-up", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audiolistener-up", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audiolistener-up", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audiolistener-up", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setorientation-x", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setorientation-y", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setorientation-z", - "https://webaudio.github.io/web-audio-api/#ref-for-audiolistener-forward%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setorientation-xup", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setorientation-yup", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setorientation-zup", - "https://webaudio.github.io/web-audio-api/#ref-for-audiolistener-up%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setorientation%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-x", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-x", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-x", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-x", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-x", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-y", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-y", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-y", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-y", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-y", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-z", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-z", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-z", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-z", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-z", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-xup", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-xup", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-xup", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-xup", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-xup", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-yup", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-yup", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-yup", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-yup", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-yup", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setorientation-zup", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-zup", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-zup", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setorientation-zup", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setorientation-zup", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setposition", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setposition", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setposition", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setposition", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positionx%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positiony%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positionz%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positionx%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positiony%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-positionz%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A8%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setposition%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setposition-x", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setposition-y", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setposition-z", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiolistener-setposition%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-x", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setposition-x", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setposition-x", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setposition-x", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setposition-x", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-y", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setposition-y", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setposition-y", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setposition-y", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setposition-y", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audiolistener-setposition-z", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setposition-z", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setposition-z", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audiolistener-setposition-z", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audiolistener-setposition-z", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#listenerprocessing", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#AudioProcessingEvent", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEvent%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEvent%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioProcessingEvent", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioProcessingEvent", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioProcessingEvent", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioProcessingEvent", - "https://webaudio.github.io/web-audio-api/#ref-for-event%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEvent%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-event%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-audioprocessingevent", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEventInit", - "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A6%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingevent-playbacktime", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingevent-inputbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#AudioProcessingEvent-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-inputbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingevent-inputbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingevent-inputbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingevent-inputbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingevent-inputbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-outputbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingevent-outputbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingevent-outputbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingevent-outputbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingevent-outputbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioprocessingevent-playbacktime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingevent-playbacktime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingevent-playbacktime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingevent-playbacktime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingevent-playbacktime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#AudioProcessingEventInit", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEventInit%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEventInit%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioProcessingEventInit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioProcessingEventInit", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioProcessingEventInit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioProcessingEventInit", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEventInit%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dictdef-eventinit%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingeventinit-playbacktime", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingeventinit-inputbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingeventinit-outputbuffer", - "https://webaudio.github.io/web-audio-api/#dictionary-audioprocessingeventinit-members", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEventInit%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioprocessingeventinit-inputbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingeventinit-inputbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingeventinit-inputbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingeventinit-inputbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingeventinit-inputbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingevent-inputbuffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audioprocessingeventinit-outputbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingeventinit-outputbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingeventinit-outputbuffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingeventinit-outputbuffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingeventinit-outputbuffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioprocessingeventinit-playbacktime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingeventinit-playbacktime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingeventinit-playbacktime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioprocessingeventinit-playbacktime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioprocessingeventinit-playbacktime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioprocessingevent-playbacktime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#BiquadFilterNode", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#infopanel-for-BiquadFilterNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-BiquadFilterNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-BiquadFilterNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-BiquadFilterNode", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-frequency", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-frequency%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#computedfrequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computedfrequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computedfrequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computedfrequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computedfrequency", - "https://webaudio.github.io/web-audio-api/#ref-for-nominal-range%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#enumdef-biquadfiltertype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-biquadfiltertype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-biquadfiltertype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-biquadfiltertype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-biquadfiltertype", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-lowpass", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-highpass", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-bandpass", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-lowshelf", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-highshelf", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-peaking", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-notch", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-allpass", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-biquadfiltertype", - "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-lowpass", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-lowpass", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-lowpass", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-lowpass", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-lowpass", - "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-highpass", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-highpass", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-highpass", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-highpass", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-highpass", - "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-bandpass", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-bandpass", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-bandpass", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-bandpass", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-bandpass", - "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-lowshelf", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-lowshelf", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-lowshelf", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-lowshelf", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-lowshelf", - "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-highshelf", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-highshelf", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-highshelf", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-highshelf", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-highshelf", - "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-peaking", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-peaking", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-peaking", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-peaking", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-peaking", - "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-notch", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-notch", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-notch", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-notch", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-notch", - "https://webaudio.github.io/web-audio-api/#dom-biquadfiltertype-allpass", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-allpass", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-allpass", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfiltertype-allpass", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfiltertype-allpass", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-biquadfilternode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-biquadfilternode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-biquadfilternode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-biquadfilternode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-biquadfilternode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-biquadfilternode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterOptions", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-biquadfilternode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-biquadfiltertype%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-type", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-frequency%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-detune%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-q", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-gain", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-biquadfilternode-context-options", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-biquadfilternode", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-q", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-q", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-q", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-q", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-q", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-highpass%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-q%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-162-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1456", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1457", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1458", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1459", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1460", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1461", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1462", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1463", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1464", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1465", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1466", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1467", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1468", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1469", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1470", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1471", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1472", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1473", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1474", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1475", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-162", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-163-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1476", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1477", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1478", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1479", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1480", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1481", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1482", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1483", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1484", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-163", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-164-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1485", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1486", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1487", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1488", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1489", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1490", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1491", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1492", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1493", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1494", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1495", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-164", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-165-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1496", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1497", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1498", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-165", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-bandpass%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-notch%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-allpass%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-peaking%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-166-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1499", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1500", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1501", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1502", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1503", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1504", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1505", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1506", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1507", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-166", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-frequency%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-computedfrequency", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-167-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1508", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1509", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1510", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1511", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1512", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-167", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-168-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1513", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1514", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1515", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1516", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-168", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-169-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1517", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1518", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1519", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1520", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1521", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1522", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1523", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1524", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1525", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1526", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1527", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1528", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1529", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1530", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1531", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1532", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1533", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-169", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-frequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-frequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-frequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-frequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-frequency", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-detune%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-computedfrequency%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-gain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-gain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-gain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-gain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-gain", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-peaking%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-170-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1534", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1535", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1536", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1537", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-170", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-171-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1538", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1539", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1540", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1541", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1542", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1543", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1544", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1545", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1546", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1547", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1548", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1549", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1550", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1551", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1552", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1553", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1554", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1555", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1556", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-171", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-type", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-biquadfiltertype%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-type%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#BiquadFilterNode-methods", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-current-value-slot%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidaccesserror%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-getfrequencyresponse%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-frequencyhz", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-magresponse", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-getfrequencyresponse-phaseresponse", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#BiquadFilterOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-BiquadFilterOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-BiquadFilterOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-BiquadFilterOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-BiquadFilterOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-biquadfiltertype%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilteroptions-type", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilteroptions-q", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilteroptions-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilteroptions-frequency", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilteroptions-gain", - "https://webaudio.github.io/web-audio-api/#dictionary-biquadfilteroptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-q", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilteroptions-q", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilteroptions-q", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilteroptions-q", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilteroptions-q", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-q%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilteroptions-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilteroptions-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilteroptions-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilteroptions-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-detune%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-frequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilteroptions-frequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilteroptions-frequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilteroptions-frequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilteroptions-frequency", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-frequency%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-gain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilteroptions-gain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilteroptions-gain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilteroptions-gain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilteroptions-gain", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A5%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-gain%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilteroptions-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilteroptions-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-biquadfilteroptions-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-biquadfilteroptions-type", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-biquadfiltertype%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#filters-characteristics", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dfn-conforming-implementation", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-172-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1557", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1558", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1559", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1560", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1561", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1562", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1563", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1564", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1565", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1566", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1567", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1568", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1569", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1570", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1571", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1572", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1573", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1574", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1575", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1576", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1577", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1578", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1579", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1580", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1581", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1582", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1583", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1584", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1585", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1586", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1587", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1588", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1589", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1590", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1591", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1592", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1593", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1594", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1595", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1596", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1597", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1598", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1599", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1600", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1601", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1602", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1603", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1604", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1605", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1606", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1607", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1608", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1609", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1610", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1611", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1612", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1613", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1614", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1615", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1616", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1617", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1618", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1619", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1620", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1621", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1622", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1623", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1624", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1625", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1626", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1627", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1628", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1629", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1630", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-172", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-173-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1631", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1632", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1633", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1634", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1635", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1636", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1637", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1638", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1639", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1640", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1641", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1642", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1643", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1644", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1645", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1646", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1647", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1648", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1649", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1650", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1651", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1652", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1653", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1654", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1655", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1656", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1657", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1658", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1659", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1660", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1661", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1662", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1663", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1664", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1665", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1666", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1667", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1668", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1669", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1670", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1671", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1672", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1673", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1674", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1675", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1676", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1677", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1678", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1679", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1680", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1681", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1682", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1683", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1684", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1685", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1686", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1687", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-173", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-computedvalue%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-174-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1688", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1689", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1690", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1691", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1692", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-174", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-175-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1693", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1694", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1695", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1696", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1697", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-175", - "https://webaudio.github.io/web-audio-api/#ref-for-computedfrequency%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-176-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1698", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1699", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1700", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-176", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-gain%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-177-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1701", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1702", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1703", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-177", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfilternode-q%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-178-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1704", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1705", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1706", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1707", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1708", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1709", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1721", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1722", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1723", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1724", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1725", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1739", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1740", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1741", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1742", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1743", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1758", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1759", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1760", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1761", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1762", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1763", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1764", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1765", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1766", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1767", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1768", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1769", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1793", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1794", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1795", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1801", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1802", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1803", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1804", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1805", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1710", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1711", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1712", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1713", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1714", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1715", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1716", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1717", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1718", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1719", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1720", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1726", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1727", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1728", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1729", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1730", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1731", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1732", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1733", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1734", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1735", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1736", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1737", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1738", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1744", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1745", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1746", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1747", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1748", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1749", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1750", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1751", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1752", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1753", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1754", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1755", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1756", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1757", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1770", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1771", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1772", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1773", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1774", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1775", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1776", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1777", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1778", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1779", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1780", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1781", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1782", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1783", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1784", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1785", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1786", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1787", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1788", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1789", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1790", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1791", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1792", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1796", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1797", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1798", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1799", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1800", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1806", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1807", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1808", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1809", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1810", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1811", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1812", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1813", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1814", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1815", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1816", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1817", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1818", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1819", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1820", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1821", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1822", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1823", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1824", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1825", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1826", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1827", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1828", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1829", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1830", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1831", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1832", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1833", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1834", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1835", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1836", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1837", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-178", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-179-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1838", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1839", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1840", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1841", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1842", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1843", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1844", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1845", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1846", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1847", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1848", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1849", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1850", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1851", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1852", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1853", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1854", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1855", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1856", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1857", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1858", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1859", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1860", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1861", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1862", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-179", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-180-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1863", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1864", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1865", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1866", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1867", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1868", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1869", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1870", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1885", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1886", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1887", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1888", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1889", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1901", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1902", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1903", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1904", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1905", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1920", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1921", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1922", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1923", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1924", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1941", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1942", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1943", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1944", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1945", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1957", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1958", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1959", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1960", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1961", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1871", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1872", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1873", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1874", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1875", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1876", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1877", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1878", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1879", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1880", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1881", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1882", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1883", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1884", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1890", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1891", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1892", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1893", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1894", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1895", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1896", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1897", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1898", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1899", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1900", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1906", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1907", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1908", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1909", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1910", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1911", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1912", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1913", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1914", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1915", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1916", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1917", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1918", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1919", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1925", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1926", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1927", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1928", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1929", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1930", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1931", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1932", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1933", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1934", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1935", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1936", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1937", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1938", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1939", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1940", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1946", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1947", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1948", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1949", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1950", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1951", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1952", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1953", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1954", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1955", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1956", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1962", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1963", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1964", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1965", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1966", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1967", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1968", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1969", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1970", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1971", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1972", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1973", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1974", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1975", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1976", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1977", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-180", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-highpass%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-181-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1978", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1979", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1980", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1981", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1982", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1983", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1984", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1985", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2000", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2001", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2002", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2003", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2004", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2019", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2020", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2021", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2022", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2023", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2038", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2039", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2040", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2041", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2042", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2059", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2060", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2061", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2062", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2063", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2075", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2076", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2077", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2078", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2079", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1986", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1987", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1988", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1989", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1990", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1991", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1992", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1993", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1994", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1995", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1996", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1997", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1998", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-1999", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2005", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2006", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2007", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2008", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2009", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2010", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2011", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2012", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2013", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2014", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2015", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2016", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2017", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2018", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2024", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2025", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2026", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2027", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2028", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2029", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2030", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2031", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2032", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2033", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2034", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2035", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2036", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2037", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2043", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2044", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2045", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2046", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2047", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2048", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2049", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2050", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2051", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2052", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2053", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2054", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2055", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2056", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2057", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2058", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2064", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2065", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2066", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2067", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2068", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2069", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2070", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2071", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2072", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2073", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2074", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2080", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2081", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2082", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2083", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2084", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2085", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2086", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2087", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2088", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2089", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2090", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2091", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2092", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2093", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2094", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2095", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-181", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-bandpass%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-182-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2096", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2097", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2098", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2099", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2100", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2101", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2102", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2103", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2111", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2112", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2113", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2114", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2115", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2121", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2122", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2123", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2124", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2125", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2134", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2135", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2136", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2137", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2138", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2148", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2149", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2150", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2151", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2152", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2164", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2165", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2166", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2167", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2168", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2104", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2105", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2106", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2107", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2108", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2109", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2110", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2116", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2117", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2118", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2119", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2120", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2126", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2127", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2128", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2129", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2130", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2131", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2132", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2133", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2139", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2140", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2141", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2142", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2143", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2144", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2145", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2146", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2147", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2153", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2154", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2155", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2156", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2157", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2158", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2159", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2160", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2161", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2162", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2163", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2169", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2170", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2171", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2172", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2173", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2174", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2175", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2176", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2177", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-182", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-notch%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-183-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2178", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2179", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2180", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2181", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2182", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2183", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2184", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2185", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2191", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2192", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2193", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2194", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2195", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2207", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2208", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2209", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2210", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2211", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2217", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2218", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2219", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2220", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2221", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2231", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2232", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2233", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2234", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2235", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2247", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2248", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2249", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2250", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2251", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2186", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2187", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2188", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2189", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2190", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2196", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2197", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2198", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2199", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2200", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2201", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2202", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2203", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2204", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2205", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2206", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2212", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2213", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2214", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2215", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2216", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2222", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2223", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2224", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2225", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2226", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2227", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2228", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2229", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2230", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2236", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2237", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2238", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2239", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2240", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2241", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2242", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2243", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2244", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2245", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2246", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2252", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2253", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2254", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2255", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2256", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2257", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2258", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2259", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2260", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-183", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-allpass%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-184-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2261", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2262", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2263", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2264", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2265", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2266", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2267", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2268", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2278", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2279", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2280", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2281", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2282", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2294", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2295", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2296", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2297", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2298", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2308", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2309", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2310", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2311", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2312", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2322", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2323", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2324", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2325", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2326", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2338", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2339", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2340", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2341", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2342", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2269", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2270", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2271", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2272", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2273", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2274", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2275", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2276", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2277", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2283", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2284", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2285", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2286", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2287", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2288", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2289", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2290", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2291", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2292", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2293", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2299", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2300", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2301", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2302", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2303", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2304", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2305", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2306", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2307", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2313", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2314", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2315", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2316", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2317", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2318", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2319", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2320", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2321", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2327", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2328", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2329", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2330", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2331", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2332", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2333", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2334", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2335", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2336", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2337", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2343", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2344", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2345", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2346", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2347", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2348", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2349", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2350", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2351", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-184", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-peaking%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-185-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2352", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2353", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2354", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2355", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2356", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2357", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2358", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2359", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2371", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2372", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2373", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2374", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2375", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2387", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2388", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2389", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2390", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2391", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2403", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2404", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2405", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2406", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2407", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2419", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2420", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2421", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2422", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2423", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2435", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2436", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2437", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2438", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2439", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2360", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2361", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2362", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2363", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2364", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2365", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2366", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2367", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2368", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2369", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2370", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2376", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2377", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2378", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2379", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2380", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2381", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2382", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2383", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2384", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2385", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2386", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2392", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2393", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2394", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2395", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2396", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2397", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2398", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2399", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2400", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2401", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2402", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2408", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2409", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2410", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2411", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2412", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2413", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2414", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2415", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2416", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2417", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2418", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2424", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2425", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2426", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2427", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2428", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2429", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2430", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2431", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2432", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2433", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2434", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2440", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2441", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2442", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2443", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2444", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2445", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2446", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2447", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2448", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2449", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2450", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-185", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-186-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2451", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2452", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2453", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2454", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2455", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2456", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2457", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2458", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2492", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2493", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2494", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2495", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2496", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2523", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2524", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2525", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2526", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2527", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2561", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2562", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2563", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2564", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2565", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2594", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2595", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2596", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2597", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2598", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2624", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2625", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2626", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2627", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2628", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2459", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2460", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2461", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2462", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2463", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2464", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2465", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2466", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2467", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2468", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2469", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2470", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2471", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2472", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2473", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2474", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2475", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2476", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2477", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2478", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2479", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2480", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2481", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2482", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2483", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2484", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2485", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2486", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2487", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2488", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2489", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2490", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2491", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2497", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2498", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2499", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2500", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2501", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2502", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2503", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2504", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2505", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2506", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2507", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2508", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2509", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2510", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2511", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2512", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2513", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2514", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2515", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2516", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2517", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2518", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2519", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2520", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2521", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2522", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2528", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2529", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2530", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2531", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2532", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2533", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2534", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2535", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2536", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2537", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2538", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2539", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2540", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2541", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2542", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2543", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2544", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2545", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2546", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2547", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2548", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2549", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2550", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2551", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2552", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2553", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2554", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2555", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2556", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2557", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2558", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2559", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2560", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2566", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2567", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2568", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2569", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2570", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2571", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2572", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2573", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2574", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2575", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2576", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2577", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2578", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2579", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2580", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2581", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2582", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2583", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2584", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2585", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2586", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2587", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2588", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2589", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2590", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2591", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2592", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2593", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2599", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2600", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2601", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2602", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2603", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2604", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2605", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2606", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2607", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2608", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2609", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2610", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2611", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2612", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2613", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2614", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2615", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2616", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2617", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2618", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2619", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2620", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2621", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2622", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2623", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2629", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2630", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2631", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2632", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2633", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2634", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2635", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2636", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2637", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2638", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2639", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2640", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2641", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2642", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2643", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2644", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2645", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2646", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2647", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2648", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2649", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2650", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2651", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2652", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2653", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2654", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2655", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2656", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2657", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-186", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-187-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2658", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2659", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2660", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2661", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2662", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2663", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2664", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2665", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2699", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2700", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2701", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2702", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2703", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2731", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2732", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2733", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2734", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2735", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2769", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2770", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2771", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2772", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2773", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2802", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2803", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2804", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2805", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2806", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2831", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2832", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2833", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2834", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2835", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2666", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2667", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2668", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2669", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2670", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2671", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2672", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2673", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2674", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2675", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2676", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2677", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2678", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2679", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2680", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2681", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2682", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2683", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2684", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2685", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2686", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2687", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2688", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2689", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2690", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2691", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2692", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2693", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2694", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2695", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2696", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2697", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2698", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2704", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2705", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2706", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2707", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2708", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2709", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2710", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2711", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2712", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2713", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2714", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2715", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2716", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2717", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2718", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2719", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2720", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2721", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2722", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2723", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2724", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2725", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2726", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2727", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2728", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2729", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2730", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2736", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2737", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2738", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2739", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2740", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2741", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2742", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2743", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2744", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2745", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2746", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2747", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2748", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2749", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2750", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2751", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2752", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2753", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2754", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2755", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2756", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2757", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2758", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2759", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2760", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2761", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2762", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2763", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2764", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2765", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2766", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2767", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2768", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2774", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2775", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2776", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2777", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2778", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2779", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2780", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2781", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2782", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2783", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2784", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2785", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2786", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2787", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2788", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2789", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2790", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2791", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2792", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2793", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2794", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2795", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2796", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2797", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2798", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2799", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2800", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2801", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2807", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2808", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2809", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2810", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2811", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2812", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2813", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2814", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2815", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2816", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2817", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2818", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2819", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2820", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2821", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2822", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2823", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2824", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2825", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2826", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2827", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2828", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2829", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2830", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2836", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2837", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2838", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2839", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2840", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2841", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2842", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2843", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2844", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2845", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2846", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2847", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2848", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2849", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2850", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2851", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2852", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2853", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2854", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2855", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2856", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2857", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2858", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2859", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2860", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2861", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2862", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2863", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-187", - "https://webaudio.github.io/web-audio-api/#ChannelMergerNode", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ChannelMergerNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ChannelMergerNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ChannelMergerNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ChannelMergerNode", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelmergeroptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcount-constraints", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcountmode-constraints", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#example-c8345030", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelmergernode-channelmergernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-channelmergernode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-channelmergernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ChannelMergerNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-constructor-channelmergernode", - "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-channelmergernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelmergernode-channelmergernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelmergernode-channelmergernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelmergernode-channelmergernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelmergernode-channelmergernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelmergernode-channelmergernode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-channelmergernode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ChannelMergerOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ChannelMergerOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ChannelMergerOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ChannelMergerOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ChannelMergerOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelmergeroptions-numberofinputs%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dictionary-channelmergeroptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-channelmergeroptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelmergeroptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelmergeroptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelmergeroptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelmergeroptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ChannelSplitterNode", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ChannelSplitterNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ChannelSplitterNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ChannelSplitterNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ChannelSplitterNode", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelsplitteroptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelsplitteroptions-numberofoutputs%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelsplitternode-channelsplitternode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcount-constraints%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcountmode-constraints%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-discrete%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelinterpretation-constraints", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#example-889bcff3", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelsplitternode-channelsplitternode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-channelsplitternode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-channelsplitternode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ChannelSplitterNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-constructor-channelsplitternode", - "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-channelsplitternode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelsplitternode-channelsplitternode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelsplitternode-channelsplitternode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelsplitternode-channelsplitternode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelsplitternode-channelsplitternode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelsplitternode-channelsplitternode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-channelsplitternode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ChannelSplitterOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ChannelSplitterOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ChannelSplitterOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ChannelSplitterOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ChannelSplitterOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelsplitteroptions-numberofoutputs%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dictionary-channelsplitteroptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-channelsplitteroptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelsplitteroptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelsplitteroptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-channelsplitteroptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-channelsplitteroptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ConstantSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ConstantSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ConstantSourceNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ConstantSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ConstantSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-constantsourcenode-offset", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-constantsourcenode-constantsourcenode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constantsourcenode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceOptions", - "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constantsourcenode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-constantsourcenode-offset%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ConstantSourceNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constructor-constantsourcenode", - "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constantsourcenode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-constantsourcenode-constantsourcenode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-constantsourcenode-constantsourcenode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-constantsourcenode-constantsourcenode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-constantsourcenode-constantsourcenode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-constantsourcenode-constantsourcenode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ConstantSourceNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-constantsourcenode-offset", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-constantsourcenode-offset", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-constantsourcenode-offset", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-constantsourcenode-offset", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-constantsourcenode-offset", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ConstantSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ConstantSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ConstantSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ConstantSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ConstantSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-constantsourceoptions-offset", - "https://webaudio.github.io/web-audio-api/#dictionary-constantsourceoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-ConstantSourceOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-constantsourceoptions-offset", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-constantsourceoptions-offset", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-constantsourceoptions-offset", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-constantsourceoptions-offset", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-constantsourceoptions-offset", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-constantsourcenode-offset%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ConvolverNode", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ConvolverNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ConvolverNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ConvolverNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ConvolverNode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcount-constraints%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-clamped-max%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcountmode-constraints%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcount-constraints%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcountmode-constraints%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-convolvernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-convolvernode-convolvernode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverOptions", - "https://webaudio.github.io/web-audio-api/#dom-convolvernode-convolvernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-normalize", - "https://webaudio.github.io/web-audio-api/#ConvolverNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-convolvernode-constructor-convolvernode", - "https://webaudio.github.io/web-audio-api/#dom-convolvernode-convolvernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-convolvernode-convolvernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-convolvernode-convolvernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-convolvernode-convolvernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-convolvernode-convolvernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-normalize%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolveroptions-disablenormalization", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-map-exists", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-normalize%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionodeoptions-channelcount%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-map-exists%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionodeoptions-channelcount%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionodeoptions-channelcountmode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-map-exists%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionodeoptions-channelcountmode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionodeoptions-channelinterpretation%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-map-exists%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionodeoptions-channelinterpretation%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-convolvernode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-convolvernode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-convolvernode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ConvolverNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-convolvernode-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-convolvernode-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-convolvernode-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-convolvernode-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-convolvernode-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A5%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-normalize%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-convolvernode-buffer-attribute", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-numberofchannels%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-samplerate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-convolvernode-normalize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-convolvernode-normalize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-convolvernode-normalize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-convolvernode-normalize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-convolvernode-normalize", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-normalize%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-normalize%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-normalize%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ConvolverOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ConvolverOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ConvolverOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ConvolverOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ConvolverOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolveroptions-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolveroptions-disablenormalization%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dictionary-convolveroptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-convolveroptions-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-convolveroptions-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-convolveroptions-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-convolveroptions-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-convolveroptions-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolveroptions-disablenormalization%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-convolveroptions-disablenormalization", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-convolveroptions-disablenormalization", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-convolveroptions-disablenormalization", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-convolveroptions-disablenormalization", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-convolveroptions-disablenormalization", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-normalize%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#Convolution-channel-configurations", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#convolver-diagram", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#DelayNode", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-DelayNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-DelayNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-DelayNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-DelayNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-delayoptions-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-delaynode-delaynode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-delaynode-delaynode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayOptions", - "https://webaudio.github.io/web-audio-api/#dom-delaynode-delaynode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-delaynode-delaytime", - "https://webaudio.github.io/web-audio-api/#DelayNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-delaynode-constructor-delaynode", - "https://webaudio.github.io/web-audio-api/#dom-delaynode-delaynode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-delaynode-delaynode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-delaynode-delaynode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-delaynode-delaynode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-delaynode-delaynode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-delaynode-delaynode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-delaynode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-delaynode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#DelayNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-delaynode-delaytime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-delaynode-delaytime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-delaynode-delaytime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-delaynode-delaytime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-delaynode-delaytime", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createdelay%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-delaynode-delaynode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-cycle", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-delaynode-delaytime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#DelayOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#infopanel-for-DelayOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-DelayOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-DelayOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-DelayOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-delayoptions-delaytime", - "https://webaudio.github.io/web-audio-api/#dictionary-delayoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-delayoptions-delaytime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-delayoptions-delaytime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-delayoptions-delaytime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-delayoptions-delaytime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-delayoptions-delaytime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-delayoptions-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-delayoptions-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-delayoptions-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-delayoptions-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-delayoptions-maxdelaytime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#DelayNode-processing", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#delaywriter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-delaywriter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-delaywriter", - "https://webaudio.github.io/web-audio-api/#infopanel-for-delaywriter", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-delaywriter", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#delayreader", - "https://webaudio.github.io/web-audio-api/#infopanel-for-delayreader", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-delayreader", - "https://webaudio.github.io/web-audio-api/#infopanel-for-delayreader", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-delayreader", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-delayreader", - "https://webaudio.github.io/web-audio-api/#ref-for-source-node%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-delaywriter", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-delayreader%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-delaywriter%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-DynamicsCompressorNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-DynamicsCompressorNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-DynamicsCompressorNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-DynamicsCompressorNode", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcount-constraints%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-clamped-max%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcountmode-constraints%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-dynamicscompressornode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-dynamicscompressornode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorOptions", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-dynamicscompressornode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-knee%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-reduction", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-attack%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-release%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-constructor-dynamicscompressornode", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-dynamicscompressornode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-dynamicscompressornode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-dynamicscompressornode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-dynamicscompressornode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-dynamicscompressornode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-internal-reduction-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-internal-reduction-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-internal-reduction-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-internal-reduction-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-internal-reduction-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-internal-reduction-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-dynamicscompressornode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-attack", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-attack", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-attack", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-attack", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-attack", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-knee", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-knee", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-knee", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-knee", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-knee", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-ratio", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-ratio", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-ratio", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-ratio", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-ratio", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-reduction", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-reduction", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-reduction", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-reduction", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-reduction", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-internal-reduction-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-release", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-release", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-release", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-release", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-release", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-threshold", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-threshold", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-threshold", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-threshold", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-threshold", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#DynamicsCompressorOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-DynamicsCompressorOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-DynamicsCompressorOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-DynamicsCompressorOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-DynamicsCompressorOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressoroptions-attack", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressoroptions-knee", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressoroptions-ratio", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressoroptions-release", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressoroptions-threshold", - "https://webaudio.github.io/web-audio-api/#dictionary-dynamicscompressoroptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-attack", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressoroptions-attack", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressoroptions-attack", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressoroptions-attack", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressoroptions-attack", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A6%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-attack%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-knee", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressoroptions-knee", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressoroptions-knee", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressoroptions-knee", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressoroptions-knee", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-knee%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-ratio", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressoroptions-ratio", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressoroptions-ratio", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressoroptions-ratio", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressoroptions-ratio", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-release", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressoroptions-release", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressoroptions-release", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressoroptions-release", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressoroptions-release", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-release%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-threshold", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressoroptions-threshold", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressoroptions-threshold", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressoroptions-threshold", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressoroptions-threshold", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#DynamicsCompressorOptions-processing", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-188-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2864", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2865", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2866", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2867", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2868", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2869", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2870", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2871", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-188", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-189-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2872", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2873", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2874", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2875", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2876", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2877", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2878", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2879", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2880", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2881", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2882", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2883", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2884", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2885", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2886", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2887", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2888", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-189", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#envelopefollower", - "https://webaudio.github.io/web-audio-api/#infopanel-for-envelopefollower", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-envelopefollower", - "https://webaudio.github.io/web-audio-api/#infopanel-for-envelopefollower", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-envelopefollower", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-envelopefollower", - "https://webaudio.github.io/web-audio-api/#ref-for-envelopefollower%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-detector-average-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-detector-average-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-detector-average-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-detector-average-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-detector-average-slot", - "https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-compressor-gain-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-compressor-gain-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-compressor-gain-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-dynamicscompressornode-compressor-gain-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-dynamicscompressornode-compressor-gain-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-attack%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-release%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-k-rate%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-detector-average-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-compressor-gain-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-compression-curve", - "https://webaudio.github.io/web-audio-api/#ref-for-detector-curve", - "https://webaudio.github.io/web-audio-api/#ref-for-computing-the-envelope-rate", - "https://webaudio.github.io/web-audio-api/#ref-for-computing-the-makeup-gain", - "https://webaudio.github.io/web-audio-api/#ref-for-linear-to-decibel", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-compressor-gain-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-detector-average-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-atomically%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-internal-reduction-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#computing-the-makeup-gain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computing-the-makeup-gain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computing-the-makeup-gain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computing-the-makeup-gain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computing-the-makeup-gain", - "https://webaudio.github.io/web-audio-api/#ref-for-compression-curve%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#computing-the-envelope-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computing-the-envelope-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computing-the-envelope-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computing-the-envelope-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computing-the-envelope-rate", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-190-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2889", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2890", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2891", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2892", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2893", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2894", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2895", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-190", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-attack%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-release%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#detector-curve", - "https://webaudio.github.io/web-audio-api/#infopanel-for-detector-curve", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-detector-curve", - "https://webaudio.github.io/web-audio-api/#infopanel-for-detector-curve", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-detector-curve", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-191-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2896", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2897", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2898", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2899", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2900", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2901", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2902", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-191", - "https://webaudio.github.io/web-audio-api/#compression-curve", - "https://webaudio.github.io/web-audio-api/#infopanel-for-compression-curve", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-compression-curve", - "https://webaudio.github.io/web-audio-api/#infopanel-for-compression-curve", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-compression-curve", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-knee%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-decibels-to-linear-gain-unit", - "https://webaudio.github.io/web-audio-api/#ref-for-k-rate%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-knee%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-k-rate%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-decibels-to-linear-gain-unit%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-k-rate%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-192-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2903", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2904", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2905", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2906", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2907", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2908", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2909", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2910", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-192", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-193-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2911", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2912", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2913", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2914", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2915", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2916", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2917", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2918", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2919", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2920", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2921", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2922", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2923", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2924", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2925", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2926", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2927", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-193", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-194-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2928", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2929", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2930", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-194", - "https://webaudio.github.io/web-audio-api/#linear-to-decibel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-linear-to-decibel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-linear-to-decibel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-linear-to-decibel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-linear-to-decibel", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-195-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2931", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2932", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2933", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-195", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-196-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2934", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2935", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2936", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2937", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2938", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2939", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2940", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2941", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2942", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2943", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2944", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2945", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2946", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-196", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-197-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2947", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2948", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2949", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-197", - "https://webaudio.github.io/web-audio-api/#decibels-to-linear-gain-unit", - "https://webaudio.github.io/web-audio-api/#infopanel-for-decibels-to-linear-gain-unit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-decibels-to-linear-gain-unit", - "https://webaudio.github.io/web-audio-api/#infopanel-for-decibels-to-linear-gain-unit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-decibels-to-linear-gain-unit", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-198-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2950", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2951", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2952", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2953", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2954", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2955", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2956", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2957", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2958", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2959", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2960", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-198", - "https://webaudio.github.io/web-audio-api/#GainNode", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-GainNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-GainNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-GainNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-GainNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-computedvalue%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-gainnode-gain", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-gainnode-gainnode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-gainnode-gainnode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-GainOptions", - "https://webaudio.github.io/web-audio-api/#dom-gainnode-gainnode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-gainnode-gain%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#GainNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-gainnode-constructor-gainnode", - "https://webaudio.github.io/web-audio-api/#dom-gainnode-gainnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-gainnode-gainnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-gainnode-gainnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-gainnode-gainnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-gainnode-gainnode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-gainnode-gainnode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-gainnode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-gainnode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-GainOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#GainNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-gainnode-gain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-gainnode-gain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-gainnode-gain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-gainnode-gain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-gainnode-gain", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#GainOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-GainOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-GainOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-GainOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-GainOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-GainOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-GainOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-GainOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-gainoptions-gain", - "https://webaudio.github.io/web-audio-api/#dictionary-gainoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-GainOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-gainoptions-gain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-gainoptions-gain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-gainoptions-gain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-gainoptions-gain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-gainoptions-gain", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-gainnode-gain%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#IIRFilterNode", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-IIRFilterNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-IIRFilterNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-IIRFilterNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-IIRFilterNode", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-iirfilternode-iirfilternode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-iirfilternode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterOptions", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-iirfilternode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-iirfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "https://webaudio.github.io/web-audio-api/#IIRFilterNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-constructor-iirfilternode", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-iirfilternode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-iirfilternode-iirfilternode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-iirfilternode-iirfilternode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-iirfilternode-iirfilternode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-iirfilternode-iirfilternode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-iirfilternode-iirfilternode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#IIRFilterNode-methods", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-iirfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-iirfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-iirfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-iirfilternode-getfrequencyresponse", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidaccesserror%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-iirfilternode-getfrequencyresponse%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-frequencyhz", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-magresponse", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-iirfilternode-getfrequencyresponse-phaseresponse", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#IIRFilterOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#infopanel-for-IIRFilterOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-IIRFilterOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-IIRFilterOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-IIRFilterOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-iirfilteroptions-feedforward", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-iirfilteroptions-feedback", - "https://webaudio.github.io/web-audio-api/#dictionary-iirfilteroptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-iirfilteroptions-feedforward", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-iirfilteroptions-feedforward", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-iirfilteroptions-feedforward", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-iirfilteroptions-feedforward", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-iirfilteroptions-feedforward", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A7%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter-feedforward", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-iirfilteroptions-feedback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-iirfilteroptions-feedback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-iirfilteroptions-feedback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-iirfilteroptions-feedback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-iirfilteroptions-feedback", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter-feedback", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#IIRFilterNode-filter-definition", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-199-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2961", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2962", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2963", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2964", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2965", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-199", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-200-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2966", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2967", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2968", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2969", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2970", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-200", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-iirfilternode-iirfilternode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-201-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2971", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2972", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2973", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2974", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2975", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2976", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2977", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2978", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2979", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2980", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2981", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2982", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2983", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2984", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2985", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2986", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2987", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2988", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2989", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2990", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2991", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2992", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2993", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2994", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2995", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2996", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2997", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2998", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-2999", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3000", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3001", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3002", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3003", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3004", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3005", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3006", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3007", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3008", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3009", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3010", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3011", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3012", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3013", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3014", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3015", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3016", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3017", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3018", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-201", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-202-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3019", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3020", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3021", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3022", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3023", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-202", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-203-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3024", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3025", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3026", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-203", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-204-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3027", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3028", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3029", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3030", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3031", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-204", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-205-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3032", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3033", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3034", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-205", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-206-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3035", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3036", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3037", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3038", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3039", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-206", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter-feedback%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-207-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3040", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3041", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3042", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3043", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3044", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-207", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter-feedforward%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-208-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3045", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3046", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3047", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3048", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3049", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3050", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3051", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3052", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3053", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3054", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3055", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3056", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3057", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3058", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3059", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3060", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3061", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3062", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3063", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3064", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3065", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3066", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3067", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3068", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3069", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3070", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3071", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3072", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3073", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3074", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3075", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3076", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3077", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3078", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3079", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3080", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3081", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3082", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3083", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3084", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3085", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-208", - "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaElementAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaElementAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaElementAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaElementAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-audio%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-video%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediaelementaudiosourceoptions-mediaelement", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#example-92c31c2c", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-SameObject%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediaelementaudiosourcenode-mediaelement%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourcenode-mediaelement", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediaelementaudiosourcenode-mediaelement", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediaelementaudiosourcenode-mediaelement", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediaelementaudiosourcenode-mediaelement", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediaelementaudiosourcenode-mediaelement", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaElementAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaElementAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaElementAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaElementAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediaelementaudiosourceoptions-mediaelement%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dictionary-mediaelementaudiosourceoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-mediaelementaudiosourceoptions-mediaelement", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediaelementaudiosourceoptions-mediaelement", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediaelementaudiosourceoptions-mediaelement", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediaelementaudiosourceoptions-mediaelement", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediaelementaudiosourceoptions-mediaelement", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#MediaElementAudioSourceOptions-security", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-htmlmediaelement%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MediaStreamAudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaStreamAudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaStreamAudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaStreamAudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaStreamAudioDestinationNode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiodestinationnode-stream", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediadevices-getusermedia%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiodestinationnode-stream%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MediaStreamAudioDestinationNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#MediaStreamAudioDestinationNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiodestinationnode-stream", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiodestinationnode-stream", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiodestinationnode-stream", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiodestinationnode-stream", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiodestinationnode-stream", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaStreamAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaStreamAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaStreamAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaStreamAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-SameObject%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiosourcenode-mediastream", - "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiosourceoptions-mediastream", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-code-unit", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-input-track-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiosourcenode-input-track-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiosourcenode-input-track-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiosourcenode-input-track-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiosourcenode-input-track-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiosourcenode-input-track-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourcenode-mediastream", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiosourcenode-mediastream", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiosourcenode-mediastream", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiosourcenode-mediastream", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiosourcenode-mediastream", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MediaStreamAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaStreamAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaStreamAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaStreamAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaStreamAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamaudiosourceoptions-mediastream%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dictionary-mediastreamaudiosourceoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamaudiosourceoptions-mediastream", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiosourceoptions-mediastream", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiosourceoptions-mediastream", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamaudiosourceoptions-mediastream", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamaudiosourceoptions-mediastream", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastream%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaStreamTrackAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaStreamTrackAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaStreamTrackAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaStreamTrackAudioSourceNode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", - "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourcenode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourcenode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MediaStreamTrackAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaStreamTrackAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaStreamTrackAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-MediaStreamTrackAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-MediaStreamTrackAudioSourceOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dictionary-mediastreamtrackaudiosourceoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#OscillatorNode", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OscillatorNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OscillatorNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OscillatorNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OscillatorNode", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-frequency", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#computedoscfrequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computedoscfrequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computedoscfrequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computedoscfrequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computedoscfrequency", - "https://webaudio.github.io/web-audio-api/#ref-for-computedoscfrequency", - "https://webaudio.github.io/web-audio-api/#ref-for-nominal-range%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#enumdef-oscillatortype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-oscillatortype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-oscillatortype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-oscillatortype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-oscillatortype", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-sine", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-square", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-sawtooth", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-triangle", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-custom", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-oscillatortype", - "https://webaudio.github.io/web-audio-api/#dom-oscillatortype-sine", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatortype-sine", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatortype-sine", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatortype-sine", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatortype-sine", - "https://webaudio.github.io/web-audio-api/#dom-oscillatortype-square", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatortype-square", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatortype-square", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatortype-square", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatortype-square", - "https://webaudio.github.io/web-audio-api/#dom-oscillatortype-sawtooth", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatortype-sawtooth", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatortype-sawtooth", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatortype-sawtooth", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatortype-sawtooth", - "https://webaudio.github.io/web-audio-api/#dom-oscillatortype-triangle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatortype-triangle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatortype-triangle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatortype-triangle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatortype-triangle", - "https://webaudio.github.io/web-audio-api/#dom-oscillatortype-custom", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatortype-custom", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatortype-custom", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatortype-custom", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatortype-custom", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-oscillatornode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-oscillatornode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorOptions", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-oscillatornode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-oscillatortype%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-type", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-frequency%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-detune%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-setperiodicwave", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", - "https://webaudio.github.io/web-audio-api/#OscillatorNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-oscillatornode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatornode-oscillatornode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatornode-oscillatornode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatornode-oscillatornode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatornode-oscillatornode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-oscillatornode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#OscillatorNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatornode-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatornode-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatornode-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatornode-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-frequency%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-frequency%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-computedoscfrequency%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-frequency%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-209-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3086", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3087", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3088", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3089", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3090", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-209", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-210-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3091", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3092", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3093", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3094", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-210", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-211-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3095", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3096", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3097", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3098", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3099", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3100", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3101", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3102", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3103", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3104", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3105", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3106", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3107", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3108", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3109", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3110", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3111", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-211", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-frequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatornode-frequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatornode-frequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatornode-frequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatornode-frequency", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-compound-parameter%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-detune%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-computedoscfrequency%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-nominal-range%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for---nyquist-frequency%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatornode-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatornode-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatornode-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatornode-type", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-oscillatortype%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-custom%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-setperiodicwave%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-custom%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-sine%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#OscillatorNode-methods", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-setperiodicwave", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatornode-setperiodicwave", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatornode-setperiodicwave", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatornode-setperiodicwave", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatornode-setperiodicwave", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-setperiodicwave%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-oscillatornode-setperiodicwave-periodicwave", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#OscillatorOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OscillatorOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OscillatorOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-OscillatorOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-OscillatorOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-oscillatortype%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatoroptions-type", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatoroptions-frequency", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatoroptions-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatoroptions-periodicwave", - "https://webaudio.github.io/web-audio-api/#dictionary-oscillatoroptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-oscillatoroptions-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatoroptions-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatoroptions-detune", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatoroptions-detune", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatoroptions-detune", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A7%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-oscillatoroptions-frequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatoroptions-frequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatoroptions-frequency", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatoroptions-frequency", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatoroptions-frequency", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-oscillatoroptions-periodicwave", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatoroptions-periodicwave", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatoroptions-periodicwave", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatoroptions-periodicwave", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatoroptions-periodicwave", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatoroptions-type%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-custom%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-oscillatoroptions-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatoroptions-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatoroptions-type", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oscillatoroptions-type", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oscillatoroptions-type", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-oscillatortype%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatoroptions-periodicwave%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatoroptions-periodicwave%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatoroptions-type%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#basic-waveform-phase", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-sine%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-212-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3112", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3113", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3114", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3115", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3116", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3117", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3118", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3119", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3120", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3121", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-212", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-square%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-213-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3122", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3123", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3124", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3125", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3126", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3127", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3128", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3129", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3130", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3131", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3132", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3133", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3134", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3145", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3146", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3147", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3148", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3135", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3136", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3137", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3138", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3139", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3140", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3141", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3142", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3143", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3144", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3149", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3150", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3151", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3152", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3153", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3154", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3155", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3156", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3157", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3158", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3159", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3160", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-213", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-214-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3161", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3162", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3163", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-214", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-215-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3164", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3165", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3166", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3167", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-215", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-sawtooth%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-216-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3168", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3169", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3170", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3171", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3172", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3173", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3174", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3175", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3176", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3177", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3178", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3179", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3180", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3181", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3182", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3183", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3184", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3185", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3186", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3187", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-216", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-217-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3188", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3189", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3190", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-217", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-218-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3191", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3192", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3193", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3194", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-218", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-triangle%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-219-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3195", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3196", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3197", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3198", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3199", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3200", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3201", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3202", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3203", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3204", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3205", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3206", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3207", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3208", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3209", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3210", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3223", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3224", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3225", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3226", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3227", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3228", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3229", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3230", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3231", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3232", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3233", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3234", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3235", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3236", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3237", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3211", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3212", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3213", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3214", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3215", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3216", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3217", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3218", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3219", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3220", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3221", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3222", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3238", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3239", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3240", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3241", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3242", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3243", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3244", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3245", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3246", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3247", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3248", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3249", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3250", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3251", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-219", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-220-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3252", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3253", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3254", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-220", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-221-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3255", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3256", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3257", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3258", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-221", - "https://webaudio.github.io/web-audio-api/#PannerNode", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-PannerNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-PannerNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-PannerNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-PannerNode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-listener%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcount-constraints%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-clamped-max%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcountmode-constraints%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-panningmodel%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panningmodeltype-hrtf%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-panningmodeltype", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panningmodeltype-equalpower", - "https://webaudio.github.io/web-audio-api/#enumdef-panningmodeltype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-panningmodeltype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-panningmodeltype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-panningmodeltype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-panningmodeltype", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panningmodeltype-equalpower%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panningmodeltype-hrtf%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-panningmodeltype%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-panningmodeltype-equalpower", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panningmodeltype-equalpower", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panningmodeltype-equalpower", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panningmodeltype-equalpower", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panningmodeltype-equalpower", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-panningmodeltype-hrtf", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panningmodeltype-hrtf", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panningmodeltype-hrtf", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panningmodeltype-hrtf", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panningmodeltype-hrtf", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-k-rate%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#effective-automation-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-effective-automation-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-effective-automation-rate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-effective-automation-rate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-effective-automation-rate", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-panningmodel%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-panningmodel%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panningmodeltype-hrtf%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-effective-automation-rate", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-effective-automation-rate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-distancemodeltype", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-distancemodeltype-inverse", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-222-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3259", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3260", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3261", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-222", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-223-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3262", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3263", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3264", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3265", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3266", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3267", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3268", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3269", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3270", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-223", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-refdistance", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-224-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3271", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3272", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3273", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3274", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3275", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3276", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3277", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3278", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3279", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-224", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-maxdistance", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-225-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3280", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3281", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3282", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-225", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-rollofffactor", - "https://webaudio.github.io/web-audio-api/#enumdef-distancemodeltype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-distancemodeltype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-distancemodeltype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-distancemodeltype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-distancemodeltype", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-distancemodeltype-linear", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-distancemodeltype-inverse%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-distancemodeltype-exponential", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-distancemodeltype%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-distancemodeltype-linear", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-distancemodeltype-linear", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-distancemodeltype-linear", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-distancemodeltype-linear", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-distancemodeltype-linear", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-226-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3283", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3284", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3285", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3286", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3287", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3288", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3289", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3290", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3291", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3292", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3293", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3294", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3295", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3296", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3297", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3298", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3299", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3300", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3301", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3302", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3303", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3304", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3305", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3306", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3307", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3308", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3309", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3310", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3311", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3312", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3313", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3314", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3315", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3316", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3317", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3318", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3319", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3320", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3321", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3322", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3323", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3324", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3325", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3326", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3327", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3328", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3329", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3330", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3331", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3332", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3333", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3334", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3335", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3336", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3337", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3338", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3339", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3340", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3341", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3342", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3343", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3344", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-226", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-227-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3345", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3346", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3347", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3348", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3349", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3350", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3351", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3352", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3353", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3354", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3355", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3356", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3357", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3358", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3359", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3360", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3361", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3362", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3363", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3364", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3365", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3366", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3367", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3368", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3369", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3370", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3371", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3372", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3373", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3374", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-227", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-228-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3375", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3376", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3377", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3378", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3379", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3380", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3381", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3382", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3383", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3384", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3385", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3386", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3387", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3388", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3389", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3390", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3391", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3392", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3393", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3394", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3395", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3396", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3397", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3398", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3399", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3400", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3401", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3402", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3403", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3404", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-228", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-229-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3405", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3406", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3407", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3408", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3409", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3410", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3411", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3412", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3413", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3414", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3415", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3416", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3417", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3418", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3419", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3420", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3421", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3422", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3423", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-229", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-230-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3424", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3425", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3426", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3427", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3428", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-230", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-231-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3429", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3430", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3431", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-231", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-232-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3432", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3433", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3434", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3435", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3436", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3437", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3438", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3439", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3440", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3441", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3442", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3443", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3444", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3445", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3446", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3447", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3448", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3449", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3450", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3451", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3452", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3453", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3454", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-232", - "https://webaudio.github.io/web-audio-api/#dom-distancemodeltype-inverse", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-distancemodeltype-inverse", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-distancemodeltype-inverse", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-distancemodeltype-inverse", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-distancemodeltype-inverse", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-233-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3455", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3456", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3457", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3458", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3459", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3460", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3461", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3462", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3463", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3464", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3465", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3466", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3467", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3468", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3469", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3470", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3471", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3472", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3473", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3474", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3475", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3476", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3477", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3478", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3479", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3480", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3481", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3482", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3483", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3484", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3485", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3486", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3487", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3488", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3489", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3490", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3491", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3492", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3493", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3494", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3495", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3496", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3497", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3498", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3499", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-233", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-234-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3500", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3501", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3502", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-234", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-235-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3503", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3504", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3505", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3506", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3507", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3508", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3509", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3510", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3511", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3512", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3513", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3514", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3515", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3516", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3517", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-235", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-236-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3518", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3519", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3520", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3521", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3522", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3523", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3524", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3525", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3526", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3527", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3528", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-236", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-237-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3529", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3530", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3531", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-237", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-238-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3532", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3533", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3534", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-238", - "https://webaudio.github.io/web-audio-api/#dom-distancemodeltype-exponential", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-distancemodeltype-exponential", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-distancemodeltype-exponential", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-distancemodeltype-exponential", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-distancemodeltype-exponential", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-239-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3535", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3536", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3537", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3538", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3539", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3540", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3541", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3542", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3543", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3544", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3545", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3546", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3547", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3548", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3549", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3550", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3551", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3552", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3553", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3554", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3555", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3556", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3557", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3558", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3559", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3560", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3561", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3562", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3563", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3564", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3565", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3566", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-239", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-240-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3567", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3568", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3569", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-240", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-241-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3570", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3571", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3572", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3573", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3574", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3575", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3576", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3577", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3578", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3579", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3580", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3581", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3582", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3583", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3584", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-241", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-242-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3585", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3586", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3587", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3588", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3589", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3590", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3591", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3592", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3593", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3594", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3595", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-242", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-243-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3596", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3597", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3598", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-243", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-244-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3599", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3600", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3601", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-244", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-pannernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-pannernode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerOptions", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-pannernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-panningmodeltype%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-panningmodel%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positionx", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positiony", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positionz", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationx", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationy", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationz", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-distancemodeltype%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-distancemodel", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-refdistance%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-maxdistance%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-rollofffactor%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-coneouterangle", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-coneoutergain", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-setposition", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-x-y-z-x", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-x-y-z-y", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-x-y-z-z", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-setorientation", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-x-y-z-x", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-x-y-z-y", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-x-y-z-z", - "https://webaudio.github.io/web-audio-api/#PannerNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-pannernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-pannernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-pannernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-pannernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-pannernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-pannernode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#PannerNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-coneouterangle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-coneouterangle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-coneouterangle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-coneouterangle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-coneouterangle", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-coneoutergain%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-coneoutergain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-coneoutergain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-coneoutergain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-coneoutergain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-coneoutergain", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A8%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-coneouterangle%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-distancemodel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-distancemodel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-distancemodel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-distancemodel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-distancemodel", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-distancemodeltype%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-distancemodeltype-inverse%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-maxdistance", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-maxdistance", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-maxdistance", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-maxdistance", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-maxdistance", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-orientationx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-orientationx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-orientationx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-orientationx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-orientationx", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-245-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3602", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3603", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3604", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-245", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-orientationy", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-orientationy", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-orientationy", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-orientationy", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-orientationy", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-246-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3605", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3606", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3607", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-246", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-orientationz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-orientationz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-orientationz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-orientationz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-orientationz", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-247-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3608", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3609", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3610", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-247", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-panningmodel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-panningmodel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-panningmodel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-panningmodel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-panningmodel", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-panningmodeltype%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panningmodeltype-equalpower%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-positionx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-positionx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-positionx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-positionx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-positionx", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-248-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3611", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3612", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3613", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-248", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-positiony", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-positiony", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-positiony", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-positiony", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-positiony", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-249-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3614", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3615", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3616", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-249", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-positionz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-positionz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-positionz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-positionz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-positionz", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-250-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3617", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3618", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3619", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-250", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-most-negative-single-float%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-most-positive-single-float%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-refdistance", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-refdistance", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-refdistance", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-refdistance", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-refdistance", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-rollofffactor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-rollofffactor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-rollofffactor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-rollofffactor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-rollofffactor", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-rollofffactor%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-distancemodel%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-distancemodeltype-linear%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-251-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3620", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3621", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3622", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3623", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3624", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3625", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3626", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-251", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-distancemodeltype-inverse%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-252-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3627", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3628", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3629", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3630", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3631", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3632", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3633", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-252", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-distancemodeltype-exponential%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-253-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3634", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3635", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3636", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3637", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3638", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3639", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3640", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-253", - "https://webaudio.github.io/web-audio-api/#PannerNode-methods", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-setorientation", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-setorientation", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-setorientation", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-setorientation", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationx%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationy%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationz%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationx%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationy%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationz%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-setorientation%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-x", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-y", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setorientation-z", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A8%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-setposition", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-setposition", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-pannernode-setposition", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-pannernode-setposition", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positionx%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positiony%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positionz%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positionx%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positiony%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positionz%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-listener%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-setposition%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-x", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-y", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-pannernode-setposition-z", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#PannerOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-PannerOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-PannerOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-PannerOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-PannerOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-panningmodeltype%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-panningmodel", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-distancemodeltype%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-distancemodel", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-positionx", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-positiony", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-positionz", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-orientationx", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-orientationy", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-orientationz", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-refdistance", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-maxdistance", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-rollofffactor", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-coneouterangle", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panneroptions-coneoutergain", - "https://webaudio.github.io/web-audio-api/#dictionary-pannernode-members", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-coneinnerangle", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-coneinnerangle%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-coneouterangle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-coneouterangle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-coneouterangle", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-coneouterangle", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-coneouterangle", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-coneouterangle%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-coneoutergain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-coneoutergain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-coneoutergain", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-coneoutergain", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-coneoutergain", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-coneoutergain%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-distancemodel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-distancemodel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-distancemodel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-distancemodel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-distancemodel", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-distancemodeltype%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-maxdistance", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-maxdistance", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-maxdistance", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-maxdistance", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-maxdistance", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-maxdistance%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-orientationx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-orientationx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-orientationx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-orientationx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-orientationx", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-254-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3641", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3642", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3643", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-254", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationx%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-orientationy", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-orientationy", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-orientationy", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-orientationy", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-orientationy", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-255-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3644", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3645", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3646", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-255", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationy%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-orientationz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-orientationz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-orientationz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-orientationz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-orientationz", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-256-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3647", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3648", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3649", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-256", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-orientationz%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-panningmodel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-panningmodel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-panningmodel", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-panningmodel", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-panningmodel", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-panningmodeltype%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-positionx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-positionx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-positionx", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-positionx", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-positionx", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-257-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3650", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3651", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3652", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-257", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positionx%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-positiony", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-positiony", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-positiony", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-positiony", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-positiony", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-258-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3653", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3654", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3655", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-258", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positiony%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-positionz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-positionz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-positionz", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-positionz", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-positionz", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-259-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3656", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3657", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3658", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-259", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-positionz%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-refdistance", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-refdistance", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-refdistance", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-refdistance", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-refdistance", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-refdistance%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-panneroptions-rollofffactor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-rollofffactor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-rollofffactor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-panneroptions-rollofffactor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-panneroptions-rollofffactor", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-rollofffactor%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#panner-channel-limitations", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#PeriodicWave", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#infopanel-for-PeriodicWave", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-PeriodicWave", - "https://webaudio.github.io/web-audio-api/#infopanel-for-PeriodicWave", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-PeriodicWave", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dfn-conforming-implementation%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-periodicwave", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-periodicwave-periodicwave-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-periodicwave-periodicwave-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwave-periodicwave-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwave-periodicwave-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwave-periodicwave-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwave-periodicwave-context-options-options", - "https://webaudio.github.io/web-audio-api/#PeriodicWave-constructors", - "https://webaudio.github.io/web-audio-api/#dom-periodicwave-periodicwave", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwave-periodicwave", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwave-periodicwave", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwave-periodicwave", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwave-periodicwave", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-periodicwave-real-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwave-real-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwave-real-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwave-real-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwave-real-slot", - "https://webaudio.github.io/web-audio-api/#dom-periodicwave-imag-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwave-imag-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwave-imag-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwave-imag-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwave-imag-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-periodicwave-normalize-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwave-normalize-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwave-normalize-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwave-normalize-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwave-normalize-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-periodicwave-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-imag%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-imag%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-real-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-imag-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-real-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-imag%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-imag-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-real-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-imag-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-real-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-imag-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-imag%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-imag%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-real-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-imag-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-imag%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-imag-slot%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-real-slot%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-real-slot%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-imag-slot%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-imag-slot%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-sine%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-real-slot%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-imag-slot%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-normalize-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveConstraints%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-periodicwave%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-periodicwave-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-periodicwave-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#PeriodicWaveConstraints", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveConstraints%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveConstraints%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#infopanel-for-PeriodicWaveConstraints", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-PeriodicWaveConstraints", - "https://webaudio.github.io/web-audio-api/#infopanel-for-PeriodicWaveConstraints", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-PeriodicWaveConstraints", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveConstraints%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveConstraints%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dictionary-periodicwaveconstraints-members", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveConstraints%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-periodicwaveconstraints-disablenormalization", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwaveconstraints-disablenormalization", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwaveconstraints-disablenormalization", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwaveconstraints-disablenormalization", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwaveconstraints-disablenormalization", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#PeriodicWaveOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveOptions%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#infopanel-for-PeriodicWaveOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-PeriodicWaveOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-PeriodicWaveOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-PeriodicWaveOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-imag%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatornode-type%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-sine%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveConstraints%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-imag%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dictionary-periodicwaveoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWaveOptions%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-periodicwaveoptions-imag", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwaveoptions-imag", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwaveoptions-imag", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwaveoptions-imag", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwaveoptions-imag", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-imag%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-periodicwaveoptions-real", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwaveoptions-real", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwaveoptions-real", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-periodicwaveoptions-real", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-periodicwaveoptions-real", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#waveform-generation", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-260-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3659", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3660", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3661", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-260", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-261-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3662", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3663", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3664", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-261", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-real-slot%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-imag-slot%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-262-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3665", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3666", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3667", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-262", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-263-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3668", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3669", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3670", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3671", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3672", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3673", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-263", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-264-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3674", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3675", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3676", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3677", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3678", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3679", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3680", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3681", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3682", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3683", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3684", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3685", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3686", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3687", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3688", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3689", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3690", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3691", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3692", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3693", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3694", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3695", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3696", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3697", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3698", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3699", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3700", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3701", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3702", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3703", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3704", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3705", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3706", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3707", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3708", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3709", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3710", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3711", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3712", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3713", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3714", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3715", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3716", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-264", - "https://webaudio.github.io/web-audio-api/#waveform-normalization", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-periodicwave-normalize-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-265-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3717", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3718", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3719", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3720", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3721", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3722", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3723", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3724", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3725", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3726", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3727", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3728", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3729", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3730", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3731", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3732", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3733", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3734", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3735", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3736", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3737", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3738", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3739", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3740", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3741", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3742", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3743", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3744", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3745", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3746", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3747", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3748", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3749", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3750", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3751", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3752", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3753", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3754", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3755", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3756", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3757", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3758", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3759", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3760", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3761", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3762", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3763", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3764", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3765", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3766", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3767", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3768", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3769", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-265", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-266-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3770", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3771", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3772", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-266", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-267-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3773", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3774", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3775", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3776", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3777", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3778", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3779", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3780", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3781", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3782", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-267", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-268-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3783", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3784", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3785", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-268", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-269-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3786", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3787", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3788", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3789", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3790", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3791", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3792", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3793", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3794", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3795", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3796", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3797", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3798", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3799", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3800", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3801", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3802", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3803", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3804", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3805", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3806", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3807", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3808", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3809", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3810", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3811", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3812", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3813", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3814", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3815", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3816", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-269", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-270-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3817", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3818", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3819", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3820", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3821", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3822", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3823", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3824", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3825", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3826", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-270", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-271-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3827", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3828", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3829", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3830", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3831", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3832", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3833", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3834", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3835", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3836", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3837", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3838", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3839", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3840", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3841", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3842", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3843", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3844", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3845", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3846", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3847", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3848", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-271", - "https://webaudio.github.io/web-audio-api/#oscillator-coefficients", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-PeriodicWave%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-272-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3849", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3850", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3851", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-272", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-273-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3852", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3853", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3854", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-273", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-274-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3855", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3856", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3857", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3858", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3859", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3860", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3861", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3862", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-274", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-275-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3863", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3864", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3865", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-275", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-276-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3866", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3867", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3868", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3869", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3870", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3871", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3872", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3873", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-276", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-277-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3874", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3875", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3876", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3877", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3878", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3879", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-277", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-278-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3880", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3881", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3882", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3883", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3884", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-278", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-sine%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-279-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3885", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3886", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3887", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3888", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3889", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3890", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3891", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3892", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3893", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3894", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3895", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3896", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3897", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3906", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3907", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3908", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3898", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3899", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3900", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3901", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3902", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3903", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3904", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3905", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3909", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3910", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3911", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3912", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3913", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3914", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-279", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-square%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-280-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3915", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3916", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3917", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3918", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3919", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3920", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3921", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3922", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3923", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3924", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3925", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3926", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3927", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3928", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3929", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3930", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3931", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3932", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3933", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3934", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3935", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3936", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3937", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-280", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-sawtooth%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-281-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3938", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3939", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3940", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3941", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3942", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3943", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3944", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3945", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3946", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3947", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3948", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3949", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3950", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3951", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3952", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3953", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3954", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3955", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3956", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3957", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3958", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3959", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3960", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3961", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-281", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oscillatortype-triangle%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-282-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3962", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3963", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3964", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3965", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3966", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3967", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3968", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3969", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3970", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3971", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3972", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3973", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3974", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3975", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3976", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3977", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3978", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3979", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3980", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3981", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3982", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3983", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3984", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3985", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3986", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3987", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-282", - "https://webaudio.github.io/web-audio-api/#ScriptProcessorNode", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ScriptProcessorNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ScriptProcessorNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ScriptProcessorNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ScriptProcessorNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcount-constraints%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-explicit%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcountmode-constraints%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-scriptprocessornode-onaudioprocess", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-long", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ScriptProcessorNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-scriptprocessornode-buffersize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-scriptprocessornode-buffersize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-scriptprocessornode-buffersize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-scriptprocessornode-buffersize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-scriptprocessornode-buffersize", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-long%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-scriptprocessornode-onaudioprocess", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-scriptprocessornode-onaudioprocess", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-scriptprocessornode-onaudioprocess", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-scriptprocessornode-onaudioprocess", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-scriptprocessornode-onaudioprocess", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-event-handlers%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#eventdef-scriptprocessornode-audioprocess", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-scriptprocessornode-audioprocess", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-scriptprocessornode-audioprocess", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-scriptprocessornode-audioprocess", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-scriptprocessornode-audioprocess", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEvent%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#stereopannernode", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-stereopannernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-stereopannernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-stereopannernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-stereopannernode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcount-constraints%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-clamped-max%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-channelcountmode-constraints%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-stereopannernode-stereopannernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-stereopannernode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-StereoPannerOptions", - "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-stereopannernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-stereopannernode-pan", - "https://webaudio.github.io/web-audio-api/#StereoPannerNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-stereopannernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-stereopannernode-stereopannernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-stereopannernode-stereopannernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-stereopannernode-stereopannernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-stereopannernode-stereopannernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-stereopannernode-stereopannernode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-StereoPannerOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#StereoPannerNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-stereopannernode-pan", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-stereopannernode-pan", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-stereopannernode-pan", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-stereopannernode-pan", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-stereopannernode-pan", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#StereoPannerOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-StereoPannerOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-StereoPannerOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-StereoPannerOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-StereoPannerOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-StereoPannerOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-StereoPannerOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-StereoPannerOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-stereopanneroptions-pan", - "https://webaudio.github.io/web-audio-api/#dictionary-stereopanneroptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-StereoPannerOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-stereopanneroptions-pan", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-stereopanneroptions-pan", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-stereopanneroptions-pan", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-stereopanneroptions-pan", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-stereopanneroptions-pan", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-stereopannernode-pan%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#StereoPanner-channel-limitations", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-GainNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#WaveShaperNode", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#infopanel-for-WaveShaperNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-WaveShaperNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-WaveShaperNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-WaveShaperNode", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-oversample", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-2x", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-4x", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#enumdef-oversampletype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-oversampletype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-oversampletype", - "https://webaudio.github.io/web-audio-api/#infopanel-for-enumdef-oversampletype", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-enumdef-oversampletype", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-none", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-2x%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-4x%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-oversampletype", - "https://webaudio.github.io/web-audio-api/#dom-oversampletype-none", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oversampletype-none", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oversampletype-none", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oversampletype-none", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oversampletype-none", - "https://webaudio.github.io/web-audio-api/#dom-oversampletype-2x", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oversampletype-2x", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oversampletype-2x", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oversampletype-2x", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oversampletype-2x", - "https://webaudio.github.io/web-audio-api/#dom-oversampletype-4x", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oversampletype-4x", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oversampletype-4x", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-oversampletype-4x", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-oversampletype-4x", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-waveshapernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-waveshapernode-context-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperOptions", - "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-waveshapernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshapernode-waveshapernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshapernode-waveshapernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshapernode-waveshapernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshapernode-waveshapernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-oversampletype%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-oversample%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#WaveShaperNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-waveshapernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshapernode-waveshapernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshapernode-waveshapernode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshapernode-waveshapernode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshapernode-waveshapernode", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-curve-set-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshapernode-curve-set-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshapernode-curve-set-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshapernode-curve-set-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshapernode-curve-set-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-waveshapernode-context-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshaperoptions-curve", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve-set-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-waveshapernode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#WaveShaperNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-curve", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshapernode-curve", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshapernode-curve", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshapernode-curve", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshapernode-curve", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-283-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3988", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3989", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3990", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-283", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-284-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3991", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3992", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3993", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-284", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-285-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3994", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3995", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3996", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3997", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3998", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-285", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-286-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-3999", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4000", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4001", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-286", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-287-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4002", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4003", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4004", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-287", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-288-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4005", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4006", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4007", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4008", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4009", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4010", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4026", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4027", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4028", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4036", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4037", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4038", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4011", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4012", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4013", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4014", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4015", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4016", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4017", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4018", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4019", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4020", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4021", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4022", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4023", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4024", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4025", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4029", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4030", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4031", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4032", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4033", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4034", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4035", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4039", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4040", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4041", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4042", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4043", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4044", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4045", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-288", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-289-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4046", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4047", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4048", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4049", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4050", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4051", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4052", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4053", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4054", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4055", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4056", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4057", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4058", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4059", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4060", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4061", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4062", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4063", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4069", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4070", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4071", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4072", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4073", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4074", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4075", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4076", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4077", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4085", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4086", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4087", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4088", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4089", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4090", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4091", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4092", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4093", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4094", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4095", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4096", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4097", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4098", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4099", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4100", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4101", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4102", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4103", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4104", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4064", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4065", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4066", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4067", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4068", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4078", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4079", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4080", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4081", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4082", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4083", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4084", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4105", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4106", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4107", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4108", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4109", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4110", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4111", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4112", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4113", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4114", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4115", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4116", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4117", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4118", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-289", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve-set-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve-set-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshapernode-curve%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-waveshapernode-oversample", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshapernode-oversample", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshapernode-oversample", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshapernode-oversample", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshapernode-oversample", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-oversampletype%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-none%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-2x%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-4x%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-4x%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-2x%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-oversampletype-4x%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#WaveShaperOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-WaveShaperOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-WaveShaperOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-WaveShaperOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-WaveShaperOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshaperoptions-curve%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-oversampletype%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-waveshaperoptions-oversample", - "https://webaudio.github.io/web-audio-api/#dictionary-waveshaperoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-waveshaperoptions-curve", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshaperoptions-curve", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshaperoptions-curve", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshaperoptions-curve", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshaperoptions-curve", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-waveshaperoptions-oversample", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshaperoptions-oversample", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshaperoptions-oversample", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-waveshaperoptions-oversample", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-waveshaperoptions-oversample", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-oversampletype%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#AudioWorklet", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioWorklet", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioWorklet", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioWorklet", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioWorklet", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-SecureContext%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-worklet", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworklet-port%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#AudioWorklet-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audioworklet-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworklet-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworklet-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworklet-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworklet-port", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworklet-port%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-event-close", - "https://webaudio.github.io/web-audio-api/#ref-for-messagechannel%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#AudioWorklet-concepts", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-worklet-global-scope-type", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-worklet-destination-type", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-worklet-addmodule", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#node-name-to-parameter-descriptor-map", - "https://webaudio.github.io/web-audio-api/#infopanel-for-node-name-to-parameter-descriptor-map", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-node-name-to-parameter-descriptor-map", - "https://webaudio.github.io/web-audio-api/#infopanel-for-node-name-to-parameter-descriptor-map", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-node-name-to-parameter-descriptor-map", - "https://webaudio.github.io/web-audio-api/#ref-for-node-name-to-processor-constructor-map", - "https://webaudio.github.io/web-audio-api/#ref-for-parameterdescriptors", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-registerprocessor", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-worklet-addmodule%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-audioworklet%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#example-d0db141d", - "https://webaudio.github.io/web-audio-api/#example-885ab32a", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#AudioWorkletGlobalScope", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioWorkletGlobalScope", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioWorkletGlobalScope", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioWorkletGlobalScope", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioWorkletGlobalScope", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-terminate-a-worklet-global-scope", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#node-name-to-processor-constructor-map", - "https://webaudio.github.io/web-audio-api/#infopanel-for-node-name-to-processor-constructor-map", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-node-name-to-processor-constructor-map", - "https://webaudio.github.io/web-audio-api/#infopanel-for-node-name-to-processor-constructor-map", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-node-name-to-processor-constructor-map", - "https://webaudio.github.io/web-audio-api/#ref-for-callbackdef-audioworkletprocessorconstructor", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#pending-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#infopanel-for-pending-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-pending-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#infopanel-for-pending-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-pending-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-pending-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#pending-processor-construction-data-node-reference", - "https://webaudio.github.io/web-audio-api/#infopanel-for-pending-processor-construction-data-node-reference", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-pending-processor-construction-data-node-reference", - "https://webaudio.github.io/web-audio-api/#infopanel-for-pending-processor-construction-data-node-reference", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-pending-processor-construction-data-node-reference", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#pending-processor-construction-data-transferred-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-pending-processor-construction-data-transferred-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-pending-processor-construction-data-transferred-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-pending-processor-construction-data-transferred-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-pending-processor-construction-data-transferred-port", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#callbackdef-audioworkletprocessorconstructor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-callbackdef-audioworkletprocessorconstructor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-callbackdef-audioworkletprocessorconstructor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-callbackdef-audioworkletprocessorconstructor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-callbackdef-audioworkletprocessorconstructor", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-object", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocessorconstructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-Global", - "https://webaudio.github.io/web-audio-api/#ref-for-worklet%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-workletglobalscope", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "https://webaudio.github.io/web-audio-api/#ref-for-callbackdef-audioworkletprocessorconstructor%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long-long", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-currentframe", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-currenttime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A7%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-port%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#AudioWorkletGlobalScope-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-currentframe", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-currentframe", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-currentframe", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-currentframe", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-currentframe", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long-long%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-current-frame-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-currenttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-currenttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-currenttime", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-currenttime", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-currenttime", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-samplerate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-samplerate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-samplerate", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-renderquantumsize", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-port", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-port%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-event-close%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-messagechannel%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#AudioWorkletGlobalScope-methods", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-registerprocessor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-registerprocessor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-registerprocessor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-registerprocessor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-registerprocessor", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-node-name-to-processor-constructor-map%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-typeerror", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-typeerror%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#steps-parameterDescriptorSequence", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-name", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-defaultvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-minvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-maxvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-node-name-to-processor-constructor-map%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#6d54a0c516", - "https://webaudio.github.io/web-audio-api/#ref-for-node-name-to-parameter-descriptor-map", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "https://webaudio.github.io/web-audio-api/#ref-for-callbackdef-audioworkletprocessorconstructor%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#AudioWorkletProcessor-instantiation", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-struct", - "https://webaudio.github.io/web-audio-api/#processor-construction-data", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#ref-for-struct%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-struct-item", - "https://webaudio.github.io/web-audio-api/#processor-construction-data-name", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processor-construction-data-name", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processor-construction-data-name", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processor-construction-data-name", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processor-construction-data-name", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-node-name-to-processor-constructor-map%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#processor-construction-data-node", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processor-construction-data-node", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processor-construction-data-node", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processor-construction-data-node", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processor-construction-data-node", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#processor-construction-data-options", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processor-construction-data-options", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processor-construction-data-options", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processor-construction-data-options", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processor-construction-data-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNodeOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-audioworkletnode", - "https://webaudio.github.io/web-audio-api/#processor-construction-data-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processor-construction-data-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processor-construction-data-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processor-construction-data-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processor-construction-data-port", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-port", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#invoking-processor-constructor", - "https://webaudio.github.io/web-audio-api/#ref-for-processor-construction-data", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-processor-construction-data-name", - "https://webaudio.github.io/web-audio-api/#ref-for-processor-construction-data-node", - "https://webaudio.github.io/web-audio-api/#ref-for-processor-construction-data-port", - "https://webaudio.github.io/web-audio-api/#ref-for-processor-construction-data-options", - "https://webaudio.github.io/web-audio-api/#ref-for-structureddeserialize%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-structureddeserialize%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-node-name-to-processor-constructor-map%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-pending-processor-construction-data-node-reference", - "https://webaudio.github.io/web-audio-api/#ref-for-pending-processor-construction-data-transferred-port", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-pending-processor-construction-data%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-construct-a-callback-function", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-task", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-audioworkletnode-processorerror", - "https://webaudio.github.io/web-audio-api/#ref-for-errorevent", - "https://webaudio.github.io/web-audio-api/#ref-for-pending-processor-construction-data%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#AudioWorkletNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioWorkletNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioWorkletNode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioWorkletNode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioWorkletNode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelcountmode-max%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#active-source", - "https://webaudio.github.io/web-audio-api/#infopanel-for-active-source", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-active-source", - "https://webaudio.github.io/web-audio-api/#infopanel-for-active-source", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-active-source", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#audioparammap", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audioparammap", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audioparammap", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audioparammap", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audioparammap", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-SecureContext%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-audioworkletnode-context-name-options-context", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-audioworkletnode-context-name-options-name", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNodeOptions%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-audioworkletnode-context-name-options-options", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparammap", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-port%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-onprocessorerror", - "https://webaudio.github.io/web-audio-api/#AudioWorkletNode-constructors", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-audioworkletnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnode-audioworkletnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnode-audioworkletnode", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnode-audioworkletnode", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnode-audioworkletnode", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-constructor-context", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-associated%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-constructor-name", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-constructor-options", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNodeOptions%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-this%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-messagechannel%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-messagechannel-port1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-messagechannel-port2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-structuredserializewithtransfer%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-structuredserialize", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-port%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparammap%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-name%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-automationrate", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-defaultvalue%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-minvalue%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-maxvalue%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-parameterdata", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-parameterdata%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-parameters%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocessor-audioworkletprocessor", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-processor-construction-data%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#AudioWorkletNode-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-onprocessorerror", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnode-onprocessorerror", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnode-onprocessorerror", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnode-onprocessorerror", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnode-onprocessorerror", - "https://webaudio.github.io/web-audio-api/#ref-for-eventhandler%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-media-element-task%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#eventdef-audioworkletnode-processorerror", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-audioworkletnode-processorerror", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-audioworkletnode-processorerror", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eventdef-audioworkletnode-processorerror", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eventdef-audioworkletnode-processorerror", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-errorevent%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-parameters", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnode-parameters", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnode-parameters", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnode-parameters", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnode-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-audioparammap%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParamDescriptor", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnode-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnode-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnode-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnode-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnode-port", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnode-port%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-event-close%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-messagechannel%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#AudioWorkletNodeOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNodeOptions%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNodeOptions%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioWorkletNodeOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioWorkletNodeOptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioWorkletNodeOptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioWorkletNodeOptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNodeOptions%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNodeOptions%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-sequence%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-outputchannelcount", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-record", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-parameterdata%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-object%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-processoroptions", - "https://webaudio.github.io/web-audio-api/#dictionary-audioworkletnodeoptions-members", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNodeOptions%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnodeoptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnodeoptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnodeoptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnodeoptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnodeoptions-numberofinputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnodeoptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnodeoptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnodeoptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnodeoptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnodeoptions-numberofoutputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnodeoptions-outputchannelcount", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnodeoptions-outputchannelcount", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnodeoptions-outputchannelcount", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnodeoptions-outputchannelcount", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnodeoptions-outputchannelcount", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnodeoptions-parameterdata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnodeoptions-parameterdata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnodeoptions-parameterdata", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnodeoptions-parameterdata", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnodeoptions-parameterdata", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletnodeoptions-processoroptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnodeoptions-processoroptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnodeoptions-processoroptions", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletnodeoptions-processoroptions", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletnodeoptions-processoroptions", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-object%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#configuring-channels-with-audioworkletnodeoptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNodeOptions%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNodeOptions%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#configure-with-audioworkletnodeoptions", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-map-exists%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-notsupportederror%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-indexsizeerror%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-map-exists%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-computednumberofchannels%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#AudioWorkletProcessor", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioWorkletProcessor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioWorkletProcessor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioWorkletProcessor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioWorkletProcessor", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-Exposed%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocessor-audioworkletprocessor%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocessor-port", - "https://webaudio.github.io/web-audio-api/#ref-for-audioworkletprocess-callback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-boolean%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-frozen-array", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-frozen-array%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocesscallback-inputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocesscallback-inputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocesscallback-inputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocesscallback-inputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocesscallback-inputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-frozen-array%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-frozen-array%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocesscallback-outputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocesscallback-outputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocesscallback-outputs", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocesscallback-outputs", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocesscallback-outputs", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-object%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocessor-node-reference-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocessor-node-reference-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocessor-node-reference-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocessor-node-reference-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocessor-node-reference-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocessor-callable-process-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocessor-callable-process-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocessor-callable-process-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocessor-callable-process-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocessor-callable-process-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-process", - "https://webaudio.github.io/web-audio-api/#AudioWorketProcessor-constructors", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocessor-audioworkletprocessor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocessor-audioworkletprocessor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocessor-audioworkletprocessor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocessor-audioworkletprocessor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocessor-audioworkletprocessor", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-pending-processor-construction-data-node-reference%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-pending-processor-construction-data%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-exceptiondef-typeerror%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-this%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocessor-node-reference-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-pending-processor-construction-data-transferred-port%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-pending-processor-construction-data%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocessor-port%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-pending-processor-construction-data%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#AudioWorkletProcessor-attributes", - "https://webaudio.github.io/web-audio-api/#dom-audioworkletprocessor-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocessor-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocessor-port", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioworkletprocessor-port", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioworkletprocessor-port", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-messageport%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocessor-port%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-event-close%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-messagechannel%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#callback-audioworketprocess-callback", - "https://webaudio.github.io/web-audio-api/#ref-for-audioworkletprocess-callback-parameters%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-audioworkletprocess-callback-parameters%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#process", - "https://webaudio.github.io/web-audio-api/#infopanel-for-process", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-process", - "https://webaudio.github.io/web-audio-api/#infopanel-for-process", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-process", - "https://webaudio.github.io/web-audio-api/#parameterdescriptors", - "https://webaudio.github.io/web-audio-api/#infopanel-for-parameterdescriptors", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-parameterdescriptors", - "https://webaudio.github.io/web-audio-api/#infopanel-for-parameterdescriptors", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-parameterdescriptors", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParamDescriptor%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-process%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-process%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-process%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletglobalscope-currenttime%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-process%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-process%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-undefined%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#example-1d246ea2", - "https://webaudio.github.io/web-audio-api/#audioworkletprocess-callback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-audioworkletprocess-callback-parameters%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-audioworkletprocess-callback-parameters%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audioworkletprocess-callback-parameters", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audioworkletprocess-callback-parameters", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audioworkletprocess-callback-parameters", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audioworkletprocess-callback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-audioworkletprocess-callback-parameters%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-inputs", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-outputs", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-frozen-array%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-frozen-array%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-290-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4119", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4120", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4121", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-290", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-291-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4122", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4123", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4124", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-291", - "https://webaudio.github.io/web-audio-api/#ref-for-computednumberofchannels%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-actively-processing%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-292-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4125", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4126", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4127", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-292", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-frozen-array%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-frozen-array%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-293-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4128", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4129", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4130", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-293", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-294-Frame", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4131", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4132", - "https://webaudio.github.io/web-audio-api/#MathJax-Span-4133", - "https://webaudio.github.io/web-audio-api/#MathJax-Element-294", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-computednumberofchannels%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-parameters", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-object%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-ordered-map", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-frozen-array%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-computedvalue%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-ordered-map%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ordered-map%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-parameters%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#AudioParamDescriptor", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParamDescriptor%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParamDescriptor%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioParamDescriptor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioParamDescriptor", - "https://webaudio.github.io/web-audio-api/#infopanel-for-AudioParamDescriptor", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-AudioParamDescriptor", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParamDescriptor%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParamDescriptor%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-name%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-defaultvalue%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-minvalue%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-maxvalue%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-automationrate%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparamdescriptor-automationrate%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dictionary-audioparamdescriptor-members", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParamDescriptor%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-automationrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparamdescriptor-automationrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparamdescriptor-automationrate", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparamdescriptor-automationrate", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparamdescriptor-automationrate", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-automationrate%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-defaultvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparamdescriptor-defaultvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparamdescriptor-defaultvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparamdescriptor-defaultvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparamdescriptor-defaultvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-maxvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparamdescriptor-maxvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparamdescriptor-maxvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparamdescriptor-maxvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparamdescriptor-maxvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-minvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparamdescriptor-minvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparamdescriptor-minvalue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparamdescriptor-minvalue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparamdescriptor-minvalue", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-float%E2%91%A0%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-name", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparamdescriptor-name", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparamdescriptor-name", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-audioparamdescriptor-name", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-audioparamdescriptor-name", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-DOMString%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#AudioWorklet-Sequence", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorklet%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-worklet-addmodule%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#AudioWorklet-Examples", - "https://webaudio.github.io/web-audio-api/#the-bitcrusher-node", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#example-06f3f4b7", - "https://webaudio.github.io/web-audio-api/#example-b2b5f7c8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-invalidstateerror%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#vu-meter-mode", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#example-d5157576", - "https://webaudio.github.io/web-audio-api/#example-55c4a817", - "https://webaudio.github.io/web-audio-api/#example-2d1abf00", - "https://webaudio.github.io/web-audio-api/#processing-model", - "https://webaudio.github.io/web-audio-api/#processing-model-background", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#control-thread-and-rendering-thread", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#control-thread", - "https://webaudio.github.io/web-audio-api/#infopanel-for-control-thread", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-control-thread", - "https://webaudio.github.io/web-audio-api/#infopanel-for-control-thread", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-control-thread", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#rendering-thread", - "https://webaudio.github.io/web-audio-api/#infopanel-for-rendering-thread", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-rendering-thread", - "https://webaudio.github.io/web-audio-api/#infopanel-for-rendering-thread", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-rendering-thread", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#control-message-queue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-control-message-queue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-control-message-queue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-control-message-queue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-control-message-queue", - "https://webaudio.github.io/web-audio-api/#control-message", - "https://webaudio.github.io/web-audio-api/#infopanel-for-control-message", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-control-message", - "https://webaudio.github.io/web-audio-api/#infopanel-for-control-message", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-control-message", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#queuing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-queuing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-queuing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-queuing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-queuing", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#oldest-message", - "https://webaudio.github.io/web-audio-api/#infopanel-for-oldest-message", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-oldest-message", - "https://webaudio.github.io/web-audio-api/#infopanel-for-oldest-message", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-oldest-message", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#swap", - "https://webaudio.github.io/web-audio-api/#infopanel-for-swap", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-swap", - "https://webaudio.github.io/web-audio-api/#infopanel-for-swap", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-swap", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#asynchronous-operations", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#rendering-loop", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#render-quantum-size", - "https://webaudio.github.io/web-audio-api/#infopanel-for-render-quantum-size", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-render-quantum-size", - "https://webaudio.github.io/web-audio-api/#infopanel-for-render-quantum-size", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-render-quantum-size", - "https://webaudio.github.io/web-audio-api/#render-quantum", - "https://webaudio.github.io/web-audio-api/#infopanel-for-render-quantum", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-render-quantum", - "https://webaudio.github.io/web-audio-api/#infopanel-for-render-quantum", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-render-quantum", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextoptions-rendersizehint%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#atomically", - "https://webaudio.github.io/web-audio-api/#infopanel-for-atomically", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-atomically", - "https://webaudio.github.io/web-audio-api/#infopanel-for-atomically", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-atomically", - "https://webaudio.github.io/web-audio-api/#ref-for-atomically%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#system-level-audio-callback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-system-level-audio-callback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-system-level-audio-callback", - "https://webaudio.github.io/web-audio-api/#infopanel-for-system-level-audio-callback", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-system-level-audio-callback", - "https://webaudio.github.io/web-audio-api/#system-level-audio-callback-buffer-size", - "https://webaudio.github.io/web-audio-api/#infopanel-for-system-level-audio-callback-buffer-size", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-system-level-audio-callback-buffer-size", - "https://webaudio.github.io/web-audio-api/#infopanel-for-system-level-audio-callback-buffer-size", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-system-level-audio-callback-buffer-size", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#load-value", - "https://webaudio.github.io/web-audio-api/#infopanel-for-load-value", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-load-value", - "https://webaudio.github.io/web-audio-api/#infopanel-for-load-value", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-load-value", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback-buffer-size", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-load-value%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#audio-buffer-underrun", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audio-buffer-underrun", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audio-buffer-underrun", - "https://webaudio.github.io/web-audio-api/#infopanel-for-audio-buffer-underrun", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-audio-buffer-underrun", - "https://webaudio.github.io/web-audio-api/#ref-for-load-value%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum-size%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback-buffer-size%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-audio-buffer-underrun", - "https://webaudio.github.io/web-audio-api/#ref-for-system-level-audio-callback%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-load-value%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A3%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#baseaudiocontext-associated-task-queue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-baseaudiocontext-associated-task-queue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-baseaudiocontext-associated-task-queue", - "https://webaudio.github.io/web-audio-api/#infopanel-for-baseaudiocontext-associated-task-queue", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-baseaudiocontext-associated-task-queue", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-baseaudiocontext-associated-task-queue", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#rendering-initialization", - "https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-current-frame-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-current-frame-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-current-frame-slot", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dom-baseaudiocontext-current-frame-slot", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dom-baseaudiocontext-current-frame-slot", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#rendering-a-graph", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-atomically%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-swap", - "https://webaudio.github.io/web-audio-api/#ref-for-control-message-queue%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-oldest-message", - "https://webaudio.github.io/web-audio-api/#ref-for-oldest-message%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-baseaudiocontext-associated-task-queue%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-baseaudiocontext-associated-task-queue%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-delaywriter%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-delayreader%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-mute", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-visit", - "https://webaudio.github.io/web-audio-api/#visit", - "https://webaudio.github.io/web-audio-api/#infopanel-for-visit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-visit", - "https://webaudio.github.io/web-audio-api/#infopanel-for-visit", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-visit", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-visit%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-visit%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-available-for-reading", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#input-audioparam-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-input-audioparam-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-input-audioparam-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-input-audioparam-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-input-audioparam-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-current-value-slot%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-available-for-reading%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#input-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-input-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-input-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-input-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-input-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-source-node%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-computing-a-block-of-audio", - "https://webaudio.github.io/web-audio-api/#ref-for-available-for-reading%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-prepare-to-run-script", - "https://webaudio.github.io/web-audio-api/#ref-for-current-settings-object%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-prepare-to-run-a-callback", - "https://webaudio.github.io/web-audio-api/#ref-for-current-settings-object%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-parameters%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-computing-a-block-of-audio%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-available-for-reading%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-promise%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-active-source%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#audio-worklet-render-return", - "https://webaudio.github.io/web-audio-api/#ref-for-clean-up-after-running-a-callback", - "https://webaudio.github.io/web-audio-api/#ref-for-current-settings-object%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-clean-up-after-running-script", - "https://webaudio.github.io/web-audio-api/#ref-for-current-settings-object%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-active-source%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-available-for-reading%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-task%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-control-thread%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-audioworkletnode-processorerror%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-errorevent%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-destination-node", - "https://webaudio.github.io/web-audio-api/#ref-for-recording-the-input", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-processing-an-input-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-input-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-available-for-reading%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-atomically%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-current-frame-slot%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-render-quantum-size%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-current-frame-slot%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-perform-a-microtask-checkpoint", - "https://webaudio.github.io/web-audio-api/#mute", - "https://webaudio.github.io/web-audio-api/#infopanel-for-mute", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-mute", - "https://webaudio.github.io/web-audio-api/#infopanel-for-mute", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-mute", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#available-for-reading", - "https://webaudio.github.io/web-audio-api/#infopanel-for-available-for-reading", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-available-for-reading", - "https://webaudio.github.io/web-audio-api/#infopanel-for-available-for-reading", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-available-for-reading", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#recording-the-input", - "https://webaudio.github.io/web-audio-api/#infopanel-for-recording-the-input", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-recording-the-input", - "https://webaudio.github.io/web-audio-api/#infopanel-for-recording-the-input", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-recording-the-input", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#computing-a-block-of-audio", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computing-a-block-of-audio", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computing-a-block-of-audio", - "https://webaudio.github.io/web-audio-api/#infopanel-for-computing-a-block-of-audio", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-computing-a-block-of-audio", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#processing-an-input-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processing-an-input-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processing-an-input-buffer", - "https://webaudio.github.io/web-audio-api/#infopanel-for-processing-an-input-buffer", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-processing-an-input-buffer", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-input-buffer%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#error-handling-on-a-running-audio-context", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-rendering-thread%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-releasing%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-media-element-task%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-audiocontext-error%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontextstate-suspended%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-queue-a-media-element-task%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-concept-event-fire%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-eventdef-audiocontext-error%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#unloading-a-document", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-baseaudiocontext-decoding-thread%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-queuing%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-close%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-OfflineAudioContext%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#DynamicLifetime", - "https://webaudio.github.io/web-audio-api/#dynamic-lifetime-background", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#dynamic-lifetime-example", - "https://webaudio.github.io/web-audio-api/#example-9dbf5ad3", - "https://webaudio.github.io/web-audio-api/#channel-up-mixing-and-down-mixing", - "https://webaudio.github.io/web-audio-api/#mixing-rules", - "https://webaudio.github.io/web-audio-api/#infopanel-for-mixing-rules", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-mixing-rules", - "https://webaudio.github.io/web-audio-api/#infopanel-for-mixing-rules", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-mixing-rules", - "https://webaudio.github.io/web-audio-api/#ref-for-mixing-rules", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#up-mixing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-up-mixing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-up-mixing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-up-mixing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-up-mixing", - "https://webaudio.github.io/web-audio-api/#down-mixing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-down-mixing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-down-mixing", - "https://webaudio.github.io/web-audio-api/#infopanel-for-down-mixing", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-down-mixing", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-computednumberofchannels%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-computednumberofchannels%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-up-mixing", - "https://webaudio.github.io/web-audio-api/#ref-for-down-mixing", - "https://webaudio.github.io/web-audio-api/#ref-for-computednumberofchannels%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-channelinterpretation%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-up-mixing%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-down-mixing%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ChannelLayouts", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-up-mixing%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-down-mixing%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ChannelOrdering", - "https://webaudio.github.io/web-audio-api/#channels-tail-time", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-tail-time%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#UpMix-sub", - "https://webaudio.github.io/web-audio-api/#down-mix", - "https://webaudio.github.io/web-audio-api/#ChannelRules-section", - "https://webaudio.github.io/web-audio-api/#example-c5d47e05", - "https://webaudio.github.io/web-audio-api/#audio-signal-values", - "https://webaudio.github.io/web-audio-api/#audio-sample-format", - "https://webaudio.github.io/web-audio-api/#linear-pcm", - "https://webaudio.github.io/web-audio-api/#infopanel-for-linear-pcm", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-linear-pcm", - "https://webaudio.github.io/web-audio-api/#infopanel-for-linear-pcm", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-linear-pcm", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-Float32Array%E2%91%A3%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#audio-values-rendering", - "https://webaudio.github.io/web-audio-api/#Spatialization", - "https://webaudio.github.io/web-audio-api/#Spatialization-background", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-audiolistener-forward%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-audiolistener-up%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#azimuth-elevation", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#Spatialization-panning-algorithm", - "https://webaudio.github.io/web-audio-api/#Spatialization-equal-power-panning", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-panningmodel%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-panningmodeltype-equalpower%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-automationrate%E2%91%A3%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioListener%E2%91%A1%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-automationrate-a-rate%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-a-rate%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#Spatialization-hrtf-panning", - "https://webaudio.github.io/web-audio-api/#stereopanner-algorithm", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-computedvalue%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-stereopannernode%E2%91%A0%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#Spatialization-distance-effects", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-distancemodel%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-distancemodel%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-enumdef-distancemodeltype%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#Spatialization-sound-cones", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-coneinnerangle%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-pannernode-coneouterangle%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-PannerNode%E2%91%A2%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#Performance", - "https://webaudio.github.io/web-audio-api/#latency", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioProcessingEvent%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-DelayNode%E2%91%A2%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-IIRFilterNode%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-ConvolverNode%E2%91%A1%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-MediaStreamAudioDestinationNode%E2%91%A0%E2%93%AA", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-WaveShaperNode%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#audio-buffer-copying", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A0%E2%91%A0", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A0%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-idl-ArrayBuffer%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-acquire-the-content%E2%91%A0%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioBuffer%E2%91%A6%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#audioparam-transitions", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audioparam-settargetattime%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#audio-glitching", - "https://webaudio.github.io/web-audio-api/#priv-sec", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediadevices-getusermedia%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AnalyserNode%E2%91%A0%E2%91%A5", - "https://webaudio.github.io/web-audio-api/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#ref-for-OscillatorNode%E2%91%A0%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A4", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-baselatency%E2%91%A1", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiocontext-outputlatency%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A6", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A7", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediadevices", - "https://webaudio.github.io/web-audio-api/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A8", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A3", - "https://webaudio.github.io/web-audio-api/#ref-for-dom-mediadevices-getusermedia%E2%91%A2", - "https://webaudio.github.io/web-audio-api/#requirements", - "https://webaudio.github.io/web-audio-api/#common-definitions", - "https://webaudio.github.io/web-audio-api/#changes", - "https://webaudio.github.io/web-audio-api/#acks", - "https://webaudio.github.io/web-audio-api/#w3c-conformance", - "https://webaudio.github.io/web-audio-api/#w3c-conventions", - "https://webaudio.github.io/web-audio-api/#w3c-example", - "https://webaudio.github.io/web-audio-api/#w3c-conformant-algorithms", - "https://webaudio.github.io/web-audio-api/#index", - "https://webaudio.github.io/web-audio-api/#index-defined-here", - "https://webaudio.github.io/web-audio-api/#index-defined-elsewhere", - "https://webaudio.github.io/web-audio-api/#321b1ad4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-321b1ad4", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-321b1ad4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-321b1ad4", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-321b1ad4", - "https://webaudio.github.io/web-audio-api/#129bdae8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-129bdae8", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-129bdae8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-129bdae8", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-129bdae8", - "https://webaudio.github.io/web-audio-api/#44a7708c", - "https://webaudio.github.io/web-audio-api/#infopanel-for-44a7708c", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-44a7708c", - "https://webaudio.github.io/web-audio-api/#infopanel-for-44a7708c", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-44a7708c", - "https://webaudio.github.io/web-audio-api/#2bc0cdf4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-2bc0cdf4", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-2bc0cdf4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-2bc0cdf4", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-2bc0cdf4", - "https://webaudio.github.io/web-audio-api/#5fd23811", - "https://webaudio.github.io/web-audio-api/#infopanel-for-5fd23811", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-5fd23811", - "https://webaudio.github.io/web-audio-api/#infopanel-for-5fd23811", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-5fd23811", - "https://webaudio.github.io/web-audio-api/#acb50c28", - "https://webaudio.github.io/web-audio-api/#infopanel-for-acb50c28", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-acb50c28", - "https://webaudio.github.io/web-audio-api/#infopanel-for-acb50c28", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-acb50c28", - "https://webaudio.github.io/web-audio-api/#0e9f636b", - "https://webaudio.github.io/web-audio-api/#infopanel-for-0e9f636b", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-0e9f636b", - "https://webaudio.github.io/web-audio-api/#infopanel-for-0e9f636b", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-0e9f636b", - "https://webaudio.github.io/web-audio-api/#ccfe986b", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ccfe986b", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ccfe986b", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ccfe986b", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ccfe986b", - "https://webaudio.github.io/web-audio-api/#f0951476", - "https://webaudio.github.io/web-audio-api/#infopanel-for-f0951476", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-f0951476", - "https://webaudio.github.io/web-audio-api/#infopanel-for-f0951476", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-f0951476", - "https://webaudio.github.io/web-audio-api/#1076ec40", - "https://webaudio.github.io/web-audio-api/#infopanel-for-1076ec40", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-1076ec40", - "https://webaudio.github.io/web-audio-api/#infopanel-for-1076ec40", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-1076ec40", - "https://webaudio.github.io/web-audio-api/#02fb8691", - "https://webaudio.github.io/web-audio-api/#infopanel-for-02fb8691", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-02fb8691", - "https://webaudio.github.io/web-audio-api/#infopanel-for-02fb8691", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-02fb8691", - "https://webaudio.github.io/web-audio-api/#df16744f", - "https://webaudio.github.io/web-audio-api/#infopanel-for-df16744f", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-df16744f", - "https://webaudio.github.io/web-audio-api/#infopanel-for-df16744f", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-df16744f", - "https://webaudio.github.io/web-audio-api/#0800bdf4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-0800bdf4", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-0800bdf4", - "https://webaudio.github.io/web-audio-api/#infopanel-for-0800bdf4", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-0800bdf4", - "https://webaudio.github.io/web-audio-api/#89786baf", - "https://webaudio.github.io/web-audio-api/#infopanel-for-89786baf", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-89786baf", - "https://webaudio.github.io/web-audio-api/#infopanel-for-89786baf", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-89786baf", - "https://webaudio.github.io/web-audio-api/#9da834a1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-9da834a1", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-9da834a1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-9da834a1", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-9da834a1", - "https://webaudio.github.io/web-audio-api/#2879c404", - "https://webaudio.github.io/web-audio-api/#infopanel-for-2879c404", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-2879c404", - "https://webaudio.github.io/web-audio-api/#infopanel-for-2879c404", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-2879c404", - "https://webaudio.github.io/web-audio-api/#0c9b0d3c", - "https://webaudio.github.io/web-audio-api/#infopanel-for-0c9b0d3c", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-0c9b0d3c", - "https://webaudio.github.io/web-audio-api/#infopanel-for-0c9b0d3c", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-0c9b0d3c", - "https://webaudio.github.io/web-audio-api/#eec46e27", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eec46e27", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eec46e27", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eec46e27", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eec46e27", - "https://webaudio.github.io/web-audio-api/#3349d69f", - "https://webaudio.github.io/web-audio-api/#infopanel-for-3349d69f", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-3349d69f", - "https://webaudio.github.io/web-audio-api/#infopanel-for-3349d69f", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-3349d69f", - "https://webaudio.github.io/web-audio-api/#2c82d279", - "https://webaudio.github.io/web-audio-api/#infopanel-for-2c82d279", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-2c82d279", - "https://webaudio.github.io/web-audio-api/#infopanel-for-2c82d279", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-2c82d279", - "https://webaudio.github.io/web-audio-api/#d5ac3b38", - "https://webaudio.github.io/web-audio-api/#infopanel-for-d5ac3b38", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-d5ac3b38", - "https://webaudio.github.io/web-audio-api/#infopanel-for-d5ac3b38", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-d5ac3b38", - "https://webaudio.github.io/web-audio-api/#b6a1ae3f", - "https://webaudio.github.io/web-audio-api/#infopanel-for-b6a1ae3f", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-b6a1ae3f", - "https://webaudio.github.io/web-audio-api/#infopanel-for-b6a1ae3f", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-b6a1ae3f", - "https://webaudio.github.io/web-audio-api/#dff7b498", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dff7b498", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dff7b498", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dff7b498", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dff7b498", - "https://webaudio.github.io/web-audio-api/#12b8dfc0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-12b8dfc0", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-12b8dfc0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-12b8dfc0", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-12b8dfc0", - "https://webaudio.github.io/web-audio-api/#6a5a59a0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-6a5a59a0", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-6a5a59a0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-6a5a59a0", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-6a5a59a0", - "https://webaudio.github.io/web-audio-api/#0e3ba9f8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-0e3ba9f8", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-0e3ba9f8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-0e3ba9f8", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-0e3ba9f8", - "https://webaudio.github.io/web-audio-api/#8603b31a", - "https://webaudio.github.io/web-audio-api/#infopanel-for-8603b31a", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-8603b31a", - "https://webaudio.github.io/web-audio-api/#infopanel-for-8603b31a", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-8603b31a", - "https://webaudio.github.io/web-audio-api/#6aa169c3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-6aa169c3", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-6aa169c3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-6aa169c3", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-6aa169c3", - "https://webaudio.github.io/web-audio-api/#7a048f5b", - "https://webaudio.github.io/web-audio-api/#infopanel-for-7a048f5b", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-7a048f5b", - "https://webaudio.github.io/web-audio-api/#infopanel-for-7a048f5b", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-7a048f5b", - "https://webaudio.github.io/web-audio-api/#b5c3b552", - "https://webaudio.github.io/web-audio-api/#infopanel-for-b5c3b552", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-b5c3b552", - "https://webaudio.github.io/web-audio-api/#infopanel-for-b5c3b552", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-b5c3b552", - "https://webaudio.github.io/web-audio-api/#c2359c09", - "https://webaudio.github.io/web-audio-api/#infopanel-for-c2359c09", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-c2359c09", - "https://webaudio.github.io/web-audio-api/#infopanel-for-c2359c09", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-c2359c09", - "https://webaudio.github.io/web-audio-api/#8abbe523", - "https://webaudio.github.io/web-audio-api/#infopanel-for-8abbe523", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-8abbe523", - "https://webaudio.github.io/web-audio-api/#infopanel-for-8abbe523", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-8abbe523", - "https://webaudio.github.io/web-audio-api/#9a517a7d", - "https://webaudio.github.io/web-audio-api/#infopanel-for-9a517a7d", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-9a517a7d", - "https://webaudio.github.io/web-audio-api/#infopanel-for-9a517a7d", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-9a517a7d", - "https://webaudio.github.io/web-audio-api/#e99bd18e", - "https://webaudio.github.io/web-audio-api/#infopanel-for-e99bd18e", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-e99bd18e", - "https://webaudio.github.io/web-audio-api/#infopanel-for-e99bd18e", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-e99bd18e", - "https://webaudio.github.io/web-audio-api/#ca96a59c", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ca96a59c", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ca96a59c", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ca96a59c", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ca96a59c", - "https://webaudio.github.io/web-audio-api/#d2f99df9", - "https://webaudio.github.io/web-audio-api/#infopanel-for-d2f99df9", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-d2f99df9", - "https://webaudio.github.io/web-audio-api/#infopanel-for-d2f99df9", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-d2f99df9", - "https://webaudio.github.io/web-audio-api/#aa7bbf63", - "https://webaudio.github.io/web-audio-api/#infopanel-for-aa7bbf63", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-aa7bbf63", - "https://webaudio.github.io/web-audio-api/#infopanel-for-aa7bbf63", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-aa7bbf63", - "https://webaudio.github.io/web-audio-api/#93252241", - "https://webaudio.github.io/web-audio-api/#infopanel-for-93252241", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-93252241", - "https://webaudio.github.io/web-audio-api/#infopanel-for-93252241", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-93252241", - "https://webaudio.github.io/web-audio-api/#3b8ce5a6", - "https://webaudio.github.io/web-audio-api/#infopanel-for-3b8ce5a6", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-3b8ce5a6", - "https://webaudio.github.io/web-audio-api/#infopanel-for-3b8ce5a6", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-3b8ce5a6", - "https://webaudio.github.io/web-audio-api/#59912c93", - "https://webaudio.github.io/web-audio-api/#infopanel-for-59912c93", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-59912c93", - "https://webaudio.github.io/web-audio-api/#infopanel-for-59912c93", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-59912c93", - "https://webaudio.github.io/web-audio-api/#1243a891", - "https://webaudio.github.io/web-audio-api/#infopanel-for-1243a891", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-1243a891", - "https://webaudio.github.io/web-audio-api/#infopanel-for-1243a891", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-1243a891", - "https://webaudio.github.io/web-audio-api/#c88f3887", - "https://webaudio.github.io/web-audio-api/#infopanel-for-c88f3887", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-c88f3887", - "https://webaudio.github.io/web-audio-api/#infopanel-for-c88f3887", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-c88f3887", - "https://webaudio.github.io/web-audio-api/#84b454ff", - "https://webaudio.github.io/web-audio-api/#infopanel-for-84b454ff", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-84b454ff", - "https://webaudio.github.io/web-audio-api/#infopanel-for-84b454ff", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-84b454ff", - "https://webaudio.github.io/web-audio-api/#984221ca", - "https://webaudio.github.io/web-audio-api/#infopanel-for-984221ca", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-984221ca", - "https://webaudio.github.io/web-audio-api/#infopanel-for-984221ca", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-984221ca", - "https://webaudio.github.io/web-audio-api/#c464e7b6", - "https://webaudio.github.io/web-audio-api/#infopanel-for-c464e7b6", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-c464e7b6", - "https://webaudio.github.io/web-audio-api/#infopanel-for-c464e7b6", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-c464e7b6", - "https://webaudio.github.io/web-audio-api/#d9520ae8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-d9520ae8", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-d9520ae8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-d9520ae8", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-d9520ae8", - "https://webaudio.github.io/web-audio-api/#bc1e4fa1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-bc1e4fa1", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-bc1e4fa1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-bc1e4fa1", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-bc1e4fa1", - "https://webaudio.github.io/web-audio-api/#4f6f075f", - "https://webaudio.github.io/web-audio-api/#infopanel-for-4f6f075f", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-4f6f075f", - "https://webaudio.github.io/web-audio-api/#infopanel-for-4f6f075f", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-4f6f075f", - "https://webaudio.github.io/web-audio-api/#2f8afbfe", - "https://webaudio.github.io/web-audio-api/#infopanel-for-2f8afbfe", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-2f8afbfe", - "https://webaudio.github.io/web-audio-api/#infopanel-for-2f8afbfe", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-2f8afbfe", - "https://webaudio.github.io/web-audio-api/#dca2de17", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dca2de17", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dca2de17", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dca2de17", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dca2de17", - "https://webaudio.github.io/web-audio-api/#8855a9aa", - "https://webaudio.github.io/web-audio-api/#infopanel-for-8855a9aa", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-8855a9aa", - "https://webaudio.github.io/web-audio-api/#infopanel-for-8855a9aa", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-8855a9aa", - "https://webaudio.github.io/web-audio-api/#d54f5897", - "https://webaudio.github.io/web-audio-api/#infopanel-for-d54f5897", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-d54f5897", - "https://webaudio.github.io/web-audio-api/#infopanel-for-d54f5897", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-d54f5897", - "https://webaudio.github.io/web-audio-api/#9befea0b", - "https://webaudio.github.io/web-audio-api/#infopanel-for-9befea0b", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-9befea0b", - "https://webaudio.github.io/web-audio-api/#infopanel-for-9befea0b", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-9befea0b", - "https://webaudio.github.io/web-audio-api/#889e932f", - "https://webaudio.github.io/web-audio-api/#infopanel-for-889e932f", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-889e932f", - "https://webaudio.github.io/web-audio-api/#infopanel-for-889e932f", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-889e932f", - "https://webaudio.github.io/web-audio-api/#0a296dfe", - "https://webaudio.github.io/web-audio-api/#infopanel-for-0a296dfe", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-0a296dfe", - "https://webaudio.github.io/web-audio-api/#infopanel-for-0a296dfe", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-0a296dfe", - "https://webaudio.github.io/web-audio-api/#dcf5fafa", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dcf5fafa", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dcf5fafa", - "https://webaudio.github.io/web-audio-api/#infopanel-for-dcf5fafa", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-dcf5fafa", - "https://webaudio.github.io/web-audio-api/#7fb6fbc6", - "https://webaudio.github.io/web-audio-api/#infopanel-for-7fb6fbc6", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-7fb6fbc6", - "https://webaudio.github.io/web-audio-api/#infopanel-for-7fb6fbc6", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-7fb6fbc6", - "https://webaudio.github.io/web-audio-api/#c9dac9f9", - "https://webaudio.github.io/web-audio-api/#infopanel-for-c9dac9f9", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-c9dac9f9", - "https://webaudio.github.io/web-audio-api/#infopanel-for-c9dac9f9", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-c9dac9f9", - "https://webaudio.github.io/web-audio-api/#37afd48d", - "https://webaudio.github.io/web-audio-api/#infopanel-for-37afd48d", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-37afd48d", - "https://webaudio.github.io/web-audio-api/#infopanel-for-37afd48d", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-37afd48d", - "https://webaudio.github.io/web-audio-api/#797018a7", - "https://webaudio.github.io/web-audio-api/#infopanel-for-797018a7", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-797018a7", - "https://webaudio.github.io/web-audio-api/#infopanel-for-797018a7", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-797018a7", - "https://webaudio.github.io/web-audio-api/#ba556545", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ba556545", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ba556545", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ba556545", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ba556545", - "https://webaudio.github.io/web-audio-api/#9eda9b58", - "https://webaudio.github.io/web-audio-api/#infopanel-for-9eda9b58", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-9eda9b58", - "https://webaudio.github.io/web-audio-api/#infopanel-for-9eda9b58", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-9eda9b58", - "https://webaudio.github.io/web-audio-api/#3182eb71", - "https://webaudio.github.io/web-audio-api/#infopanel-for-3182eb71", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-3182eb71", - "https://webaudio.github.io/web-audio-api/#infopanel-for-3182eb71", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-3182eb71", - "https://webaudio.github.io/web-audio-api/#bdbd19d1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-bdbd19d1", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-bdbd19d1", - "https://webaudio.github.io/web-audio-api/#infopanel-for-bdbd19d1", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-bdbd19d1", - "https://webaudio.github.io/web-audio-api/#ec878a66", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ec878a66", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ec878a66", - "https://webaudio.github.io/web-audio-api/#infopanel-for-ec878a66", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-ec878a66", - "https://webaudio.github.io/web-audio-api/#a5c91173", - "https://webaudio.github.io/web-audio-api/#infopanel-for-a5c91173", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-a5c91173", - "https://webaudio.github.io/web-audio-api/#infopanel-for-a5c91173", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-a5c91173", - "https://webaudio.github.io/web-audio-api/#b75bb3bd", - "https://webaudio.github.io/web-audio-api/#infopanel-for-b75bb3bd", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-b75bb3bd", - "https://webaudio.github.io/web-audio-api/#infopanel-for-b75bb3bd", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-b75bb3bd", - "https://webaudio.github.io/web-audio-api/#82ca3efc", - "https://webaudio.github.io/web-audio-api/#infopanel-for-82ca3efc", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-82ca3efc", - "https://webaudio.github.io/web-audio-api/#infopanel-for-82ca3efc", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-82ca3efc", - "https://webaudio.github.io/web-audio-api/#95d7775a", - "https://webaudio.github.io/web-audio-api/#infopanel-for-95d7775a", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-95d7775a", - "https://webaudio.github.io/web-audio-api/#infopanel-for-95d7775a", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-95d7775a", - "https://webaudio.github.io/web-audio-api/#81dd847b", - "https://webaudio.github.io/web-audio-api/#infopanel-for-81dd847b", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-81dd847b", - "https://webaudio.github.io/web-audio-api/#infopanel-for-81dd847b", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-81dd847b", - "https://webaudio.github.io/web-audio-api/#d0b4a948", - "https://webaudio.github.io/web-audio-api/#infopanel-for-d0b4a948", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-d0b4a948", - "https://webaudio.github.io/web-audio-api/#infopanel-for-d0b4a948", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-d0b4a948", - "https://webaudio.github.io/web-audio-api/#5372cca8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-5372cca8", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-5372cca8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-5372cca8", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-5372cca8", - "https://webaudio.github.io/web-audio-api/#495737df", - "https://webaudio.github.io/web-audio-api/#infopanel-for-495737df", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-495737df", - "https://webaudio.github.io/web-audio-api/#infopanel-for-495737df", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-495737df", - "https://webaudio.github.io/web-audio-api/#6aefdf11", - "https://webaudio.github.io/web-audio-api/#infopanel-for-6aefdf11", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-6aefdf11", - "https://webaudio.github.io/web-audio-api/#infopanel-for-6aefdf11", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-6aefdf11", - "https://webaudio.github.io/web-audio-api/#1fc2b625", - "https://webaudio.github.io/web-audio-api/#infopanel-for-1fc2b625", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-1fc2b625", - "https://webaudio.github.io/web-audio-api/#infopanel-for-1fc2b625", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-1fc2b625", - "https://webaudio.github.io/web-audio-api/#1003edc0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-1003edc0", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-1003edc0", - "https://webaudio.github.io/web-audio-api/#infopanel-for-1003edc0", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-1003edc0", - "https://webaudio.github.io/web-audio-api/#e97b1447", - "https://webaudio.github.io/web-audio-api/#infopanel-for-e97b1447", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-e97b1447", - "https://webaudio.github.io/web-audio-api/#infopanel-for-e97b1447", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-e97b1447", - "https://webaudio.github.io/web-audio-api/#8c800cdf", - "https://webaudio.github.io/web-audio-api/#infopanel-for-8c800cdf", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-8c800cdf", - "https://webaudio.github.io/web-audio-api/#infopanel-for-8c800cdf", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-8c800cdf", - "https://webaudio.github.io/web-audio-api/#eec1be2d", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eec1be2d", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eec1be2d", - "https://webaudio.github.io/web-audio-api/#infopanel-for-eec1be2d", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-eec1be2d", - "https://webaudio.github.io/web-audio-api/#92d13070", - "https://webaudio.github.io/web-audio-api/#infopanel-for-92d13070", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-92d13070", - "https://webaudio.github.io/web-audio-api/#infopanel-for-92d13070", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-92d13070", - "https://webaudio.github.io/web-audio-api/#f8de33a3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-f8de33a3", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-f8de33a3", - "https://webaudio.github.io/web-audio-api/#infopanel-for-f8de33a3", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-f8de33a3", - "https://webaudio.github.io/web-audio-api/#efd1ec5d", - "https://webaudio.github.io/web-audio-api/#infopanel-for-efd1ec5d", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-efd1ec5d", - "https://webaudio.github.io/web-audio-api/#infopanel-for-efd1ec5d", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-efd1ec5d", - "https://webaudio.github.io/web-audio-api/#7787d359", - "https://webaudio.github.io/web-audio-api/#infopanel-for-7787d359", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-7787d359", - "https://webaudio.github.io/web-audio-api/#infopanel-for-7787d359", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-7787d359", - "https://webaudio.github.io/web-audio-api/#9cce47fd", - "https://webaudio.github.io/web-audio-api/#infopanel-for-9cce47fd", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-9cce47fd", - "https://webaudio.github.io/web-audio-api/#infopanel-for-9cce47fd", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-9cce47fd", - "https://webaudio.github.io/web-audio-api/#4013a022", - "https://webaudio.github.io/web-audio-api/#infopanel-for-4013a022", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-4013a022", - "https://webaudio.github.io/web-audio-api/#infopanel-for-4013a022", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-4013a022", - "https://webaudio.github.io/web-audio-api/#5f90bbfb", - "https://webaudio.github.io/web-audio-api/#infopanel-for-5f90bbfb", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-5f90bbfb", - "https://webaudio.github.io/web-audio-api/#infopanel-for-5f90bbfb", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-5f90bbfb", - "https://webaudio.github.io/web-audio-api/#e97a9688", - "https://webaudio.github.io/web-audio-api/#infopanel-for-e97a9688", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-e97a9688", - "https://webaudio.github.io/web-audio-api/#infopanel-for-e97a9688", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-e97a9688", - "https://webaudio.github.io/web-audio-api/#f14b47b8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-f14b47b8", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-f14b47b8", - "https://webaudio.github.io/web-audio-api/#infopanel-for-f14b47b8", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-f14b47b8", - "https://webaudio.github.io/web-audio-api/#f3fd9d04", - "https://webaudio.github.io/web-audio-api/#infopanel-for-f3fd9d04", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-f3fd9d04", - "https://webaudio.github.io/web-audio-api/#infopanel-for-f3fd9d04", - "https://webaudio.github.io/web-audio-api/#infopaneltitle-for-f3fd9d04", - "https://webaudio.github.io/web-audio-api/#references", - "https://webaudio.github.io/web-audio-api/#normative", - "https://webaudio.github.io/web-audio-api/#biblio-dom", - "https://webaudio.github.io/web-audio-api/#biblio-ecmascript", - "https://webaudio.github.io/web-audio-api/#biblio-fetch", - "https://webaudio.github.io/web-audio-api/#biblio-hr-time-3", - "https://webaudio.github.io/web-audio-api/#biblio-html", - "https://webaudio.github.io/web-audio-api/#biblio-infra", - "https://webaudio.github.io/web-audio-api/#biblio-mediacapture-streams", - "https://webaudio.github.io/web-audio-api/#biblio-mimesniff", - "https://webaudio.github.io/web-audio-api/#biblio-rfc2119", - "https://webaudio.github.io/web-audio-api/#biblio-security-privacy-questionnaire", - "https://webaudio.github.io/web-audio-api/#biblio-webidl", - "https://webaudio.github.io/web-audio-api/#biblio-webrtc", - "https://webaudio.github.io/web-audio-api/#informative", - "https://webaudio.github.io/web-audio-api/#biblio-2dcontext", - "https://webaudio.github.io/web-audio-api/#biblio-mediastream-recording", - "https://webaudio.github.io/web-audio-api/#biblio-webaudio-usecases", - "https://webaudio.github.io/web-audio-api/#biblio-webcodecs", - "https://webaudio.github.io/web-audio-api/#biblio-webgl", - "https://webaudio.github.io/web-audio-api/#biblio-xhr", - "https://webaudio.github.io/web-audio-api/#idl-index", - "https://webaudio.github.io/web-audio-api/#mathjax", - "https://webaudio.github.io/web-audio-api/#MathJax_Font_Test" - ] -} \ No newline at end of file diff --git a/ed/links/webaudio.json b/ed/links/webaudio.json deleted file mode 100644 index ffd7563f07b9..000000000000 --- a/ed/links/webaudio.json +++ /dev/null @@ -1,523 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://webaudio.github.io/web-audio-api/" - }, - "links": { - "rawlinks": { - "http://www.w3.org/2011/audio/": {}, - "https://audiofingerprint.openwpm.com/": {}, - "https://datatracker.ietf.org/doc/html/rfc2119": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/AnalyserNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/fftSize": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/frequencyBinCount": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getByteFrequencyData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getByteTimeDomainData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatFrequencyData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatTimeDomainData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/maxDecibels": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/minDecibels": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/smoothingTimeConstant": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/AudioBuffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/copyFromChannel": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/copyToChannel": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/duration": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/getChannelData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/length": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/numberOfChannels": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/sampleRate": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/AudioBufferSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/buffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/detune": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/loop": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/loopEnd": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/loopStart": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/playbackRate": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/start": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/AudioContext": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/baseLatency": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/close": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaElementSource": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaStreamDestination": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaStreamSource": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaStreamTrackSource": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/getOutputTimestamp": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/outputLatency": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/resume": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/setSinkId": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/sinkId": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/sinkchange_event": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/suspend": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode/maxChannelCount": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/forwardX": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/forwardY": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/forwardZ": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/positionX": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/positionY": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/positionZ": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/upX": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/upY": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/upZ": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/channelCount": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/channelCountMode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/channelInterpretation": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/connect": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/context": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/disconnect": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/numberOfInputs": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/numberOfOutputs": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/cancelAndHoldAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/cancelScheduledValues": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/defaultValue": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/exponentialRampToValueAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/linearRampToValueAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/maxValue": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/minValue": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setTargetAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setValueAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setValueCurveAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/value": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParamMap": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/ended_event": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/start": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/stop": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioSinkInfo": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioSinkInfo/type": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorklet": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/currentFrame": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/currentTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/registerProcessor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/sampleRate": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/AudioWorkletNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/parameters": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/port": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/processorerror_event": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor/AudioWorkletProcessor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor/port": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/audioWorklet": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createAnalyser": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createBiquadFilter": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createBuffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createBufferSource": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createChannelMerger": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createChannelSplitter": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createConstantSource": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createConvolver": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createDelay": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createDynamicsCompressor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createGain": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createIIRFilter": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createOscillator": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createPanner": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createPeriodicWave": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createStereoPanner": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createWaveShaper": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/currentTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/decodeAudioData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/destination": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/listener": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/sampleRate": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/state": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/statechange_event": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/BiquadFilterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/Q": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/detune": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/frequency": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/gain": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/getFrequencyResponse": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/type": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ChannelMergerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ChannelMergerNode/ChannelMergerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ChannelSplitterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ChannelSplitterNode/ChannelSplitterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConstantSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConstantSourceNode/ConstantSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConstantSourceNode/offset": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConvolverNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConvolverNode/ConvolverNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConvolverNode/buffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConvolverNode/normalize": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DelayNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DelayNode/DelayNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DelayNode/delayTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/DynamicsCompressorNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/attack": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/knee": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/ratio": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/reduction": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/release": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/threshold": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/GainNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/GainNode/GainNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/GainNode/gain": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/IIRFilterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/IIRFilterNode/IIRFilterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/IIRFilterNode/getFrequencyResponse": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaElementAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaElementAudioSourceNode/MediaElementAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaElementAudioSourceNode/mediaElement": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/stream": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode/MediaStreamAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode/mediaStream": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackAudioSourceNode/MediaStreamTrackAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioCompletionEvent": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioCompletionEvent/OfflineAudioCompletionEvent": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioCompletionEvent/renderedBuffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/OfflineAudioContext": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/complete_event": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/length": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/resume": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/startRendering": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/suspend": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode/OscillatorNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode/detune": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode/frequency": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode/setPeriodicWave": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode/type": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/PannerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/coneInnerAngle": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/coneOuterAngle": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/coneOuterGain": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/distanceModel": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/maxDistance": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/orientationX": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/orientationY": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/orientationZ": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/panningModel": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/positionX": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/positionY": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/positionZ": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/refDistance": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/rolloffFactor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PeriodicWave": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PeriodicWave/PeriodicWave": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/StereoPannerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/StereoPannerNode/StereoPannerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/StereoPannerNode/pan": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode/WaveShaperNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode/curve": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode/oversample": {}, - "https://dom.spec.whatwg.org/": {}, - "https://en.wikipedia.org/wiki/Aliasing": {}, - "https://en.wikipedia.org/wiki/All-pass_filter": { - "anchors": [ - "Digital_Implementation" - ] - }, - "https://en.wikipedia.org/wiki/Band-pass_filter": {}, - "https://en.wikipedia.org/wiki/Band-stop_filter": {}, - "https://en.wikipedia.org/wiki/Cent_(music)": {}, - "https://en.wikipedia.org/wiki/Group_delay": {}, - "https://en.wikipedia.org/wiki/Head-related_transfer_function": {}, - "https://en.wikipedia.org/wiki/High-pass_filter": {}, - "https://en.wikipedia.org/wiki/Infinite_impulse_response": {}, - "https://en.wikipedia.org/wiki/Low-pass_filter": {}, - "https://en.wikipedia.org/wiki/Q_factor": {}, - "https://fetch.spec.whatwg.org/": { - "anchors": [ - "fetching" - ] - }, - "https://github.com/WebAudio/web-audio-api/issues/new": {}, - "https://html.spec.whatwg.org/": { - "anchors": [ - "cors-cross-origin", - "unloading-document-cleanup-steps" - ] - }, - "https://html.spec.whatwg.org/multipage/": {}, - "https://html.spec.whatwg.org/multipage/browsers.html": { - "anchors": [ - "origin" - ] - }, - "https://html.spec.whatwg.org/multipage/infrastructure.html": { - "anchors": [ - "in-parallel" - ] - }, - "https://html.spec.whatwg.org/multipage/media.html": { - "anchors": [ - "media-element-event-task-source", - "queue-a-media-element-task" - ] - }, - "https://html.spec.whatwg.org/multipage/web-messaging.html": { - "anchors": [ - "ports-and-garbage-collection" - ] - }, - "https://html.spec.whatwg.org/multipage/webappapis.html": { - "anchors": [ - "task-queue" - ] - }, - "https://infra.spec.whatwg.org/": {}, - "https://lists.w3.org/Archives/Public/public-audio/": {}, - "https://mimesniff.spec.whatwg.org/": { - "anchors": [ - "matching-an-audio-or-video-type-pattern" - ] - }, - "https://murdoch.is/talks/eurobsdcon07hotornot.pdf": {}, - "https://openal.org/": {}, - "https://padenot.github.io/web-audio-perf/": { - "anchors": [ - "latency" - ] - }, - "https://pdfs.semanticscholar.org/cfd2/6a17234696593919df3f880a235d6ac5871d.pdf": {}, - "https://tc39.es/ecma262": { - "anchors": [ - "sec-isconstructor", - "sec-get-o-p", - "sec-ecmascript-data-types-and-values" - ] - }, - "https://tc39.es/ecma262/": { - "anchors": [ - "sec-setintegritylevel", - "sec-returnifabrupt-shorthands", - "sec-iscallable", - "sec-throwcompletion", - "sec-native-error-types-used-in-this-standard-typeerror", - "sec-completion-record-type-specification-type" - ] - }, - "https://tc39.es/ecma262/multipage/": {}, - "https://tc39.github.io/ecma262/": { - "anchors": [ - "sec-createbytedatablock", - "sec-get-o-p", - "sec-completion-record-specification-type", - "sec-call", - "sec-toboolean" - ] - }, - "https://w3c.github.io/hr-time/": { - "anchors": [ - "sec-privacy" - ] - }, - "https://w3c.github.io/mediacapture-main/": {}, - "https://w3c.github.io/mediacapture-record/": {}, - "https://w3c.github.io/webcodecs/": {}, - "https://w3c.github.io/webrtc-pc/": {}, - "https://w3ctag.github.io/security-questionnaire/": { - "anchors": [ - "questions" - ] - }, - "https://webaudio.github.io/Audio-EQ-Cookbook/audio-eq-cookbook.html": {}, - "https://webidl.spec.whatwg.org/": { - "anchors": [ - "es-to-sequence", - "dictionary-to-es", - "web-idl-arguments-list", - "web-idl-arguments-list-converting" - ] - }, - "https://www.khronos.org/registry/webgl/specs/latest/2.0/": {}, - "https://www.w3.org/TR/mediacapture-fromelement/": { - "anchors": [ - "dom-htmlmediaelement-capturestream" - ] - }, - "https://www.w3.org/TR/mediacapture-streams/": { - "anchors": [ - "media-track-supported-constraints" - ] - }, - "https://www.w3.org/TR/webaudio-usecases/": {}, - "https://www.w3.org/groups/wg/audio": {}, - "https://www.w3.org/groups/wg/audio/ipr": {}, - "https://www.w3.org/html/wg/drafts/2dcontext/html5_canvas_CR/": {}, - "https://www.w3.org/policies/patent-policy/20200915/": { - "anchors": [ - "def-essential", - "sec-Disclosure" - ] - }, - "https://www.w3.org/policies/process/20231103/": {}, - "https://xhr.spec.whatwg.org/": {} - }, - "autolinks": { - "https://dom.spec.whatwg.org/": { - "anchors": [ - "eventtarget", - "event", - "concept-event-fire", - "dictdef-eventinit" - ] - }, - "https://html.spec.whatwg.org/multipage/document-sequences.html": { - "anchors": [ - "fully-active" - ] - }, - "https://html.spec.whatwg.org/multipage/indices.html": { - "anchors": [ - "event-close" - ] - }, - "https://html.spec.whatwg.org/multipage/interaction.html": { - "anchors": [ - "sticky-activation" - ] - }, - "https://html.spec.whatwg.org/multipage/media.html": { - "anchors": [ - "audio", - "video", - "htmlmediaelement", - "queue-a-media-element-task" - ] - }, - "https://html.spec.whatwg.org/multipage/nav-history-apis.html": { - "anchors": [ - "concept-document-window" - ] - }, - "https://html.spec.whatwg.org/multipage/structured-data.html": { - "anchors": [ - "structuredserializewithtransfer", - "structureddeserialize", - "structuredserialize" - ] - }, - "https://html.spec.whatwg.org/multipage/web-messaging.html": { - "anchors": [ - "messagechannel", - "dom-messagechannel-port1", - "dom-messagechannel-port2", - "messageport" - ] - }, - "https://html.spec.whatwg.org/multipage/webappapis.html": { - "anchors": [ - "eventhandler", - "event-handlers", - "concept-relevant-global", - "current-settings-object", - "queue-a-task", - "errorevent", - "prepare-to-run-script", - "prepare-to-run-a-callback", - "clean-up-after-running-a-callback", - "clean-up-after-running-script", - "perform-a-microtask-checkpoint" - ] - }, - "https://html.spec.whatwg.org/multipage/worklets.html": { - "anchors": [ - "worklet", - "worklet-global-scope-type", - "worklet-destination-type", - "dom-worklet-addmodule", - "terminate-a-worklet-global-scope", - "workletglobalscope" - ] - }, - "https://infra.spec.whatwg.org/": { - "anchors": [ - "map-exists", - "code-unit", - "struct", - "struct-item", - "ordered-map" - ] - }, - "https://tc39.github.io/ecma262/": { - "anchors": [ - "sec-data-blocks" - ] - }, - "https://w3c.github.io/hr-time/": { - "anchors": [ - "dom-domhighrestimestamp" - ] - }, - "https://w3c.github.io/mediacapture-main/": { - "anchors": [ - "dom-mediastream", - "dom-mediastreamtrack", - "dom-mediadevices-enumeratedevices", - "dom-mediadevices" - ] - }, - "https://webidl.spec.whatwg.org/": { - "anchors": [ - "idl-undefined", - "idl-DOMException", - "Exposed", - "idl-float", - "idl-double", - "idl-unsigned-long", - "SameObject", - "SecureContext", - "idl-sequence", - "idl-promise", - "idl-ArrayBuffer", - "notsupportederror", - "indexsizeerror", - "invalidstateerror", - "this", - "a-promise-rejected-with", - "buffersource-detached", - "dfn-detach", - "datacloneerror", - "encodingerror", - "idl-DOMString", - "invalidaccesserror", - "notallowederror", - "notfounderror", - "idl-Float32Array", - "unknownerror", - "arraybufferview-write", - "dfn-get-buffer-source-copy", - "exceptiondef-rangeerror", - "idl-Uint8Array", - "buffersource-byte-length", - "idl-boolean", - "dfn-conforming-implementation", - "idl-long", - "idl-object", - "Global", - "idl-unsigned-long-long", - "exceptiondef-typeerror", - "construct-a-callback-function", - "idl-record", - "idl-frozen-array" - ] - }, - "https://www.w3.org/TR/mediacapture-streams/": { - "anchors": [ - "dom-mediadevices-getusermedia" - ] - } - } - } -} \ No newline at end of file diff --git a/ed/refs/webaudio.json b/ed/refs/webaudio.json deleted file mode 100644 index fdacd7ecc844..000000000000 --- a/ed/refs/webaudio.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://webaudio.github.io/web-audio-api/" - }, - "refs": { - "normative": [ - { - "name": "DOM", - "url": "https://dom.spec.whatwg.org/" - }, - { - "name": "ECMASCRIPT", - "url": "https://tc39.es/ecma262/multipage/" - }, - { - "name": "FETCH", - "url": "https://fetch.spec.whatwg.org/" - }, - { - "name": "HR-TIME-3", - "url": "https://w3c.github.io/hr-time/" - }, - { - "name": "HTML", - "url": "https://html.spec.whatwg.org/multipage/" - }, - { - "name": "INFRA", - "url": "https://infra.spec.whatwg.org/" - }, - { - "name": "MEDIACAPTURE-STREAMS", - "url": "https://w3c.github.io/mediacapture-main/" - }, - { - "name": "MIMESNIFF", - "url": "https://mimesniff.spec.whatwg.org/" - }, - { - "name": "RFC2119", - "url": "https://datatracker.ietf.org/doc/html/rfc2119" - }, - { - "name": "SECURITY-PRIVACY-QUESTIONNAIRE", - "url": "https://w3ctag.github.io/security-questionnaire/" - }, - { - "name": "WEBIDL", - "url": "https://webidl.spec.whatwg.org/" - }, - { - "name": "WEBRTC", - "url": "https://w3c.github.io/webrtc-pc/" - } - ], - "informative": [ - { - "name": "2DCONTEXT", - "url": "https://www.w3.org/html/wg/drafts/2dcontext/html5_canvas_CR/" - }, - { - "name": "MEDIASTREAM-RECORDING", - "url": "https://w3c.github.io/mediacapture-record/" - }, - { - "name": "WEBAUDIO-USECASES", - "url": "https://www.w3.org/TR/webaudio-usecases/" - }, - { - "name": "WEBCODECS", - "url": "https://w3c.github.io/webcodecs/" - }, - { - "name": "WEBGL", - "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/" - }, - { - "name": "XHR", - "url": "https://xhr.spec.whatwg.org/" - } - ] - } -} \ No newline at end of file diff --git a/tr/algorithms/webaudio.json b/tr/algorithms/webaudio.json deleted file mode 100644 index 0d8af867f32c..000000000000 --- a/tr/algorithms/webaudio.json +++ /dev/null @@ -1,2283 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" - }, - "algorithms": [ - { - "name": "BaseAudioContext.createPeriodicWave()", - "html": "When calling this method,\n execute these steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "if ( pan<= 0 ) { \n outputL= inputL+ inputR* gainL; \n outputR= inputR* gainR; \n} else { \n outputL= inputL* gainL; \n outputR= inputR+ inputL* gainR; \n} \n
If real and imag are not of the same\nlength, an IndexSizeError MUST be thrown.
Let o be a new object of type PeriodicWaveOptions.
Respectively set the real and imag parameters passed to this factory method to\nthe attributes of the same name on o.
Set the disableNormalization attribute on o to the value of the disableNormalization attribute of the constraints attribute passed to the factory\nmethod.
Construct a new PeriodicWave p, passing the BaseAudioContext this factory\nmethod has been called on as a first argument, and o.
Return p.
" - } - ] - }, - { - "name": "decodeAudioData()", - "html": "WhendecodeAudioData is\n called, the following steps MUST be performed on the control\n thread:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.
Let promise be a new Promise.
" - }, - { - "html": "IfaudioData is detached, execute the following steps:",
- "rationale": "append",
- "steps": [
- {
- "html": "Append promise to [[pending promises]].
Detach the audioData ArrayBuffer.\nIf this operations throws, jump to the step 3.
Queue a decoding operation to be performed on another thread.
" - } - ] - }, - { - "html": "Else, execute the following error steps:", - "rationale": "let", - "steps": [ - { - "html": "Let error be a DataCloneError.
Reject promise with error, and remove it from [[pending promises]].
Queue a media element task to invoke errorCallback with error.
Return promise.
" - } - ] - }, - { - "name": "queue a decode operation", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decoding-thread", - "html": "When queuing a decoding operation to be performed on another\n thread, the following steps MUST happen on a thread that is not\n the control thread nor the rendering thread,\n called thedecoding thread.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let can decode be a boolean flag, initially set to true.
" - }, - { - "html": "Attempt to determine the MIME type of audioData, using MIME Sniffing § 6.2 Matching an audio or video type pattern. If the audio or\nvideo type pattern matching algorithm returns undefined,\nset can decode to false.
If can decode is true, attempt to decode the encoded audioData into linear PCM. In case of\nfailure, set can decode to false.
If the media byte-stream contains multiple audio tracks, only decode the\nfirst track to linear pcm.
" - }, - { - "html": "If can decode isfalse, queue a media element task to execute the following steps:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let error be a DOMException whose name is EncodingError.",
- "rationale": "reject",
- "steps": [
- {
- "html": "Reject promise with error, and remove it from [[pending promises]].
If errorCallback is\nnot missing, invoke errorCallback with error.
Take the result, representing the decoded linear PCM audio data, and resample it to the sample-rate of the BaseAudioContext if it is different from\nthe sample-rate of audioData.
Let buffer be an AudioBuffer containing the final result\n(after possibly performing sample-rate conversion).
Resolve promise with buffer.
" - }, - { - "html": "If successCallback is not missing, invoke successCallback with buffer.
InvalidStateError\" and abort these steps.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let context be a new AudioContext object.
Set a [[control thread state]] to suspended on context.
Set a [[rendering thread state]] to suspended on context.
Let messageChannel be a new MessageChannel.
Let controlSidePort be the value of messageChannel’s port1 attribute.
Let renderingSidePort be the value of messageChannel’s port2 attribute.
Let serializedRenderingSidePort be the result of StructuredSerializeWithTransfer(renderingSidePort,\n« renderingSidePort »).
" - }, - { - "html": "Set this audioWorklet's port to controlSidePort.
Queue a control message to set the\nMessagePort on the AudioContextGlobalScope, with serializedRenderingSidePort.
" - }, - { - "html": "IfcontextOptions is given, perform the following\nsubsteps:",
- "rationale": "if",
- "steps": [
- {
- "html": "If sinkId is specified, let sinkId be\nthe value of contextOptions.sinkId and\nrun the following substeps:",
- "rationale": "if",
- "steps": [
- {
- "html": "If both sinkId and [[sink ID]] are a type of DOMString, and they are equal to each other, abort these\nsubsteps.
If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of AudioSinkInfo, and type in sinkId and type in [[sink ID]] are equal, abort these substeps.
Let validationResult be the return value of sink identifier validation of sinkId.
" - }, - { - "html": "If validationResult is a type of DOMException, throw an\nexception with validationResult and abort these substeps.
If sinkId is a type of DOMString, set [[sink ID]] to sinkId and abort these\nsubsteps.
If sinkId is a type of AudioSinkOptions, set [[sink ID]] to a new instance of AudioSinkInfo created with the value of type of sinkId.
Set the internal latency of context according to contextOptions.,\nas described in latencyHintlatencyHint.
contextOptions.sampleRate is specified, set the sampleRate of context to this value. Otherwise, follow these substeps:",
- "rationale": "if",
- "steps": [
- {
- "html": "If sinkId is the empty string or a type of AudioSinkOptions, use the sample rate of the default output\ndevice. Abort these substeps.
If sinkId is a DOMString, use the sample rate of the\noutput device identified by sinkId. Abort these substeps.
If context is allowed to start, send a control message to start processing.
" - }, - { - "html": "Return context.
" - } - ] - }, - { - "name": "sending a control message to start processing", - "html": "Sending a control message to start processing means\nexecuting the following steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let document be the current settings object's relevant global object's associated Document.
" - }, - { - "html": "Attempt to acquire system resources to use a following audio output device\nbased on[[sink ID]] for rendering:",
- "rationale": "if",
- "steps": [
- {
- "html": "If resource acquisition fails, execute the following steps:",
- "rationale": "if",
- "steps": [
- {
- "html": "If document is not allowed to use the feature identified by \"speaker-selection\", abort these substeps.
Queue a media element task to fire an event named error at the AudioContext, and abort the following\nsteps.
Set this [[rendering thread state]] to running on the AudioContext.
Set the state attribute of the AudioContext to \"running\".
fire an event named statechange at the AudioContext.
MessagePort on the AudioWorkletGlobalScope means executing the following steps, on\nthe rendering thread, with serializedRenderingSidePort, that has been transfered to\nthe AudioWorkletGlobalScope:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let deserializedPort be the result of StructuredDeserialize(serializedRenderingSidePort,\nthe current Realm).
" - }, - { - "html": "Set port to deserializedPort.
If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.
Let promise be a new Promise.
" - }, - { - "html": "If the [[control thread state]] flag on the AudioContext is closed reject the promise\nwith InvalidStateError, abort these steps,\nreturning promise.
Set the [[control thread state]] flag on the AudioContext to closed.
Queue a control message to close the AudioContext.
Return promise.
" - } - ] - }, - { - "name": "run a control message to close an AudioContext", - "html": "Running a control message to close anAudioContext means running these steps on the rendering thread:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Attempt to release system resources.
" - }, - { - "html": "Set the [[rendering thread state]] to suspended.
If this control message is being run in a reaction to the\ndocument being unloaded, abort this algorithm.
" - }, - { - "html": " queue a media element task to execute the following steps:", - "rationale": "resolve", - "steps": [ - { - "html": "Resolve promise.
" - }, - { - "html": "If thestate attribute of the AudioContext is not already \"closed\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the AudioContext to \"closed\".
queue a media element task to fire\nan event named statechange at the AudioContext.
If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.
Let promise be a new Promise.
" - }, - { - "html": "If the [[control thread state]] on the AudioContext is closed reject the\npromise with InvalidStateError, abort these steps,\nreturning promise.
Set [[suspended by user]] to false.
If the context is not allowed to start, append promise to [[pending promises]] and [[pending resume promises]] and abort these steps, returning promise.
Set the [[control thread state]] on the AudioContext to running.
Queue a control message to resume the AudioContext.
Return promise.
" - } - ] - }, - { - "name": "run a control message in AudioContext", - "href": "https://www.w3.org/TR/webaudio/#context-resume", - "html": "Running a control message to resume anAudioContext means running these steps on the rendering thread:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Attempt to acquire system resources.
" - }, - { - "html": "Set the [[rendering thread state]] on the AudioContext to running.
Start rendering the audio graph.
" - }, - { - "html": "In case of failure, queue a media element task to execute the following steps:", - "rationale": "reject", - "steps": [ - { - "html": "Reject all promises from [[pending resume promises]] in order, then clear [[pending resume promises]].
Additionally, remove those promises from [[pending\npromises]].
Resolve all promises from [[pending resume promises]] in order.
Clear [[pending resume promises]]. Additionally, remove those\npromises from [[pending promises]].
Resolve promise.
" - }, - { - "html": "If thestate attribute of the AudioContext is not already \"running\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the AudioContext to \"running\".
Queue a media element task to fire an event named statechange at the AudioContext.
If this's relevant global object's associated Document is not fully active then return a promise rejected with \"InvalidStateError\" DOMException.
Let promise be a new Promise.
" - }, - { - "html": "If the [[control thread state]] on the AudioContext is closed reject the promise\nwith InvalidStateError, abort these steps,\nreturning promise.
Append promise to [[pending promises]].
Set [[suspended by user]] to true.
Set the [[control thread state]] on the AudioContext to suspended.
Queue a control message to suspend the AudioContext.
Return promise.
" - } - ] - }, - { - "name": "run a control message to suspend an AudioContext", - "html": "Running a control message to suspend anAudioContext means running these steps on the rendering thread:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Attempt to release system resources.
" - }, - { - "html": "Set the [[rendering thread state]] on the AudioContext to suspended.
Resolve promise.
" - }, - { - "html": "If thestate attribute of the AudioContext is not already \"suspended\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the AudioContext to \"suspended\".
Queue a media element task to fire an event named statechange at the AudioContext.
Let sinkId be the method’s first argument.
" - }, - { - "html": "If sinkId is equal to [[sink ID]], return a\npromise, resolve it immediately and abort these steps.
Let validationResult be the return value of sink identifier validation of sinkId.
" - }, - { - "html": "If validationResult is not null, return a promise\nrejected with validationResult. Abort these steps.
Let p be a new promise.
" - }, - { - "html": "Send a control message with p and sinkId to start\nprocessing.
" - }, - { - "html": "Return p.
" - } - ] - }, - { - "name": "run a control message for setSinkId", - "html": "Sending a control message to start processing duringsetSinkId() means executing the following steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let p be the promise passed into this algorithm.
" - }, - { - "html": "Let sinkId be the sink identifier passed into this algorithm.
" - }, - { - "html": "If both sinkId and [[sink ID]] are a type of DOMString, and they are equal to each other, queue a media element task to resolve p and abort these steps.
If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of AudioSinkInfo, and type in sinkId and type in [[sink ID]] are equal, queue a media element task to resolve p and abort these steps.
Let wasRunning be true.
" - }, - { - "html": "Set wasRunning to false if the [[rendering thread state]] on\nthe AudioContext is \"suspended\".
Pause the renderer after processing the current render quantum.
" - }, - { - "html": "Attempt to release system resources.
" - }, - { - "html": "If wasRunning is true:", - "rationale": "set", - "steps": [ - { - "html": "Set the [[rendering thread state]] on the AudioContext to \"suspended\".
state attribute of the AudioContext is not already \"suspended\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the AudioContext to \"suspended\".
Fire an event named statechange at the\nassociated AudioContext.
Attempt to acquire system resources to use\na following audio output device based on [[sink ID]] for rendering:
The default audio output device for the empty string.
\nA audio output device identified by [[sink ID]].
In case of failure, reject p with \"InvalidAccessError\" abort\nthe following steps.
If sinkId is a type of DOMString, set [[sink ID]] to sinkId. Abort these steps.
If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of DOMString,\nset [[sink ID]] to a new instance of AudioSinkInfo created with the value of type of sinkId.
If sinkId is a type of AudioSinkOptions and [[sink ID]] is a type of AudioSinkInfo,\nset type of [[sink ID]] to\nthe type value of sinkId.
Resolve p.
" - }, - { - "html": "Fire an event named sinkchange at the\nassociated AudioContext.
Set the [[rendering thread state]] on the AudioContext to \"running\".
state attribute of the AudioContext is not already \"running\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the AudioContext to \"running\".
Fire an event named statechange at the\nassociated AudioContext.
Let document be the current settings object’s associated Document.
" - }, - { - "html": "Let sinkIdArg be the value passed in to this algorithm.
" - }, - { - "html": "If document is not allowed to use the feature identified by \"speaker-selection\", return a new DOMException whose name\nis \"NotAllowedError\".
If sinkIdArg is a type of DOMString but it is not equal to the empty\nstring or it does not match any audio output device identified by the\nresult that would be provided by enumerateDevices(),\nreturn a new DOMException whose name is \"NotFoundError\".
Return null.
InvalidStateError and abort these steps.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Set the [[control thread state]] for c to \"suspended\".
Set the [[rendering thread state]] for c to \"suspended\".
[[render quantum size]] for this OfflineAudioContext,\n based on the value of the renderSizeHint:",
- "rationale": "if",
- "steps": [
- {
- "html": "If it has the default value of \"default\" or \"hardware\", set the [[render quantum size]] private\n slot to 128.
Else, if an integer has been passed, the User-Agent can decide to\n honour this value by setting it to the [[render quantum size]] private slot.
Construct an AudioDestinationNode with its channelCount set to contextOptions.numberOfChannels.
Let messageChannel be a new MessageChannel.
Let controlSidePort be the value of messageChannel’s port1 attribute.
Let renderingSidePort be the value of messageChannel’s port2 attribute.
Let serializedRenderingSidePort be the result of StructuredSerializeWithTransfer(renderingSidePort,\n« renderingSidePort »).
" - }, - { - "html": "Set this audioWorklet's port to controlSidePort.
Queue a control message to set the\nMessagePort on the AudioContextGlobalScope, with serializedRenderingSidePort.
" - } - ] - }, - { - "name": "OfflineAudioContext.startRendering()", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-rendering-started-slot", - "html": "Let[[rendering started]] be an internal slot of this OfflineAudioContext. Initialize this slot to false. \n When startRendering is\n called, the following steps MUST be performed on the control\n thread:
InvalidStateError\" DOMException."
- },
- {
- "html": "If the [[rendering started]] slot on the OfflineAudioContext is true, return a rejected\n promise with InvalidStateError, and abort these\n steps."
- },
- {
- "html": "Set the [[rendering started]] slot of the OfflineAudioContext to true."
- },
- {
- "html": "Let promise be a new promise."
- },
- {
- "html": "Create a new AudioBuffer, with a number of\n channels, length and sample rate equal respectively to the numberOfChannels, length and sampleRate values passed to this instance’s\n constructor in the contextOptions parameter.\n Assign this buffer to an internal slot [[rendered buffer]] in the OfflineAudioContext."
- },
- {
- "html": "If an exception was thrown during the preceding AudioBuffer constructor call, reject promise with this exception."
- },
- {
- "html": "Otherwise, in the case that the buffer was successfully\n constructed, begin offline rendering."
- },
- {
- "html": "Append promise to [[pending promises]]."
- },
- {
- "html": "Return promise."
- }
- ]
- },
- {
- "name": "begin offline rendering",
- "href": "https://www.w3.org/TR/webaudio/#begin-offline-rendering",
- "html": "To begin offline rendering, the following steps MUST\n happen on a rendering thread that is created for the\n occasion.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Given the current connections and scheduled changes, start\n rendering length sample-frames of audio into [[rendered buffer]]"
- },
- {
- "html": "For every render quantum, check and suspend rendering if necessary."
- },
- {
- "html": "If a suspended context is resumed, continue to render the\n buffer."
- },
- {
- "html": "Once the rendering is complete, queue a media element task to execute the following steps:",
- "rationale": "resolve",
- "steps": [
- {
- "html": "Resolve the promise created by startRendering() with [[rendered buffer]]."
- },
- {
- "html": "Queue a media element task to fire an event named complete at the OfflineAudioContext using OfflineAudioCompletionEvent whose renderedBuffer property is set to [[rendered buffer]]."
- }
- ]
- }
- ]
- },
- {
- "name": "OfflineAudioContext::resume()",
- "html": "When resume is called,\n execute these steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If this's relevant global object's associated Document is\nnot fully active then return a promise rejected with \"InvalidStateError\" DOMException.
Let promise be a new Promise.
" - }, - { - "html": "Abort these steps and reject promise with InvalidStateError when any of following conditions is true:
The [[control thread state]] on the OfflineAudioContext is closed.
The [[rendering started]] slot on the OfflineAudioContext is false.
Set the [[control thread state]] flag on the OfflineAudioContext to running.
Queue a control message to resume the OfflineAudioContext.
Return promise.
" - } - ] - }, - { - "name": "run a control message in OfflineAudioContext", - "html": "Running a control message to resume anOfflineAudioContext means running these steps on the rendering thread:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Set the [[rendering thread state]] on the OfflineAudioContext to running.
Start rendering the audio graph.
" - }, - { - "html": "In case of failure, queue a media element task to reject promise and abort the remaining steps.
" - }, - { - "html": " queue a media element task to execute the following steps:", - "rationale": "resolve", - "steps": [ - { - "html": "Resolve promise.
" - }, - { - "html": "If thestate attribute of the OfflineAudioContext is not already \"running\":",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the state attribute of the OfflineAudioContext to \"running\".
Queue a media element task to fire an event named statechange at the OfflineAudioContext.
If any of the values in options lie outside its nominal range, throw a NotSupportedError exception and abort the following steps.
Let b be a new AudioBuffer object.
Respectively assign the values of the attributes numberOfChannels, length, sampleRate of the AudioBufferOptions passed\nin the constructor to the internal slots [[number of channels]], [[length]], [[sample rate]].
Set the internal slot [[internal data]] of this AudioBuffer to the result of calling CreateByteDataBlock(.[[length]] * [[number of channels]])
Return b.
" - } - ] - }, - { - "name": "acquire the content of an AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#acquire-the-content", - "html": "When an acquire the content operation occurs on anAudioBuffer, run the following steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If any of the AudioBuffer's ArrayBuffers are detached, return true, abort these steps, and\nreturn a zero-length channel data buffer to the invoker.
Detach all ArrayBuffers for arrays previously returned\nby getChannelData() on this AudioBuffer.
Retain the underlying [[internal data]] from those ArrayBuffers and return references to them to the\ninvoker.
Attach ArrayBuffers containing copies of the data to\nthe AudioBuffer, to be returned by the next call to getChannelData().
AudioNode of a particular type n using its factory method, called on a BaseAudioContext c, execute these steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let node be a new object of type n.
" - }, - { - "html": "Let option be a dictionary of the type associated to the interface associated to this factory method.
" - }, - { - "html": "For each parameter passed to the factory method, set the\ndictionary member of the same name on option to the\nvalue of this parameter.
" - }, - { - "html": "Call the constructor for n on node with c and option as arguments.
" - }, - { - "html": "Return node
" - } - ] - }, - { - "name": "initialize an AudioNode", - "href": "https://www.w3.org/TR/webaudio/#audionode-constructor-init", - "html": "Initializing an object o that inherits fromAudioNode means executing the following\n steps, given the arguments context and dict passed to\n the constructor of this interface.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Set o’s associated BaseAudioContext to context.
Set its value for numberOfInputs, numberOfOutputs, channelCount, channelCountMode, channelInterpretation to the\ndefault value for this\nspecific interface outlined in the section for each AudioNode.
If k is the name of an AudioParam on this\ninterface, set the value attribute of this AudioParam to v.
Else if k is the name of an attribute on this\ninterface, set the object associated with this attribute to v.
" - } - ] - } - ] - }, - { - "name": "cancel and hold", - "html": "LetcancelTime. Then",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let
Let
If
Otherwise, go to step 4.
" - } - ] - }, - { - "html": "IfIf setTarget event,
setValueCurve with a start\ntime of If
Otherwise,
", - "ignored": [ - "Effectively replace this event with a setValueCurve event with a start time of t3t3t_3 and a new duration of tc−t3tc−t3t_c-t_3. However, this is not a true replacement; this automation MUST take care to produce the same output as the original, and not one computed using a different duration. (That would cause sampling of the value curve in a slightly different way, producing different results.) Go to step 5." - ] - } - ] - } - ] - }, - { - "html": "Remove all events with time greater than
paramIntrinsicValue will be calculated at\neach time, which is either the value set directly to\nthe value attribute, or, if there are\nany automation\nevents with times before or at this time, the\nvalue as calculated from these events. If automation\nevents are removed from a given time range, then the paramIntrinsicValue value will remain\nunchanged and stay at its previous value until either\nthe value attribute is directly set, or\nautomation events are added for the time range.
Set [[current value]] to the value of paramIntrinsicValue at the beginning of\nthis render quantum.
paramComputedValue is the sum of the paramIntrinsicValue value and the value of the input\nAudioParam buffer. If the sum is NaN, replace the sum with the defaultValue.
If this AudioParam is a compound parameter,\ncompute its final value with other AudioParams.
Set computedValue to paramComputedValue.
" - } - ] - }, - { - "name": "AudioScheduledSourceNode.start()", - "html": "When this method is called, execute\n these steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "If this AudioScheduledSourceNode internal\nslot [[source started]] is true, an InvalidStateError exception MUST be thrown.
Check for any errors that must be thrown due to parameter\nconstraints described below. If any exception is thrown during this\nstep, abort those steps.
" - }, - { - "html": "Set the internal slot [[source started]] on\nthis AudioScheduledSourceNode to true.
Queue a control message to start the AudioScheduledSourceNode, including the parameter\nvalues in the message.
Send a control message to the associated AudioContext to start running its rendering thread only when\nall the following conditions are met:
If this AudioScheduledSourceNode internal\nslot [[source started]] is not true,\nan InvalidStateError exception MUST be thrown.
Check for any errors that must be thrown due to parameter\nconstraints described below.
" - }, - { - "html": "Queue a control message to stop the AudioScheduledSourceNode, including the parameter\nvalues in the message.
Compute the current time-domain data.
" - }, - { - "html": "Apply a Blackman window to the time domain input data.
" - }, - { - "html": "Apply a Fourier transform to the\nwindowed time domain input data to get real and imaginary\nfrequency data.
" - }, - { - "html": "Smooth over time the frequency domain data.
" - }, - { - "html": "" - } - ] - }, - { - "name": "set the buffer attribute", - "html": "To set thebuffer attribute, execute these steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let new buffer be the AudioBuffer or null value to be assigned to buffer.
If new buffer is not null and [[buffer set]] is true, throw an InvalidStateError and abort these steps.
If new buffer is not null, set [[buffer set]] to true.
Assign new buffer to the buffer attribute.
If start() has previously been called on this\nnode, perform the operation acquire the content on buffer.
If this AudioBufferSourceNode internal\nslot [[source started]] is true, an InvalidStateError exception MUST be thrown.
Check for any errors that must be thrown due to parameter\nconstraints described below. If any\nexception is thrown during this step,\nabort those steps.
" - }, - { - "html": "Set the internal slot [[source started]] on\nthis AudioBufferSourceNode to true.
Queue a control message to start the AudioBufferSourceNode, including the parameter values\nin the message.
Acquire the contents of the buffer if the buffer has been set.
Send a control message to the associated AudioContext to start running its rendering thread only when\nall the following conditions are met:
BaseAudioContext context and\nan option object options, execute these steps:",
- "rationale": "set",
- "steps": [
- {
- "html": "Set the attributes normalize to the inverse of the\nvalue of disableNormalization.
If buffer exists, set the buffer attribute to its value.
Let o be new AudioNodeOptions dictionary.
If channelCount exists in options, set channelCount on o with the same value.
If channelCountMode exists in options, set channelCountMode on o with the same value.
If channelInterpretation exists in options, set channelInterpretation on o with the same value.
Initialize the AudioNode this, with c and o as argument.
" - } - ] - }, - { - "name": "set convolver buffer", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-buffer-attribute", - "html": "When setting thebuffer attribute, execute the following steps synchronously:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If the buffer number of channels is not 1, 2, 4, or if the sample-rate of the buffer is not the same as the sample-rate of its associated BaseAudioContext, a NotSupportedError MUST be thrown.
Acquire the content of the AudioBuffer.
Let attack and release have the values of attack and release, respectively, sampled at the time of\nprocessing (those are k-rate parameters), mutiplied by the\nsample-rate of the BaseAudioContext this DynamicsCompressorNode is associated with.
Let detector average be the value of the slot [[detector average]].
Let compressor gain be the value of the slot [[compressor gain]].
If the absolute value of input is less than\n0.0001, let attenuation be 1.0. Else, let shaped input be the value of applying the compression curve to the absolute\nvalue of input. Let attenuation be shaped input divided by the absolute value of input.
" - }, - { - "html": "Let releasing be true if attenuation is greater than compressor\ngain, false otherwise.
Let detector rate be the result of applying the detector curve to attenuation.
" - }, - { - "html": "Subtract detector average from attenuation, and multiply the result by detector rate. Add this new result to detector average.
" - }, - { - "html": "Clamp detector average to a maximum of 1.0.
" - }, - { - "html": "Let envelope rate be the result of computing the envelope rate based on values of attack and release.
" - }, - { - "html": "If releasing is true, set compressor gain to be the product of compressor gain and envelope rate, clamped\nto a maximum of 1.0.
Else, if releasing is false, let gain increment to be detector average minus compressor gain. Multiply gain\nincrement by envelope rate, and add the result\nto compressor gain.
Compute reduction gain to be compressor\ngain multiplied by the return value of computing the\nmakeup gain.
" - }, - { - "html": "Compute metering gain to be reduction gain, converted to\ndecibel.
" - } - ] - }, - { - "html": "Set [[compressor gain]] to compressor\ngain.
Set [[detector average]] to detector\naverage.
Atomically set the internal slot [[internal reduction]] to the value of metering gain.
Let full range gain be the value returned by\napplying the compression curve to the value 1.0.
" - }, - { - "html": "Let full range makeup gain be the inverse of full\nrange gain.
" - }, - { - "html": "Return the result of taking the 0.6 power of full range makeup\ngain.
" - } - ] - }, - { - "name": "apply decompression", - "href": "https://www.w3.org/TR/webaudio/#compression-curve", - "html": "Applying a compression curve to a value means computing\n the value of this sample when passed to a function, and returning\n the computed value. This function MUST respect the following\n characteristics:", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let threshold and knee have the\nvalues of threshold and knee, respectively, converted to linear\nunits and sampled at the time of processing of this\nblock (as k-rate parameters).
Calculate the sum of threshold plus knee also sampled at the time\nof processing of this block (as k-rate parameters).
Let knee end threshold have the value of this\nsum converted to linear\nunits.
" - }, - { - "html": "Let ratio have the value of the ratio, sampled at the time\nof processing of this block (as a k-rate parameter).
This function is the identity up to the value of the linear threshold (i.e.,
From the threshold up to the knee end threshold, User-Agents can choose the\ncurve shape. The whole function MUST be monotonically\nincreasing and continuous.
" - }, - { - "html": "This function is linear, based on the ratio, after the threshold and the soft knee (i.e.,
If
Else, return
initialize the AudioNode this, with context and options as arguments.
" - } - ] - }, - { - "name": "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context, options)", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "html": "", - "rationale": "initialize", - "steps": [ - { - "html": "Initialize the AudioNode this, with context and options as arguments.
" - } - ] - }, - { - "name": "MediaStreamAudioSourceNode/MediaStreamAudioSourceNode(context, options)", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "html": "", - "rationale": "if", - "steps": [ - { - "html": "If the mediaStream member of options does not reference a MediaStream that has at least one MediaStreamTrack whose kind attribute has the value \"audio\",\nthrow an InvalidStateError and abort these steps. Else, let\nthis stream be inputStream.
Let tracks be the list of all MediaStreamTracks of inputStream that have a kind of \"audio\".
Sort the elements in tracks based on their id attribute using an ordering on sequences of code unit values.
Initialize the AudioNode this, with context and options as arguments.
" - }, - { - "html": "Set an internal slot [[input track]] on this MediaStreamAudioSourceNode to be the first element of tracks. This is the track used as the input audio for this MediaStreamAudioSourceNode.
If the mediaStreamTrack's kind attribute is not \"audio\", throw an InvalidStateError and abort these steps.
Initialize the AudioNode this, with context and options as arguments.
" - } - ] - }, - { - "name": "construct periodic wave", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-real-slot", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let p be a new PeriodicWave object. Let [[real]] and [[imag]] be two internal slots of type Float32Array, and let [[normalize]] be an internal slot.
options according to one of the following cases:",
- "rationale": "if",
- "steps": [
- {
- "html": "If both options.real and options.imag are present",
- "rationale": "if",
- "steps": [
- {
- "html": "If the lengths of options.real and options.imag are different or if either length is less than 2, throw an IndexSizeError and abort this algorithm.
Set [[real]] and [[imag]] to new arrays with the same length as options.real.
Copy all elements from options.real to [[real]] and options.imag to [[imag]].
options.real is present",
- "rationale": "if",
- "steps": [
- {
- "html": "If length of options.real is less than 2, throw an IndexSizeError and abort this algorithm.
Set [[real]] and [[imag]] to arrays with the same length as options.real.
Copy options.real to [[real]] and set [[imag]] to all zeros.
options.imag is present",
- "rationale": "if",
- "steps": [
- {
- "html": "If length of options.imag is less than 2, throw an IndexSizeError and abort this algorithm.
Set [[real]] and [[imag]] to arrays with the same length as options.imag.
Copy options.imag to [[imag]] and set [[real]] to all zeros.
Set [[real]] and [[imag]] to zero-filled arrays of length 2.
Set element at index 1 of [[imag]] to 1.
Set element at index 0 of both [[real]] and [[imag]] to 0. (This sets the DC component to 0.)
Initialize [[normalize]] to the inverse of the disableNormalization attribute of the PeriodicWaveConstraints on the PeriodicWaveOptions.
Return p.
" - } - ] - }, - { - "name": "wave-shaper-curve", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let curve, and curve.
Let
\n" - }, - { - "html": "\nvkf=N−12(x+1)=⌊v⌋=v−k
Then
\n" - } - ] - }, - { - "name": "WaveShaperNode.curve", - "html": "To set the\ny=⎧⎩⎨c0cN−1(1−f)ck+fck+1v<0v≥N−1otherwise
curve attribute, execute these steps:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Let new curve be a Float32Array to be assigned to curve or null.\n.
If new curve is not null and [[curve set]] is true, throw an InvalidStateError and abort these steps.
If new curve is not null, set [[curve set]] to true.
Assign new curve to the curve attribute.
2x\" or \"4x\" means that the following steps MUST be\n performed:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Up-sample the input samples to 2x or 4x the sample-rate of\nthe AudioContext. Thus for each render\nquantum, generate twice (for 2x) or four times (for 4x) samples.
Apply the shaping curve.
" - }, - { - "html": "Down-sample the result back to the sample-rate of the AudioContext. Thus taking the previously processed samples\nprocessed samples, generating a single render quantum worth of\nsamples as the final result.
registerProcessor(name, processorCtor) method is called, perform the following steps. If an\n exception is thrown in any step, abort the remaining\n steps.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If name is an empty string, throw a NotSupportedError.
If name already exists as a key in the node name to processor constructor map, throw a NotSupportedError.
If the result of IsConstructor(argument=processorCtor) is false, throw a TypeError .
Let prototype be the result of Get(O=processorCtor,\nP=\"prototype\").
If the result of Type(argument=prototype) is not Object, throw a TypeError .
Let parameterDescriptorsValue be the\nresult of Get(O=processorCtor, P=\"parameterDescriptors\").
undefined,\nexecute the following steps:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let parameterDescriptorSequence be the result of the conversion from parameterDescriptorsValue to an IDL value of type sequence<AudioParamDescriptor>.
Let paramNames be an empty Array.
" - }, - { - "html": "\n For each descriptor of parameterDescriptorSequence:", - "rationale": "let", - "steps": [ - { - "html": "Let paramName be the value of\nthe member name in descriptor. Throw\na NotSupportedError if paramNames already\ncontains paramName value.
Append paramName to\nthe paramNames array.
" - }, - { - "html": "Let defaultValue be the value of\nthe member defaultValue in descriptor.
Let minValue be the value of\nthe member minValue in descriptor.
Let maxValue be the value of\nthe member maxValue in descriptor.
If the expresstion minValue <= defaultValue <= maxValue is false, throw\nan InvalidStateError.
Append the key-value pair name → processorCtor to node name to processor constructor map of the associated AudioWorkletGlobalScope.
queue a media element task to append the key-value pair name → parameterDescriptorSequence to the node name to parameter descriptor map of the\nassociated BaseAudioContext.
Let constructionData be the processor construction data transferred from the control thread.
" - }, - { - "html": "Let processorName, nodeReference and serializedPort be constructionData’s name, node, and port respectively.
" - }, - { - "html": "Let serializedOptions be constructionData’s options.
" - }, - { - "html": "Let deserializedPort be the result of StructuredDeserialize(serializedPort,\nthe current Realm).
" - }, - { - "html": "Let deserializedOptions be the result of StructuredDeserialize(serializedOptions,\nthe current Realm).
" - }, - { - "html": "Let processorCtor be the result of looking\nup processorName on the AudioWorkletGlobalScope's node name to processor constructor map.
Store nodeReference and deserializedPort to node reference and transferred port of this AudioWorkletGlobalScope's pending processor construction data respectively.
Construct a callback function from processorCtor with\nthe argument of deserializedOptions. If any exceptions are thrown in the callback, queue a task to the control thread to fire an event named processorerror at nodeReference using ErrorEvent.
Empty the pending processor construction data slot.
" - } - ] - }, - { - "name": "AudioWorkletNode()", - "html": "When theAudioWorkletNode constructor\n is invoked with context, nodeName, options:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "If nodeName does not exist as a key in the BaseAudioContext’s node name to parameter\ndescriptor map, throw a InvalidStateError exception and abort these steps.
Let node be this value.
" - }, - { - "html": "Initialize the AudioNode node with context and options as\narguments.
" - }, - { - "html": "Configure input, output and output channels of node with options.\nAbort the remaining steps if any exception is\nthrown.
" - }, - { - "html": "Let messageChannel be a new MessageChannel.
Let nodePort be the value of messageChannel’s port1 attribute.
Let processorPortOnThisSide be the value of messageChannel’s port2 attribute.
Let serializedProcessorPort be the result of StructuredSerializeWithTransfer(processorPortOnThisSide,\n« processorPortOnThisSide »).
" - }, - { - "html": "Convert options dictionary to optionsObject.
" - }, - { - "html": "Let serializedOptions be the result of StructuredSerialize(optionsObject).
" - }, - { - "html": "Set node’s port to nodePort.
Let audioParamMap be a new AudioParamMap object.
Let paramName be the value of name member in descriptor.
Let audioParam be a new AudioParam instance with automationRate, defaultValue, minValue, and maxValue having values equal to the values of\ncorresponding members on descriptor.
Append a key-value pair paramName → audioParam to audioParamMap’s\nentries.
" - } - ] - }, - { - "html": "IfparameterData is\npresent on options, perform the\nfollowing steps:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let parameterData be the value of parameterData.
If there exists a map entry on audioParamMap with\nkey paramName, let audioParamInMap be\nsuch entry.
" - }, - { - "html": "Set value property\nof audioParamInMap to paramValue.
Set node’s parameters to audioParamMap.
Queue a control message to invoke the constructor of\nthe corresponding AudioWorkletProcessor with\nthe processor construction data that consists of: nodeName, node, serializedOptions, and serializedProcessorPort.
Let node be an AudioWorkletNode instance that is\ngiven to this algorithm.
If both numberOfInputs and numberOfOutputs are zero,\nthrow a NotSupportedError and abort the remaining steps.
outputChannelCount exists,",
- "rationale": "if",
- "steps": [
- {
- "html": "If any value in outputChannelCount is zero\nor greater than the implementation’s maximum number\nof channels, throw a NotSupportedError and abort\nthe remaining steps.
If the length of outputChannelCount does not\nequal numberOfOutputs,\nthrow an IndexSizeError and abort the remaining\nsteps.
If both numberOfInputs and numberOfOutputs are 1,\nset the channel count of the node output to\nthe one value in outputChannelCount.
Otherwise set the channel count of the kth output\nof the node to the kth element\nof outputChannelCount sequence and return.
outputChannelCount does not exists,",
- "rationale": "if",
- "steps": [
- {
- "html": "If both numberOfInputs and numberOfOutputs are 1,\nset the initial channel count of the node output to 1 and return.
Otherwise set the channel count of each output of the node to 1 and return.
" - } - ] - } - ] - }, - { - "name": "AudioWorkletProcessor()", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let nodeReference be the result of\nlooking up node reference on the pending processor construction data of the\ncurrent AudioWorkletGlobalScope.\nThrow a TypeError exception if the slot is\nempty.
Let processor be the this value.
" - }, - { - "html": "Set processor’s [[node reference]] to nodeReference.
Set processor’s [[callable process]] to true.
Let deserializedPort be the result of\nlooking up transferred port from the pending processor construction data.
" - }, - { - "html": "Set processor’s port to deserializedPort.
Empty the pending processor construction data slot.
" - } - ] - }, - { - "name": "freeze parameter object", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "Let parameter be the ordered map of the name and parameter values.
" - }, - { - "html": "SetIntegrityLevel(parameter, frozen)
" - } - ] - }, - { - "name": "audioworklet sequence", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "An AudioContext is created.
In the main scope, context.audioWorklet is requested to add a script module.
Since none exists yet, a new AudioWorkletGlobalScope is created in association with the context. This is the global scope in which AudioWorkletProcessor class definitions will be evaluated. (On subsequent calls, this previously created scope will be used.)
The imported script is run in the newly created global scope.
" - }, - { - "html": "As part of running the imported script, an AudioWorkletProcessor is registered under\na key (\"custom\" in the above diagram) within the AudioWorkletGlobalScope.\nThis populates maps both in the global scope and in the AudioContext.
The promise for the addModule() call is resolved.
In the main scope, an AudioWorkletNode is created using\nthe user-specified key along with a\ndictionary of options.
As part of the node’s creation, this key is used to look up the\ncorrect AudioWorkletProcessor subclass for instantiation.
An instance of the AudioWorkletProcessor subclass is\ninstantiated with a structured clone of the same options\ndictionary. This instance is paired with the previously created AudioWorkletNode.
Let QC be a new, empty control message\nqueue.
" - }, - { - "html": "Move all the control messages QA to QC.
" - }, - { - "html": "Move all the control messages QB to QA.
" - }, - { - "html": "Move all the control messages QC to QB.
" - } - ] - }, - { - "name": "initialize rendering loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-initialization", - "html": "The following step MUST be performed once before the rendering loop starts.", - "rationale": ".algorithm", - "steps": [ - { - "html": "Set the internal slot [[current frame]] of the BaseAudioContext to 0. Also set currentTime to 0.
Let render result be false.
Let Qrendering be an empty control message\nqueue. Atomically swap Qrendering with the current control message queue.
" - }, - { - "html": "While there are messages in Qrendering, execute the\nfollowing steps:", - "rationale": "execute", - "steps": [ - { - "html": "Execute the asynchronous section of the oldest message of Qrendering.
" - }, - { - "html": "Remove the oldest message of Qrendering.
" - } - ] - } - ] - }, - { - "html": "Process theBaseAudioContext's associated task queue.",
- "rationale": "let",
- "steps": [
- {
- "html": "Let task queue be the BaseAudioContext's associated task queue.
Let task count be the number of tasks in the in task queue
" - }, - { - "html": "While task count is not equal to 0, execute the following steps:", - "rationale": "let", - "steps": [ - { - "html": "Let oldest task be the first runnable task in task queue, and remove it from task queue.
" - }, - { - "html": "Set the rendering loop’s currently running task to oldest task.
" - }, - { - "html": "Perform oldest task’s steps.
" - }, - { - "html": "Set the rendering loop currently running task back to null.
Decrement task count
" - }, - { - "html": "Perform a microtask checkpoint.
" - } - ] - } - ] - }, - { - "html": "Process a render quantum.", - "rationale": "if", - "steps": [ - { - "html": "If the [[rendering thread state]] of the BaseAudioContext is not running, return false.
AudioNodes of the BaseAudioContext to be processed.",
- "rationale": "let",
- "steps": [
- {
- "html": "Let ordered node list be an empty list of AudioNodes and AudioListener. It will contain an ordered list of AudioNodes and\nthe AudioListener when this ordering algorithm terminates.
Let nodes be the set of all nodes created by this BaseAudioContext, and still alive.
Add the AudioListener to nodes.
Let cycle breakers be an empty set of DelayNodes. It will\ncontain all the DelayNodes that are part of a cycle.
AudioNode node in nodes:",
- "rationale": "if",
- "steps": [
- {
- "html": "If node is a DelayNode that is part of a cycle, add it\nto cycle breakers and remove it from nodes.
DelayNode delay in cycle breakers:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let delayWriter and delayReader respectively be a DelayWriter and a DelayReader, for delay.\n Add delayWriter and delayReader to nodes. Disconnect delay from all its input and\n outputs.
" - } - ] - }, - { - "html": "If nodes contains cycles, mute all the AudioNodes that are part of this cycle, and remove them from nodes.
Choose an element node in nodes.
" - }, - { - "html": "Visit node.
" - } - ], - "additional": [ - { - "html": "Visiting a node means performing\n the following steps:", - "rationale": ".algorithm", - "steps": [ - { - "html": "If node is marked, abort these steps.
" - }, - { - "html": "Mark node.
" - }, - { - "html": "If node is an AudioNode, Visit each AudioNode connected to the input of node.
AudioParam param of node:",
- "rationale": "for",
- "steps": [
- {
- "html": "For each AudioNode param input node connected to param:",
- "rationale": "visit",
- "steps": [
- {
- "html": "Visit param input node
" - } - ] - } - ] - }, - { - "html": "Add node to the beginning of ordered node list.
" - } - ] - } - ] - }, - { - "html": "Reverse the order of ordered node list.
" - } - ] - }, - { - "html": "Compute the value(s) of the AudioListener's AudioParams for this block.
AudioNode, in ordered node list:",
- "rationale": "for",
- "steps": [
- {
- "html": "For each AudioParam of this AudioNode, execute these steps:",
- "rationale": "if",
- "steps": [
- {
- "html": "If this AudioParam has any AudioNode connected to it, sum the buffers made available for reading by\nall AudioNode connected to this AudioParam, down mix the resulting buffer down to a mono\nchannel, and call this buffer the input AudioParam buffer.
Compute the value(s) of this AudioParam for this block.
Queue a control message to set the [[current value]] slot\nof this AudioParam according to § 1.6.3 Computation of Value.
If this AudioNode has any AudioNodes connected to its input, sum the buffers made available for reading by all AudioNodes connected to this AudioNode. The resulting buffer is\ncalled the input buffer. Up or down-mix it to\nmatch if number of input channels of this AudioNode.
If this AudioNode is a source node, compute a block of audio, and make it available for reading.
AudioNode is an AudioWorkletNode, execute these substeps:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let processor be the associated AudioWorkletProcessor instance of AudioWorkletNode.
Let O be the ECMAScript object corresponding to processor.
" - }, - { - "html": "Let processCallback be an uninitialized variable.
" - }, - { - "html": "Let completion be an uninitialized variable.
" - }, - { - "html": "Prepare to run script with the current settings object.
" - }, - { - "html": "Prepare to run a callback with the current settings object.
" - }, - { - "html": "Let getResult be Get(O, \"process\").
" - }, - { - "html": "If getResult is an abrupt completion, set completion to getResult and jump to the step\nlabeled return.
" - }, - { - "html": "Set processCallback to getResult.[[Value]].
" - }, - { - "html": "If ! IsCallable(processCallback) isfalse, then:",
- "rationale": "set",
- "steps": [
- {
- "html": "Set completion to new Completion {[[Type]]: throw, [[Value]]: a newly created TypeError object, [[Target]]: empty}.
" - }, - { - "html": "Jump to the step labeled return.
" - } - ] - }, - { - "html": "Set [[callable process]] to true.
Let args be a Web IDL arguments list consisting of inputs, outputs, and parameters.
Let esArgs be the result of converting args to an ECMAScript arguments list.
" - }, - { - "html": "Let callResult be the Call(processCallback, O, esArgs). This operation computes a block of audio with esArgs.\nUpon a successful function call, a buffer containing copies of\nthe elements of the Float32Arrays passed via the outputs is made available for reading.\nAny Promise resolved within this call will be queued into the\nmicrotask queue in the AudioWorkletGlobalScope.
If callResult is an abrupt completion, set completion to callResult and jump to the\nstep labeled return.
" - }, - { - "html": "Set processor’s active source flag to ToBoolean(callResult.[[Value]]).
" - } - ] - }, - { - "html": "Return: at this point completion will be set to an ECMAScript completion value.", - "rationale": "clean", - "steps": [ - { - "html": "Clean up after running a callback with the current settings object.
" - }, - { - "html": "Clean up after running script with the current settings object.
" - }, - { - "html": "If completion is an abrupt completion:", - "rationale": "set", - "steps": [ - { - "html": "Set [[callable process]] to false.
Set processor’s active source flag to false.
Make a silent output buffer available for reading.
" - }, - { - "html": "Queue a task to the control thread to fire an event named processorerror at the associated AudioWorkletNode using ErrorEvent.
If this AudioNode is a destination node, record the input of this AudioNode.
Else, process the input buffer, and make available for reading the\nresulting buffer.
" - } - ] - }, - { - "html": "Atomically perform the following steps:", - "rationale": "increment", - "steps": [ - { - "html": "Increment [[current frame]] by the render quantum size.
Set currentTime to [[current frame]] divided\nby sampleRate.
Set render result to true.
Perform a microtask checkpoint.
" - }, - { - "html": "Return render result.
" - } - ] - }, - { - "html": "TheAudioContext audioContext performs the following steps on rendering thread in the\n event of an audio system resource error.",
- "rationale": "if",
- "steps": [
- {
- "html": "If the audioContext’s [[rendering thread state]] is running:",
- "rationale": "attempt",
- "steps": [
- {
- "html": "Attempt to release system resources.
" - }, - { - "html": "Set the audioContext’s [[rendering thread state]] to suspended.
Fire an event named error at audioContext.
Set the audioContext’s [[suspended by user]] to false.
Set the audioContext’s [[control thread state]] to suspended.
Set the audioContext’s state attribute to\n\"suspended\".
Fire an event named statechange at the audioContext.
Abort these steps.
" - } - ] - }, - { - "html": "If the audioContext’s[[rendering thread state]] is suspended:",
- "rationale": "queue",
- "steps": [
- {
- "html": "Queue a media element taskto execute the following steps:",
- "rationale": "fire",
- "steps": [
- {
- "html": "Fire an event named error at audioContext.
AudioContext audioContext performs the following steps on rendering thread in the\n event of an audio system resource error.",
- "rationale": "reject",
- "steps": [
- {
- "html": "Reject all the promises of [[pending promises]] with InvalidStateError, for each AudioContext and OfflineAudioContext whose relevant global object is the same as\nthe document’s associated Window.
Stop all decoding threads.
Queue a control message to close() the AudioContext or OfflineAudioContext.
AudioNode, an implementation\n MUST:",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "Compute computedNumberOfChannels.
" - }, - { - "html": "For each connection to the input:", - "rationale": "up-mix", - "steps": [ - { - "html": "up-mix or down-mix the connection to computedNumberOfChannels according to the ChannelInterpretation value given by the node’s channelInterpretation attribute.
Mix it together with all of the other mixed streams (from other\nconnections). This is a straight-forward summing together of each of\nthe corresponding channels that have been up-mixed or down-mixed in step 1 for each connection.
" - } - ] - } - ] - }, - { - "name": "equalpower panning", - "html": "", - "rationale": ".algorithm", - "steps": [ - { - "html": "For each sample to be computed by thisAudioNode:",
- "rationale": "let",
- "steps": [
- {
- "html": "Let azimuth be the value computed in the azimuth and elevation section.
" - }, - { - "html": "The azimuth value is first contained to be within\nthe range [-90, 90] according to:
\n" - }, - { - "html": "// First, clamp azimuth to allowed range of [-180, 180]. \nazimuth= max( - 180 , azimuth); \nazimuth= min( 180 , azimuth); \n\n// Then wrap to range [-90, 90]. \nif ( azimuth< - 90 ) \n azimuth= - 180 - azimuth; \nelse if ( azimuth> 90 ) \n azimuth= 180 - azimuth; \n
A normalized value x is calculated from azimuth for a mono input as:
\nx\n= ( azimuth+ 90 ) / 180 ; \n
Or for a stereo input as:
\n" - }, - { - "html": "if ( azimuth<= 0 ) { // -90 -> 0 \n// Transform the azimuth value from [-90, 0] degrees into the range [-90, 90]. \n x= ( azimuth+ 90 ) / 90 ; \n} else { // 0 -> 90 \n// Transform the azimuth value from [0, 90] degrees into the range [-90, 90]. \n x= azimuth/ 90 ; \n} \n
Left and right gain values are calculated as:
\ngainL" - }, - { - "html": "= cos( x* Math. PI/ 2 ); \ngainR= sin( x* Math. PI/ 2 ); \n
For mono input, the stereo output is calculated as:
\noutputL\n= input* gainL; \noutputR= input* gainR; \n
Else for stereo input, the output is calculated as:
\n" - }, - { - "html": "if ( azimuth<= 0 ) { \n outputL= inputL+ inputR* gainL; \n outputR= inputR* gainR; \n} else { \n outputL= inputL* gainL; \n outputR= inputR+ inputL* gainR; \n} \n
Apply the distance gain and cone gain where the\ncomputation of the distance is described in Distance\nEffects and the cone gain is described in Sound Cones:
\n" - } - ] - } - ] - }, - { - "name": "pan a StereoPannerNode", - "html": "For alet distance= distance(); \nlet distanceGain= distanceModel( distance); \nlet totalGain= coneGain() * distanceGain(); \noutputL= totalGain* outputL; \noutputR= totalGain* outputR; \n
StereoPannerNode, the following algorithm\n MUST be implemented.",
- "rationale": ".algorithm",
- "steps": [
- {
- "html": "For each sample to be computed by this AudioNode",
- "rationale": "let",
- "steps": [
- {
- "html": "Let pan be the computedValue of the pan AudioParam of this StereoPannerNode.
Clamp pan to [-1, 1].
\npan" - }, - { - "html": "= max( - 1 , pan); \npan= min( 1 , pan); \n
Calculate x by normalizing pan value to\n[0, 1]. For mono input:
\nx\n= ( pan+ 1 ) / 2 ; \n
For stereo input:
\n" - }, - { - "html": "if ( pan<= 0 ) \n x= pan+ 1 ; \nelse \n x= pan; \n
Left and right gain values are calculated as:
\ngainL" - }, - { - "html": "= cos( x* Math. PI/ 2 ); \ngainR= sin( x* Math. PI/ 2 ); \n
For mono input, the stereo output is calculated as:
\noutputL\n= input* gainL; \noutputR= input* gainR; \n
Else for stereo input, the output is calculated as:
\n" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/tr/dfns/webaudio.json b/tr/dfns/webaudio.json deleted file mode 100644 index 7799bbeed577..000000000000 --- a/tr/dfns/webaudio.json +++ /dev/null @@ -1,17367 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" - }, - "dfns": [ - { - "id": "inputs", - "href": "https://www.w3.org/TR/webaudio/#inputs", - "linkingText": [ - "inputs" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "ModularRouting", - "href": "https://www.w3.org/TR/webaudio/#ModularRouting", - "title": "Modular Routing" - }, - "definedIn": "prose" - }, - { - "id": "outputs", - "href": "https://www.w3.org/TR/webaudio/#outputs", - "linkingText": [ - "outputs" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "ModularRouting", - "href": "https://www.w3.org/TR/webaudio/#ModularRouting", - "title": "Modular Routing" - }, - "definedIn": "prose" - }, - { - "id": "source-node", - "href": "https://www.w3.org/TR/webaudio/#source-node", - "linkingText": [ - "source node" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "ModularRouting", - "href": "https://www.w3.org/TR/webaudio/#ModularRouting", - "title": "Modular Routing" - }, - "definedIn": "prose" - }, - { - "id": "destination-node", - "href": "https://www.w3.org/TR/webaudio/#destination-node", - "linkingText": [ - "destination node" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "ModularRouting", - "href": "https://www.w3.org/TR/webaudio/#ModularRouting", - "title": "Modular Routing" - }, - "definedIn": "prose" - }, - { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "linkingText": [ - "BaseAudioContext" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "heading" - }, - { - "id": "dom-baseaudiocontext-pending-promises-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-pending-promises-slot", - "linkingText": [ - "[[pending promises]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-rendering-thread-state-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-rendering-thread-state-slot", - "linkingText": [ - "[[rendering thread state]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-control-thread-state-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-control-thread-state-slot", - "linkingText": [ - "[[control thread state]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-render-quantum-size-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-render-quantum-size-slot", - "linkingText": [ - "[[render quantum size]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-audiocontextstate", - "href": "https://www.w3.org/TR/webaudio/#enumdef-audiocontextstate", - "linkingText": [ - "AudioContextState" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontextstate-suspended", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-suspended", - "linkingText": [ - "\"suspended\"", - "suspended" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextState" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontextstate-running", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-running", - "linkingText": [ - "\"running\"", - "running" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextState" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontextstate-closed", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-closed", - "linkingText": [ - "\"closed\"", - "closed" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextState" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "table" - }, - { - "id": "enumdef-audiocontextrendersizecategory", - "href": "https://www.w3.org/TR/webaudio/#enumdef-audiocontextrendersizecategory", - "linkingText": [ - "AudioContextRenderSizeCategory" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontextrendersizecategory-default", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextrendersizecategory-default", - "linkingText": [ - "\"default\"", - "default" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextRenderSizeCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontextrendersizecategory-hardware", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextrendersizecategory-hardware", - "linkingText": [ - "\"hardware\"", - "hardware" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextRenderSizeCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "table" - }, - { - "id": "dom-decodeerrorcallback-error", - "href": "https://www.w3.org/TR/webaudio/#dom-decodeerrorcallback-error", - "linkingText": [ - "error" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DecodeErrorCallback" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-decodesuccesscallback-decodeddata", - "href": "https://www.w3.org/TR/webaudio/#dom-decodesuccesscallback-decodeddata", - "linkingText": [ - "decodedData" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DecodeSuccessCallback" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", - "linkingText": [ - "feedforward" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createIIRFilter(feedforward, feedback)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", - "linkingText": [ - "feedback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createIIRFilter(feedforward, feedback)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", - "linkingText": [ - "real" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave(real, imag, constraints)", - "BaseAudioContext/createPeriodicWave(real, imag)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", - "linkingText": [ - "imag" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave(real, imag, constraints)", - "BaseAudioContext/createPeriodicWave(real, imag)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", - "linkingText": [ - "constraints" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave(real, imag, constraints)", - "BaseAudioContext/createPeriodicWave(real, imag)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "linkingText": [ - "audioData" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData(audioData, successCallback, errorCallback)", - "BaseAudioContext/decodeAudioData(audioData, successCallback)", - "BaseAudioContext/decodeAudioData(audioData)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", - "linkingText": [ - "successCallback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData(audioData, successCallback, errorCallback)", - "BaseAudioContext/decodeAudioData(audioData, successCallback)", - "BaseAudioContext/decodeAudioData(audioData)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", - "linkingText": [ - "errorCallback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData(audioData, successCallback, errorCallback)", - "BaseAudioContext/decodeAudioData(audioData, successCallback)", - "BaseAudioContext/decodeAudioData(audioData)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-baseaudiocontext-audioworklet", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-audioworklet", - "linkingText": [ - "audioWorklet" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-currenttime", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-currenttime", - "linkingText": [ - "currentTime" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-destination", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-destination", - "linkingText": [ - "destination" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-listener", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-listener", - "linkingText": [ - "listener" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-onstatechange", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-onstatechange", - "linkingText": [ - "onstatechange" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-baseaudiocontext-statechange", - "href": "https://www.w3.org/TR/webaudio/#eventdef-baseaudiocontext-statechange", - "linkingText": [ - "statechange" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "dt" - }, - { - "id": "--nyquist-frequency", - "href": "https://www.w3.org/TR/webaudio/#--nyquist-frequency", - "linkingText": [ - "Nyquist frequency" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "/" - ], - "access": "private", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-state", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-state", - "linkingText": [ - "state" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-renderquantumsize", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-renderquantumsize", - "linkingText": [ - "renderQuantumSize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "title": "Attributes", - "number": "1.1.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createanalyser", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createanalyser", - "linkingText": [ - "createAnalyser()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createbiquadfilter", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbiquadfilter", - "linkingText": [ - "createBiquadFilter()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer", - "linkingText": [ - "createBuffer(numberOfChannels, length, sampleRate)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createbuffer-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createbuffer-length", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createbuffer-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createBuffer()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createbuffersource", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffersource", - "linkingText": [ - "createBufferSource()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createchannelmerger", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelmerger", - "linkingText": [ - "createChannelMerger(numberOfInputs)", - "createChannelMerger()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "linkingText": [ - "numberOfInputs" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createChannelMerger(numberOfInputs)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createchannelsplitter", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelsplitter", - "linkingText": [ - "createChannelSplitter(numberOfOutputs)", - "createChannelSplitter()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "linkingText": [ - "numberOfOutputs" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createChannelSplitter(numberOfOutputs)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createconstantsource", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createconstantsource", - "linkingText": [ - "createConstantSource()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createconvolver", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createconvolver", - "linkingText": [ - "createConvolver()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createdelay", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdelay", - "linkingText": [ - "createDelay(maxDelayTime)", - "createDelay()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "linkingText": [ - "maxDelayTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createDelay(maxDelayTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createdynamicscompressor", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdynamicscompressor", - "linkingText": [ - "createDynamicsCompressor()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-creategain", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-creategain", - "linkingText": [ - "createGain()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createiirfilter", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter", - "linkingText": [ - "createIIRFilter(feedforward, feedback)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createiirfilter-feedforward", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward", - "linkingText": [ - "feedforward" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createIIRFilter()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createiirfilter-feedback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedback", - "linkingText": [ - "feedback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createIIRFilter()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createoscillator", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createoscillator", - "linkingText": [ - "createOscillator()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createpanner", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createpanner", - "linkingText": [ - "createPanner()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave", - "linkingText": [ - "createPeriodicWave(real, imag, constraints)", - "createPeriodicWave(real, imag)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-real", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real", - "linkingText": [ - "real" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-imag", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-imag", - "linkingText": [ - "imag" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createperiodicwave-constraints", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-constraints", - "linkingText": [ - "constraints" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createPeriodicWave()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createscriptprocessor", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor", - "linkingText": [ - "createScriptProcessor(bufferSize, numberOfInputChannels, numberOfOutputChannels)", - "createScriptProcessor(bufferSize, numberOfInputChannels)", - "createScriptProcessor(bufferSize)", - "createScriptProcessor()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "linkingText": [ - "bufferSize" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createScriptProcessor(bufferSize, numberOfInputChannels, numberOfOutputChannels)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "linkingText": [ - "numberOfInputChannels" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createScriptProcessor(bufferSize, numberOfInputChannels, numberOfOutputChannels)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "linkingText": [ - "numberOfOutputChannels" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/createScriptProcessor(bufferSize, numberOfInputChannels, numberOfOutputChannels)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-createstereopanner", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createstereopanner", - "linkingText": [ - "createStereoPanner()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-createwaveshaper", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createwaveshaper", - "linkingText": [ - "createWaveShaper()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata", - "linkingText": [ - "decodeAudioData(audioData, successCallback, errorCallback)", - "decodeAudioData(audioData, successCallback)", - "decodeAudioData(audioData)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-baseaudiocontext-decoding-thread", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decoding-thread", - "linkingText": [ - "decoding thread" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-audiodata", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata", - "linkingText": [ - "audioData" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-successcallback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-successcallback", - "linkingText": [ - "successCallback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-baseaudiocontext-decodeaudiodata-errorcallback", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-errorcallback", - "linkingText": [ - "errorCallback" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BaseAudioContext/decodeAudioData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "title": "Methods", - "number": "1.1.2" - }, - "definedIn": "table" - }, - { - "id": "callback-decodesuccesscallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodesuccesscallback-parameters", - "linkingText": [ - "DecodeSuccessCallback", - "DecodeSuccessCallback()" - ], - "localLinkingText": [], - "type": "callback", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "callback-decodesuccesscallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodesuccesscallback-parameters", - "title": "Callback DecodeSuccessCallback() Parameters", - "number": "1.1.3" - }, - "definedIn": "heading" - }, - { - "id": "callback-decodeerrorcallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodeerrorcallback-parameters", - "linkingText": [ - "DecodeErrorCallback", - "DecodeErrorCallback()" - ], - "localLinkingText": [], - "type": "callback", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "callback-decodeerrorcallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodeerrorcallback-parameters", - "title": "Callback DecodeErrorCallback() Parameters", - "number": "1.1.4" - }, - "definedIn": "heading" - }, - { - "id": "acquiring", - "href": "https://www.w3.org/TR/webaudio/#acquiring", - "linkingText": [ - "acquiring system resources" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "system-resources-associated-with-baseaudiocontext-subclasses", - "href": "https://www.w3.org/TR/webaudio/#system-resources-associated-with-baseaudiocontext-subclasses", - "title": "System Resources Associated with BaseAudioContext Subclasses", - "number": "1.1.7" - }, - "definedIn": "prose" - }, - { - "id": "releasing", - "href": "https://www.w3.org/TR/webaudio/#releasing", - "linkingText": [ - "release system resources" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "system-resources-associated-with-baseaudiocontext-subclasses", - "href": "https://www.w3.org/TR/webaudio/#system-resources-associated-with-baseaudiocontext-subclasses", - "title": "System Resources Associated with BaseAudioContext Subclasses", - "number": "1.1.7" - }, - "definedIn": "prose" - }, - { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "linkingText": [ - "AudioContext" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "heading" - }, - { - "id": "enumdef-audiocontextlatencycategory", - "href": "https://www.w3.org/TR/webaudio/#enumdef-audiocontextlatencycategory", - "linkingText": [ - "AudioContextLatencyCategory" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontextlatencycategory-balanced", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-balanced", - "linkingText": [ - "\"balanced\"", - "balanced" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextLatencyCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontextlatencycategory-interactive", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-interactive", - "linkingText": [ - "\"interactive\"", - "interactive" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextLatencyCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontextlatencycategory-playback", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-playback", - "linkingText": [ - "\"playback\"", - "playback" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioContextLatencyCategory" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "table" - }, - { - "id": "enumdef-audiosinktype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-audiosinktype", - "linkingText": [ - "AudioSinkType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiosinktype-none", - "href": "https://www.w3.org/TR/webaudio/#dom-audiosinktype-none", - "linkingText": [ - "\"none\"", - "none" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AudioSinkType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-setsinkid", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid", - "linkingText": [ - "setSinkId(sinkId)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontext-setsinkid-sinkid-sinkid", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid-sinkid-sinkid", - "linkingText": [ - "sinkId" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/setSinkId(sinkId)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", - "linkingText": [ - "mediaElement" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaElementSource(mediaElement)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontext-createmediastreamsource-mediastream-mediastream", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource-mediastream-mediastream", - "linkingText": [ - "mediaStream" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaStreamSource(mediaStream)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", - "linkingText": [ - "mediaStreamTrack" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaStreamTrackSource(mediaStreamTrack)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "pre" - }, - { - "id": "allowed-to-start", - "href": "https://www.w3.org/TR/webaudio/#allowed-to-start", - "linkingText": [ - "allowed to start" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiocontext-suspended-by-user-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-suspended-by-user-slot", - "linkingText": [ - "[[suspended by user]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-sink-id-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-sink-id-slot", - "linkingText": [ - "[[sink ID]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-pending-resume-promises-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-pending-resume-promises-slot", - "linkingText": [ - "[[pending resume promises]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "title": "The AudioContext Interface", - "number": "1.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-audiocontext", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-audiocontext", - "linkingText": [ - "AudioContext(contextOptions)", - "constructor(contextOptions)", - "AudioContext()", - "constructor()" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-constructors", - "title": "Constructors", - "number": "1.2.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-constructor-contextoptions-contextoptions", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-constructor-contextoptions-contextoptions", - "linkingText": [ - "contextOptions" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/constructor(contextOptions)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-constructors", - "title": "Constructors", - "number": "1.2.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-baselatency", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-baselatency", - "linkingText": [ - "baseLatency" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-outputlatency", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-outputlatency", - "linkingText": [ - "outputLatency" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-rendercapacity", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-rendercapacity", - "linkingText": [ - "renderCapacity" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-sinkid", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-sinkid", - "linkingText": [ - "sinkId" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-onsinkchange", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-onsinkchange", - "linkingText": [ - "onsinkchange" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audiocontext-sinkchange", - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-sinkchange", - "linkingText": [ - "sinkchange" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiocontext-onerror", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-onerror", - "linkingText": [ - "onerror" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audiocontext-error", - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-error", - "linkingText": [ - "error" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "title": "Attributes", - "number": "1.2.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiocontext-close", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-close", - "linkingText": [ - "close()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediaelementsource", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource", - "linkingText": [ - "createMediaElementSource(mediaElement)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediaelementsource-mediaelement", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource-mediaelement", - "linkingText": [ - "mediaElement" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaElementSource()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-createmediastreamdestination", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamdestination", - "linkingText": [ - "createMediaStreamDestination()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediastreamsource", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource", - "linkingText": [ - "createMediaStreamSource(mediaStream)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediastreamsource-mediastream", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource-mediastream", - "linkingText": [ - "mediaStream" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaStreamSource()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-createmediastreamtracksource", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource", - "linkingText": [ - "createMediaStreamTrackSource(mediaStreamTrack)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-createmediastreamtracksource-mediastreamtrack", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack", - "linkingText": [ - "mediaStreamTrack" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioContext/createMediaStreamTrackSource()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiocontext-getoutputtimestamp", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-getoutputtimestamp", - "linkingText": [ - "getOutputTimestamp()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-resume", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-resume", - "linkingText": [ - "resume()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-suspend", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-suspend", - "linkingText": [ - "suspend()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontext-setsinkid-domstring-or-audiosinkoptions-sinkid", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid-domstring-or-audiosinkoptions-sinkid", - "linkingText": [ - "setSinkId((DOMString or AudioSinkOptions) sinkId)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "title": "Methods", - "number": "1.2.3" - }, - "definedIn": "dt" - }, - { - "id": "AudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioContextOptions", - "linkingText": [ - "AudioContextOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioContextOptions", - "title": "AudioContextOptions", - "number": "1.2.5" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiocontextoptions-latencyhint", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-latencyhint", - "linkingText": [ - "latencyHint" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", - "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontextoptions-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", - "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontextoptions-sinkid", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-sinkid", - "linkingText": [ - "sinkId" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", - "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiocontextoptions-rendersizehint", - "href": "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-rendersizehint", - "linkingText": [ - "renderSizeHint" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", - "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioSinkOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkOptions", - "linkingText": [ - "AudioSinkOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioSinkOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkOptions", - "title": "AudioSinkOptions", - "number": "1.2.6" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiosinkoptions-type", - "href": "https://www.w3.org/TR/webaudio/#dom-audiosinkoptions-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioSinkOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiosinkoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiosinkoptions-members", - "title": "Dictionary AudioSinkOptions Members", - "number": "1.2.6.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioSinkInfo", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkInfo", - "linkingText": [ - "AudioSinkInfo" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioSinkInfo", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkInfo", - "title": "AudioSinkInfo", - "number": "1.2.7" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiosinkinfo-type", - "href": "https://www.w3.org/TR/webaudio/#dom-audiosinkinfo-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioSinkInfo" - ], - "access": "public", - "informative": false, - "heading": { - "id": "audiosinkinfo-attributes", - "href": "https://www.w3.org/TR/webaudio/#audiosinkinfo-attributes", - "title": "Attributes", - "number": "1.2.7.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioTimestamp", - "href": "https://www.w3.org/TR/webaudio/#AudioTimestamp", - "linkingText": [ - "AudioTimestamp" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioTimestamp", - "href": "https://www.w3.org/TR/webaudio/#AudioTimestamp", - "title": "AudioTimestamp", - "number": "1.2.8" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiotimestamp-contexttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audiotimestamp-contexttime", - "linkingText": [ - "contextTime" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioTimestamp" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiotimestamp-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiotimestamp-members", - "title": "Dictionary AudioTimestamp Members", - "number": "1.2.8.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiotimestamp-performancetime", - "href": "https://www.w3.org/TR/webaudio/#dom-audiotimestamp-performancetime", - "linkingText": [ - "performanceTime" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioTimestamp" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiotimestamp-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiotimestamp-members", - "title": "Dictionary AudioTimestamp Members", - "number": "1.2.8.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioRenderCapacity", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "linkingText": [ - "audiorenderCapacity" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "title": "AudioRenderCapacity", - "number": "1.2.9" - }, - "definedIn": "heading" - }, - { - "id": "audiorendercapacity", - "href": "https://www.w3.org/TR/webaudio/#audiorendercapacity", - "linkingText": [ - "AudioRenderCapacity" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "title": "AudioRenderCapacity", - "number": "1.2.9" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacity-start-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-start-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioRenderCapacity/start(options)", - "AudioRenderCapacity/start()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "title": "AudioRenderCapacity", - "number": "1.2.9" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacity-onupdate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-onupdate", - "linkingText": [ - "onupdate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-attributes", - "title": "Attributes", - "number": "1.2.9.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audiorendercapacity-update", - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiorendercapacity-update", - "linkingText": [ - "update" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-attributes", - "title": "Attributes", - "number": "1.2.9.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiorendercapacity-start", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-start", - "linkingText": [ - "start(options)", - "start()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-methods", - "title": "Methods", - "number": "1.2.9.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacity-stop", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-stop", - "linkingText": [ - "stop()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioRenderCapacity" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacity-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-methods", - "title": "Methods", - "number": "1.2.9.2" - }, - "definedIn": "dt" - }, - { - "id": "AudioRenderCapacityOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityOptions", - "linkingText": [ - "audiorenderCapacityoptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityOptions", - "title": "AudioRenderCapacityOptions", - "number": "1.2.10" - }, - "definedIn": "heading" - }, - { - "id": "dictdef-audiorendercapacityoptions", - "href": "https://www.w3.org/TR/webaudio/#dictdef-audiorendercapacityoptions", - "linkingText": [ - "AudioRenderCapacityOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityOptions", - "title": "AudioRenderCapacityOptions", - "number": "1.2.10" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityoptions-updateinterval", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityoptions-updateinterval", - "linkingText": [ - "updateInterval" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-AudioRenderCapacityOptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-AudioRenderCapacityOptions-members", - "title": "Dictionary AudioRenderCapacityOptions Members", - "number": "1.2.10.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "linkingText": [ - "audiorenderCapacityevent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "heading" - }, - { - "id": "audiorendercapacityevent", - "href": "https://www.w3.org/TR/webaudio/#audiorendercapacityevent", - "linkingText": [ - "AudioRenderCapacityEvent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-audiorendercapacityevent", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent", - "linkingText": [ - "AudioRenderCapacityEvent(type, eventInitDict)", - "constructor(type, eventInitDict)", - "AudioRenderCapacityEvent(type)", - "constructor(type)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-type", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type, eventInitDict)", - "AudioRenderCapacityEvent/constructor(type, eventInitDict)", - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type)", - "AudioRenderCapacityEvent/constructor(type)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-eventinitdict", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-eventinitdict", - "linkingText": [ - "eventInitDict" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type, eventInitDict)", - "AudioRenderCapacityEvent/constructor(type, eventInitDict)", - "AudioRenderCapacityEvent/AudioRenderCapacityEvent(type)", - "AudioRenderCapacityEvent/constructor(type)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dictdef-audiorendercapacityeventinit", - "href": "https://www.w3.org/TR/webaudio/#dictdef-audiorendercapacityeventinit", - "linkingText": [ - "AudioRenderCapacityEventInit" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-timestamp", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-timestamp", - "linkingText": [ - "timestamp" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-averageload", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-averageload", - "linkingText": [ - "averageLoad" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-peakload", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-peakload", - "linkingText": [ - "peakLoad" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityeventinit-underrunratio", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-underrunratio", - "linkingText": [ - "underrunRatio" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioRenderCapacityEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiorendercapacityevent-timestamp", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-timestamp", - "linkingText": [ - "timestamp" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "title": "Attributes", - "number": "1.2.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacityevent-averageload", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-averageload", - "linkingText": [ - "averageLoad" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "title": "Attributes", - "number": "1.2.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacityevent-peakload", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-peakload", - "linkingText": [ - "peakLoad" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "title": "Attributes", - "number": "1.2.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiorendercapacityevent-underrunratio", - "href": "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-underrunratio", - "linkingText": [ - "underrunRatio" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioRenderCapacityEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "title": "Attributes", - "number": "1.2.11.1" - }, - "definedIn": "dt" - }, - { - "id": "OfflineAudioContext", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext", - "linkingText": [ - "OfflineAudioContext" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext", - "title": "The OfflineAudioContext Interface", - "number": "1.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-offlineaudiocontext-suspend-suspendtime-suspendtime", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend-suspendtime-suspendtime", - "linkingText": [ - "suspendTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/suspend(suspendTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext", - "title": "The OfflineAudioContext Interface", - "number": "1.3" - }, - "definedIn": "pre" - }, - { - "id": "dom-offlineaudiocontext-offlineaudiocontext", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-offlineaudiocontext", - "linkingText": [ - "OfflineAudioContext(contextOptions)", - "constructor(contextOptions)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", - "title": "Constructors", - "number": "1.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "linkingText": [ - "contextOptions" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/constructor(contextOptions)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", - "title": "Constructors", - "number": "1.3.1" - }, - "definedIn": "table" - }, - { - "id": "dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "linkingText": [ - "OfflineAudioContext(numberOfChannels, length, sampleRate)", - "constructor(numberOfChannels, length, sampleRate)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", - "title": "Constructors", - "number": "1.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/constructor(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", - "title": "Constructors", - "number": "1.3.1" - }, - "definedIn": "table" - }, - { - "id": "dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/constructor(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", - "title": "Constructors", - "number": "1.3.1" - }, - "definedIn": "table" - }, - { - "id": "dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/constructor(numberOfChannels, length, sampleRate)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", - "title": "Constructors", - "number": "1.3.1" - }, - "definedIn": "table" - }, - { - "id": "dom-offlineaudiocontext-length", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-attributes", - "title": "Attributes", - "number": "1.3.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-oncomplete", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-oncomplete", - "linkingText": [ - "oncomplete" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-attributes", - "title": "Attributes", - "number": "1.3.2" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-offlineaudiocontext-complete", - "href": "https://www.w3.org/TR/webaudio/#eventdef-offlineaudiocontext-complete", - "linkingText": [ - "complete" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-attributes", - "title": "Attributes", - "number": "1.3.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-offlineaudiocontext-startrendering", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-startrendering", - "linkingText": [ - "startRendering()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", - "title": "Methods", - "number": "1.3.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-rendering-started-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-rendering-started-slot", - "linkingText": [ - "[[rendering started]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", - "title": "Methods", - "number": "1.3.3" - }, - "definedIn": "prose" - }, - { - "id": "dom-offlineaudiocontext-rendered-buffer-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-rendered-buffer-slot", - "linkingText": [ - "[[rendered buffer]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", - "title": "Methods", - "number": "1.3.3" - }, - "definedIn": "prose" - }, - { - "id": "begin-offline-rendering", - "href": "https://www.w3.org/TR/webaudio/#begin-offline-rendering", - "linkingText": [ - "begin offline rendering" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", - "title": "Methods", - "number": "1.3.3" - }, - "definedIn": "prose" - }, - { - "id": "dom-offlineaudiocontext-resume", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-resume", - "linkingText": [ - "resume()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", - "title": "Methods", - "number": "1.3.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-suspend", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend", - "linkingText": [ - "suspend(suspendTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "OfflineAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", - "title": "Methods", - "number": "1.3.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontext-suspend-suspendtime", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend-suspendtime", - "linkingText": [ - "suspendTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioContext/suspend()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", - "title": "Methods", - "number": "1.3.3" - }, - "definedIn": "table" - }, - { - "id": "OfflineAudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContextOptions", - "linkingText": [ - "OfflineAudioContextOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContextOptions", - "title": "OfflineAudioContextOptions", - "number": "1.3.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-offlineaudiocontextoptions-length", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", - "title": "Dictionary OfflineAudioContextOptions Members", - "number": "1.3.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontextoptions-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", - "title": "Dictionary OfflineAudioContextOptions Members", - "number": "1.3.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontextoptions-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", - "title": "Dictionary OfflineAudioContextOptions Members", - "number": "1.3.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-offlineaudiocontextoptions-rendersizehint", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-rendersizehint", - "linkingText": [ - "renderSizeHint" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioContextOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", - "title": "Dictionary OfflineAudioContextOptions Members", - "number": "1.3.4.1" - }, - "definedIn": "dt" - }, - { - "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", - "linkingText": [ - "OfflineAudioCompletionEvent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", - "title": "The OfflineAudioCompletionEvent Interface", - "number": "1.3.5" - }, - "definedIn": "heading" - }, - { - "id": "dom-offlineaudiocompletionevent-offlineaudiocompletionevent", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent", - "linkingText": [ - "OfflineAudioCompletionEvent(type, eventInitDict)", - "constructor(type, eventInitDict)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "OfflineAudioCompletionEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", - "title": "The OfflineAudioCompletionEvent Interface", - "number": "1.3.5" - }, - "definedIn": "pre" - }, - { - "id": "dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioCompletionEvent/OfflineAudioCompletionEvent(type, eventInitDict)", - "OfflineAudioCompletionEvent/constructor(type, eventInitDict)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", - "title": "The OfflineAudioCompletionEvent Interface", - "number": "1.3.5" - }, - "definedIn": "pre" - }, - { - "id": "dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", - "linkingText": [ - "eventInitDict" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OfflineAudioCompletionEvent/OfflineAudioCompletionEvent(type, eventInitDict)", - "OfflineAudioCompletionEvent/constructor(type, eventInitDict)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", - "title": "The OfflineAudioCompletionEvent Interface", - "number": "1.3.5" - }, - "definedIn": "pre" - }, - { - "id": "dom-offlineaudiocompletionevent-renderedbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-renderedbuffer", - "linkingText": [ - "renderedBuffer" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OfflineAudioCompletionEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioCompletionEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent-attributes", - "title": "Attributes", - "number": "1.3.5.1" - }, - "definedIn": "dt" - }, - { - "id": "OfflineAudioCompletionEventInit", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEventInit", - "linkingText": [ - "OfflineAudioCompletionEventInit" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OfflineAudioCompletionEventInit", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEventInit", - "title": "OfflineAudioCompletionEventInit", - "number": "1.3.5.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-offlineaudiocompletioneventinit-renderedbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletioneventinit-renderedbuffer", - "linkingText": [ - "renderedBuffer" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OfflineAudioCompletionEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-offlineaudiocompletioneventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocompletioneventinit-members", - "title": "Dictionary OfflineAudioCompletionEventInit Members", - "number": "1.3.5.2.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "linkingText": [ - "AudioBuffer" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiobuffer-number-of-channels-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-number-of-channels-slot", - "linkingText": [ - "[[number of channels]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-length-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-length-slot", - "linkingText": [ - "[[length]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-sample-rate-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-sample-rate-slot", - "linkingText": [ - "[[sample rate]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-internal-data-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-internal-data-slot", - "linkingText": [ - "[[internal data]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-audiobuffer-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-audiobuffer-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/AudioBuffer(options)", - "AudioBuffer/constructor(options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-getchanneldata-channel-channel", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata-channel-channel", - "linkingText": [ - "channel" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/getChannelData(channel)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", - "linkingText": [ - "destination" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel(destination, channelNumber, bufferOffset)", - "AudioBuffer/copyFromChannel(destination, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", - "linkingText": [ - "channelNumber" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel(destination, channelNumber, bufferOffset)", - "AudioBuffer/copyFromChannel(destination, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", - "linkingText": [ - "bufferOffset" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel(destination, channelNumber, bufferOffset)", - "AudioBuffer/copyFromChannel(destination, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", - "linkingText": [ - "source" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel(source, channelNumber, bufferOffset)", - "AudioBuffer/copyToChannel(source, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", - "linkingText": [ - "channelNumber" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel(source, channelNumber, bufferOffset)", - "AudioBuffer/copyToChannel(source, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", - "linkingText": [ - "bufferOffset" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel(source, channelNumber, bufferOffset)", - "AudioBuffer/copyToChannel(source, channelNumber)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffer-audiobuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-audiobuffer", - "linkingText": [ - "AudioBuffer(options)", - "constructor(options)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-constructors", - "title": "Constructors", - "number": "1.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-constructors", - "title": "Constructors", - "number": "1.4.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-duration", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-duration", - "linkingText": [ - "duration" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", - "title": "Attributes", - "number": "1.4.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-length", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", - "title": "Attributes", - "number": "1.4.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", - "title": "Attributes", - "number": "1.4.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", - "title": "Attributes", - "number": "1.4.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-copyfromchannel", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel", - "linkingText": [ - "copyFromChannel(destination, channelNumber, bufferOffset)", - "copyFromChannel(destination, channelNumber)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-copyfromchannel-destination", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination", - "linkingText": [ - "destination" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-copyfromchannel-channelnumber", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-channelnumber", - "linkingText": [ - "channelNumber" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-copyfromchannel-bufferoffset", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-bufferoffset", - "linkingText": [ - "bufferOffset" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyFromChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-copytochannel", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel", - "linkingText": [ - "copyToChannel(source, channelNumber, bufferOffset)", - "copyToChannel(source, channelNumber)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-copytochannel-source", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source", - "linkingText": [ - "source" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-copytochannel-channelnumber", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-channelnumber", - "linkingText": [ - "channelNumber" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-copytochannel-bufferoffset", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-bufferoffset", - "linkingText": [ - "bufferOffset" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/copyToChannel()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffer-getchanneldata", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata", - "linkingText": [ - "getChannelData(channel)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioBuffer" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffer-getchanneldata-channel", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata-channel", - "linkingText": [ - "channel" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBuffer/getChannelData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "table" - }, - { - "id": "acquire-the-content", - "href": "https://www.w3.org/TR/webaudio/#acquire-the-content", - "linkingText": [ - "acquire the content", - "acquire the contents of an AudioBuffer" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "title": "Methods", - "number": "1.4.3" - }, - "definedIn": "prose" - }, - { - "id": "AudioBufferOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferOptions", - "linkingText": [ - "AudioBufferOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferOptions", - "title": "AudioBufferOptions", - "number": "1.4.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiobufferoptions-length", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-length", - "linkingText": [ - "length" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobufferoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobufferoptions-members", - "title": "Dictionary AudioBufferOptions Members", - "number": "1.4.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobufferoptions-numberofchannels", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-numberofchannels", - "linkingText": [ - "numberOfChannels" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobufferoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobufferoptions-members", - "title": "Dictionary AudioBufferOptions Members", - "number": "1.4.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobufferoptions-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobufferoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobufferoptions-members", - "title": "Dictionary AudioBufferOptions Members", - "number": "1.4.4.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioNode", - "href": "https://www.w3.org/TR/webaudio/#AudioNode", - "linkingText": [ - "AudioNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode", - "href": "https://www.w3.org/TR/webaudio/#AudioNode", - "title": "The AudioNode Interface", - "number": "1.5" - }, - "definedIn": "heading" - }, - { - "id": "connection", - "href": "https://www.w3.org/TR/webaudio/#connection", - "linkingText": [ - "connection" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode", - "href": "https://www.w3.org/TR/webaudio/#AudioNode", - "title": "The AudioNode Interface", - "number": "1.5" - }, - "definedIn": "prose" - }, - { - "id": "input", - "href": "https://www.w3.org/TR/webaudio/#input", - "linkingText": [ - "input" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode", - "href": "https://www.w3.org/TR/webaudio/#AudioNode", - "title": "The AudioNode Interface", - "number": "1.5" - }, - "definedIn": "prose" - }, - { - "id": "factory-method", - "href": "https://www.w3.org/TR/webaudio/#factory-method", - "linkingText": [ - "factory method" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "prose" - }, - { - "id": "associated", - "href": "https://www.w3.org/TR/webaudio/#associated", - "linkingText": [ - "associated BaseAudioContext" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "prose" - }, - { - "id": "audionode-constructor-init", - "href": "https://www.w3.org/TR/webaudio/#audionode-constructor-init", - "linkingText": [ - "Initializing" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "prose" - }, - { - "id": "associated-interface", - "href": "https://www.w3.org/TR/webaudio/#associated-interface", - "linkingText": [ - "associated interface" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "prose" - }, - { - "id": "associated-option-object", - "href": "https://www.w3.org/TR/webaudio/#associated-option-object", - "linkingText": [ - "associated option object" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-channelcountmode", - "href": "https://www.w3.org/TR/webaudio/#enumdef-channelcountmode", - "linkingText": [ - "ChannelCountMode" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "pre" - }, - { - "id": "computednumberofchannels", - "href": "https://www.w3.org/TR/webaudio/#computednumberofchannels", - "linkingText": [ - "computedNumberOfChannels" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-channelcountmode-max", - "href": "https://www.w3.org/TR/webaudio/#dom-channelcountmode-max", - "linkingText": [ - "\"max\"", - "max" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ChannelCountMode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "table" - }, - { - "id": "dom-channelcountmode-clamped-max", - "href": "https://www.w3.org/TR/webaudio/#dom-channelcountmode-clamped-max", - "linkingText": [ - "\"clamped-max\"", - "clamped-max" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ChannelCountMode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "table" - }, - { - "id": "dom-channelcountmode-explicit", - "href": "https://www.w3.org/TR/webaudio/#dom-channelcountmode-explicit", - "linkingText": [ - "\"explicit\"", - "explicit" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ChannelCountMode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "table" - }, - { - "id": "enumdef-channelinterpretation", - "href": "https://www.w3.org/TR/webaudio/#enumdef-channelinterpretation", - "linkingText": [ - "ChannelInterpretation" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "pre" - }, - { - "id": "dom-channelinterpretation-speakers", - "href": "https://www.w3.org/TR/webaudio/#dom-channelinterpretation-speakers", - "linkingText": [ - "\"speakers\"", - "speakers" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ChannelInterpretation" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "table" - }, - { - "id": "dom-channelinterpretation-discrete", - "href": "https://www.w3.org/TR/webaudio/#dom-channelinterpretation-discrete", - "linkingText": [ - "\"discrete\"", - "discrete" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "ChannelInterpretation" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "title": "AudioNode Creation", - "number": "1.5.1" - }, - "definedIn": "table" - }, - { - "id": "tail-time", - "href": "https://www.w3.org/TR/webaudio/#tail-time", - "linkingText": [ - "tail-time" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-tail", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-tail", - "title": "AudioNode Tail-Time", - "number": "1.5.2" - }, - "definedIn": "prose" - }, - { - "id": "actively-processing", - "href": "https://www.w3.org/TR/webaudio/#actively-processing", - "linkingText": [ - "actively processing" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-actively-processing", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-actively-processing", - "title": "AudioNode Lifetime", - "number": "1.5.3" - }, - "definedIn": "prose" - }, - { - "id": "dom-audionode-channelcount", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-channelcount", - "linkingText": [ - "channelCount" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "dt" - }, - { - "id": "audionode-channelcount-constraints", - "href": "https://www.w3.org/TR/webaudio/#audionode-channelcount-constraints", - "linkingText": [ - "channelCount constraints" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioNode" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "prose" - }, - { - "id": "dom-audionode-channelcountmode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-channelcountmode", - "linkingText": [ - "channelCountMode" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "dt" - }, - { - "id": "audionode-channelcountmode-constraints", - "href": "https://www.w3.org/TR/webaudio/#audionode-channelcountmode-constraints", - "linkingText": [ - "channelCountMode constraints" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioNode" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "prose" - }, - { - "id": "dom-audionode-channelinterpretation", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-channelinterpretation", - "linkingText": [ - "channelInterpretation" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "dt" - }, - { - "id": "audionode-channelinterpretation-constraints", - "href": "https://www.w3.org/TR/webaudio/#audionode-channelinterpretation-constraints", - "linkingText": [ - "channelInterpretation constraints" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioNode" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "prose" - }, - { - "id": "dom-audionode-context", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-numberofinputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-numberofinputs", - "linkingText": [ - "numberOfInputs" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "dt" - }, - { - "id": "audionode-source-nodes", - "href": "https://www.w3.org/TR/webaudio/#audionode-source-nodes", - "linkingText": [ - "source nodes" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioNode" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "prose" - }, - { - "id": "dom-audionode-numberofoutputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-numberofoutputs", - "linkingText": [ - "numberOfOutputs" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "title": "Attributes", - "number": "1.5.4" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-connect", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect", - "linkingText": [ - "connect(destinationNode, output, input)", - "connect(destinationNode, output)", - "connect(destinationNode)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-connect-destinationnode-output-input-destinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-destinationnode", - "linkingText": [ - "destinationNode" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/connect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-connect-destinationnode-output-input-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/connect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-connect-destinationnode-output-input-input", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-input", - "linkingText": [ - "input" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/connect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "cycle", - "href": "https://www.w3.org/TR/webaudio/#cycle", - "linkingText": [ - "cycle" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-connect-destinationparam-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output", - "linkingText": [ - "connect(destinationParam, output)", - "connect(destinationParam)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-connect-destinationparam-output-destinationparam", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output-destinationparam", - "linkingText": [ - "destinationParam" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/connect(destinationParam, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-connect-destinationparam-output-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/connect(destinationParam, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect", - "linkingText": [ - "disconnect()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-output", - "linkingText": [ - "disconnect(output)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-output-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-output-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode", - "linkingText": [ - "disconnect(destinationNode)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-destinationnode-destinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-destinationnode", - "linkingText": [ - "destinationNode" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output", - "linkingText": [ - "disconnect(destinationNode, output)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-destinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-destinationnode", - "linkingText": [ - "destinationNode" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-input", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input", - "linkingText": [ - "disconnect(destinationNode, output, input)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "linkingText": [ - "destinationNode" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-input-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationnode-output-input-input", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-input", - "linkingText": [ - "input" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationNode, output, input)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationparam", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam", - "linkingText": [ - "disconnect(destinationParam)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-destinationparam-destinationparam", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-destinationparam", - "linkingText": [ - "destinationParam" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationParam)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationparam-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output", - "linkingText": [ - "disconnect(destinationParam, output)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionode-disconnect-destinationparam-output-destinationparam", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output-destinationparam", - "linkingText": [ - "destinationParam" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationParam, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "dom-audionode-disconnect-destinationparam-output-output", - "href": "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output-output", - "linkingText": [ - "output" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioNode/disconnect(destinationParam, output)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "title": "Methods", - "number": "1.5.5" - }, - "definedIn": "table" - }, - { - "id": "AudioNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioNodeOptions", - "linkingText": [ - "AudioNodeOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioNodeOptions", - "title": "AudioNodeOptions", - "number": "1.5.6" - }, - "definedIn": "heading" - }, - { - "id": "dom-audionodeoptions-channelcount", - "href": "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelcount", - "linkingText": [ - "channelCount" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audionodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audionodeoptions-members", - "title": "Dictionary AudioNodeOptions Members", - "number": "1.5.6.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionodeoptions-channelcountmode", - "href": "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelcountmode", - "linkingText": [ - "channelCountMode" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audionodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audionodeoptions-members", - "title": "Dictionary AudioNodeOptions Members", - "number": "1.5.6.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audionodeoptions-channelinterpretation", - "href": "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelinterpretation", - "linkingText": [ - "channelInterpretation" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audionodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audionodeoptions-members", - "title": "Dictionary AudioNodeOptions Members", - "number": "1.5.6.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "linkingText": [ - "AudioParam" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "heading" - }, - { - "id": "k-rate", - "href": "https://www.w3.org/TR/webaudio/#k-rate", - "linkingText": [ - "k-rate" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "prose" - }, - { - "id": "a-rate", - "href": "https://www.w3.org/TR/webaudio/#a-rate", - "linkingText": [ - "a-rate" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "prose" - }, - { - "id": "simple-nominal-range", - "href": "https://www.w3.org/TR/webaudio/#simple-nominal-range", - "linkingText": [ - "simple nominal range" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "prose" - }, - { - "id": "most-positive-single-float", - "href": "https://www.w3.org/TR/webaudio/#most-positive-single-float", - "linkingText": [ - "most-positive-single-float" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "prose" - }, - { - "id": "most-negative-single-float", - "href": "https://www.w3.org/TR/webaudio/#most-negative-single-float", - "linkingText": [ - "most-negative-single-float" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "prose" - }, - { - "id": "dfn-automation-event", - "href": "https://www.w3.org/TR/webaudio/#dfn-automation-event", - "linkingText": [ - "automation events" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "prose" - }, - { - "id": "automation-event-time", - "href": "https://www.w3.org/TR/webaudio/#automation-event-time", - "linkingText": [ - "automation event time" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "prose" - }, - { - "id": "dfn-automation-method", - "href": "https://www.w3.org/TR/webaudio/#dfn-automation-method", - "linkingText": [ - "automation method" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-automationrate", - "href": "https://www.w3.org/TR/webaudio/#enumdef-automationrate", - "linkingText": [ - "AutomationRate" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-automationrate-a-rate", - "href": "https://www.w3.org/TR/webaudio/#dom-automationrate-a-rate", - "linkingText": [ - "\"a-rate\"", - "a-rate" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AutomationRate" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "table" - }, - { - "id": "dom-automationrate-k-rate", - "href": "https://www.w3.org/TR/webaudio/#dom-automationrate-k-rate", - "linkingText": [ - "\"k-rate\"", - "k-rate" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "AutomationRate" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-current-value-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-current-value-slot", - "linkingText": [ - "[[current value]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioparam-setvalueattime-value-starttime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value-starttime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueAtTime(value, startTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-setvalueattime-value-starttime-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value-starttime-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueAtTime(value, startTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-linearramptovalueattime-value-endtime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value-endtime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/linearRampToValueAtTime(value, endTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-linearramptovalueattime-value-endtime-endtime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value-endtime-endtime", - "linkingText": [ - "endTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/linearRampToValueAtTime(value, endTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-exponentialramptovalueattime-value-endtime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value-endtime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/exponentialRampToValueAtTime(value, endTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", - "linkingText": [ - "endTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/exponentialRampToValueAtTime(value, endTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-settargetattime-target-starttime-timeconstant-target", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-target", - "linkingText": [ - "target" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime(target, startTime, timeConstant)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime(target, startTime, timeConstant)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", - "linkingText": [ - "timeConstant" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime(target, startTime, timeConstant)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-setvaluecurveattime-values-starttime-duration-values", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-values", - "linkingText": [ - "values" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime(values, startTime, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime(values, startTime, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", - "linkingText": [ - "duration" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime(values, startTime, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-cancelscheduledvalues-canceltime-canceltime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues-canceltime-canceltime", - "linkingText": [ - "cancelTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/cancelScheduledValues(cancelTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-cancelandholdattime-canceltime-canceltime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime-canceltime-canceltime", - "linkingText": [ - "cancelTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/cancelAndHoldAtTime(cancelTime)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "title": "The AudioParam Interface", - "number": "1.6" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioparam-automationrate", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-automationrate", - "linkingText": [ - "automationRate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", - "title": "Attributes", - "number": "1.6.1" - }, - "definedIn": "dt" - }, - { - "id": "audioparam-automation-rate-constraints", - "href": "https://www.w3.org/TR/webaudio/#audioparam-automation-rate-constraints", - "linkingText": [ - "automation rate constraints" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioParam" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", - "title": "Attributes", - "number": "1.6.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioparam-defaultvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-defaultvalue", - "linkingText": [ - "defaultValue" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", - "title": "Attributes", - "number": "1.6.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-maxvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-maxvalue", - "linkingText": [ - "maxValue" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", - "title": "Attributes", - "number": "1.6.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-minvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-minvalue", - "linkingText": [ - "minValue" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", - "title": "Attributes", - "number": "1.6.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", - "title": "Attributes", - "number": "1.6.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-cancelandholdattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime", - "linkingText": [ - "cancelAndHoldAtTime(cancelTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-cancelandholdattime-canceltime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime-canceltime", - "linkingText": [ - "cancelTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/cancelAndHoldAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-cancelscheduledvalues", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues", - "linkingText": [ - "cancelScheduledValues(cancelTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-cancelscheduledvalues-canceltime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues-canceltime", - "linkingText": [ - "cancelTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/cancelScheduledValues()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-exponentialramptovalueattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime", - "linkingText": [ - "exponentialRampToValueAtTime(value, endTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-exponentialramptovalueattime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/exponentialRampToValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-exponentialramptovalueattime-endtime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-endtime", - "linkingText": [ - "endTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/exponentialRampToValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-linearramptovalueattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime", - "linkingText": [ - "linearRampToValueAtTime(value, endTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-linearramptovalueattime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/linearRampToValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-linearramptovalueattime-endtime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-endtime", - "linkingText": [ - "endTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/linearRampToValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-settargetattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime", - "linkingText": [ - "setTargetAtTime(target, startTime, timeConstant)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-settargetattime-target", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target", - "linkingText": [ - "target" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-settargetattime-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-settargetattime-timeconstant", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-timeconstant", - "linkingText": [ - "timeConstant" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setTargetAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-setvalueattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime", - "linkingText": [ - "setValueAtTime(value, startTime)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-setvalueattime-value", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value", - "linkingText": [ - "value" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-setvalueattime-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-setvaluecurveattime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime", - "linkingText": [ - "setValueCurveAtTime(values, startTime, duration)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioParam" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparam-setvaluecurveattime-values", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values", - "linkingText": [ - "values" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-setvaluecurveattime-starttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-starttime", - "linkingText": [ - "startTime" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioparam-setvaluecurveattime-duration", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-duration", - "linkingText": [ - "duration" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioParam/setValueCurveAtTime()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "title": "Methods", - "number": "1.6.2" - }, - "definedIn": "table" - }, - { - "id": "simple-parameter", - "href": "https://www.w3.org/TR/webaudio/#simple-parameter", - "linkingText": [ - "simple parameter" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "computation-of-value", - "href": "https://www.w3.org/TR/webaudio/#computation-of-value", - "title": "Computation of Value", - "number": "1.6.3" - }, - "definedIn": "prose" - }, - { - "id": "compound-parameter", - "href": "https://www.w3.org/TR/webaudio/#compound-parameter", - "linkingText": [ - "compound parameter" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "computation-of-value", - "href": "https://www.w3.org/TR/webaudio/#computation-of-value", - "title": "Computation of Value", - "number": "1.6.3" - }, - "definedIn": "prose" - }, - { - "id": "computedvalue", - "href": "https://www.w3.org/TR/webaudio/#computedvalue", - "linkingText": [ - "computedValue" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "computation-of-value", - "href": "https://www.w3.org/TR/webaudio/#computation-of-value", - "title": "Computation of Value", - "number": "1.6.3" - }, - "definedIn": "prose" - }, - { - "id": "nominal-range", - "href": "https://www.w3.org/TR/webaudio/#nominal-range", - "linkingText": [ - "nominal range" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "computation-of-value", - "href": "https://www.w3.org/TR/webaudio/#computation-of-value", - "title": "Computation of Value", - "number": "1.6.3" - }, - "definedIn": "prose" - }, - { - "id": "AudioScheduledSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", - "linkingText": [ - "AudioScheduledSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", - "title": "The AudioScheduledSourceNode Interface", - "number": "1.7" - }, - "definedIn": "heading" - }, - { - "id": "playing", - "href": "https://www.w3.org/TR/webaudio/#playing", - "linkingText": [ - "playing" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", - "title": "The AudioScheduledSourceNode Interface", - "number": "1.7" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioscheduledsourcenode-source-started-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-source-started-slot", - "linkingText": [ - "[[source started]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioScheduledSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", - "title": "The AudioScheduledSourceNode Interface", - "number": "1.7" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioscheduledsourcenode-onended", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-onended", - "linkingText": [ - "onended" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioScheduledSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-attributes", - "title": "Attributes", - "number": "1.7.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audioscheduledsourcenode-ended", - "href": "https://www.w3.org/TR/webaudio/#eventdef-audioscheduledsourcenode-ended", - "linkingText": [ - "ended" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioScheduledSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-attributes", - "title": "Attributes", - "number": "1.7.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioscheduledsourcenode-start", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-start", - "linkingText": [ - "start(when)", - "start()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioScheduledSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", - "title": "Methods", - "number": "1.7.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioscheduledsourcenode-start-when-when", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-start-when-when", - "linkingText": [ - "when" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioScheduledSourceNode/start(when)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", - "title": "Methods", - "number": "1.7.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioscheduledsourcenode-stop", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-stop", - "linkingText": [ - "stop(when)", - "stop()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioScheduledSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", - "title": "Methods", - "number": "1.7.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioscheduledsourcenode-stop-when-when", - "href": "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-stop-when-when", - "linkingText": [ - "when" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioScheduledSourceNode/stop(when)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioScheduledSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", - "title": "Methods", - "number": "1.7.2" - }, - "definedIn": "table" - }, - { - "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", - "linkingText": [ - "AnalyserNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", - "title": "The AnalyserNode Interface", - "number": "1.8" - }, - "definedIn": "heading" - }, - { - "id": "dom-analysernode-analysernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/AnalyserNode(context, options)", - "AnalyserNode/constructor(context, options)", - "AnalyserNode/AnalyserNode(context)", - "AnalyserNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", - "title": "The AnalyserNode Interface", - "number": "1.8" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-analysernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/AnalyserNode(context, options)", - "AnalyserNode/constructor(context, options)", - "AnalyserNode/AnalyserNode(context)", - "AnalyserNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", - "title": "The AnalyserNode Interface", - "number": "1.8" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-getfloatfrequencydata-array-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata-array-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getFloatFrequencyData(array)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", - "title": "The AnalyserNode Interface", - "number": "1.8" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-getbytefrequencydata-array-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata-array-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getByteFrequencyData(array)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", - "title": "The AnalyserNode Interface", - "number": "1.8" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-getfloattimedomaindata-array-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata-array-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getFloatTimeDomainData(array)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", - "title": "The AnalyserNode Interface", - "number": "1.8" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-getbytetimedomaindata-array-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata-array-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getByteTimeDomainData(array)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", - "title": "The AnalyserNode Interface", - "number": "1.8" - }, - "definedIn": "pre" - }, - { - "id": "dom-analysernode-analysernode", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode", - "linkingText": [ - "AnalyserNode(context, options)", - "constructor(context, options)", - "AnalyserNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-constructors", - "title": "Constructors", - "number": "1.8.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-constructors", - "title": "Constructors", - "number": "1.8.1" - }, - "definedIn": "table" - }, - { - "id": "dom-analysernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-constructors", - "title": "Constructors", - "number": "1.8.1" - }, - "definedIn": "table" - }, - { - "id": "dom-analysernode-fftsize", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-fftsize", - "linkingText": [ - "fftSize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", - "title": "Attributes", - "number": "1.8.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-frequencybincount", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-frequencybincount", - "linkingText": [ - "frequencyBinCount" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", - "title": "Attributes", - "number": "1.8.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-maxdecibels", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-maxdecibels", - "linkingText": [ - "maxDecibels" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", - "title": "Attributes", - "number": "1.8.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-mindecibels", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-mindecibels", - "linkingText": [ - "minDecibels" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", - "title": "Attributes", - "number": "1.8.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-smoothingtimeconstant", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-smoothingtimeconstant", - "linkingText": [ - "smoothingTimeConstant" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", - "title": "Attributes", - "number": "1.8.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-getbytefrequencydata", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata", - "linkingText": [ - "getByteFrequencyData(array)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "title": "Methods", - "number": "1.8.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-getbytefrequencydata-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getByteFrequencyData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "title": "Methods", - "number": "1.8.3" - }, - "definedIn": "table" - }, - { - "id": "dom-analysernode-getbytetimedomaindata", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata", - "linkingText": [ - "getByteTimeDomainData(array)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "title": "Methods", - "number": "1.8.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-getbytetimedomaindata-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getByteTimeDomainData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "title": "Methods", - "number": "1.8.3" - }, - "definedIn": "table" - }, - { - "id": "dom-analysernode-getfloatfrequencydata", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata", - "linkingText": [ - "getFloatFrequencyData(array)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "title": "Methods", - "number": "1.8.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-getfloatfrequencydata-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getFloatFrequencyData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "title": "Methods", - "number": "1.8.3" - }, - "definedIn": "table" - }, - { - "id": "dom-analysernode-getfloattimedomaindata", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata", - "linkingText": [ - "getFloatTimeDomainData(array)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AnalyserNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "title": "Methods", - "number": "1.8.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-analysernode-getfloattimedomaindata-array", - "href": "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata-array", - "linkingText": [ - "array" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AnalyserNode/getFloatTimeDomainData()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "title": "Methods", - "number": "1.8.3" - }, - "definedIn": "table" - }, - { - "id": "AnalyserOptions", - "href": "https://www.w3.org/TR/webaudio/#AnalyserOptions", - "linkingText": [ - "AnalyserOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AnalyserOptions", - "href": "https://www.w3.org/TR/webaudio/#AnalyserOptions", - "title": "AnalyserOptions", - "number": "1.8.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-analyseroptions-fftsize", - "href": "https://www.w3.org/TR/webaudio/#dom-analyseroptions-fftsize", - "linkingText": [ - "fftSize" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AnalyserOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-analyseroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", - "title": "Dictionary AnalyserOptions Members", - "number": "1.8.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analyseroptions-maxdecibels", - "href": "https://www.w3.org/TR/webaudio/#dom-analyseroptions-maxdecibels", - "linkingText": [ - "maxDecibels" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AnalyserOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-analyseroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", - "title": "Dictionary AnalyserOptions Members", - "number": "1.8.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analyseroptions-mindecibels", - "href": "https://www.w3.org/TR/webaudio/#dom-analyseroptions-mindecibels", - "linkingText": [ - "minDecibels" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AnalyserOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-analyseroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", - "title": "Dictionary AnalyserOptions Members", - "number": "1.8.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-analyseroptions-smoothingtimeconstant", - "href": "https://www.w3.org/TR/webaudio/#dom-analyseroptions-smoothingtimeconstant", - "linkingText": [ - "smoothingTimeConstant" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AnalyserOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-analyseroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", - "title": "Dictionary AnalyserOptions Members", - "number": "1.8.4.1" - }, - "definedIn": "dt" - }, - { - "id": "current-time-domain-data", - "href": "https://www.w3.org/TR/webaudio/#current-time-domain-data", - "linkingText": [ - "current time-domain data" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "time-domain-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#time-domain-down-mixing", - "title": "Time-Domain Down-Mixing", - "number": "1.8.5" - }, - "definedIn": "prose" - }, - { - "id": "current-frequency-data", - "href": "https://www.w3.org/TR/webaudio/#current-frequency-data", - "linkingText": [ - "current frequency data" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", - "title": "FFT Windowing and Smoothing over Time", - "number": "1.8.6" - }, - "definedIn": "prose" - }, - { - "id": "blackman-window", - "href": "https://www.w3.org/TR/webaudio/#blackman-window", - "linkingText": [ - "Applying a Blackman window" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", - "title": "FFT Windowing and Smoothing over Time", - "number": "1.8.6" - }, - "definedIn": "prose" - }, - { - "id": "fourier-transform", - "href": "https://www.w3.org/TR/webaudio/#fourier-transform", - "linkingText": [ - "Applying a Fourier transform" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", - "title": "FFT Windowing and Smoothing over Time", - "number": "1.8.6" - }, - "definedIn": "prose" - }, - { - "id": "smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#smoothing-over-time", - "linkingText": [ - "Smoothing over time" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", - "title": "FFT Windowing and Smoothing over Time", - "number": "1.8.6" - }, - "definedIn": "prose" - }, - { - "id": "previous-block", - "href": "https://www.w3.org/TR/webaudio/#previous-block", - "linkingText": [ - "previous block" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", - "title": "FFT Windowing and Smoothing over Time", - "number": "1.8.6" - }, - "definedIn": "prose" - }, - { - "id": "conversion-to-db", - "href": "https://www.w3.org/TR/webaudio/#conversion-to-db", - "linkingText": [ - "Conversion to dB" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", - "title": "FFT Windowing and Smoothing over Time", - "number": "1.8.6" - }, - "definedIn": "prose" - }, - { - "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", - "linkingText": [ - "AudioBufferSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", - "title": "The AudioBufferSourceNode Interface", - "number": "1.9" - }, - "definedIn": "heading" - }, - { - "id": "playhead-position", - "href": "https://www.w3.org/TR/webaudio/#playhead-position", - "linkingText": [ - "playhead position" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", - "title": "The AudioBufferSourceNode Interface", - "number": "1.9" - }, - "definedIn": "prose" - }, - { - "id": "computedplaybackrate", - "href": "https://www.w3.org/TR/webaudio/#computedplaybackrate", - "linkingText": [ - "computedPlaybackRate" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", - "title": "The AudioBufferSourceNode Interface", - "number": "1.9" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiobuffersourcenode-buffer-set-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-buffer-set-slot", - "linkingText": [ - "[[buffer set]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", - "title": "The AudioBufferSourceNode Interface", - "number": "1.9" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/AudioBufferSourceNode(context, options)", - "AudioBufferSourceNode/constructor(context, options)", - "AudioBufferSourceNode/AudioBufferSourceNode(context)", - "AudioBufferSourceNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", - "title": "The AudioBufferSourceNode Interface", - "number": "1.9" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/AudioBufferSourceNode(context, options)", - "AudioBufferSourceNode/constructor(context, options)", - "AudioBufferSourceNode/AudioBufferSourceNode(context)", - "AudioBufferSourceNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", - "title": "The AudioBufferSourceNode Interface", - "number": "1.9" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiobuffersourcenode-audiobuffersourcenode", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode", - "linkingText": [ - "AudioBufferSourceNode(context, options)", - "constructor(context, options)", - "AudioBufferSourceNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-constructors", - "title": "Constructors", - "number": "1.9.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-constructors", - "title": "Constructors", - "number": "1.9.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffersourcenode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-constructors", - "title": "Constructors", - "number": "1.9.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffersourcenode-buffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-buffer", - "linkingText": [ - "buffer" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", - "title": "Attributes", - "number": "1.9.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", - "title": "Attributes", - "number": "1.9.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-loop", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loop", - "linkingText": [ - "loop" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", - "title": "Attributes", - "number": "1.9.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-loopend", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loopend", - "linkingText": [ - "loopEnd" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", - "title": "Attributes", - "number": "1.9.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-loopstart", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loopstart", - "linkingText": [ - "loopStart" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", - "title": "Attributes", - "number": "1.9.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-playbackrate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-playbackrate", - "linkingText": [ - "playbackRate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", - "title": "Attributes", - "number": "1.9.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-start", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start", - "linkingText": [ - "start(when, offset, duration)", - "start(when, offset)", - "start(when)", - "start()" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioBufferSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", - "title": "Methods", - "number": "1.9.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourcenode-start-when-offset-duration-when", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-when", - "linkingText": [ - "when" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/start(when, offset, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", - "title": "Methods", - "number": "1.9.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffersourcenode-start-when-offset-duration-offset", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-offset", - "linkingText": [ - "offset" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/start(when, offset, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", - "title": "Methods", - "number": "1.9.3" - }, - "definedIn": "table" - }, - { - "id": "dom-audiobuffersourcenode-start-when-offset-duration-duration", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-duration", - "linkingText": [ - "duration" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioBufferSourceNode/start(when, offset, duration)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", - "title": "Methods", - "number": "1.9.3" - }, - "definedIn": "table" - }, - { - "id": "AudioBufferSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceOptions", - "linkingText": [ - "AudioBufferSourceOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioBufferSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceOptions", - "title": "AudioBufferSourceOptions", - "number": "1.9.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiobuffersourceoptions-buffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-buffer", - "linkingText": [ - "buffer" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", - "title": "Dictionary AudioBufferSourceOptions Members", - "number": "1.9.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourceoptions-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", - "title": "Dictionary AudioBufferSourceOptions Members", - "number": "1.9.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourceoptions-loop", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loop", - "linkingText": [ - "loop" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", - "title": "Dictionary AudioBufferSourceOptions Members", - "number": "1.9.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourceoptions-loopend", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loopend", - "linkingText": [ - "loopEnd" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", - "title": "Dictionary AudioBufferSourceOptions Members", - "number": "1.9.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourceoptions-loopstart", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loopstart", - "linkingText": [ - "loopStart" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", - "title": "Dictionary AudioBufferSourceOptions Members", - "number": "1.9.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiobuffersourceoptions-playbackrate", - "href": "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-playbackrate", - "linkingText": [ - "playbackRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioBufferSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", - "title": "Dictionary AudioBufferSourceOptions Members", - "number": "1.9.4.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#AudioDestinationNode", - "linkingText": [ - "AudioDestinationNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#AudioDestinationNode", - "title": "The AudioDestinationNode Interface", - "number": "1.10" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiodestinationnode-maxchannelcount", - "href": "https://www.w3.org/TR/webaudio/#dom-audiodestinationnode-maxchannelcount", - "linkingText": [ - "maxChannelCount" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioDestinationNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioDestinationNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioDestinationNode-attributes", - "title": "Attributes", - "number": "1.10.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "linkingText": [ - "AudioListener" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "heading" - }, - { - "id": "dom-audiolistener-setposition-x-y-z-x", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setposition-x-y-z-y", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setposition-x-y-z-z", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", - "linkingText": [ - "xUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", - "linkingText": [ - "yUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", - "linkingText": [ - "zUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "title": "The AudioListener Interface", - "number": "1.11" - }, - "definedIn": "pre" - }, - { - "id": "dom-audiolistener-forwardx", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardx", - "linkingText": [ - "forwardX" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "title": "Attributes", - "number": "1.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-forwardy", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardy", - "linkingText": [ - "forwardY" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "title": "Attributes", - "number": "1.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-forwardz", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardz", - "linkingText": [ - "forwardZ" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "title": "Attributes", - "number": "1.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-positionx", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-positionx", - "linkingText": [ - "positionX" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "title": "Attributes", - "number": "1.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-positiony", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-positiony", - "linkingText": [ - "positionY" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "title": "Attributes", - "number": "1.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-positionz", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-positionz", - "linkingText": [ - "positionZ" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "title": "Attributes", - "number": "1.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-upx", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-upx", - "linkingText": [ - "upX" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "title": "Attributes", - "number": "1.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-upy", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-upy", - "linkingText": [ - "upY" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "title": "Attributes", - "number": "1.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-upz", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-upz", - "linkingText": [ - "upZ" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "title": "Attributes", - "number": "1.11.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-setorientation", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation", - "linkingText": [ - "setOrientation(x, y, z, xUp, yUp, zUp)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "dt" - }, - { - "id": "audiolistener-forward", - "href": "https://www.w3.org/TR/webaudio/#audiolistener-forward", - "linkingText": [ - "forward" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioListener" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "prose" - }, - { - "id": "audiolistener-up", - "href": "https://www.w3.org/TR/webaudio/#audiolistener-up", - "linkingText": [ - "up" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "AudioListener" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-audiolistener-setorientation-x", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setorientation-y", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setorientation-z", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setorientation-xup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-xup", - "linkingText": [ - "xUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setorientation-yup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-yup", - "linkingText": [ - "yUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setorientation-zup", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-zup", - "linkingText": [ - "zUp" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setposition", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition", - "linkingText": [ - "setPosition(x, y, z)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioListener" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audiolistener-setposition-x", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setposition-y", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audiolistener-setposition-z", - "href": "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioListener/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "title": "Methods", - "number": "1.11.2" - }, - "definedIn": "table" - }, - { - "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", - "linkingText": [ - "AudioProcessingEvent" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", - "title": "The AudioProcessingEvent Interface - DEPRECATED", - "number": "1.12" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioprocessingevent-audioprocessingevent", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent", - "linkingText": [ - "AudioProcessingEvent(type, eventInitDict)", - "constructor(type, eventInitDict)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioProcessingEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", - "title": "The AudioProcessingEvent Interface - DEPRECATED", - "number": "1.12" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioProcessingEvent/AudioProcessingEvent(type, eventInitDict)", - "AudioProcessingEvent/constructor(type, eventInitDict)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", - "title": "The AudioProcessingEvent Interface - DEPRECATED", - "number": "1.12" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", - "linkingText": [ - "eventInitDict" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioProcessingEvent/AudioProcessingEvent(type, eventInitDict)", - "AudioProcessingEvent/constructor(type, eventInitDict)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", - "title": "The AudioProcessingEvent Interface - DEPRECATED", - "number": "1.12" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioprocessingevent-inputbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-inputbuffer", - "linkingText": [ - "inputBuffer" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioProcessingEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent-attributes", - "title": "Attributes", - "number": "1.12.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioprocessingevent-outputbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-outputbuffer", - "linkingText": [ - "outputBuffer" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioProcessingEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent-attributes", - "title": "Attributes", - "number": "1.12.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioprocessingevent-playbacktime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-playbacktime", - "linkingText": [ - "playbackTime" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioProcessingEvent" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent-attributes", - "title": "Attributes", - "number": "1.12.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioProcessingEventInit", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEventInit", - "linkingText": [ - "AudioProcessingEventInit" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioProcessingEventInit", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEventInit", - "title": "AudioProcessingEventInit", - "number": "1.12.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioprocessingeventinit-inputbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-inputbuffer", - "linkingText": [ - "inputBuffer" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioProcessingEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioprocessingeventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioprocessingeventinit-members", - "title": "Dictionary AudioProcessingEventInit Members", - "number": "1.12.2.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioprocessingeventinit-outputbuffer", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-outputbuffer", - "linkingText": [ - "outputBuffer" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioProcessingEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioprocessingeventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioprocessingeventinit-members", - "title": "Dictionary AudioProcessingEventInit Members", - "number": "1.12.2.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioprocessingeventinit-playbacktime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-playbacktime", - "linkingText": [ - "playbackTime" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioProcessingEventInit" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioprocessingeventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioprocessingeventinit-members", - "title": "Dictionary AudioProcessingEventInit Members", - "number": "1.12.2.1" - }, - "definedIn": "dt" - }, - { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "linkingText": [ - "BiquadFilterNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "heading" - }, - { - "id": "computedfrequency", - "href": "https://www.w3.org/TR/webaudio/#computedfrequency", - "linkingText": [ - "computedFrequency" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-biquadfiltertype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-biquadfiltertype", - "linkingText": [ - "BiquadFilterType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfiltertype-lowpass", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-lowpass", - "linkingText": [ - "\"lowpass\"", - "lowpass" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-highpass", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-highpass", - "linkingText": [ - "\"highpass\"", - "highpass" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-bandpass", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-bandpass", - "linkingText": [ - "\"bandpass\"", - "bandpass" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-lowshelf", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-lowshelf", - "linkingText": [ - "\"lowshelf\"", - "lowshelf" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-highshelf", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-highshelf", - "linkingText": [ - "\"highshelf\"", - "highshelf" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-peaking", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-peaking", - "linkingText": [ - "\"peaking\"", - "peaking" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-notch", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-notch", - "linkingText": [ - "\"notch\"", - "notch" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfiltertype-allpass", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-allpass", - "linkingText": [ - "\"allpass\"", - "allpass" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "BiquadFilterType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfilternode-biquadfilternode", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode", - "linkingText": [ - "BiquadFilterNode(context, options)", - "constructor(context, options)", - "BiquadFilterNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-biquadfilternode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/BiquadFilterNode(context, options)", - "BiquadFilterNode/constructor(context, options)", - "BiquadFilterNode/BiquadFilterNode(context)", - "BiquadFilterNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-biquadfilternode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/BiquadFilterNode(context, options)", - "BiquadFilterNode/constructor(context, options)", - "BiquadFilterNode/BiquadFilterNode(context)", - "BiquadFilterNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "linkingText": [ - "frequencyHz" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "linkingText": [ - "magResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "linkingText": [ - "phaseResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - "definedIn": "pre" - }, - { - "id": "dom-biquadfilternode-biquadfilternode-context-options", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options", - "linkingText": [ - "BiquadFilterNode(context, options)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-constructors", - "title": "Constructors", - "number": "1.13.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-constructors", - "title": "Constructors", - "number": "1.13.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfilternode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-constructors", - "title": "Constructors", - "number": "1.13.1" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfilternode-q", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-q", - "linkingText": [ - "Q" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", - "title": "Attributes", - "number": "1.13.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", - "title": "Attributes", - "number": "1.13.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-frequency", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-frequency", - "linkingText": [ - "frequency" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", - "title": "Attributes", - "number": "1.13.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-gain", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-gain", - "linkingText": [ - "gain" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", - "title": "Attributes", - "number": "1.13.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-type", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", - "title": "Attributes", - "number": "1.13.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse", - "linkingText": [ - "getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "BiquadFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", - "title": "Methods", - "number": "1.13.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-frequencyhz", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz", - "linkingText": [ - "frequencyHz" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", - "title": "Methods", - "number": "1.13.3" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-magresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-magresponse", - "linkingText": [ - "magResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", - "title": "Methods", - "number": "1.13.3" - }, - "definedIn": "table" - }, - { - "id": "dom-biquadfilternode-getfrequencyresponse-phaseresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-phaseresponse", - "linkingText": [ - "phaseResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "BiquadFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", - "title": "Methods", - "number": "1.13.3" - }, - "definedIn": "table" - }, - { - "id": "BiquadFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterOptions", - "linkingText": [ - "BiquadFilterOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "BiquadFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterOptions", - "title": "BiquadFilterOptions", - "number": "1.13.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-biquadfilteroptions-q", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-q", - "linkingText": [ - "Q" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "BiquadFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", - "title": "Dictionary BiquadFilterOptions Members", - "number": "1.13.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilteroptions-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "BiquadFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", - "title": "Dictionary BiquadFilterOptions Members", - "number": "1.13.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilteroptions-frequency", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-frequency", - "linkingText": [ - "frequency" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "BiquadFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", - "title": "Dictionary BiquadFilterOptions Members", - "number": "1.13.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilteroptions-gain", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-gain", - "linkingText": [ - "gain" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "BiquadFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", - "title": "Dictionary BiquadFilterOptions Members", - "number": "1.13.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-biquadfilteroptions-type", - "href": "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "BiquadFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", - "title": "Dictionary BiquadFilterOptions Members", - "number": "1.13.4.1" - }, - "definedIn": "dt" - }, - { - "id": "ChannelMergerNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode", - "linkingText": [ - "ChannelMergerNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelMergerNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode", - "title": "The ChannelMergerNode Interface", - "number": "1.14" - }, - "definedIn": "heading" - }, - { - "id": "dom-channelmergernode-channelmergernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelMergerNode/ChannelMergerNode(context, options)", - "ChannelMergerNode/constructor(context, options)", - "ChannelMergerNode/ChannelMergerNode(context)", - "ChannelMergerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelMergerNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode", - "title": "The ChannelMergerNode Interface", - "number": "1.14" - }, - "definedIn": "pre" - }, - { - "id": "dom-channelmergernode-channelmergernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelMergerNode/ChannelMergerNode(context, options)", - "ChannelMergerNode/constructor(context, options)", - "ChannelMergerNode/ChannelMergerNode(context)", - "ChannelMergerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelMergerNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode", - "title": "The ChannelMergerNode Interface", - "number": "1.14" - }, - "definedIn": "pre" - }, - { - "id": "dom-channelmergernode-channelmergernode", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode", - "linkingText": [ - "ChannelMergerNode(context, options)", - "constructor(context, options)", - "ChannelMergerNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "ChannelMergerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelMergerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode-constructors", - "title": "Constructors", - "number": "1.14.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-channelmergernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelMergerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelMergerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode-constructors", - "title": "Constructors", - "number": "1.14.1" - }, - "definedIn": "table" - }, - { - "id": "dom-channelmergernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelMergerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelMergerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode-constructors", - "title": "Constructors", - "number": "1.14.1" - }, - "definedIn": "table" - }, - { - "id": "ChannelMergerOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerOptions", - "linkingText": [ - "ChannelMergerOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelMergerOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerOptions", - "title": "ChannelMergerOptions", - "number": "1.14.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-channelmergeroptions-numberofinputs", - "href": "https://www.w3.org/TR/webaudio/#dom-channelmergeroptions-numberofinputs", - "linkingText": [ - "numberOfInputs" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "ChannelMergerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-channelmergeroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-channelmergeroptions-members", - "title": "Dictionary ChannelMergerOptions Members", - "number": "1.14.2.1" - }, - "definedIn": "dt" - }, - { - "id": "ChannelSplitterNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", - "linkingText": [ - "ChannelSplitterNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelSplitterNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", - "title": "The ChannelSplitterNode Interface", - "number": "1.15" - }, - "definedIn": "heading" - }, - { - "id": "dom-channelsplitternode-channelsplitternode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelSplitterNode/ChannelSplitterNode(context, options)", - "ChannelSplitterNode/constructor(context, options)", - "ChannelSplitterNode/ChannelSplitterNode(context)", - "ChannelSplitterNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelSplitterNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", - "title": "The ChannelSplitterNode Interface", - "number": "1.15" - }, - "definedIn": "pre" - }, - { - "id": "dom-channelsplitternode-channelsplitternode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelSplitterNode/ChannelSplitterNode(context, options)", - "ChannelSplitterNode/constructor(context, options)", - "ChannelSplitterNode/ChannelSplitterNode(context)", - "ChannelSplitterNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelSplitterNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", - "title": "The ChannelSplitterNode Interface", - "number": "1.15" - }, - "definedIn": "pre" - }, - { - "id": "dom-channelsplitternode-channelsplitternode", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode", - "linkingText": [ - "ChannelSplitterNode(context, options)", - "constructor(context, options)", - "ChannelSplitterNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "ChannelSplitterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelSplitterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode-constructors", - "title": "Constructors", - "number": "1.15.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-channelsplitternode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelSplitterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelSplitterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode-constructors", - "title": "Constructors", - "number": "1.15.1" - }, - "definedIn": "table" - }, - { - "id": "dom-channelsplitternode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ChannelSplitterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelSplitterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode-constructors", - "title": "Constructors", - "number": "1.15.1" - }, - "definedIn": "table" - }, - { - "id": "ChannelSplitterOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterOptions", - "linkingText": [ - "ChannelSplitterOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ChannelSplitterOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterOptions", - "title": "ChannelSplitterOptions", - "number": "1.15.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-channelsplitteroptions-numberofoutputs", - "href": "https://www.w3.org/TR/webaudio/#dom-channelsplitteroptions-numberofoutputs", - "linkingText": [ - "numberOfOutputs" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "ChannelSplitterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-channelsplitteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-channelsplitteroptions-members", - "title": "Dictionary ChannelSplitterOptions Members", - "number": "1.15.2.1" - }, - "definedIn": "dt" - }, - { - "id": "ConstantSourceNode", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode", - "linkingText": [ - "ConstantSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceNode", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode", - "title": "The ConstantSourceNode Interface", - "number": "1.16" - }, - "definedIn": "heading" - }, - { - "id": "dom-constantsourcenode-constantsourcenode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConstantSourceNode/ConstantSourceNode(context, options)", - "ConstantSourceNode/constructor(context, options)", - "ConstantSourceNode/ConstantSourceNode(context)", - "ConstantSourceNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceNode", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode", - "title": "The ConstantSourceNode Interface", - "number": "1.16" - }, - "definedIn": "pre" - }, - { - "id": "dom-constantsourcenode-constantsourcenode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConstantSourceNode/ConstantSourceNode(context, options)", - "ConstantSourceNode/constructor(context, options)", - "ConstantSourceNode/ConstantSourceNode(context)", - "ConstantSourceNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceNode", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode", - "title": "The ConstantSourceNode Interface", - "number": "1.16" - }, - "definedIn": "pre" - }, - { - "id": "dom-constantsourcenode-constantsourcenode", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode", - "linkingText": [ - "ConstantSourceNode(context, options)", - "constructor(context, options)", - "ConstantSourceNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "ConstantSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-constructors", - "title": "Constructors", - "number": "1.16.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-constantsourcenode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConstantSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-constructors", - "title": "Constructors", - "number": "1.16.1" - }, - "definedIn": "table" - }, - { - "id": "dom-constantsourcenode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConstantSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-constructors", - "title": "Constructors", - "number": "1.16.1" - }, - "definedIn": "table" - }, - { - "id": "dom-constantsourcenode-offset", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-offset", - "linkingText": [ - "offset" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ConstantSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-attributes", - "title": "Attributes", - "number": "1.16.2" - }, - "definedIn": "dt" - }, - { - "id": "ConstantSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceOptions", - "linkingText": [ - "ConstantSourceOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ConstantSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceOptions", - "title": "ConstantSourceOptions", - "number": "1.16.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-constantsourceoptions-offset", - "href": "https://www.w3.org/TR/webaudio/#dom-constantsourceoptions-offset", - "linkingText": [ - "offset" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "ConstantSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-constantsourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-constantsourceoptions-members", - "title": "Dictionary ConstantSourceOptions Members", - "number": "1.16.3.1" - }, - "definedIn": "dt" - }, - { - "id": "ConvolverNode", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode", - "linkingText": [ - "ConvolverNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode", - "title": "The ConvolverNode Interface", - "number": "1.17" - }, - "definedIn": "heading" - }, - { - "id": "dom-convolvernode-convolvernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConvolverNode/ConvolverNode(context, options)", - "ConvolverNode/constructor(context, options)", - "ConvolverNode/ConvolverNode(context)", - "ConvolverNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode", - "title": "The ConvolverNode Interface", - "number": "1.17" - }, - "definedIn": "pre" - }, - { - "id": "dom-convolvernode-convolvernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConvolverNode/ConvolverNode(context, options)", - "ConvolverNode/constructor(context, options)", - "ConvolverNode/ConvolverNode(context)", - "ConvolverNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode", - "title": "The ConvolverNode Interface", - "number": "1.17" - }, - "definedIn": "pre" - }, - { - "id": "dom-convolvernode-convolvernode", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode", - "linkingText": [ - "ConvolverNode(context, options)", - "constructor(context, options)", - "ConvolverNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "ConvolverNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-constructors", - "title": "Constructors", - "number": "1.17.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-convolvernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConvolverNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-constructors", - "title": "Constructors", - "number": "1.17.1" - }, - "definedIn": "table" - }, - { - "id": "dom-convolvernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "ConvolverNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-constructors", - "title": "Constructors", - "number": "1.17.1" - }, - "definedIn": "table" - }, - { - "id": "dom-convolvernode-buffer", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-buffer", - "linkingText": [ - "buffer" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ConvolverNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-attributes", - "title": "Attributes", - "number": "1.17.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-convolvernode-buffer-attribute", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-buffer-attribute", - "linkingText": [ - "buffer attribute" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ConvolverNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-attributes", - "title": "Attributes", - "number": "1.17.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-convolvernode-normalize", - "href": "https://www.w3.org/TR/webaudio/#dom-convolvernode-normalize", - "linkingText": [ - "normalize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ConvolverNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-attributes", - "title": "Attributes", - "number": "1.17.2" - }, - "definedIn": "dt" - }, - { - "id": "ConvolverOptions", - "href": "https://www.w3.org/TR/webaudio/#ConvolverOptions", - "linkingText": [ - "ConvolverOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ConvolverOptions", - "href": "https://www.w3.org/TR/webaudio/#ConvolverOptions", - "title": "ConvolverOptions", - "number": "1.17.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-convolveroptions-buffer", - "href": "https://www.w3.org/TR/webaudio/#dom-convolveroptions-buffer", - "linkingText": [ - "buffer" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "ConvolverOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-convolveroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-convolveroptions-members", - "title": "Dictionary ConvolverOptions Members", - "number": "1.17.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-convolveroptions-disablenormalization", - "href": "https://www.w3.org/TR/webaudio/#dom-convolveroptions-disablenormalization", - "linkingText": [ - "disableNormalization" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "ConvolverOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-convolveroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-convolveroptions-members", - "title": "Dictionary ConvolverOptions Members", - "number": "1.17.3.1" - }, - "definedIn": "dt" - }, - { - "id": "DelayNode", - "href": "https://www.w3.org/TR/webaudio/#DelayNode", - "linkingText": [ - "DelayNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "DelayNode", - "href": "https://www.w3.org/TR/webaudio/#DelayNode", - "title": "The DelayNode Interface", - "number": "1.18" - }, - "definedIn": "heading" - }, - { - "id": "dom-delaynode-delaynode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DelayNode/DelayNode(context, options)", - "DelayNode/constructor(context, options)", - "DelayNode/DelayNode(context)", - "DelayNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DelayNode", - "href": "https://www.w3.org/TR/webaudio/#DelayNode", - "title": "The DelayNode Interface", - "number": "1.18" - }, - "definedIn": "pre" - }, - { - "id": "dom-delaynode-delaynode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DelayNode/DelayNode(context, options)", - "DelayNode/constructor(context, options)", - "DelayNode/DelayNode(context)", - "DelayNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DelayNode", - "href": "https://www.w3.org/TR/webaudio/#DelayNode", - "title": "The DelayNode Interface", - "number": "1.18" - }, - "definedIn": "pre" - }, - { - "id": "dom-delaynode-delaynode", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode", - "linkingText": [ - "DelayNode(context, options)", - "constructor(context, options)", - "DelayNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "DelayNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DelayNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-constructors", - "title": "Constructors", - "number": "1.18.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-delaynode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DelayNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DelayNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-constructors", - "title": "Constructors", - "number": "1.18.1" - }, - "definedIn": "table" - }, - { - "id": "dom-delaynode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DelayNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DelayNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-constructors", - "title": "Constructors", - "number": "1.18.1" - }, - "definedIn": "table" - }, - { - "id": "dom-delaynode-delaytime", - "href": "https://www.w3.org/TR/webaudio/#dom-delaynode-delaytime", - "linkingText": [ - "delayTime" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DelayNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DelayNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-attributes", - "title": "Attributes", - "number": "1.18.2" - }, - "definedIn": "dt" - }, - { - "id": "DelayOptions", - "href": "https://www.w3.org/TR/webaudio/#DelayOptions", - "linkingText": [ - "DelayOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "DelayOptions", - "href": "https://www.w3.org/TR/webaudio/#DelayOptions", - "title": "DelayOptions", - "number": "1.18.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-delayoptions-delaytime", - "href": "https://www.w3.org/TR/webaudio/#dom-delayoptions-delaytime", - "linkingText": [ - "delayTime" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DelayOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-delayoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-delayoptions-members", - "title": "Dictionary DelayOptions Members", - "number": "1.18.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-delayoptions-maxdelaytime", - "href": "https://www.w3.org/TR/webaudio/#dom-delayoptions-maxdelaytime", - "linkingText": [ - "maxDelayTime" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DelayOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-delayoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-delayoptions-members", - "title": "Dictionary DelayOptions Members", - "number": "1.18.3.1" - }, - "definedIn": "dt" - }, - { - "id": "delaywriter", - "href": "https://www.w3.org/TR/webaudio/#delaywriter", - "linkingText": [ - "DelayWriter" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DelayNode-processing", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-processing", - "title": "Processing", - "number": "1.18.4" - }, - "definedIn": "prose" - }, - { - "id": "delayreader", - "href": "https://www.w3.org/TR/webaudio/#delayreader", - "linkingText": [ - "DelayReader" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DelayNode-processing", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-processing", - "title": "Processing", - "number": "1.18.4" - }, - "definedIn": "prose" - }, - { - "id": "DynamicsCompressorNode", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", - "linkingText": [ - "DynamicsCompressorNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", - "title": "The DynamicsCompressorNode Interface", - "number": "1.19" - }, - "definedIn": "heading" - }, - { - "id": "dom-dynamicscompressornode-dynamicscompressornode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DynamicsCompressorNode/DynamicsCompressorNode(context, options)", - "DynamicsCompressorNode/constructor(context, options)", - "DynamicsCompressorNode/DynamicsCompressorNode(context)", - "DynamicsCompressorNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", - "title": "The DynamicsCompressorNode Interface", - "number": "1.19" - }, - "definedIn": "pre" - }, - { - "id": "dom-dynamicscompressornode-dynamicscompressornode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DynamicsCompressorNode/DynamicsCompressorNode(context, options)", - "DynamicsCompressorNode/constructor(context, options)", - "DynamicsCompressorNode/DynamicsCompressorNode(context)", - "DynamicsCompressorNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", - "title": "The DynamicsCompressorNode Interface", - "number": "1.19" - }, - "definedIn": "pre" - }, - { - "id": "dom-dynamicscompressornode-dynamicscompressornode", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode", - "linkingText": [ - "DynamicsCompressorNode(context, options)", - "constructor(context, options)", - "DynamicsCompressorNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", - "title": "Constructors", - "number": "1.19.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-internal-reduction-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-internal-reduction-slot", - "linkingText": [ - "[[internal reduction]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", - "title": "Constructors", - "number": "1.19.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-dynamicscompressornode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DynamicsCompressorNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", - "title": "Constructors", - "number": "1.19.1" - }, - "definedIn": "table" - }, - { - "id": "dom-dynamicscompressornode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "DynamicsCompressorNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", - "title": "Constructors", - "number": "1.19.1" - }, - "definedIn": "table" - }, - { - "id": "dom-dynamicscompressornode-attack", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-attack", - "linkingText": [ - "attack" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", - "title": "Attributes", - "number": "1.19.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-knee", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-knee", - "linkingText": [ - "knee" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", - "title": "Attributes", - "number": "1.19.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-ratio", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-ratio", - "linkingText": [ - "ratio" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", - "title": "Attributes", - "number": "1.19.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-reduction", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-reduction", - "linkingText": [ - "reduction" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", - "title": "Attributes", - "number": "1.19.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-release", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-release", - "linkingText": [ - "release" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", - "title": "Attributes", - "number": "1.19.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressornode-threshold", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-threshold", - "linkingText": [ - "threshold" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", - "title": "Attributes", - "number": "1.19.2" - }, - "definedIn": "dt" - }, - { - "id": "DynamicsCompressorOptions", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions", - "linkingText": [ - "DynamicsCompressorOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions", - "title": "DynamicsCompressorOptions", - "number": "1.19.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-dynamicscompressoroptions-attack", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-attack", - "linkingText": [ - "attack" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DynamicsCompressorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", - "title": "Dictionary DynamicsCompressorOptions Members", - "number": "1.19.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressoroptions-knee", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-knee", - "linkingText": [ - "knee" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DynamicsCompressorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", - "title": "Dictionary DynamicsCompressorOptions Members", - "number": "1.19.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressoroptions-ratio", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-ratio", - "linkingText": [ - "ratio" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DynamicsCompressorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", - "title": "Dictionary DynamicsCompressorOptions Members", - "number": "1.19.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressoroptions-release", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-release", - "linkingText": [ - "release" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DynamicsCompressorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", - "title": "Dictionary DynamicsCompressorOptions Members", - "number": "1.19.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-dynamicscompressoroptions-threshold", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-threshold", - "linkingText": [ - "threshold" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "DynamicsCompressorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", - "title": "Dictionary DynamicsCompressorOptions Members", - "number": "1.19.3.1" - }, - "definedIn": "dt" - }, - { - "id": "envelopefollower", - "href": "https://www.w3.org/TR/webaudio/#envelopefollower", - "linkingText": [ - "EnvelopeFollower" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "title": "Processing", - "number": "1.19.4" - }, - "definedIn": "prose" - }, - { - "id": "dom-dynamicscompressornode-detector-average-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-detector-average-slot", - "linkingText": [ - "[[detector average]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "title": "Processing", - "number": "1.19.4" - }, - "definedIn": "prose" - }, - { - "id": "dom-dynamicscompressornode-compressor-gain-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-compressor-gain-slot", - "linkingText": [ - "[[compressor gain]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "DynamicsCompressorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "title": "Processing", - "number": "1.19.4" - }, - "definedIn": "prose" - }, - { - "id": "computing-the-makeup-gain", - "href": "https://www.w3.org/TR/webaudio/#computing-the-makeup-gain", - "linkingText": [ - "Computing the makeup gain" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "title": "Processing", - "number": "1.19.4" - }, - "definedIn": "prose" - }, - { - "id": "computing-the-envelope-rate", - "href": "https://www.w3.org/TR/webaudio/#computing-the-envelope-rate", - "linkingText": [ - "Computing the envelope rate" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "title": "Processing", - "number": "1.19.4" - }, - "definedIn": "prose" - }, - { - "id": "detector-curve", - "href": "https://www.w3.org/TR/webaudio/#detector-curve", - "linkingText": [ - "detector curve" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "title": "Processing", - "number": "1.19.4" - }, - "definedIn": "prose" - }, - { - "id": "compression-curve", - "href": "https://www.w3.org/TR/webaudio/#compression-curve", - "linkingText": [ - "compression curve" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "title": "Processing", - "number": "1.19.4" - }, - "definedIn": "prose" - }, - { - "id": "linear-to-decibel", - "href": "https://www.w3.org/TR/webaudio/#linear-to-decibel", - "linkingText": [ - "linear gain unit to decibel" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "title": "Processing", - "number": "1.19.4" - }, - "definedIn": "prose" - }, - { - "id": "decibels-to-linear-gain-unit", - "href": "https://www.w3.org/TR/webaudio/#decibels-to-linear-gain-unit", - "linkingText": [ - "decibels to linear gain unit" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "title": "Processing", - "number": "1.19.4" - }, - "definedIn": "prose" - }, - { - "id": "GainNode", - "href": "https://www.w3.org/TR/webaudio/#GainNode", - "linkingText": [ - "GainNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "GainNode", - "href": "https://www.w3.org/TR/webaudio/#GainNode", - "title": "The GainNode Interface", - "number": "1.20" - }, - "definedIn": "heading" - }, - { - "id": "dom-gainnode-gainnode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "GainNode/GainNode(context, options)", - "GainNode/constructor(context, options)", - "GainNode/GainNode(context)", - "GainNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "GainNode", - "href": "https://www.w3.org/TR/webaudio/#GainNode", - "title": "The GainNode Interface", - "number": "1.20" - }, - "definedIn": "pre" - }, - { - "id": "dom-gainnode-gainnode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "GainNode/GainNode(context, options)", - "GainNode/constructor(context, options)", - "GainNode/GainNode(context)", - "GainNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "GainNode", - "href": "https://www.w3.org/TR/webaudio/#GainNode", - "title": "The GainNode Interface", - "number": "1.20" - }, - "definedIn": "pre" - }, - { - "id": "dom-gainnode-gainnode", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode", - "linkingText": [ - "GainNode(context, options)", - "constructor(context, options)", - "GainNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "GainNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "GainNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#GainNode-constructors", - "title": "Constructors", - "number": "1.20.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-gainnode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "GainNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "GainNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#GainNode-constructors", - "title": "Constructors", - "number": "1.20.1" - }, - "definedIn": "table" - }, - { - "id": "dom-gainnode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "GainNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "GainNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#GainNode-constructors", - "title": "Constructors", - "number": "1.20.1" - }, - "definedIn": "table" - }, - { - "id": "dom-gainnode-gain", - "href": "https://www.w3.org/TR/webaudio/#dom-gainnode-gain", - "linkingText": [ - "gain" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "GainNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "GainNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#GainNode-attributes", - "title": "Attributes", - "number": "1.20.2" - }, - "definedIn": "dt" - }, - { - "id": "GainOptions", - "href": "https://www.w3.org/TR/webaudio/#GainOptions", - "linkingText": [ - "GainOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "GainOptions", - "href": "https://www.w3.org/TR/webaudio/#GainOptions", - "title": "GainOptions", - "number": "1.20.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-gainoptions-gain", - "href": "https://www.w3.org/TR/webaudio/#dom-gainoptions-gain", - "linkingText": [ - "gain" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "GainOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-gainoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-gainoptions-members", - "title": "Dictionary GainOptions Members", - "number": "1.20.3.1" - }, - "definedIn": "dt" - }, - { - "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", - "linkingText": [ - "IIRFilterNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", - "title": "The IIRFilterNode Interface", - "number": "1.21" - }, - "definedIn": "heading" - }, - { - "id": "dom-iirfilternode-iirfilternode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/IIRFilterNode(context, options)", - "IIRFilterNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", - "title": "The IIRFilterNode Interface", - "number": "1.21" - }, - "definedIn": "pre" - }, - { - "id": "dom-iirfilternode-iirfilternode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/IIRFilterNode(context, options)", - "IIRFilterNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", - "title": "The IIRFilterNode Interface", - "number": "1.21" - }, - "definedIn": "pre" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "linkingText": [ - "frequencyHz" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", - "title": "The IIRFilterNode Interface", - "number": "1.21" - }, - "definedIn": "pre" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "linkingText": [ - "magResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", - "title": "The IIRFilterNode Interface", - "number": "1.21" - }, - "definedIn": "pre" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "linkingText": [ - "phaseResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", - "title": "The IIRFilterNode Interface", - "number": "1.21" - }, - "definedIn": "pre" - }, - { - "id": "dom-iirfilternode-iirfilternode", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode", - "linkingText": [ - "IIRFilterNode(context, options)", - "constructor(context, options)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "IIRFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-constructors", - "title": "Constructors", - "number": "1.21.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-iirfilternode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-constructors", - "title": "Constructors", - "number": "1.21.1" - }, - "definedIn": "table" - }, - { - "id": "dom-iirfilternode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-constructors", - "title": "Constructors", - "number": "1.21.1" - }, - "definedIn": "table" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse", - "linkingText": [ - "getFrequencyResponse(frequencyHz, magResponse, phaseResponse)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "IIRFilterNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", - "title": "Methods", - "number": "1.21.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-frequencyhz", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz", - "linkingText": [ - "frequencyHz" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", - "title": "Methods", - "number": "1.21.2" - }, - "definedIn": "table" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-magresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-magresponse", - "linkingText": [ - "magResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", - "title": "Methods", - "number": "1.21.2" - }, - "definedIn": "table" - }, - { - "id": "dom-iirfilternode-getfrequencyresponse-phaseresponse", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-phaseresponse", - "linkingText": [ - "phaseResponse" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "IIRFilterNode/getFrequencyResponse()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", - "title": "Methods", - "number": "1.21.2" - }, - "definedIn": "table" - }, - { - "id": "IIRFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterOptions", - "linkingText": [ - "IIRFilterOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "IIRFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterOptions", - "title": "IIRFilterOptions", - "number": "1.21.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-iirfilteroptions-feedforward", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilteroptions-feedforward", - "linkingText": [ - "feedforward" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "IIRFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-iirfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-iirfilteroptions-members", - "title": "Dictionary IIRFilterOptions Members", - "number": "1.21.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-iirfilteroptions-feedback", - "href": "https://www.w3.org/TR/webaudio/#dom-iirfilteroptions-feedback", - "linkingText": [ - "feedback" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "IIRFilterOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-iirfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-iirfilteroptions-members", - "title": "Dictionary IIRFilterOptions Members", - "number": "1.21.3.1" - }, - "definedIn": "dt" - }, - { - "id": "MediaElementAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", - "linkingText": [ - "MediaElementAudioSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", - "title": "The MediaElementAudioSourceNode Interface", - "number": "1.22" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaElementAudioSourceNode/MediaElementAudioSourceNode(context, options)", - "MediaElementAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", - "title": "The MediaElementAudioSourceNode Interface", - "number": "1.22" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaElementAudioSourceNode/MediaElementAudioSourceNode(context, options)", - "MediaElementAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", - "title": "The MediaElementAudioSourceNode Interface", - "number": "1.22" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "linkingText": [ - "MediaElementAudioSourceNode(context, options)", - "constructor(context, options)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "MediaElementAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.22.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-mediaelementaudiosourcenode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaElementAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.22.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediaelementaudiosourcenode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaElementAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.22.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediaelementaudiosourcenode-mediaelement", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelement", - "linkingText": [ - "mediaElement" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "MediaElementAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-attributes", - "title": "Attributes", - "number": "1.22.2" - }, - "definedIn": "dt" - }, - { - "id": "MediaElementAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions", - "linkingText": [ - "MediaElementAudioSourceOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaElementAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions", - "title": "MediaElementAudioSourceOptions", - "number": "1.22.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediaelementaudiosourceoptions-mediaelement", - "href": "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourceoptions-mediaelement", - "linkingText": [ - "mediaElement" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "MediaElementAudioSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-mediaelementaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediaelementaudiosourceoptions-members", - "title": "Dictionary MediaElementAudioSourceOptions Members", - "number": "1.22.3.1" - }, - "definedIn": "dt" - }, - { - "id": "MediaStreamAudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", - "linkingText": [ - "MediaStreamAudioDestinationNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", - "title": "The MediaStreamAudioDestinationNode Interface", - "number": "1.23" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context, options)", - "MediaStreamAudioDestinationNode/constructor(context, options)", - "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context)", - "MediaStreamAudioDestinationNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", - "title": "The MediaStreamAudioDestinationNode Interface", - "number": "1.23" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context, options)", - "MediaStreamAudioDestinationNode/constructor(context, options)", - "MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode(context)", - "MediaStreamAudioDestinationNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", - "title": "The MediaStreamAudioDestinationNode Interface", - "number": "1.23" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "linkingText": [ - "MediaStreamAudioDestinationNode(context, options)", - "constructor(context, options)", - "MediaStreamAudioDestinationNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "MediaStreamAudioDestinationNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioDestinationNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-constructors", - "title": "Constructors", - "number": "1.23.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-mediastreamaudiodestinationnode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioDestinationNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioDestinationNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-constructors", - "title": "Constructors", - "number": "1.23.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediastreamaudiodestinationnode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioDestinationNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioDestinationNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-constructors", - "title": "Constructors", - "number": "1.23.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediastreamaudiodestinationnode-stream", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-stream", - "linkingText": [ - "stream" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "MediaStreamAudioDestinationNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioDestinationNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-attributes", - "title": "Attributes", - "number": "1.23.2" - }, - "definedIn": "dt" - }, - { - "id": "MediaStreamAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", - "linkingText": [ - "MediaStreamAudioSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", - "title": "The MediaStreamAudioSourceNode Interface", - "number": "1.24" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioSourceNode/MediaStreamAudioSourceNode(context, options)", - "MediaStreamAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", - "title": "The MediaStreamAudioSourceNode Interface", - "number": "1.24" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioSourceNode/MediaStreamAudioSourceNode(context, options)", - "MediaStreamAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", - "title": "The MediaStreamAudioSourceNode Interface", - "number": "1.24" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "linkingText": [ - "MediaStreamAudioSourceNode(context, options)", - "constructor(context, options)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "MediaStreamAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.24.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-mediastreamaudiosourcenode-input-track-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-input-track-slot", - "linkingText": [ - "[[input track]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "MediaStreamAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.24.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-mediastreamaudiosourcenode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.24.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediastreamaudiosourcenode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.24.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediastreamaudiosourcenode-mediastream", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastream", - "linkingText": [ - "mediaStream" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "MediaStreamAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-attributes", - "title": "Attributes", - "number": "1.24.2" - }, - "definedIn": "dt" - }, - { - "id": "MediaStreamAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceOptions", - "linkingText": [ - "MediaStreamAudioSourceOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceOptions", - "title": "MediaStreamAudioSourceOptions", - "number": "1.24.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediastreamaudiosourceoptions-mediastream", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourceoptions-mediastream", - "linkingText": [ - "mediaStream" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "MediaStreamAudioSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-mediastreamaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediastreamaudiosourceoptions-members", - "title": "Dictionary MediaStreamAudioSourceOptions Members", - "number": "1.24.3.1" - }, - "definedIn": "dt" - }, - { - "id": "MediaStreamTrackAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", - "linkingText": [ - "MediaStreamTrackAudioSourceNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamTrackAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", - "title": "The MediaStreamTrackAudioSourceNode Interface", - "number": "1.25" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamTrackAudioSourceNode/MediaStreamTrackAudioSourceNode(context, options)", - "MediaStreamTrackAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamTrackAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", - "title": "The MediaStreamTrackAudioSourceNode Interface", - "number": "1.25" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamTrackAudioSourceNode/MediaStreamTrackAudioSourceNode(context, options)", - "MediaStreamTrackAudioSourceNode/constructor(context, options)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamTrackAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", - "title": "The MediaStreamTrackAudioSourceNode Interface", - "number": "1.25" - }, - "definedIn": "pre" - }, - { - "id": "dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "linkingText": [ - "MediaStreamTrackAudioSourceNode(context, options)", - "constructor(context, options)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "MediaStreamTrackAudioSourceNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamTrackAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.25.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-mediastreamtrackaudiosourcenode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamTrackAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamTrackAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.25.1" - }, - "definedIn": "table" - }, - { - "id": "dom-mediastreamtrackaudiosourcenode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "MediaStreamTrackAudioSourceNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamTrackAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode-constructors", - "title": "Constructors", - "number": "1.25.1" - }, - "definedIn": "table" - }, - { - "id": "MediaStreamTrackAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceOptions", - "linkingText": [ - "MediaStreamTrackAudioSourceOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "MediaStreamTrackAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceOptions", - "title": "MediaStreamTrackAudioSourceOptions", - "number": "1.25.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "href": "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "linkingText": [ - "mediaStreamTrack" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "MediaStreamTrackAudioSourceOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-mediastreamtrackaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediastreamtrackaudiosourceoptions-members", - "title": "Dictionary MediaStreamTrackAudioSourceOptions Members", - "number": "1.25.2.1" - }, - "definedIn": "dt" - }, - { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "linkingText": [ - "OscillatorNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "heading" - }, - { - "id": "computedoscfrequency", - "href": "https://www.w3.org/TR/webaudio/#computedoscfrequency", - "linkingText": [ - "computedOscFrequency" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-oscillatortype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-oscillatortype", - "linkingText": [ - "OscillatorType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "pre" - }, - { - "id": "dom-oscillatortype-sine", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatortype-sine", - "linkingText": [ - "\"sine\"", - "sine" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OscillatorType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatortype-square", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatortype-square", - "linkingText": [ - "\"square\"", - "square" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OscillatorType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatortype-sawtooth", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatortype-sawtooth", - "linkingText": [ - "\"sawtooth\"", - "sawtooth" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OscillatorType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatortype-triangle", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatortype-triangle", - "linkingText": [ - "\"triangle\"", - "triangle" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OscillatorType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatortype-custom", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatortype-custom", - "linkingText": [ - "\"custom\"", - "custom" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OscillatorType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatornode-oscillatornode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/OscillatorNode(context, options)", - "OscillatorNode/constructor(context, options)", - "OscillatorNode/OscillatorNode(context)", - "OscillatorNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "pre" - }, - { - "id": "dom-oscillatornode-oscillatornode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/OscillatorNode(context, options)", - "OscillatorNode/constructor(context, options)", - "OscillatorNode/OscillatorNode(context)", - "OscillatorNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "pre" - }, - { - "id": "dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", - "linkingText": [ - "periodicWave" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/setPeriodicWave(periodicWave)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - "definedIn": "pre" - }, - { - "id": "dom-oscillatornode-oscillatornode", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode", - "linkingText": [ - "OscillatorNode(context, options)", - "constructor(context, options)", - "OscillatorNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "OscillatorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-constructors", - "title": "Constructors", - "number": "1.26.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatornode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-constructors", - "title": "Constructors", - "number": "1.26.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatornode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-constructors", - "title": "Constructors", - "number": "1.26.1" - }, - "definedIn": "table" - }, - { - "id": "dom-oscillatornode-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OscillatorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-attributes", - "title": "Attributes", - "number": "1.26.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatornode-frequency", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-frequency", - "linkingText": [ - "frequency" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OscillatorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-attributes", - "title": "Attributes", - "number": "1.26.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatornode-type", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "OscillatorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-attributes", - "title": "Attributes", - "number": "1.26.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatornode-setperiodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave", - "linkingText": [ - "setPeriodicWave(periodicWave)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "OscillatorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-methods", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-methods", - "title": "Methods", - "number": "1.26.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatornode-setperiodicwave-periodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave-periodicwave", - "linkingText": [ - "periodicWave" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "OscillatorNode/setPeriodicWave()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorNode-methods", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-methods", - "title": "Methods", - "number": "1.26.3" - }, - "definedIn": "table" - }, - { - "id": "OscillatorOptions", - "href": "https://www.w3.org/TR/webaudio/#OscillatorOptions", - "linkingText": [ - "OscillatorOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "OscillatorOptions", - "href": "https://www.w3.org/TR/webaudio/#OscillatorOptions", - "title": "OscillatorOptions", - "number": "1.26.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-oscillatoroptions-detune", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-detune", - "linkingText": [ - "detune" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OscillatorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-oscillatoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", - "title": "Dictionary OscillatorOptions Members", - "number": "1.26.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatoroptions-frequency", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-frequency", - "linkingText": [ - "frequency" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OscillatorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-oscillatoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", - "title": "Dictionary OscillatorOptions Members", - "number": "1.26.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatoroptions-periodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-periodicwave", - "linkingText": [ - "periodicWave" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OscillatorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-oscillatoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", - "title": "Dictionary OscillatorOptions Members", - "number": "1.26.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-oscillatoroptions-type", - "href": "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-type", - "linkingText": [ - "type" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "OscillatorOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-oscillatoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", - "title": "Dictionary OscillatorOptions Members", - "number": "1.26.4.1" - }, - "definedIn": "dt" - }, - { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "linkingText": [ - "PannerNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "heading" - }, - { - "id": "enumdef-panningmodeltype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-panningmodeltype", - "linkingText": [ - "PanningModelType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "pre" - }, - { - "id": "dom-panningmodeltype-equalpower", - "href": "https://www.w3.org/TR/webaudio/#dom-panningmodeltype-equalpower", - "linkingText": [ - "\"equalpower\"", - "equalpower" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "PanningModelType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "table" - }, - { - "id": "dom-panningmodeltype-hrtf", - "href": "https://www.w3.org/TR/webaudio/#dom-panningmodeltype-hrtf", - "linkingText": [ - "\"HRTF\"", - "HRTF" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "PanningModelType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "table" - }, - { - "id": "effective-automation-rate", - "href": "https://www.w3.org/TR/webaudio/#effective-automation-rate", - "linkingText": [ - "effective automation rate" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "prose" - }, - { - "id": "enumdef-distancemodeltype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-distancemodeltype", - "linkingText": [ - "DistanceModelType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "pre" - }, - { - "id": "dom-distancemodeltype-linear", - "href": "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-linear", - "linkingText": [ - "\"linear\"", - "linear" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "DistanceModelType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "table" - }, - { - "id": "dom-distancemodeltype-inverse", - "href": "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-inverse", - "linkingText": [ - "\"inverse\"", - "inverse" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "DistanceModelType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "table" - }, - { - "id": "dom-distancemodeltype-exponential", - "href": "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-exponential", - "linkingText": [ - "\"exponential\"", - "exponential" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "DistanceModelType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-pannernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/PannerNode(context, options)", - "PannerNode/constructor(context, options)", - "PannerNode/PannerNode(context)", - "PannerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-pannernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/PannerNode(context, options)", - "PannerNode/constructor(context, options)", - "PannerNode/PannerNode(context)", - "PannerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setposition-x-y-z-x", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setposition-x-y-z-y", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setposition-x-y-z-z", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setorientation-x-y-z-x", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setorientation-x-y-z-y", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-setorientation-x-y-z-z", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation(x, y, z)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "title": "The PannerNode Interface", - "number": "1.27" - }, - "definedIn": "pre" - }, - { - "id": "dom-pannernode-pannernode", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode", - "linkingText": [ - "PannerNode(context, options)", - "constructor(context, options)", - "PannerNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-constructors", - "title": "Constructors", - "number": "1.27.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-constructors", - "title": "Constructors", - "number": "1.27.1" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-constructors", - "title": "Constructors", - "number": "1.27.1" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-coneinnerangle", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-coneinnerangle", - "linkingText": [ - "coneInnerAngle" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-coneouterangle", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-coneouterangle", - "linkingText": [ - "coneOuterAngle" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-coneoutergain", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-coneoutergain", - "linkingText": [ - "coneOuterGain" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-distancemodel", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-distancemodel", - "linkingText": [ - "distanceModel" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-maxdistance", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-maxdistance", - "linkingText": [ - "maxDistance" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-orientationx", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationx", - "linkingText": [ - "orientationX" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-orientationy", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationy", - "linkingText": [ - "orientationY" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-orientationz", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationz", - "linkingText": [ - "orientationZ" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-panningmodel", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-panningmodel", - "linkingText": [ - "panningModel" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-positionx", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-positionx", - "linkingText": [ - "positionX" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-positiony", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-positiony", - "linkingText": [ - "positionY" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-positionz", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-positionz", - "linkingText": [ - "positionZ" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-refdistance", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-refdistance", - "linkingText": [ - "refDistance" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-rollofffactor", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-rollofffactor", - "linkingText": [ - "rolloffFactor" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "title": "Attributes", - "number": "1.27.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-setorientation", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation", - "linkingText": [ - "setOrientation(x, y, z)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "title": "Methods", - "number": "1.27.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-setorientation-x", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "title": "Methods", - "number": "1.27.3" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-setorientation-y", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "title": "Methods", - "number": "1.27.3" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-setorientation-z", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setOrientation()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "title": "Methods", - "number": "1.27.3" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-setposition", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition", - "linkingText": [ - "setPosition(x, y, z)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "PannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "title": "Methods", - "number": "1.27.3" - }, - "definedIn": "dt" - }, - { - "id": "dom-pannernode-setposition-x", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x", - "linkingText": [ - "x" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "title": "Methods", - "number": "1.27.3" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-setposition-y", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-y", - "linkingText": [ - "y" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "title": "Methods", - "number": "1.27.3" - }, - "definedIn": "table" - }, - { - "id": "dom-pannernode-setposition-z", - "href": "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-z", - "linkingText": [ - "z" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PannerNode/setPosition()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "title": "Methods", - "number": "1.27.3" - }, - "definedIn": "table" - }, - { - "id": "PannerOptions", - "href": "https://www.w3.org/TR/webaudio/#PannerOptions", - "linkingText": [ - "PannerOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PannerOptions", - "href": "https://www.w3.org/TR/webaudio/#PannerOptions", - "title": "PannerOptions", - "number": "1.27.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-panneroptions-coneinnerangle", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneinnerangle", - "linkingText": [ - "coneInnerAngle" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-coneouterangle", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneouterangle", - "linkingText": [ - "coneOuterAngle" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-coneoutergain", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneoutergain", - "linkingText": [ - "coneOuterGain" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-distancemodel", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-distancemodel", - "linkingText": [ - "distanceModel" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-maxdistance", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-maxdistance", - "linkingText": [ - "maxDistance" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-orientationx", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationx", - "linkingText": [ - "orientationX" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-orientationy", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationy", - "linkingText": [ - "orientationY" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-orientationz", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationz", - "linkingText": [ - "orientationZ" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-panningmodel", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-panningmodel", - "linkingText": [ - "panningModel" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-positionx", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-positionx", - "linkingText": [ - "positionX" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-positiony", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-positiony", - "linkingText": [ - "positionY" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-positionz", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-positionz", - "linkingText": [ - "positionZ" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-refdistance", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-refdistance", - "linkingText": [ - "refDistance" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-panneroptions-rollofffactor", - "href": "https://www.w3.org/TR/webaudio/#dom-panneroptions-rollofffactor", - "linkingText": [ - "rolloffFactor" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - "definedIn": "dt" - }, - { - "id": "PeriodicWave", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave", - "linkingText": [ - "PeriodicWave" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave", - "title": "The PeriodicWave Interface", - "number": "1.28" - }, - "definedIn": "heading" - }, - { - "id": "dom-periodicwave-periodicwave-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PeriodicWave/PeriodicWave(context, options)", - "PeriodicWave/constructor(context, options)", - "PeriodicWave/PeriodicWave(context)", - "PeriodicWave/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave", - "title": "The PeriodicWave Interface", - "number": "1.28" - }, - "definedIn": "pre" - }, - { - "id": "dom-periodicwave-periodicwave-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PeriodicWave/PeriodicWave(context, options)", - "PeriodicWave/constructor(context, options)", - "PeriodicWave/PeriodicWave(context)", - "PeriodicWave/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave", - "title": "The PeriodicWave Interface", - "number": "1.28" - }, - "definedIn": "pre" - }, - { - "id": "dom-periodicwave-periodicwave", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave", - "linkingText": [ - "PeriodicWave(context, options)", - "constructor(context, options)", - "PeriodicWave(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "PeriodicWave" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", - "title": "Constructors", - "number": "1.28.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-periodicwave-real-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-real-slot", - "linkingText": [ - "[[real]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PeriodicWave" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", - "title": "Constructors", - "number": "1.28.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-periodicwave-imag-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-imag-slot", - "linkingText": [ - "[[imag]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PeriodicWave" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", - "title": "Constructors", - "number": "1.28.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-periodicwave-normalize-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-normalize-slot", - "linkingText": [ - "[[normalize]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "PeriodicWave" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", - "title": "Constructors", - "number": "1.28.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-periodicwave-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PeriodicWave/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", - "title": "Constructors", - "number": "1.28.1" - }, - "definedIn": "table" - }, - { - "id": "dom-periodicwave-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwave-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "PeriodicWave/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", - "title": "Constructors", - "number": "1.28.1" - }, - "definedIn": "table" - }, - { - "id": "PeriodicWaveConstraints", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveConstraints", - "linkingText": [ - "PeriodicWaveConstraints" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWaveConstraints", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveConstraints", - "title": "PeriodicWaveConstraints", - "number": "1.28.2" - }, - "definedIn": "heading" - }, - { - "id": "dom-periodicwaveconstraints-disablenormalization", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwaveconstraints-disablenormalization", - "linkingText": [ - "disableNormalization" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PeriodicWaveConstraints" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-periodicwaveconstraints-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveconstraints-members", - "title": "Dictionary PeriodicWaveConstraints Members", - "number": "1.28.2.1" - }, - "definedIn": "dt" - }, - { - "id": "PeriodicWaveOptions", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveOptions", - "linkingText": [ - "PeriodicWaveOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "PeriodicWaveOptions", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveOptions", - "title": "PeriodicWaveOptions", - "number": "1.28.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-periodicwaveoptions-imag", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwaveoptions-imag", - "linkingText": [ - "imag" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PeriodicWaveOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-periodicwaveoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveoptions-members", - "title": "Dictionary PeriodicWaveOptions Members", - "number": "1.28.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-periodicwaveoptions-real", - "href": "https://www.w3.org/TR/webaudio/#dom-periodicwaveoptions-real", - "linkingText": [ - "real" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "PeriodicWaveOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-periodicwaveoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveoptions-members", - "title": "Dictionary PeriodicWaveOptions Members", - "number": "1.28.3.1" - }, - "definedIn": "dt" - }, - { - "id": "ScriptProcessorNode", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode", - "linkingText": [ - "ScriptProcessorNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "ScriptProcessorNode", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode", - "title": "The ScriptProcessorNode Interface - DEPRECATED", - "number": "1.29" - }, - "definedIn": "heading" - }, - { - "id": "dom-scriptprocessornode-buffersize", - "href": "https://www.w3.org/TR/webaudio/#dom-scriptprocessornode-buffersize", - "linkingText": [ - "bufferSize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ScriptProcessorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ScriptProcessorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode-attributes", - "title": "Attributes", - "number": "1.29.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-scriptprocessornode-onaudioprocess", - "href": "https://www.w3.org/TR/webaudio/#dom-scriptprocessornode-onaudioprocess", - "linkingText": [ - "onaudioprocess" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "ScriptProcessorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ScriptProcessorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode-attributes", - "title": "Attributes", - "number": "1.29.1" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-scriptprocessornode-audioprocess", - "href": "https://www.w3.org/TR/webaudio/#eventdef-scriptprocessornode-audioprocess", - "linkingText": [ - "audioprocess" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "ScriptProcessorNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "ScriptProcessorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode-attributes", - "title": "Attributes", - "number": "1.29.1" - }, - "definedIn": "prose" - }, - { - "id": "stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#stereopannernode", - "linkingText": [ - "StereoPannerNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#stereopannernode", - "title": "The StereoPannerNode Interface", - "number": "1.30" - }, - "definedIn": "heading" - }, - { - "id": "dom-stereopannernode-stereopannernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "StereoPannerNode/StereoPannerNode(context, options)", - "StereoPannerNode/constructor(context, options)", - "StereoPannerNode/StereoPannerNode(context)", - "StereoPannerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#stereopannernode", - "title": "The StereoPannerNode Interface", - "number": "1.30" - }, - "definedIn": "pre" - }, - { - "id": "dom-stereopannernode-stereopannernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "StereoPannerNode/StereoPannerNode(context, options)", - "StereoPannerNode/constructor(context, options)", - "StereoPannerNode/StereoPannerNode(context)", - "StereoPannerNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#stereopannernode", - "title": "The StereoPannerNode Interface", - "number": "1.30" - }, - "definedIn": "pre" - }, - { - "id": "dom-stereopannernode-stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode", - "linkingText": [ - "StereoPannerNode(context, options)", - "constructor(context, options)", - "StereoPannerNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "StereoPannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "StereoPannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-constructors", - "title": "Constructors", - "number": "1.30.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-stereopannernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "StereoPannerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "StereoPannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-constructors", - "title": "Constructors", - "number": "1.30.1" - }, - "definedIn": "table" - }, - { - "id": "dom-stereopannernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "StereoPannerNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "StereoPannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-constructors", - "title": "Constructors", - "number": "1.30.1" - }, - "definedIn": "table" - }, - { - "id": "dom-stereopannernode-pan", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopannernode-pan", - "linkingText": [ - "pan" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "StereoPannerNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "StereoPannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-attributes", - "title": "Attributes", - "number": "1.30.2" - }, - "definedIn": "dt" - }, - { - "id": "StereoPannerOptions", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerOptions", - "linkingText": [ - "StereoPannerOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "StereoPannerOptions", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerOptions", - "title": "StereoPannerOptions", - "number": "1.30.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-stereopanneroptions-pan", - "href": "https://www.w3.org/TR/webaudio/#dom-stereopanneroptions-pan", - "linkingText": [ - "pan" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "StereoPannerOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-stereopanneroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-stereopanneroptions-members", - "title": "Dictionary StereoPannerOptions Members", - "number": "1.30.3.1" - }, - "definedIn": "dt" - }, - { - "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "linkingText": [ - "WaveShaperNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "title": "The WaveShaperNode Interface", - "number": "1.31" - }, - "definedIn": "heading" - }, - { - "id": "enumdef-oversampletype", - "href": "https://www.w3.org/TR/webaudio/#enumdef-oversampletype", - "linkingText": [ - "OverSampleType" - ], - "localLinkingText": [], - "type": "enum", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "title": "The WaveShaperNode Interface", - "number": "1.31" - }, - "definedIn": "pre" - }, - { - "id": "dom-oversampletype-none", - "href": "https://www.w3.org/TR/webaudio/#dom-oversampletype-none", - "linkingText": [ - "\"none\"", - "none" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OverSampleType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "title": "The WaveShaperNode Interface", - "number": "1.31" - }, - "definedIn": "table" - }, - { - "id": "dom-oversampletype-2x", - "href": "https://www.w3.org/TR/webaudio/#dom-oversampletype-2x", - "linkingText": [ - "\"2x\"", - "2x" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OverSampleType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "title": "The WaveShaperNode Interface", - "number": "1.31" - }, - "definedIn": "table" - }, - { - "id": "dom-oversampletype-4x", - "href": "https://www.w3.org/TR/webaudio/#dom-oversampletype-4x", - "linkingText": [ - "\"4x\"", - "4x" - ], - "localLinkingText": [], - "type": "enum-value", - "for": [ - "OverSampleType" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "title": "The WaveShaperNode Interface", - "number": "1.31" - }, - "definedIn": "table" - }, - { - "id": "dom-waveshapernode-waveshapernode-context-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode-context-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "WaveShaperNode/WaveShaperNode(context, options)", - "WaveShaperNode/constructor(context, options)", - "WaveShaperNode/WaveShaperNode(context)", - "WaveShaperNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "title": "The WaveShaperNode Interface", - "number": "1.31" - }, - "definedIn": "pre" - }, - { - "id": "dom-waveshapernode-waveshapernode-context-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode-context-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "WaveShaperNode/WaveShaperNode(context, options)", - "WaveShaperNode/constructor(context, options)", - "WaveShaperNode/WaveShaperNode(context)", - "WaveShaperNode/constructor(context)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "title": "The WaveShaperNode Interface", - "number": "1.31" - }, - "definedIn": "pre" - }, - { - "id": "dom-waveshapernode-waveshapernode", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode", - "linkingText": [ - "WaveShaperNode(context, options)", - "constructor(context, options)", - "WaveShaperNode(context)", - "constructor(context)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "WaveShaperNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", - "title": "Constructors", - "number": "1.31.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-waveshapernode-curve-set-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-curve-set-slot", - "linkingText": [ - "[[curve set]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "WaveShaperNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", - "title": "Constructors", - "number": "1.31.1" - }, - "definedIn": "prose" - }, - { - "id": "dom-waveshapernode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "WaveShaperNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", - "title": "Constructors", - "number": "1.31.1" - }, - "definedIn": "table" - }, - { - "id": "dom-waveshapernode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "WaveShaperNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", - "title": "Constructors", - "number": "1.31.1" - }, - "definedIn": "table" - }, - { - "id": "dom-waveshapernode-curve", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-curve", - "linkingText": [ - "curve" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "WaveShaperNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-attributes", - "title": "Attributes", - "number": "1.31.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-waveshapernode-oversample", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshapernode-oversample", - "linkingText": [ - "oversample" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "WaveShaperNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-attributes", - "title": "Attributes", - "number": "1.31.2" - }, - "definedIn": "dt" - }, - { - "id": "WaveShaperOptions", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperOptions", - "linkingText": [ - "WaveShaperOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "WaveShaperOptions", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperOptions", - "title": "WaveShaperOptions", - "number": "1.31.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-waveshaperoptions-curve", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshaperoptions-curve", - "linkingText": [ - "curve" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "WaveShaperOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-waveshaperoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-waveshaperoptions-members", - "title": "Dictionary WaveShaperOptions Members", - "number": "1.31.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-waveshaperoptions-oversample", - "href": "https://www.w3.org/TR/webaudio/#dom-waveshaperoptions-oversample", - "linkingText": [ - "oversample" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "WaveShaperOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-waveshaperoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-waveshaperoptions-members", - "title": "Dictionary WaveShaperOptions Members", - "number": "1.31.3.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioWorklet", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet", - "linkingText": [ - "AudioWorklet" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorklet", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet", - "title": "The AudioWorklet Interface", - "number": "1.32" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioworklet-port", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworklet-port", - "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorklet" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorklet-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-attributes", - "title": "Attributes", - "number": "1.32.1" - }, - "definedIn": "dt" - }, - { - "id": "node-name-to-parameter-descriptor-map", - "href": "https://www.w3.org/TR/webaudio/#node-name-to-parameter-descriptor-map", - "linkingText": [ - "node name to parameter descriptor map" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorklet-concepts", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-concepts", - "title": "Concepts", - "number": "1.32.2" - }, - "definedIn": "prose" - }, - { - "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "linkingText": [ - "AudioWorkletGlobalScope" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - "definedIn": "heading" - }, - { - "id": "node-name-to-processor-constructor-map", - "href": "https://www.w3.org/TR/webaudio/#node-name-to-processor-constructor-map", - "linkingText": [ - "node name to processor constructor map" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - "definedIn": "prose" - }, - { - "id": "pending-processor-construction-data", - "href": "https://www.w3.org/TR/webaudio/#pending-processor-construction-data", - "linkingText": [ - "pending processor construction data" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - "definedIn": "prose" - }, - { - "id": "pending-processor-construction-data-node-reference", - "href": "https://www.w3.org/TR/webaudio/#pending-processor-construction-data-node-reference", - "linkingText": [ - "node reference" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "pending processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - "definedIn": "prose" - }, - { - "id": "pending-processor-construction-data-transferred-port", - "href": "https://www.w3.org/TR/webaudio/#pending-processor-construction-data-transferred-port", - "linkingText": [ - "transferred port" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "pending processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - "definedIn": "prose" - }, - { - "id": "callbackdef-audioworkletprocessorconstructor", - "href": "https://www.w3.org/TR/webaudio/#callbackdef-audioworkletprocessorconstructor", - "linkingText": [ - "AudioWorkletProcessorConstructor" - ], - "localLinkingText": [], - "type": "callback", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletprocessorconstructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessorconstructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletProcessorConstructor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletglobalscope-currentframe", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-currentframe", - "linkingText": [ - "currentFrame" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", - "title": "Attributes", - "number": "1.32.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-currenttime", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-currenttime", - "linkingText": [ - "currentTime" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", - "title": "Attributes", - "number": "1.32.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-samplerate", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-samplerate", - "linkingText": [ - "sampleRate" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", - "title": "Attributes", - "number": "1.32.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-renderquantumsize", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-renderquantumsize", - "linkingText": [ - "renderQuantumSize" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", - "title": "Attributes", - "number": "1.32.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-port", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-port", - "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", - "title": "Attributes", - "number": "1.32.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-registerprocessor", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor", - "linkingText": [ - "registerProcessor(name, processorCtor)" - ], - "localLinkingText": [], - "type": "method", - "for": [ - "AudioWorkletGlobalScope" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-methods", - "title": "Methods", - "number": "1.32.3.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "linkingText": [ - "name" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletGlobalScope/registerProcessor(name, processorCtor)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-methods", - "title": "Methods", - "number": "1.32.3.2" - }, - "definedIn": "table" - }, - { - "id": "dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "linkingText": [ - "processorCtor" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletGlobalScope/registerProcessor(name, processorCtor)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletGlobalScope-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-methods", - "title": "Methods", - "number": "1.32.3.2" - }, - "definedIn": "table" - }, - { - "id": "processor-construction-data", - "href": "https://www.w3.org/TR/webaudio/#processor-construction-data", - "linkingText": [ - "processor construction data" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", - "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" - }, - "definedIn": "prose" - }, - { - "id": "processor-construction-data-name", - "href": "https://www.w3.org/TR/webaudio/#processor-construction-data-name", - "linkingText": [ - "name" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", - "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" - }, - "definedIn": "prose" - }, - { - "id": "processor-construction-data-node", - "href": "https://www.w3.org/TR/webaudio/#processor-construction-data-node", - "linkingText": [ - "node" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", - "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" - }, - "definedIn": "prose" - }, - { - "id": "processor-construction-data-options", - "href": "https://www.w3.org/TR/webaudio/#processor-construction-data-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", - "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" - }, - "definedIn": "prose" - }, - { - "id": "processor-construction-data-port", - "href": "https://www.w3.org/TR/webaudio/#processor-construction-data-port", - "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "processor construction data" - ], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", - "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" - }, - "definedIn": "prose" - }, - { - "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", - "linkingText": [ - "AudioWorkletNode" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", - "title": "The AudioWorkletNode Interface", - "number": "1.32.4" - }, - "definedIn": "heading" - }, - { - "id": "active-source", - "href": "https://www.w3.org/TR/webaudio/#active-source", - "linkingText": [ - "active source" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", - "title": "The AudioWorkletNode Interface", - "number": "1.32.4" - }, - "definedIn": "prose" - }, - { - "id": "audioparammap", - "href": "https://www.w3.org/TR/webaudio/#audioparammap", - "linkingText": [ - "AudioParamMap" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", - "title": "The AudioWorkletNode Interface", - "number": "1.32.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletnode-audioworkletnode-context-name-options-context", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/AudioWorkletNode(context, name, options)", - "AudioWorkletNode/constructor(context, name, options)", - "AudioWorkletNode/AudioWorkletNode(context, name)", - "AudioWorkletNode/constructor(context, name)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", - "title": "The AudioWorkletNode Interface", - "number": "1.32.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletnode-audioworkletnode-context-name-options-name", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-name", - "linkingText": [ - "name" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/AudioWorkletNode(context, name, options)", - "AudioWorkletNode/constructor(context, name, options)", - "AudioWorkletNode/AudioWorkletNode(context, name)", - "AudioWorkletNode/constructor(context, name)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", - "title": "The AudioWorkletNode Interface", - "number": "1.32.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletnode-audioworkletnode-context-name-options-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/AudioWorkletNode(context, name, options)", - "AudioWorkletNode/constructor(context, name, options)", - "AudioWorkletNode/AudioWorkletNode(context, name)", - "AudioWorkletNode/constructor(context, name)" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", - "title": "The AudioWorkletNode Interface", - "number": "1.32.4" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletnode-audioworkletnode", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode", - "linkingText": [ - "AudioWorkletNode(context, name, options)", - "constructor(context, name, options)", - "AudioWorkletNode(context, name)", - "constructor(context, name)" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioWorkletNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", - "title": "Constructors", - "number": "1.32.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnode-constructor-context", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-context", - "linkingText": [ - "context" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", - "title": "Constructors", - "number": "1.32.4.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioworkletnode-constructor-name", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-name", - "linkingText": [ - "name" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", - "title": "Constructors", - "number": "1.32.4.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioworkletnode-constructor-options", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-options", - "linkingText": [ - "options" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletNode/constructor()" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", - "title": "Constructors", - "number": "1.32.4.1" - }, - "definedIn": "table" - }, - { - "id": "dom-audioworkletnode-onprocessorerror", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-onprocessorerror", - "linkingText": [ - "onprocessorerror" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", - "title": "Attributes", - "number": "1.32.4.2" - }, - "definedIn": "dt" - }, - { - "id": "eventdef-audioworkletnode-processorerror", - "href": "https://www.w3.org/TR/webaudio/#eventdef-audioworkletnode-processorerror", - "linkingText": [ - "processorerror" - ], - "localLinkingText": [], - "type": "event", - "for": [ - "AudioWorkletNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", - "title": "Attributes", - "number": "1.32.4.2" - }, - "definedIn": "prose" - }, - { - "id": "dom-audioworkletnode-parameters", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-parameters", - "linkingText": [ - "parameters" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", - "title": "Attributes", - "number": "1.32.4.2" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnode-port", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-port", - "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletNode" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", - "title": "Attributes", - "number": "1.32.4.2" - }, - "definedIn": "dt" - }, - { - "id": "AudioWorkletNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNodeOptions", - "linkingText": [ - "AudioWorkletNodeOptions" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNodeOptions", - "title": "AudioWorkletNodeOptions", - "number": "1.32.4.3" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioworkletnodeoptions-numberofinputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-numberofinputs", - "linkingText": [ - "numberOfInputs" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioWorkletNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", - "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnodeoptions-numberofoutputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-numberofoutputs", - "linkingText": [ - "numberOfOutputs" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioWorkletNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", - "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnodeoptions-outputchannelcount", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-outputchannelcount", - "linkingText": [ - "outputChannelCount" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioWorkletNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", - "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnodeoptions-parameterdata", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-parameterdata", - "linkingText": [ - "parameterData" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioWorkletNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", - "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletnodeoptions-processoroptions", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-processoroptions", - "linkingText": [ - "processorOptions" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioWorkletNodeOptions" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", - "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" - }, - "definedIn": "dt" - }, - { - "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", - "linkingText": [ - "AudioWorkletProcessor" - ], - "localLinkingText": [], - "type": "interface", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", - "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioworkletprocesscallback-inputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-inputs", - "linkingText": [ - "inputs" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletProcessCallback" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", - "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletprocesscallback-outputs", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-outputs", - "linkingText": [ - "outputs" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletProcessCallback" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", - "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletprocesscallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-parameters", - "linkingText": [ - "parameters" - ], - "localLinkingText": [], - "type": "argument", - "for": [ - "AudioWorkletProcessCallback" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", - "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" - }, - "definedIn": "pre" - }, - { - "id": "dom-audioworkletprocessor-node-reference-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-node-reference-slot", - "linkingText": [ - "[[node reference]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletProcessor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", - "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletprocessor-callable-process-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-callable-process-slot", - "linkingText": [ - "[[callable process]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletProcessor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", - "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletprocessor-audioworkletprocessor", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-audioworkletprocessor", - "linkingText": [ - "AudioWorkletProcessor()", - "constructor()" - ], - "localLinkingText": [], - "type": "constructor", - "for": [ - "AudioWorkletProcessor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorketProcessor-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorketProcessor-constructors", - "title": "Constructors", - "number": "1.32.5.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioworkletprocessor-port", - "href": "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-port", - "linkingText": [ - "port" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "AudioWorkletProcessor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "AudioWorkletProcessor-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-attributes", - "title": "Attributes", - "number": "1.32.5.2" - }, - "definedIn": "dt" - }, - { - "id": "process", - "href": "https://www.w3.org/TR/webaudio/#process", - "linkingText": [ - "process()" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "callback-audioworketprocess-callback", - "href": "https://www.w3.org/TR/webaudio/#callback-audioworketprocess-callback", - "title": "Callback AudioWorkletProcessCallback", - "number": "1.32.5.3" - }, - "definedIn": "prose" - }, - { - "id": "parameterdescriptors", - "href": "https://www.w3.org/TR/webaudio/#parameterdescriptors", - "linkingText": [ - "parameterDescriptors" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "callback-audioworketprocess-callback", - "href": "https://www.w3.org/TR/webaudio/#callback-audioworketprocess-callback", - "title": "Callback AudioWorkletProcessCallback", - "number": "1.32.5.3" - }, - "definedIn": "prose" - }, - { - "id": "audioworkletprocess-callback-parameters", - "href": "https://www.w3.org/TR/webaudio/#audioworkletprocess-callback-parameters", - "linkingText": [ - "AudioWorkletProcessCallback", - "AudioWorkletProcessCallback()" - ], - "localLinkingText": [], - "type": "callback", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "audioworkletprocess-callback-parameters", - "href": "https://www.w3.org/TR/webaudio/#audioworkletprocess-callback-parameters", - "title": "Callback AudioWorkletProcessCallback Parameters", - "number": "1.32.5.3.1" - }, - "definedIn": "heading" - }, - { - "id": "AudioParamDescriptor", - "href": "https://www.w3.org/TR/webaudio/#AudioParamDescriptor", - "linkingText": [ - "AudioParamDescriptor" - ], - "localLinkingText": [], - "type": "dictionary", - "for": [], - "access": "public", - "informative": false, - "heading": { - "id": "AudioParamDescriptor", - "href": "https://www.w3.org/TR/webaudio/#AudioParamDescriptor", - "title": "AudioParamDescriptor", - "number": "1.32.5.4" - }, - "definedIn": "heading" - }, - { - "id": "dom-audioparamdescriptor-automationrate", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-automationrate", - "linkingText": [ - "automationRate" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioParamDescriptor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", - "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparamdescriptor-defaultvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-defaultvalue", - "linkingText": [ - "defaultValue" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioParamDescriptor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", - "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparamdescriptor-maxvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-maxvalue", - "linkingText": [ - "maxValue" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioParamDescriptor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", - "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparamdescriptor-minvalue", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-minvalue", - "linkingText": [ - "minValue" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioParamDescriptor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", - "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" - }, - "definedIn": "dt" - }, - { - "id": "dom-audioparamdescriptor-name", - "href": "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-name", - "linkingText": [ - "name" - ], - "localLinkingText": [], - "type": "dict-member", - "for": [ - "AudioParamDescriptor" - ], - "access": "public", - "informative": false, - "heading": { - "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", - "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" - }, - "definedIn": "dt" - }, - { - "id": "control-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread", - "linkingText": [ - "control thread" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", - "title": "Control Thread and Rendering Thread", - "number": "2.2" - }, - "definedIn": "prose" - }, - { - "id": "rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#rendering-thread", - "linkingText": [ - "rendering thread" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", - "title": "Control Thread and Rendering Thread", - "number": "2.2" - }, - "definedIn": "prose" - }, - { - "id": "control-message-queue", - "href": "https://www.w3.org/TR/webaudio/#control-message-queue", - "linkingText": [ - "control message queue" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", - "title": "Control Thread and Rendering Thread", - "number": "2.2" - }, - "definedIn": "prose" - }, - { - "id": "control-message", - "href": "https://www.w3.org/TR/webaudio/#control-message", - "linkingText": [ - "control message" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", - "title": "Control Thread and Rendering Thread", - "number": "2.2" - }, - "definedIn": "prose" - }, - { - "id": "queuing", - "href": "https://www.w3.org/TR/webaudio/#queuing", - "linkingText": [ - "queue a control message" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", - "title": "Control Thread and Rendering Thread", - "number": "2.2" - }, - "definedIn": "prose" - }, - { - "id": "oldest-message", - "href": "https://www.w3.org/TR/webaudio/#oldest-message", - "linkingText": [ - "oldest message" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", - "title": "Control Thread and Rendering Thread", - "number": "2.2" - }, - "definedIn": "prose" - }, - { - "id": "swap", - "href": "https://www.w3.org/TR/webaudio/#swap", - "linkingText": [ - "swap" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", - "title": "Control Thread and Rendering Thread", - "number": "2.2" - }, - "definedIn": "prose" - }, - { - "id": "render-quantum-size", - "href": "https://www.w3.org/TR/webaudio/#render-quantum-size", - "linkingText": [ - "render quantum size" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "render-quantum", - "href": "https://www.w3.org/TR/webaudio/#render-quantum", - "linkingText": [ - "render quantum" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "atomically", - "href": "https://www.w3.org/TR/webaudio/#atomically", - "linkingText": [ - "atomically" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "system-level-audio-callback", - "href": "https://www.w3.org/TR/webaudio/#system-level-audio-callback", - "linkingText": [ - "system-level audio callback" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "system-level-audio-callback-buffer-size", - "href": "https://www.w3.org/TR/webaudio/#system-level-audio-callback-buffer-size", - "linkingText": [ - "system-level audio callback buffer size" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "load-value", - "href": "https://www.w3.org/TR/webaudio/#load-value", - "linkingText": [ - "load value" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "audio-buffer-underrun", - "href": "https://www.w3.org/TR/webaudio/#audio-buffer-underrun", - "linkingText": [ - "audio buffer underrun" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "baseaudiocontext-associated-task-queue", - "href": "https://www.w3.org/TR/webaudio/#baseaudiocontext-associated-task-queue", - "linkingText": [ - "associated task queue" - ], - "localLinkingText": [], - "type": "dfn", - "for": [ - "BaseAudioContext" - ], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "dom-baseaudiocontext-current-frame-slot", - "href": "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-current-frame-slot", - "linkingText": [ - "[[current frame]]" - ], - "localLinkingText": [], - "type": "attribute", - "for": [ - "BaseAudioContext" - ], - "access": "public", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "visit", - "href": "https://www.w3.org/TR/webaudio/#visit", - "linkingText": [ - "Visit" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "input-audioparam-buffer", - "href": "https://www.w3.org/TR/webaudio/#input-audioparam-buffer", - "linkingText": [ - "input AudioParam buffer" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "input-buffer", - "href": "https://www.w3.org/TR/webaudio/#input-buffer", - "linkingText": [ - "input buffer" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "mute", - "href": "https://www.w3.org/TR/webaudio/#mute", - "linkingText": [ - "Muting" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "available-for-reading", - "href": "https://www.w3.org/TR/webaudio/#available-for-reading", - "linkingText": [ - "Making a buffer available for reading" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "recording-the-input", - "href": "https://www.w3.org/TR/webaudio/#recording-the-input", - "linkingText": [ - "Recording the input" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "computing-a-block-of-audio", - "href": "https://www.w3.org/TR/webaudio/#computing-a-block-of-audio", - "linkingText": [ - "Computing a block of audio" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "processing-an-input-buffer", - "href": "https://www.w3.org/TR/webaudio/#processing-an-input-buffer", - "linkingText": [ - "Processing an input buffer" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - "definedIn": "prose" - }, - { - "id": "mixing-rules", - "href": "https://www.w3.org/TR/webaudio/#mixing-rules", - "linkingText": [ - "mixing rules" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "channel-up-mixing-and-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#channel-up-mixing-and-down-mixing", - "title": "Channel Up-Mixing and Down-Mixing", - "number": "4" - }, - "definedIn": "prose" - }, - { - "id": "up-mixing", - "href": "https://www.w3.org/TR/webaudio/#up-mixing", - "linkingText": [ - "up-mixing" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "channel-up-mixing-and-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#channel-up-mixing-and-down-mixing", - "title": "Channel Up-Mixing and Down-Mixing", - "number": "4" - }, - "definedIn": "prose" - }, - { - "id": "down-mixing", - "href": "https://www.w3.org/TR/webaudio/#down-mixing", - "linkingText": [ - "down-mixing" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "channel-up-mixing-and-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#channel-up-mixing-and-down-mixing", - "title": "Channel Up-Mixing and Down-Mixing", - "number": "4" - }, - "definedIn": "prose" - }, - { - "id": "linear-pcm", - "href": "https://www.w3.org/TR/webaudio/#linear-pcm", - "linkingText": [ - "linear PCM" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "audio-sample-format", - "href": "https://www.w3.org/TR/webaudio/#audio-sample-format", - "title": "Audio sample format", - "number": "5.1" - }, - "definedIn": "prose" - } - ] -} \ No newline at end of file diff --git a/tr/events/webaudio.json b/tr/events/webaudio.json deleted file mode 100644 index 9dde0414f2af..000000000000 --- a/tr/events/webaudio.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" - }, - "events": [ - { - "src": { - "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-error", - "type": "error", - "targets": [ - "AudioContext" - ], - "interface": "Event" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-baseaudiocontext-statechange", - "type": "statechange", - "targets": [ - "BaseAudioContext" - ], - "interface": "Event" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A5" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-sinkchange", - "type": "sinkchange", - "targets": [ - "AudioContext" - ], - "interface": "Event" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A7" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-audiorendercapacity-update", - "type": "update", - "targets": [ - "AudioRenderCapacity" - ], - "interface": "AudioRenderCapacityEvent" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A8" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-offlineaudiocontext-complete", - "type": "complete", - "targets": [ - "OfflineAudioContext" - ], - "interface": "OfflineAudioCompletionEvent" - }, - { - "src": { - "format": "fire an event phrasing", - "href": "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A0" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-audioworkletnode-processorerror", - "type": "processorerror", - "targets": [ - "AudioWorkletNode" - ], - "interface": "ErrorEvent" - }, - { - "type": "ended", - "targets": [ - "AudioScheduledSourceNode" - ], - "src": { - "format": "IDL eventHandler" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-audioscheduledsourcenode-ended" - }, - { - "type": "audioprocess", - "targets": [ - "ScriptProcessorNode" - ], - "src": { - "format": "IDL eventHandler" - }, - "href": "https://www.w3.org/TR/webaudio/#eventdef-scriptprocessornode-audioprocess" - } - ] -} \ No newline at end of file diff --git a/tr/headings/webaudio.json b/tr/headings/webaudio.json deleted file mode 100644 index c8f3e04cb88c..000000000000 --- a/tr/headings/webaudio.json +++ /dev/null @@ -1,1884 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" - }, - "headings": [ - { - "id": "title", - "href": "https://www.w3.org/TR/webaudio/#title", - "level": 1, - "title": "Web Audio API 1.1" - }, - { - "id": "abstract", - "href": "https://www.w3.org/TR/webaudio/#abstract", - "level": 2, - "title": "Abstract" - }, - { - "id": "sotd", - "href": "https://www.w3.org/TR/webaudio/#sotd", - "level": 2, - "title": "Status of this document" - }, - { - "id": "toc", - "href": "https://www.w3.org/TR/webaudio/#toc", - "level": 2, - "title": "Table of Contents" - }, - { - "id": "introductory", - "href": "https://www.w3.org/TR/webaudio/#introductory", - "level": 2, - "title": "Introduction" - }, - { - "id": "Features", - "href": "https://www.w3.org/TR/webaudio/#Features", - "level": 3, - "title": "Features" - }, - { - "id": "ModularRouting", - "href": "https://www.w3.org/TR/webaudio/#ModularRouting", - "level": 4, - "title": "Modular Routing" - }, - { - "id": "APIOverview", - "href": "https://www.w3.org/TR/webaudio/#APIOverview", - "level": 3, - "title": "API Overview" - }, - { - "id": "audioapi", - "href": "https://www.w3.org/TR/webaudio/#audioapi", - "level": 2, - "title": "The Audio API", - "number": "1" - }, - { - "id": "BaseAudioContext", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "level": 3, - "title": "The BaseAudioContext Interface", - "number": "1.1" - }, - { - "id": "BaseAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "level": 4, - "title": "Attributes", - "number": "1.1.1" - }, - { - "id": "BaseAudioContent-methods", - "href": "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "level": 4, - "title": "Methods", - "number": "1.1.2" - }, - { - "id": "callback-decodesuccesscallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodesuccesscallback-parameters", - "level": 4, - "title": "Callback DecodeSuccessCallback() Parameters", - "number": "1.1.3" - }, - { - "id": "callback-decodeerrorcallback-parameters", - "href": "https://www.w3.org/TR/webaudio/#callback-decodeerrorcallback-parameters", - "level": 4, - "title": "Callback DecodeErrorCallback() Parameters", - "number": "1.1.4" - }, - { - "id": "lifetime-AudioContext", - "href": "https://www.w3.org/TR/webaudio/#lifetime-AudioContext", - "level": 4, - "title": "Lifetime", - "number": "1.1.5" - }, - { - "id": "lack-of-introspection-or-serialization-primitives", - "href": "https://www.w3.org/TR/webaudio/#lack-of-introspection-or-serialization-primitives", - "level": 4, - "title": "Lack of Introspection or Serialization Primitives", - "number": "1.1.6" - }, - { - "id": "system-resources-associated-with-baseaudiocontext-subclasses", - "href": "https://www.w3.org/TR/webaudio/#system-resources-associated-with-baseaudiocontext-subclasses", - "level": 4, - "title": "System Resources Associated with BaseAudioContext Subclasses", - "number": "1.1.7" - }, - { - "id": "AudioContext", - "href": "https://www.w3.org/TR/webaudio/#AudioContext", - "level": 3, - "title": "The AudioContext Interface", - "number": "1.2" - }, - { - "id": "AudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-constructors", - "level": 4, - "title": "Constructors", - "number": "1.2.1" - }, - { - "id": "AudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "level": 4, - "title": "Attributes", - "number": "1.2.2" - }, - { - "id": "AudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "level": 4, - "title": "Methods", - "number": "1.2.3" - }, - { - "id": "validating-sink-identifier", - "href": "https://www.w3.org/TR/webaudio/#validating-sink-identifier", - "level": 4, - "title": "Validating sinkId", - "number": "1.2.4" - }, - { - "id": "AudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioContextOptions", - "level": 4, - "title": "AudioContextOptions", - "number": "1.2.5" - }, - { - "id": "dictionary-audiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", - "level": 5, - "title": "Dictionary AudioContextOptions Members", - "number": "1.2.5.1" - }, - { - "id": "AudioSinkOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkOptions", - "level": 4, - "title": "AudioSinkOptions", - "number": "1.2.6" - }, - { - "id": "dictionary-audiosinkoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiosinkoptions-members", - "level": 5, - "title": "Dictionary AudioSinkOptions Members", - "number": "1.2.6.1" - }, - { - "id": "AudioSinkInfo", - "href": "https://www.w3.org/TR/webaudio/#AudioSinkInfo", - "level": 4, - "title": "AudioSinkInfo", - "number": "1.2.7" - }, - { - "id": "audiosinkinfo-attributes", - "href": "https://www.w3.org/TR/webaudio/#audiosinkinfo-attributes", - "level": 5, - "title": "Attributes", - "number": "1.2.7.1" - }, - { - "id": "AudioTimestamp", - "href": "https://www.w3.org/TR/webaudio/#AudioTimestamp", - "level": 4, - "title": "AudioTimestamp", - "number": "1.2.8" - }, - { - "id": "dictionary-audiotimestamp-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiotimestamp-members", - "level": 5, - "title": "Dictionary AudioTimestamp Members", - "number": "1.2.8.1" - }, - { - "id": "AudioRenderCapacity", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "level": 4, - "title": "AudioRenderCapacity", - "number": "1.2.9" - }, - { - "id": "AudioRenderCapacity-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-attributes", - "level": 5, - "title": "Attributes", - "number": "1.2.9.1" - }, - { - "id": "AudioRenderCapacity-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-methods", - "level": 5, - "title": "Methods", - "number": "1.2.9.2" - }, - { - "id": "AudioRenderCapacityOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityOptions", - "level": 4, - "title": "AudioRenderCapacityOptions", - "number": "1.2.10" - }, - { - "id": "dictionary-AudioRenderCapacityOptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-AudioRenderCapacityOptions-members", - "level": 5, - "title": "Dictionary AudioRenderCapacityOptions Members", - "number": "1.2.10.1" - }, - { - "id": "AudioRenderCapacityEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "level": 4, - "title": "AudioRenderCapacityEvent", - "number": "1.2.11" - }, - { - "id": "AudioRenderCapacityEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "level": 5, - "title": "Attributes", - "number": "1.2.11.1" - }, - { - "id": "OfflineAudioContext", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext", - "level": 3, - "title": "The OfflineAudioContext Interface", - "number": "1.3" - }, - { - "id": "OfflineAudioContext-constructors", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", - "level": 4, - "title": "Constructors", - "number": "1.3.1" - }, - { - "id": "OfflineAudioContext-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-attributes", - "level": 4, - "title": "Attributes", - "number": "1.3.2" - }, - { - "id": "OfflineAudioContext-methods", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", - "level": 4, - "title": "Methods", - "number": "1.3.3" - }, - { - "id": "OfflineAudioContextOptions", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioContextOptions", - "level": 4, - "title": "OfflineAudioContextOptions", - "number": "1.3.4" - }, - { - "id": "dictionary-offlineaudiocontextoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", - "level": 5, - "title": "Dictionary OfflineAudioContextOptions Members", - "number": "1.3.4.1" - }, - { - "id": "OfflineAudioCompletionEvent", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", - "level": 4, - "title": "The OfflineAudioCompletionEvent Interface", - "number": "1.3.5" - }, - { - "id": "OfflineAudioCompletionEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent-attributes", - "level": 5, - "title": "Attributes", - "number": "1.3.5.1" - }, - { - "id": "OfflineAudioCompletionEventInit", - "href": "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEventInit", - "level": 5, - "title": "OfflineAudioCompletionEventInit", - "number": "1.3.5.2" - }, - { - "id": "dictionary-offlineaudiocompletioneventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocompletioneventinit-members", - "level": 6, - "title": "Dictionary OfflineAudioCompletionEventInit Members", - "number": "1.3.5.2.1" - }, - { - "id": "AudioBuffer", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer", - "level": 3, - "title": "The AudioBuffer Interface", - "number": "1.4" - }, - { - "id": "AudioBuffer-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-constructors", - "level": 4, - "title": "Constructors", - "number": "1.4.1" - }, - { - "id": "AudioBuffer-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", - "level": 4, - "title": "Attributes", - "number": "1.4.2" - }, - { - "id": "AudioBuffer-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "level": 4, - "title": "Methods", - "number": "1.4.3" - }, - { - "id": "AudioBufferOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferOptions", - "level": 4, - "title": "AudioBufferOptions", - "number": "1.4.4" - }, - { - "id": "dictionary-audiobufferoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobufferoptions-members", - "level": 5, - "title": "Dictionary AudioBufferOptions Members", - "number": "1.4.4.1" - }, - { - "id": "AudioNode", - "href": "https://www.w3.org/TR/webaudio/#AudioNode", - "level": 3, - "title": "The AudioNode Interface", - "number": "1.5" - }, - { - "id": "AudioNode-creation", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "level": 4, - "title": "AudioNode Creation", - "number": "1.5.1" - }, - { - "id": "AudioNode-tail", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-tail", - "level": 4, - "title": "AudioNode Tail-Time", - "number": "1.5.2" - }, - { - "id": "AudioNode-actively-processing", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-actively-processing", - "level": 4, - "title": "AudioNode Lifetime", - "number": "1.5.3" - }, - { - "id": "AudioNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.5.4" - }, - { - "id": "AudioNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "level": 4, - "title": "Methods", - "number": "1.5.5" - }, - { - "id": "AudioNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioNodeOptions", - "level": 4, - "title": "AudioNodeOptions", - "number": "1.5.6" - }, - { - "id": "dictionary-audionodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audionodeoptions-members", - "level": 5, - "title": "Dictionary AudioNodeOptions Members", - "number": "1.5.6.1" - }, - { - "id": "AudioParam", - "href": "https://www.w3.org/TR/webaudio/#AudioParam", - "level": 3, - "title": "The AudioParam Interface", - "number": "1.6" - }, - { - "id": "AudioParam-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-attributes", - "level": 4, - "title": "Attributes", - "number": "1.6.1" - }, - { - "id": "AudioParam-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "level": 4, - "title": "Methods", - "number": "1.6.2" - }, - { - "id": "computation-of-value", - "href": "https://www.w3.org/TR/webaudio/#computation-of-value", - "level": 4, - "title": "Computation of Value", - "number": "1.6.3" - }, - { - "id": "example1-AudioParam", - "href": "https://www.w3.org/TR/webaudio/#example1-AudioParam", - "level": 4, - "title": "AudioParam Automation Example", - "number": "1.6.4" - }, - { - "id": "AudioScheduledSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", - "level": 3, - "title": "The AudioScheduledSourceNode Interface", - "number": "1.7" - }, - { - "id": "AudioScheduledSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.7.1" - }, - { - "id": "AudioScheduledSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", - "level": 4, - "title": "Methods", - "number": "1.7.2" - }, - { - "id": "AnalyserNode", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode", - "level": 3, - "title": "The AnalyserNode Interface", - "number": "1.8" - }, - { - "id": "AnalyserNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.8.1" - }, - { - "id": "AnalyserNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.8.2" - }, - { - "id": "AnalyserNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "level": 4, - "title": "Methods", - "number": "1.8.3" - }, - { - "id": "AnalyserOptions", - "href": "https://www.w3.org/TR/webaudio/#AnalyserOptions", - "level": 4, - "title": "AnalyserOptions", - "number": "1.8.4" - }, - { - "id": "dictionary-analyseroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", - "level": 5, - "title": "Dictionary AnalyserOptions Members", - "number": "1.8.4.1" - }, - { - "id": "time-domain-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#time-domain-down-mixing", - "level": 4, - "title": "Time-Domain Down-Mixing", - "number": "1.8.5" - }, - { - "id": "fft-windowing-and-smoothing-over-time", - "href": "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", - "level": 4, - "title": "FFT Windowing and Smoothing over Time", - "number": "1.8.6" - }, - { - "id": "AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", - "level": 3, - "title": "The AudioBufferSourceNode Interface", - "number": "1.9" - }, - { - "id": "AudioBufferSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.9.1" - }, - { - "id": "AudioBufferSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.9.2" - }, - { - "id": "AudioBufferSourceNode-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", - "level": 4, - "title": "Methods", - "number": "1.9.3" - }, - { - "id": "AudioBufferSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioBufferSourceOptions", - "level": 4, - "title": "AudioBufferSourceOptions", - "number": "1.9.4" - }, - { - "id": "dictionary-audiobuffersourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", - "level": 5, - "title": "Dictionary AudioBufferSourceOptions Members", - "number": "1.9.4.1" - }, - { - "id": "looping-AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#looping-AudioBufferSourceNode", - "level": 4, - "title": "Looping", - "number": "1.9.5" - }, - { - "id": "playback-AudioBufferSourceNode", - "href": "https://www.w3.org/TR/webaudio/#playback-AudioBufferSourceNode", - "level": 4, - "title": "Playback of AudioBuffer Contents", - "number": "1.9.6" - }, - { - "id": "AudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#AudioDestinationNode", - "level": 3, - "title": "The AudioDestinationNode Interface", - "number": "1.10" - }, - { - "id": "AudioDestinationNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioDestinationNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.10.1" - }, - { - "id": "AudioListener", - "href": "https://www.w3.org/TR/webaudio/#AudioListener", - "level": 3, - "title": "The AudioListener Interface", - "number": "1.11" - }, - { - "id": "AudioListener-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "level": 4, - "title": "Attributes", - "number": "1.11.1" - }, - { - "id": "AudioListener-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "level": 4, - "title": "Methods", - "number": "1.11.2" - }, - { - "id": "listenerprocessing", - "href": "https://www.w3.org/TR/webaudio/#listenerprocessing", - "level": 4, - "title": "Processing", - "number": "1.11.3" - }, - { - "id": "AudioProcessingEvent", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", - "level": 3, - "title": "The AudioProcessingEvent Interface - DEPRECATED", - "number": "1.12" - }, - { - "id": "AudioProcessingEvent-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEvent-attributes", - "level": 4, - "title": "Attributes", - "number": "1.12.1" - }, - { - "id": "AudioProcessingEventInit", - "href": "https://www.w3.org/TR/webaudio/#AudioProcessingEventInit", - "level": 4, - "title": "AudioProcessingEventInit", - "number": "1.12.2" - }, - { - "id": "dictionary-audioprocessingeventinit-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioprocessingeventinit-members", - "level": 5, - "title": "Dictionary AudioProcessingEventInit Members", - "number": "1.12.2.1" - }, - { - "id": "BiquadFilterNode", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "level": 3, - "title": "The BiquadFilterNode Interface", - "number": "1.13" - }, - { - "id": "BiquadFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.13.1" - }, - { - "id": "BiquadFilterNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.13.2" - }, - { - "id": "BiquadFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", - "level": 4, - "title": "Methods", - "number": "1.13.3" - }, - { - "id": "BiquadFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#BiquadFilterOptions", - "level": 4, - "title": "BiquadFilterOptions", - "number": "1.13.4" - }, - { - "id": "dictionary-biquadfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", - "level": 5, - "title": "Dictionary BiquadFilterOptions Members", - "number": "1.13.4.1" - }, - { - "id": "filters-characteristics", - "href": "https://www.w3.org/TR/webaudio/#filters-characteristics", - "level": 4, - "title": "Filters Characteristics", - "number": "1.13.5" - }, - { - "id": "ChannelMergerNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode", - "level": 3, - "title": "The ChannelMergerNode Interface", - "number": "1.14" - }, - { - "id": "ChannelMergerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.14.1" - }, - { - "id": "ChannelMergerOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelMergerOptions", - "level": 4, - "title": "ChannelMergerOptions", - "number": "1.14.2" - }, - { - "id": "dictionary-channelmergeroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-channelmergeroptions-members", - "level": 5, - "title": "Dictionary ChannelMergerOptions Members", - "number": "1.14.2.1" - }, - { - "id": "ChannelSplitterNode", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", - "level": 3, - "title": "The ChannelSplitterNode Interface", - "number": "1.15" - }, - { - "id": "ChannelSplitterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.15.1" - }, - { - "id": "ChannelSplitterOptions", - "href": "https://www.w3.org/TR/webaudio/#ChannelSplitterOptions", - "level": 4, - "title": "ChannelSplitterOptions", - "number": "1.15.2" - }, - { - "id": "dictionary-channelsplitteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-channelsplitteroptions-members", - "level": 5, - "title": "Dictionary ChannelSplitterOptions Members", - "number": "1.15.2.1" - }, - { - "id": "ConstantSourceNode", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode", - "level": 3, - "title": "The ConstantSourceNode Interface", - "number": "1.16" - }, - { - "id": "ConstantSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.16.1" - }, - { - "id": "ConstantSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.16.2" - }, - { - "id": "ConstantSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#ConstantSourceOptions", - "level": 4, - "title": "ConstantSourceOptions", - "number": "1.16.3" - }, - { - "id": "dictionary-constantsourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-constantsourceoptions-members", - "level": 5, - "title": "Dictionary ConstantSourceOptions Members", - "number": "1.16.3.1" - }, - { - "id": "ConvolverNode", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode", - "level": 3, - "title": "The ConvolverNode Interface", - "number": "1.17" - }, - { - "id": "ConvolverNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.17.1" - }, - { - "id": "ConvolverNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ConvolverNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.17.2" - }, - { - "id": "ConvolverOptions", - "href": "https://www.w3.org/TR/webaudio/#ConvolverOptions", - "level": 4, - "title": "ConvolverOptions", - "number": "1.17.3" - }, - { - "id": "dictionary-convolveroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-convolveroptions-members", - "level": 5, - "title": "Dictionary ConvolverOptions Members", - "number": "1.17.3.1" - }, - { - "id": "Convolution-channel-configurations", - "href": "https://www.w3.org/TR/webaudio/#Convolution-channel-configurations", - "level": 4, - "title": "Channel Configurations for Input, Impulse Response and Output", - "number": "1.17.4" - }, - { - "id": "DelayNode", - "href": "https://www.w3.org/TR/webaudio/#DelayNode", - "level": 3, - "title": "The DelayNode Interface", - "number": "1.18" - }, - { - "id": "DelayNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.18.1" - }, - { - "id": "DelayNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.18.2" - }, - { - "id": "DelayOptions", - "href": "https://www.w3.org/TR/webaudio/#DelayOptions", - "level": 4, - "title": "DelayOptions", - "number": "1.18.3" - }, - { - "id": "dictionary-delayoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-delayoptions-members", - "level": 5, - "title": "Dictionary DelayOptions Members", - "number": "1.18.3.1" - }, - { - "id": "DelayNode-processing", - "href": "https://www.w3.org/TR/webaudio/#DelayNode-processing", - "level": 4, - "title": "Processing", - "number": "1.18.4" - }, - { - "id": "DynamicsCompressorNode", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", - "level": 3, - "title": "The DynamicsCompressorNode Interface", - "number": "1.19" - }, - { - "id": "DynamicsCompressorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.19.1" - }, - { - "id": "DynamicsCompressorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.19.2" - }, - { - "id": "DynamicsCompressorOptions", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions", - "level": 4, - "title": "DynamicsCompressorOptions", - "number": "1.19.3" - }, - { - "id": "dictionary-dynamicscompressoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", - "level": 5, - "title": "Dictionary DynamicsCompressorOptions Members", - "number": "1.19.3.1" - }, - { - "id": "DynamicsCompressorOptions-processing", - "href": "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "level": 4, - "title": "Processing", - "number": "1.19.4" - }, - { - "id": "GainNode", - "href": "https://www.w3.org/TR/webaudio/#GainNode", - "level": 3, - "title": "The GainNode Interface", - "number": "1.20" - }, - { - "id": "GainNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#GainNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.20.1" - }, - { - "id": "GainNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#GainNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.20.2" - }, - { - "id": "GainOptions", - "href": "https://www.w3.org/TR/webaudio/#GainOptions", - "level": 4, - "title": "GainOptions", - "number": "1.20.3" - }, - { - "id": "dictionary-gainoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-gainoptions-members", - "level": 5, - "title": "Dictionary GainOptions Members", - "number": "1.20.3.1" - }, - { - "id": "IIRFilterNode", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode", - "level": 3, - "title": "The IIRFilterNode Interface", - "number": "1.21" - }, - { - "id": "IIRFilterNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.21.1" - }, - { - "id": "IIRFilterNode-methods", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", - "level": 4, - "title": "Methods", - "number": "1.21.2" - }, - { - "id": "IIRFilterOptions", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterOptions", - "level": 4, - "title": "IIRFilterOptions", - "number": "1.21.3" - }, - { - "id": "dictionary-iirfilteroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-iirfilteroptions-members", - "level": 5, - "title": "Dictionary IIRFilterOptions Members", - "number": "1.21.3.1" - }, - { - "id": "IIRFilterNode-filter-definition", - "href": "https://www.w3.org/TR/webaudio/#IIRFilterNode-filter-definition", - "level": 4, - "title": "Filter Definition", - "number": "1.21.4" - }, - { - "id": "MediaElementAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", - "level": 3, - "title": "The MediaElementAudioSourceNode Interface", - "number": "1.22" - }, - { - "id": "MediaElementAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.22.1" - }, - { - "id": "MediaElementAudioSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.22.2" - }, - { - "id": "MediaElementAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions", - "level": 4, - "title": "MediaElementAudioSourceOptions", - "number": "1.22.3" - }, - { - "id": "dictionary-mediaelementaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediaelementaudiosourceoptions-members", - "level": 5, - "title": "Dictionary MediaElementAudioSourceOptions Members", - "number": "1.22.3.1" - }, - { - "id": "MediaElementAudioSourceOptions-security", - "href": "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions-security", - "level": 4, - "title": "Security with MediaElementAudioSourceNode and Cross-Origin Resources", - "number": "1.22.4" - }, - { - "id": "MediaStreamAudioDestinationNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", - "level": 3, - "title": "The MediaStreamAudioDestinationNode Interface", - "number": "1.23" - }, - { - "id": "MediaStreamAudioDestinationNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.23.1" - }, - { - "id": "MediaStreamAudioDestinationNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.23.2" - }, - { - "id": "MediaStreamAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", - "level": 3, - "title": "The MediaStreamAudioSourceNode Interface", - "number": "1.24" - }, - { - "id": "MediaStreamAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.24.1" - }, - { - "id": "MediaStreamAudioSourceNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.24.2" - }, - { - "id": "MediaStreamAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceOptions", - "level": 4, - "title": "MediaStreamAudioSourceOptions", - "number": "1.24.3" - }, - { - "id": "dictionary-mediastreamaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediastreamaudiosourceoptions-members", - "level": 5, - "title": "Dictionary MediaStreamAudioSourceOptions Members", - "number": "1.24.3.1" - }, - { - "id": "MediaStreamTrackAudioSourceNode", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", - "level": 3, - "title": "The MediaStreamTrackAudioSourceNode Interface", - "number": "1.25" - }, - { - "id": "MediaStreamTrackAudioSourceNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.25.1" - }, - { - "id": "MediaStreamTrackAudioSourceOptions", - "href": "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceOptions", - "level": 4, - "title": "MediaStreamTrackAudioSourceOptions", - "number": "1.25.2" - }, - { - "id": "dictionary-mediastreamtrackaudiosourceoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-mediastreamtrackaudiosourceoptions-members", - "level": 5, - "title": "Dictionary MediaStreamTrackAudioSourceOptions Members", - "number": "1.25.2.1" - }, - { - "id": "OscillatorNode", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode", - "level": 3, - "title": "The OscillatorNode Interface", - "number": "1.26" - }, - { - "id": "OscillatorNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.26.1" - }, - { - "id": "OscillatorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.26.2" - }, - { - "id": "OscillatorNode-methods", - "href": "https://www.w3.org/TR/webaudio/#OscillatorNode-methods", - "level": 4, - "title": "Methods", - "number": "1.26.3" - }, - { - "id": "OscillatorOptions", - "href": "https://www.w3.org/TR/webaudio/#OscillatorOptions", - "level": 4, - "title": "OscillatorOptions", - "number": "1.26.4" - }, - { - "id": "dictionary-oscillatoroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", - "level": 5, - "title": "Dictionary OscillatorOptions Members", - "number": "1.26.4.1" - }, - { - "id": "basic-waveform-phase", - "href": "https://www.w3.org/TR/webaudio/#basic-waveform-phase", - "level": 4, - "title": "Basic Waveform Phase", - "number": "1.26.5" - }, - { - "id": "PannerNode", - "href": "https://www.w3.org/TR/webaudio/#PannerNode", - "level": 3, - "title": "The PannerNode Interface", - "number": "1.27" - }, - { - "id": "PannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.27.1" - }, - { - "id": "PannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.27.2" - }, - { - "id": "PannerNode-methods", - "href": "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "level": 4, - "title": "Methods", - "number": "1.27.3" - }, - { - "id": "PannerOptions", - "href": "https://www.w3.org/TR/webaudio/#PannerOptions", - "level": 4, - "title": "PannerOptions", - "number": "1.27.4" - }, - { - "id": "dictionary-pannernode-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "level": 5, - "title": "Dictionary PannerOptions Members", - "number": "1.27.4.1" - }, - { - "id": "panner-channel-limitations", - "href": "https://www.w3.org/TR/webaudio/#panner-channel-limitations", - "level": 4, - "title": "Channel Limitations", - "number": "1.27.5" - }, - { - "id": "PeriodicWave", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave", - "level": 3, - "title": "The PeriodicWave Interface", - "number": "1.28" - }, - { - "id": "PeriodicWave-constructors", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", - "level": 4, - "title": "Constructors", - "number": "1.28.1" - }, - { - "id": "PeriodicWaveConstraints", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveConstraints", - "level": 4, - "title": "PeriodicWaveConstraints", - "number": "1.28.2" - }, - { - "id": "dictionary-periodicwaveconstraints-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveconstraints-members", - "level": 5, - "title": "Dictionary PeriodicWaveConstraints Members", - "number": "1.28.2.1" - }, - { - "id": "PeriodicWaveOptions", - "href": "https://www.w3.org/TR/webaudio/#PeriodicWaveOptions", - "level": 4, - "title": "PeriodicWaveOptions", - "number": "1.28.3" - }, - { - "id": "dictionary-periodicwaveoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveoptions-members", - "level": 5, - "title": "Dictionary PeriodicWaveOptions Members", - "number": "1.28.3.1" - }, - { - "id": "waveform-generation", - "href": "https://www.w3.org/TR/webaudio/#waveform-generation", - "level": 4, - "title": "Waveform Generation", - "number": "1.28.4" - }, - { - "id": "waveform-normalization", - "href": "https://www.w3.org/TR/webaudio/#waveform-normalization", - "level": 4, - "title": "Waveform Normalization", - "number": "1.28.5" - }, - { - "id": "oscillator-coefficients", - "href": "https://www.w3.org/TR/webaudio/#oscillator-coefficients", - "level": 4, - "title": "Oscillator Coefficients", - "number": "1.28.6" - }, - { - "id": "ScriptProcessorNode", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode", - "level": 3, - "title": "The ScriptProcessorNode Interface - DEPRECATED", - "number": "1.29" - }, - { - "id": "ScriptProcessorNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#ScriptProcessorNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.29.1" - }, - { - "id": "stereopannernode", - "href": "https://www.w3.org/TR/webaudio/#stereopannernode", - "level": 3, - "title": "The StereoPannerNode Interface", - "number": "1.30" - }, - { - "id": "StereoPannerNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.30.1" - }, - { - "id": "StereoPannerNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.30.2" - }, - { - "id": "StereoPannerOptions", - "href": "https://www.w3.org/TR/webaudio/#StereoPannerOptions", - "level": 4, - "title": "StereoPannerOptions", - "number": "1.30.3" - }, - { - "id": "dictionary-stereopanneroptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-stereopanneroptions-members", - "level": 5, - "title": "Dictionary StereoPannerOptions Members", - "number": "1.30.3.1" - }, - { - "id": "StereoPanner-channel-limitations", - "href": "https://www.w3.org/TR/webaudio/#StereoPanner-channel-limitations", - "level": 4, - "title": "Channel Limitations", - "number": "1.30.4" - }, - { - "id": "WaveShaperNode", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "level": 3, - "title": "The WaveShaperNode Interface", - "number": "1.31" - }, - { - "id": "WaveShaperNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", - "level": 4, - "title": "Constructors", - "number": "1.31.1" - }, - { - "id": "WaveShaperNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperNode-attributes", - "level": 4, - "title": "Attributes", - "number": "1.31.2" - }, - { - "id": "WaveShaperOptions", - "href": "https://www.w3.org/TR/webaudio/#WaveShaperOptions", - "level": 4, - "title": "WaveShaperOptions", - "number": "1.31.3" - }, - { - "id": "dictionary-waveshaperoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-waveshaperoptions-members", - "level": 5, - "title": "Dictionary WaveShaperOptions Members", - "number": "1.31.3.1" - }, - { - "id": "AudioWorklet", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet", - "level": 3, - "title": "The AudioWorklet Interface", - "number": "1.32" - }, - { - "id": "AudioWorklet-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-attributes", - "level": 4, - "title": "Attributes", - "number": "1.32.1" - }, - { - "id": "AudioWorklet-concepts", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-concepts", - "level": 4, - "title": "Concepts", - "number": "1.32.2" - }, - { - "id": "AudioWorkletGlobalScope", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "level": 4, - "title": "The AudioWorkletGlobalScope Interface", - "number": "1.32.3" - }, - { - "id": "AudioWorkletGlobalScope-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", - "level": 5, - "title": "Attributes", - "number": "1.32.3.1" - }, - { - "id": "AudioWorkletGlobalScope-methods", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-methods", - "level": 5, - "title": "Methods", - "number": "1.32.3.2" - }, - { - "id": "AudioWorkletProcessor-instantiation", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", - "level": 5, - "title": "The instantiation of AudioWorkletProcessor", - "number": "1.32.3.3" - }, - { - "id": "AudioWorkletNode", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode", - "level": 4, - "title": "The AudioWorkletNode Interface", - "number": "1.32.4" - }, - { - "id": "AudioWorkletNode-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", - "level": 5, - "title": "Constructors", - "number": "1.32.4.1" - }, - { - "id": "AudioWorkletNode-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", - "level": 5, - "title": "Attributes", - "number": "1.32.4.2" - }, - { - "id": "AudioWorkletNodeOptions", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletNodeOptions", - "level": 5, - "title": "AudioWorkletNodeOptions", - "number": "1.32.4.3" - }, - { - "id": "dictionary-audioworkletnodeoptions-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", - "level": 6, - "title": "Dictionary AudioWorkletNodeOptions Members", - "number": "1.32.4.3.1" - }, - { - "id": "configuring-channels-with-audioworkletnodeoptions", - "href": "https://www.w3.org/TR/webaudio/#configuring-channels-with-audioworkletnodeoptions", - "level": 6, - "title": "Configuring Channels with AudioWorkletNodeOptions", - "number": "1.32.4.3.2" - }, - { - "id": "AudioWorkletProcessor", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", - "level": 4, - "title": "The AudioWorkletProcessor Interface", - "number": "1.32.5" - }, - { - "id": "AudioWorketProcessor-constructors", - "href": "https://www.w3.org/TR/webaudio/#AudioWorketProcessor-constructors", - "level": 5, - "title": "Constructors", - "number": "1.32.5.1" - }, - { - "id": "AudioWorkletProcessor-attributes", - "href": "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-attributes", - "level": 5, - "title": "Attributes", - "number": "1.32.5.2" - }, - { - "id": "callback-audioworketprocess-callback", - "href": "https://www.w3.org/TR/webaudio/#callback-audioworketprocess-callback", - "level": 5, - "title": "Callback AudioWorkletProcessCallback", - "number": "1.32.5.3" - }, - { - "id": "audioworkletprocess-callback-parameters", - "href": "https://www.w3.org/TR/webaudio/#audioworkletprocess-callback-parameters", - "level": 6, - "title": "Callback AudioWorkletProcessCallback Parameters", - "number": "1.32.5.3.1" - }, - { - "id": "AudioParamDescriptor", - "href": "https://www.w3.org/TR/webaudio/#AudioParamDescriptor", - "level": 5, - "title": "AudioParamDescriptor", - "number": "1.32.5.4" - }, - { - "id": "dictionary-audioparamdescriptor-members", - "href": "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", - "level": 6, - "title": "Dictionary AudioParamDescriptor Members", - "number": "1.32.5.4.1" - }, - { - "id": "AudioWorklet-Sequence", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-Sequence", - "level": 4, - "title": "AudioWorklet Sequence of Events", - "number": "1.32.6" - }, - { - "id": "AudioWorklet-Examples", - "href": "https://www.w3.org/TR/webaudio/#AudioWorklet-Examples", - "level": 4, - "title": "AudioWorklet Examples", - "number": "1.32.7" - }, - { - "id": "the-bitcrusher-node", - "href": "https://www.w3.org/TR/webaudio/#the-bitcrusher-node", - "level": 5, - "title": "The BitCrusher Node", - "number": "1.32.7.1" - }, - { - "id": "vu-meter-mode", - "href": "https://www.w3.org/TR/webaudio/#vu-meter-mode", - "level": 5, - "title": "VU Meter Node", - "number": "1.32.7.2" - }, - { - "id": "processing-model", - "href": "https://www.w3.org/TR/webaudio/#processing-model", - "level": 2, - "title": "Processing model", - "number": "2" - }, - { - "id": "processing-model-background", - "href": "https://www.w3.org/TR/webaudio/#processing-model-background", - "level": 3, - "title": "Background", - "number": "2.1" - }, - { - "id": "control-thread-and-rendering-thread", - "href": "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", - "level": 3, - "title": "Control Thread and Rendering Thread", - "number": "2.2" - }, - { - "id": "asynchronous-operations", - "href": "https://www.w3.org/TR/webaudio/#asynchronous-operations", - "level": 3, - "title": "Asynchronous Operations", - "number": "2.3" - }, - { - "id": "rendering-loop", - "href": "https://www.w3.org/TR/webaudio/#rendering-loop", - "level": 3, - "title": "Rendering an Audio Graph", - "number": "2.4" - }, - { - "id": "error-handling-on-a-running-audio-context", - "href": "https://www.w3.org/TR/webaudio/#error-handling-on-a-running-audio-context", - "level": 3, - "title": "Handling an error from System Audio Resources on the AudioContext", - "number": "2.5" - }, - { - "id": "unloading-a-document", - "href": "https://www.w3.org/TR/webaudio/#unloading-a-document", - "level": 3, - "title": "Unloading a document", - "number": "2.6" - }, - { - "id": "DynamicLifetime", - "href": "https://www.w3.org/TR/webaudio/#DynamicLifetime", - "level": 2, - "title": "Dynamic Lifetime", - "number": "3" - }, - { - "id": "dynamic-lifetime-background", - "href": "https://www.w3.org/TR/webaudio/#dynamic-lifetime-background", - "level": 3, - "title": "Background", - "number": "3.1" - }, - { - "id": "dynamic-lifetime-example", - "href": "https://www.w3.org/TR/webaudio/#dynamic-lifetime-example", - "level": 3, - "title": "Example", - "number": "3.2" - }, - { - "id": "channel-up-mixing-and-down-mixing", - "href": "https://www.w3.org/TR/webaudio/#channel-up-mixing-and-down-mixing", - "level": 2, - "title": "Channel Up-Mixing and Down-Mixing", - "number": "4" - }, - { - "id": "ChannelLayouts", - "href": "https://www.w3.org/TR/webaudio/#ChannelLayouts", - "level": 3, - "title": "Speaker Channel Layouts", - "number": "4.1" - }, - { - "id": "ChannelOrdering", - "href": "https://www.w3.org/TR/webaudio/#ChannelOrdering", - "level": 3, - "title": "Channel Ordering", - "number": "4.2" - }, - { - "id": "channels-tail-time", - "href": "https://www.w3.org/TR/webaudio/#channels-tail-time", - "level": 3, - "title": "Implication of tail-time on input and output channel count", - "number": "4.3" - }, - { - "id": "UpMix-sub", - "href": "https://www.w3.org/TR/webaudio/#UpMix-sub", - "level": 3, - "title": "Up Mixing Speaker Layouts", - "number": "4.4" - }, - { - "id": "down-mix", - "href": "https://www.w3.org/TR/webaudio/#down-mix", - "level": 3, - "title": "Down Mixing Speaker Layouts", - "number": "4.5" - }, - { - "id": "ChannelRules-section", - "href": "https://www.w3.org/TR/webaudio/#ChannelRules-section", - "level": 3, - "title": "Channel Rules Examples", - "number": "4.6" - }, - { - "id": "audio-signal-values", - "href": "https://www.w3.org/TR/webaudio/#audio-signal-values", - "level": 2, - "title": "Audio Signal Values", - "number": "5" - }, - { - "id": "audio-sample-format", - "href": "https://www.w3.org/TR/webaudio/#audio-sample-format", - "level": 3, - "title": "Audio sample format", - "number": "5.1" - }, - { - "id": "audio-values-rendering", - "href": "https://www.w3.org/TR/webaudio/#audio-values-rendering", - "level": 3, - "title": "Rendering", - "number": "5.2" - }, - { - "id": "Spatialization", - "href": "https://www.w3.org/TR/webaudio/#Spatialization", - "level": 2, - "title": "Spatialization/Panning", - "number": "6" - }, - { - "id": "Spatialization-background", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-background", - "level": 3, - "title": "Background", - "number": "6.1" - }, - { - "id": "azimuth-elevation", - "href": "https://www.w3.org/TR/webaudio/#azimuth-elevation", - "level": 3, - "title": "Azimuth and Elevation", - "number": "6.2" - }, - { - "id": "Spatialization-panning-algorithm", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-panning-algorithm", - "level": 3, - "title": "Panning Algorithm", - "number": "6.3" - }, - { - "id": "Spatialization-equal-power-panning", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-equal-power-panning", - "level": 4, - "title": "PannerNode \"equalpower\" Panning", - "number": "6.3.1" - }, - { - "id": "Spatialization-hrtf-panning", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-hrtf-panning", - "level": 4, - "title": "PannerNode \"HRTF\" Panning (Stereo Only)", - "number": "6.3.2" - }, - { - "id": "stereopanner-algorithm", - "href": "https://www.w3.org/TR/webaudio/#stereopanner-algorithm", - "level": 4, - "title": "StereoPannerNode Panning", - "number": "6.3.3" - }, - { - "id": "Spatialization-distance-effects", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-distance-effects", - "level": 3, - "title": "Distance Effects", - "number": "6.4" - }, - { - "id": "Spatialization-sound-cones", - "href": "https://www.w3.org/TR/webaudio/#Spatialization-sound-cones", - "level": 3, - "title": "Sound Cones", - "number": "6.5" - }, - { - "id": "Performance", - "href": "https://www.w3.org/TR/webaudio/#Performance", - "level": 2, - "title": "Performance Considerations", - "number": "7" - }, - { - "id": "latency", - "href": "https://www.w3.org/TR/webaudio/#latency", - "level": 3, - "title": "Latency", - "number": "7.1" - }, - { - "id": "audio-buffer-copying", - "href": "https://www.w3.org/TR/webaudio/#audio-buffer-copying", - "level": 3, - "title": "Audio Buffer Copying", - "number": "7.2" - }, - { - "id": "audioparam-transitions", - "href": "https://www.w3.org/TR/webaudio/#audioparam-transitions", - "level": 3, - "title": "AudioParam Transitions", - "number": "7.3" - }, - { - "id": "audio-glitching", - "href": "https://www.w3.org/TR/webaudio/#audio-glitching", - "level": 3, - "title": "Audio Glitching", - "number": "7.4" - }, - { - "id": "priv-sec", - "href": "https://www.w3.org/TR/webaudio/#priv-sec", - "level": 2, - "title": "Security and Privacy Considerations", - "number": "8" - }, - { - "id": "requirements", - "href": "https://www.w3.org/TR/webaudio/#requirements", - "level": 2, - "title": "Requirements and Use Cases", - "number": "9" - }, - { - "id": "common-definitions", - "href": "https://www.w3.org/TR/webaudio/#common-definitions", - "level": 2, - "title": "10. Common Definitions for Specification Code" - }, - { - "id": "changes", - "href": "https://www.w3.org/TR/webaudio/#changes", - "level": 2, - "title": "11. Change Log" - }, - { - "id": "acks", - "href": "https://www.w3.org/TR/webaudio/#acks", - "level": 2, - "title": "12. Acknowledgements" - }, - { - "id": "w3c-conformance", - "href": "https://www.w3.org/TR/webaudio/#w3c-conformance", - "level": 2, - "title": "Conformance" - }, - { - "id": "w3c-conventions", - "href": "https://www.w3.org/TR/webaudio/#w3c-conventions", - "level": 3, - "title": "Document conventions" - }, - { - "id": "w3c-conformant-algorithms", - "href": "https://www.w3.org/TR/webaudio/#w3c-conformant-algorithms", - "level": 3, - "title": "Conformant Algorithms" - }, - { - "id": "index", - "href": "https://www.w3.org/TR/webaudio/#index", - "level": 2, - "title": "Index" - }, - { - "id": "index-defined-here", - "href": "https://www.w3.org/TR/webaudio/#index-defined-here", - "level": 3, - "title": "Terms defined by this specification" - }, - { - "id": "index-defined-elsewhere", - "href": "https://www.w3.org/TR/webaudio/#index-defined-elsewhere", - "level": 3, - "title": "Terms defined by reference" - }, - { - "id": "references", - "href": "https://www.w3.org/TR/webaudio/#references", - "level": 2, - "title": "References" - }, - { - "id": "normative", - "href": "https://www.w3.org/TR/webaudio/#normative", - "level": 3, - "title": "Normative References" - }, - { - "id": "informative", - "href": "https://www.w3.org/TR/webaudio/#informative", - "level": 3, - "title": "Informative References" - }, - { - "id": "idl-index", - "href": "https://www.w3.org/TR/webaudio/#idl-index", - "level": 2, - "title": "IDL Index" - } - ] -} \ No newline at end of file diff --git a/tr/ids/webaudio.json b/tr/ids/webaudio.json deleted file mode 100644 index f4d9f3303ec3..000000000000 --- a/tr/ids/webaudio.json +++ /dev/null @@ -1,11121 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" - }, - "ids": [ - "https://www.w3.org/TR/webaudio/#MathJax_Hidden", - "https://www.w3.org/TR/webaudio/#MathJax_Message", - "https://www.w3.org/TR/webaudio/#toc-nav", - "https://www.w3.org/TR/webaudio/#toc-jump", - "https://www.w3.org/TR/webaudio/#toc-toggle", - "https://www.w3.org/TR/webaudio/#toc-theme-toggle", - "https://www.w3.org/TR/webaudio/#title", - "https://www.w3.org/TR/webaudio/#w3c-state", - "https://www.w3.org/TR/webaudio/#abstract", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode", - "https://www.w3.org/TR/webaudio/#sotd", - "https://www.w3.org/TR/webaudio/#w3c_process_revision", - "https://www.w3.org/TR/webaudio/#toc", - "https://www.w3.org/TR/webaudio/#contents", - "https://www.w3.org/TR/webaudio/#introductory", - "https://www.w3.org/TR/webaudio/#ref-for-audio", - "https://www.w3.org/TR/webaudio/#Features", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam", - "https://www.w3.org/TR/webaudio/#ref-for-audio%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-video", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices-getusermedia", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode", - "https://www.w3.org/TR/webaudio/#ModularRouting", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#inputs", - "https://www.w3.org/TR/webaudio/#outputs", - "https://www.w3.org/TR/webaudio/#source-node", - "https://www.w3.org/TR/webaudio/#destination-node", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode", - "https://www.w3.org/TR/webaudio/#example-05baec05", - "https://www.w3.org/TR/webaudio/#example-86265d42", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#example-6d1537ab", - "https://www.w3.org/TR/webaudio/#APIOverview", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audio%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-video%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#audioapi", - "https://www.w3.org/TR/webaudio/#BaseAudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-pending-promises-slot", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-rendering-thread-state-slot", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-control-thread-state-slot", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextstate", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-render-quantum-size-slot", - "https://www.w3.org/TR/webaudio/#enumdef-audiocontextstate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-closed", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextstate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-suspended", - "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-running", - "https://www.w3.org/TR/webaudio/#dom-audiocontextstate-closed", - "https://www.w3.org/TR/webaudio/#enumdef-audiocontextrendersizecategory", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextrendersizecategory-default", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextrendersizecategory-hardware", - "https://www.w3.org/TR/webaudio/#dom-audiocontextrendersizecategory-default", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size", - "https://www.w3.org/TR/webaudio/#dom-audiocontextrendersizecategory-hardware", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodeerrorcallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException", - "https://www.w3.org/TR/webaudio/#dom-decodeerrorcallback-error", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodesuccesscallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-decodesuccesscallback-decodeddata", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-eventtarget", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-destination", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-listener", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextstate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-renderquantumsize", - "https://www.w3.org/TR/webaudio/#ref-for-SameObject", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-audioworklet", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-onstatechange", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createanalyser", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbiquadfilter", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels-length-samplerate-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffersource", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createconstantsource", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createconvolver", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdynamicscompressor", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-creategain", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedforward", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward-feedback-feedback", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createoscillator", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createpanner", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-real", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-imag", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real-imag-constraints-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createstereopanner", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createwaveshaper", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-successcallback", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-errorcallback", - "https://www.w3.org/TR/webaudio/#BaseAudioContext-attributes", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-audioworklet", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-currenttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum", - "https://www.w3.org/TR/webaudio/#ref-for-atomically", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-destination", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-destination%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-listener", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-onstatechange", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-event-handlers", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7", - "https://www.w3.org/TR/webaudio/#eventdef-baseaudiocontext-statechange", - "https://www.w3.org/TR/webaudio/#ref-for-event", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-offlineaudiocontext-complete", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#--nyquist-frequency", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-state", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextstate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-renderquantumsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-render-quantum-size-slot", - "https://www.w3.org/TR/webaudio/#BaseAudioContent-methods", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createanalyser", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbiquadfilter", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffer-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createbuffersource", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelmerger", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelmerger-numberofinputs-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelsplitter", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createchannelsplitter-numberofoutputs-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createconstantsource", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createconvolver", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdelay", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createdynamicscompressor", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-creategain", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedforward", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createiirfilter-feedback", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createoscillator", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createpanner", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave-real", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave-imag", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave-real%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave-imag%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveconstraints-disablenormalization", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-real", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-imag", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createperiodicwave-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-scriptprocessornode-buffersize", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess", - "https://www.w3.org/TR/webaudio/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createstereopanner", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-createwaveshaper", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audio%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-this", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-detached", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-detach", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-datacloneerror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#6d54a0c50", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decoding-thread", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decoding-thread", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm%E2%91%A1", - "https://www.w3.org/TR/webaudio/#6d54a0c51", - "https://www.w3.org/TR/webaudio/#ref-for-encodingerror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-errorcallback%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-audiodata-successcallback-errorcallback-audiodata%E2%91%A3", - "https://www.w3.org/TR/webaudio/#6d54a0c52", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-successcallback", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata-successcallback%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decodeaudiodata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-audiodata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-successcallback", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-decodeaudiodata-errorcallback", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5", - "https://www.w3.org/TR/webaudio/#callback-decodesuccesscallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodesuccesscallback-parameters%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-decodesuccesscallback-decodeddata", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6", - "https://www.w3.org/TR/webaudio/#callback-decodeerrorcallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-callback-decodeerrorcallback-parameters%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-decodeerrorcallback-error", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A1", - "https://www.w3.org/TR/webaudio/#lifetime-AudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2", - "https://www.w3.org/TR/webaudio/#lack-of-introspection-or-serialization-primitives", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-source-nodes", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3", - "https://www.w3.org/TR/webaudio/#system-resources-associated-with-baseaudiocontext-subclasses", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#acquiring", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspend", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-close", - "https://www.w3.org/TR/webaudio/#releasing", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-resume", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#AudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#enumdef-audiocontextlatencycategory", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextlatencycategory-balanced", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextlatencycategory-interactive", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextlatencycategory-playback", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextlatencycategory", - "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-balanced", - "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-interactive", - "https://www.w3.org/TR/webaudio/#dom-audiocontextlatencycategory-playback", - "https://www.w3.org/TR/webaudio/#enumdef-audiosinktype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinktype-none", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype", - "https://www.w3.org/TR/webaudio/#dom-audiosinktype-none", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-audiocontext", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-constructor-contextoptions-contextoptions", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-baselatency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-outputlatency", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-rendercapacity", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-onsinkchange", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-onerror", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-resume%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspend%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-close%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid-sinkid-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediaelementsource", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource-mediaelement-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediastreamsource", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource-mediastream-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediastreamtracksource", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack-mediastreamtrack", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediastreamdestination", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#allowed-to-start", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-sticky-activation", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-suspended-by-user-slot", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-sink-id-slot", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-pending-resume-promises-slot", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-resume%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioContext-constructors", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-audiocontext", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port2", - "https://www.w3.org/TR/webaudio/#ref-for-structuredserializewithtransfer", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-audioworklet%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworklet-port", - "https://www.w3.org/TR/webaudio/#ref-for-queuing", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-sinkid%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkinfo-type", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-latencyhint", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-latencyhint%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start", - "https://www.w3.org/TR/webaudio/#ref-for-control-message", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-acquiring", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiocontext-error", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#setting-the-messageport-on-the-scope", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-messageport", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-structureddeserialize", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-port", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-audiocontext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-constructor-contextoptions-contextoptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioContext-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-baselatency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-1-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4", - "https://www.w3.org/TR/webaudio/#MathJax-Span-5", - "https://www.w3.org/TR/webaudio/#MathJax-Span-6", - "https://www.w3.org/TR/webaudio/#MathJax-Span-7", - "https://www.w3.org/TR/webaudio/#MathJax-Span-8", - "https://www.w3.org/TR/webaudio/#MathJax-Span-9", - "https://www.w3.org/TR/webaudio/#MathJax-Span-10", - "https://www.w3.org/TR/webaudio/#MathJax-Span-11", - "https://www.w3.org/TR/webaudio/#MathJax-Span-12", - "https://www.w3.org/TR/webaudio/#MathJax-Span-13", - "https://www.w3.org/TR/webaudio/#MathJax-Span-14", - "https://www.w3.org/TR/webaudio/#MathJax-Span-15", - "https://www.w3.org/TR/webaudio/#MathJax-Span-16", - "https://www.w3.org/TR/webaudio/#MathJax-Span-17", - "https://www.w3.org/TR/webaudio/#MathJax-Element-1", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-outputlatency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-outputlatency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-outputlatency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-rendercapacity", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-onsinkchange", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-event-handlers%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-setsinkid", - "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-sinkchange", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-onerror", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-event-handlers%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#eventdef-audiocontext-error", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioContext-methods", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-close", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-releasing", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-releasing%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A3", - "https://www.w3.org/TR/webaudio/#6d54a0c53", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-closed%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-closed%E2%91%A1", - "https://www.w3.org/TR/webaudio/#6d54a0c54", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediaelementsource-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamdestination", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediastreamsource%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamsource-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediastreamtracksource%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-createmediastreamtracksource-mediastreamtrack", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-getoutputtimestamp", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-contexttime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-performancetime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-contexttime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A1", - "https://www.w3.org/TR/webaudio/#example-a967f6fb", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-contexttime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-outputlatency%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-resume", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspended-by-user-slot", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-pending-resume-promises-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#context-resume", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-acquiring%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#6d54a0c55", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#6d54a0c56", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-pending-resume-promises-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-suspend", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-releasing%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-releasing%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#6d54a0c57", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audiocontext-setsinkid-domstring-or-audiosinkoptions-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-setsinkid%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A5", - "https://www.w3.org/TR/webaudio/#6d54a0c58", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkinfo-type%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#6d54a0c59", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-releasing%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#6d54a0c510", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-acquiring%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror", - "https://www.w3.org/TR/webaudio/#6d54a0c511", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkinfo-type%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sink-id-slot%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiocontext-sinkchange", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#6d54a0c512", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#validating-sink-identifier", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-notallowederror", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices-enumeratedevices", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-notfounderror", - "https://www.w3.org/TR/webaudio/#AudioContextOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextlatencycategory%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-latencyhint%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-sinkid%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextrendersizecategory", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-rendersizehint", - "https://www.w3.org/TR/webaudio/#dictionary-audiocontextoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContextOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-latencyhint", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextlatencycategory%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-baselatency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-samplerate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-sinkid", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiocontextoptions-rendersizehint", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A2", - "https://www.w3.org/TR/webaudio/#AudioSinkOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkoptions-type%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dictionary-audiosinkoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkOptions%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiosinkoptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#AudioSinkInfo", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-sinkid%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioSinkInfo%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiosinkinfo-type%E2%91%A2", - "https://www.w3.org/TR/webaudio/#audiosinkinfo-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiosinkinfo-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiosinktype%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioTimestamp", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-contexttime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-domhighrestimestamp", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiotimestamp-performancetime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-audiotimestamp-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioTimestamp%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiotimestamp-contexttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiotimestamp-performancetime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-domhighrestimestamp%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacity", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioRenderCapacity", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2", - "https://www.w3.org/TR/webaudio/#audiorendercapacity", - "https://www.w3.org/TR/webaudio/#ref-for-eventtarget%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacity-start", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityoptions", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-start-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacity-stop", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacity-onupdate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-load-value", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-onupdate", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A6", - "https://www.w3.org/TR/webaudio/#eventdef-audiorendercapacity-update", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacityevent", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacity-methods", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-start", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiorendercapacity-update", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacityevent%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacity-stop", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiorendercapacity-update%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacityOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioRenderCapacityOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacity%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dictdef-audiorendercapacityoptions", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacityoptions-updateinterval", - "https://www.w3.org/TR/webaudio/#dictionary-AudioRenderCapacityOptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityoptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityoptions-updateinterval", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacityevent%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-load-value%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A7", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent", - "https://www.w3.org/TR/webaudio/#ref-for-audiorendercapacityevent%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioRenderCapacityEvent", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A3", - "https://www.w3.org/TR/webaudio/#audiorendercapacityevent", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-type", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-audiorendercapacityeventinit", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-audiorendercapacityevent-type-eventinitdict-eventinitdict", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacityevent-timestamp", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacityevent-averageload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacityevent-peakload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiorendercapacityevent-underrunratio", - "https://www.w3.org/TR/webaudio/#dictdef-audiorendercapacityeventinit", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-eventinit", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-timestamp", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-averageload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-peakload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityeventinit-underrunratio", - "https://www.w3.org/TR/webaudio/#AudioRenderCapacityEvent-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-timestamp", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-averageload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-peakload", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiorendercapacityevent-underrunratio", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-load-value%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-2-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-18", - "https://www.w3.org/TR/webaudio/#MathJax-Span-19", - "https://www.w3.org/TR/webaudio/#MathJax-Span-20", - "https://www.w3.org/TR/webaudio/#MathJax-Element-2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-3-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-21", - "https://www.w3.org/TR/webaudio/#MathJax-Span-22", - "https://www.w3.org/TR/webaudio/#MathJax-Span-23", - "https://www.w3.org/TR/webaudio/#MathJax-Element-3", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-4-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-24", - "https://www.w3.org/TR/webaudio/#MathJax-Span-25", - "https://www.w3.org/TR/webaudio/#MathJax-Span-26", - "https://www.w3.org/TR/webaudio/#MathJax-Element-4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-5-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-27", - "https://www.w3.org/TR/webaudio/#MathJax-Span-28", - "https://www.w3.org/TR/webaudio/#MathJax-Span-29", - "https://www.w3.org/TR/webaudio/#MathJax-Span-30", - "https://www.w3.org/TR/webaudio/#MathJax-Span-31", - "https://www.w3.org/TR/webaudio/#MathJax-Span-32", - "https://www.w3.org/TR/webaudio/#MathJax-Span-33", - "https://www.w3.org/TR/webaudio/#MathJax-Element-5", - "https://www.w3.org/TR/webaudio/#OfflineAudioContext", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-offlineaudiocontext", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContextOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-startrendering", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-resume", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-suspend", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend-suspendtime-suspendtime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-length", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-oncomplete", - "https://www.w3.org/TR/webaudio/#OfflineAudioContext-constructors", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-offlineaudiocontext", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontextoptions-rendersizehint", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-structuredserializewithtransfer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-audioworklet%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworklet-port%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-offlineaudiocontext%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-contextoptions-contextoptions", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-offlineaudiocontext-numberofchannels-length-samplerate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-constructor-numberofchannels-length-samplerate-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#OfflineAudioContext-attributes", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-oncomplete", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A8", - "https://www.w3.org/TR/webaudio/#eventdef-offlineaudiocontext-complete", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEvent", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A8", - "https://www.w3.org/TR/webaudio/#OfflineAudioContext-methods", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-startrendering", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-rendering-started-slot", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendering-started-slot", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendering-started-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-rendered-buffer-slot", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-begin-offline-rendering", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#begin-offline-rendering", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-suspend%E2%91%A0", - "https://www.w3.org/TR/webaudio/#6d54a0c513", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-startrendering%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-offlineaudiocontext-complete%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEvent%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendered-buffer-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-resume", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-concept-relevant-global%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-concept-document-window%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-fully-active%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-a-promise-rejected-with%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMException%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-rendering-started-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#6d54a0c514", - "https://www.w3.org/TR/webaudio/#6d54a0c515", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-running%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontext-suspend%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontext-suspend-suspendtime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#OfflineAudioContextOptions", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContextOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContextOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContextOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontextoptions-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontextoptions-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontextoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-audiocontextrendersizecategory%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocontextoptions-rendersizehint%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocontextoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContextOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocontextoptions-rendersizehint", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEvent%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEvent%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEvent%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-type", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEventInit", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-offlineaudiocompletionevent-type-eventinitdict-eventinitdict", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocompletionevent-renderedbuffer", - "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent-attributes", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletionevent-renderedbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEventInit", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEventInit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEventInit%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEventInit%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-eventinit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocompletioneventinit-renderedbuffer", - "https://www.w3.org/TR/webaudio/#dictionary-offlineaudiocompletioneventinit-members", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioCompletionEventInit%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-offlineaudiocompletioneventinit-renderedbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-offlineaudiocompletionevent-renderedbuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioBuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-linear-pcm%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-6-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-34", - "https://www.w3.org/TR/webaudio/#MathJax-Span-35", - "https://www.w3.org/TR/webaudio/#MathJax-Span-36", - "https://www.w3.org/TR/webaudio/#MathJax-Span-37", - "https://www.w3.org/TR/webaudio/#MathJax-Span-38", - "https://www.w3.org/TR/webaudio/#MathJax-Span-39", - "https://www.w3.org/TR/webaudio/#MathJax-Span-40", - "https://www.w3.org/TR/webaudio/#MathJax-Span-41", - "https://www.w3.org/TR/webaudio/#MathJax-Element-6", - "https://www.w3.org/TR/webaudio/#ref-for-audio%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-number-of-channels-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-length-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-sample-rate-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-internal-data-slot", - "https://www.w3.org/TR/webaudio/#ref-for-sec-data-blocks", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-audiobuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-audiobuffer-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-duration", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata-channel-channel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-destination", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-channelnumber", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination-channelnumber-bufferoffset-bufferoffset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-source", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-channelnumber", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source-channelnumber-bufferoffset-bufferoffset", - "https://www.w3.org/TR/webaudio/#AudioBuffer-constructors", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-audiobuffer", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-length", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-number-of-channels-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-sample-rate-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-internal-data-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-audiobuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#AudioBuffer-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-duration", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-length-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-sample-rate-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#AudioBuffer-methods", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-7-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-42", - "https://www.w3.org/TR/webaudio/#MathJax-Span-43", - "https://www.w3.org/TR/webaudio/#MathJax-Span-44", - "https://www.w3.org/TR/webaudio/#MathJax-Span-45", - "https://www.w3.org/TR/webaudio/#MathJax-Span-46", - "https://www.w3.org/TR/webaudio/#MathJax-Element-7", - "https://www.w3.org/TR/webaudio/#MathJax-Element-8-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-47", - "https://www.w3.org/TR/webaudio/#MathJax-Span-48", - "https://www.w3.org/TR/webaudio/#MathJax-Span-49", - "https://www.w3.org/TR/webaudio/#MathJax-Span-50", - "https://www.w3.org/TR/webaudio/#MathJax-Span-51", - "https://www.w3.org/TR/webaudio/#MathJax-Element-8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel-destination", - "https://www.w3.org/TR/webaudio/#MathJax-Element-9-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-52", - "https://www.w3.org/TR/webaudio/#MathJax-Span-53", - "https://www.w3.org/TR/webaudio/#MathJax-Span-54", - "https://www.w3.org/TR/webaudio/#MathJax-Element-9", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel-bufferoffset", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-10-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-55", - "https://www.w3.org/TR/webaudio/#MathJax-Span-56", - "https://www.w3.org/TR/webaudio/#MathJax-Span-57", - "https://www.w3.org/TR/webaudio/#MathJax-Span-58", - "https://www.w3.org/TR/webaudio/#MathJax-Span-59", - "https://www.w3.org/TR/webaudio/#MathJax-Span-60", - "https://www.w3.org/TR/webaudio/#MathJax-Span-61", - "https://www.w3.org/TR/webaudio/#MathJax-Span-62", - "https://www.w3.org/TR/webaudio/#MathJax-Span-63", - "https://www.w3.org/TR/webaudio/#MathJax-Span-64", - "https://www.w3.org/TR/webaudio/#MathJax-Span-65", - "https://www.w3.org/TR/webaudio/#MathJax-Span-66", - "https://www.w3.org/TR/webaudio/#MathJax-Span-67", - "https://www.w3.org/TR/webaudio/#MathJax-Span-68", - "https://www.w3.org/TR/webaudio/#MathJax-Span-69", - "https://www.w3.org/TR/webaudio/#MathJax-Span-70", - "https://www.w3.org/TR/webaudio/#MathJax-Span-71", - "https://www.w3.org/TR/webaudio/#MathJax-Span-72", - "https://www.w3.org/TR/webaudio/#MathJax-Span-73", - "https://www.w3.org/TR/webaudio/#MathJax-Element-10", - "https://www.w3.org/TR/webaudio/#MathJax-Element-11-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-74", - "https://www.w3.org/TR/webaudio/#MathJax-Span-75", - "https://www.w3.org/TR/webaudio/#MathJax-Span-76", - "https://www.w3.org/TR/webaudio/#MathJax-Span-77", - "https://www.w3.org/TR/webaudio/#MathJax-Span-78", - "https://www.w3.org/TR/webaudio/#MathJax-Element-11", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-destination", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-channelnumber", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copyfromchannel-bufferoffset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel-destination%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-unknownerror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel-source", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-12-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-79", - "https://www.w3.org/TR/webaudio/#MathJax-Span-80", - "https://www.w3.org/TR/webaudio/#MathJax-Span-81", - "https://www.w3.org/TR/webaudio/#MathJax-Span-82", - "https://www.w3.org/TR/webaudio/#MathJax-Span-83", - "https://www.w3.org/TR/webaudio/#MathJax-Element-12", - "https://www.w3.org/TR/webaudio/#MathJax-Element-13-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-84", - "https://www.w3.org/TR/webaudio/#MathJax-Span-85", - "https://www.w3.org/TR/webaudio/#MathJax-Span-86", - "https://www.w3.org/TR/webaudio/#MathJax-Span-87", - "https://www.w3.org/TR/webaudio/#MathJax-Span-88", - "https://www.w3.org/TR/webaudio/#MathJax-Element-13", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-14-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-89", - "https://www.w3.org/TR/webaudio/#MathJax-Span-90", - "https://www.w3.org/TR/webaudio/#MathJax-Span-91", - "https://www.w3.org/TR/webaudio/#MathJax-Element-14", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel-bufferoffset", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-15-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-92", - "https://www.w3.org/TR/webaudio/#MathJax-Span-93", - "https://www.w3.org/TR/webaudio/#MathJax-Span-94", - "https://www.w3.org/TR/webaudio/#MathJax-Span-95", - "https://www.w3.org/TR/webaudio/#MathJax-Span-96", - "https://www.w3.org/TR/webaudio/#MathJax-Span-97", - "https://www.w3.org/TR/webaudio/#MathJax-Span-98", - "https://www.w3.org/TR/webaudio/#MathJax-Span-99", - "https://www.w3.org/TR/webaudio/#MathJax-Span-100", - "https://www.w3.org/TR/webaudio/#MathJax-Span-101", - "https://www.w3.org/TR/webaudio/#MathJax-Span-102", - "https://www.w3.org/TR/webaudio/#MathJax-Span-103", - "https://www.w3.org/TR/webaudio/#MathJax-Span-104", - "https://www.w3.org/TR/webaudio/#MathJax-Span-105", - "https://www.w3.org/TR/webaudio/#MathJax-Span-106", - "https://www.w3.org/TR/webaudio/#MathJax-Span-107", - "https://www.w3.org/TR/webaudio/#MathJax-Span-108", - "https://www.w3.org/TR/webaudio/#MathJax-Span-109", - "https://www.w3.org/TR/webaudio/#MathJax-Span-110", - "https://www.w3.org/TR/webaudio/#MathJax-Element-15", - "https://www.w3.org/TR/webaudio/#MathJax-Element-16-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-111", - "https://www.w3.org/TR/webaudio/#MathJax-Span-112", - "https://www.w3.org/TR/webaudio/#MathJax-Span-113", - "https://www.w3.org/TR/webaudio/#MathJax-Span-114", - "https://www.w3.org/TR/webaudio/#MathJax-Span-115", - "https://www.w3.org/TR/webaudio/#MathJax-Element-16", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-source", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-channelnumber", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-copytochannel-bufferoffset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel-source%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content", - "https://www.w3.org/TR/webaudio/#ref-for-arraybufferview-write", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-get-buffer-source-copy", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-unknownerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffer-getchanneldata-channel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-number-of-channels-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copyfromchannel%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#acquire-the-content", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-detached%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-detach%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-internal-data-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-outputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-copytochannel%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioBufferOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-length%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-samplerate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-numberofchannels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-length%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobufferoptions-samplerate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dictionary-audiobufferoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-length", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer-length", - "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-numberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer-numberofchannels", - "https://www.w3.org/TR/webaudio/#dom-audiobufferoptions-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createbuffer-samplerate", - "https://www.w3.org/TR/webaudio/#AudioNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-inputs", - "https://www.w3.org/TR/webaudio/#ref-for-outputs", - "https://www.w3.org/TR/webaudio/#ref-for-source-node", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#connection", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#input", - "https://www.w3.org/TR/webaudio/#ref-for-connection", - "https://www.w3.org/TR/webaudio/#ref-for-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-eventtarget%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationnode-output-input-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationnode-output-input-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationnode-output-input-input", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationparam-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationparam-output-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationparam-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-input-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-input-input", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam-output-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-context", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation", - "https://www.w3.org/TR/webaudio/#AudioNode-creation", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#factory-method", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#associated", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-associated", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-factory-method%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-associated-option-object", - "https://www.w3.org/TR/webaudio/#ref-for-associated-interface", - "https://www.w3.org/TR/webaudio/#audionode-constructor-init", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6", - "https://www.w3.org/TR/webaudio/#associated-interface", - "https://www.w3.org/TR/webaudio/#associated-option-object", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventtarget%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-eventtarget%E2%91%A3", - "https://www.w3.org/TR/webaudio/#enumdef-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-clamped-max", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1", - "https://www.w3.org/TR/webaudio/#computednumberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-channelcountmode-max", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-channelcountmode-clamped-max", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-channelcountmode-explicit", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A5", - "https://www.w3.org/TR/webaudio/#enumdef-channelinterpretation", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-discrete", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-channelinterpretation-speakers", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-discrete%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-channelinterpretation-discrete", - "https://www.w3.org/TR/webaudio/#AudioNode-tail", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#tail-time", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioNode-actively-processing", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#actively-processing", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing", - "https://www.w3.org/TR/webaudio/#ref-for-playing", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourcenode-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-17-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-116", - "https://www.w3.org/TR/webaudio/#MathJax-Span-117", - "https://www.w3.org/TR/webaudio/#MathJax-Span-118", - "https://www.w3.org/TR/webaudio/#MathJax-Span-119", - "https://www.w3.org/TR/webaudio/#MathJax-Span-120", - "https://www.w3.org/TR/webaudio/#MathJax-Span-121", - "https://www.w3.org/TR/webaudio/#MathJax-Span-122", - "https://www.w3.org/TR/webaudio/#MathJax-Span-123", - "https://www.w3.org/TR/webaudio/#MathJax-Element-17", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-callable-process-slot", - "https://www.w3.org/TR/webaudio/#ref-for-active-source", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-audionode-channelcount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#audionode-channelcount-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiodestinationnode-maxchannelcount", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audionode-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A1", - "https://www.w3.org/TR/webaudio/#audionode-channelcountmode-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-destination%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audionode-channelinterpretation", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0", - "https://www.w3.org/TR/webaudio/#audionode-channelinterpretation-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-discrete%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audionode-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audionode-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#audionode-source-nodes", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audionode-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioNode-methods", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect", - "https://www.w3.org/TR/webaudio/#example-bbcc3e9e", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationnode-output-input-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#cycle", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#example-8779522d", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationparam-output%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-connect-destinationparam-output-destinationparam%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audionode-connect-destinationparam-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-output%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationnode-output-input%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-destinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationnode-output-input-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-disconnect-destinationparam-output%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output-destinationparam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audionode-disconnect-destinationparam-output-output", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioNodeOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcount", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelinterpretation", - "https://www.w3.org/TR/webaudio/#dictionary-audionodeoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelcount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelcountmode", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelcountmode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audionodeoptions-channelinterpretation", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioParam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A8", - "https://www.w3.org/TR/webaudio/#k-rate", - "https://www.w3.org/TR/webaudio/#a-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue", - "https://www.w3.org/TR/webaudio/#simple-nominal-range", - "https://www.w3.org/TR/webaudio/#MathJax-Element-18-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-124", - "https://www.w3.org/TR/webaudio/#MathJax-Span-125", - "https://www.w3.org/TR/webaudio/#MathJax-Span-126", - "https://www.w3.org/TR/webaudio/#MathJax-Span-127", - "https://www.w3.org/TR/webaudio/#MathJax-Span-128", - "https://www.w3.org/TR/webaudio/#MathJax-Span-129", - "https://www.w3.org/TR/webaudio/#MathJax-Span-130", - "https://www.w3.org/TR/webaudio/#MathJax-Span-131", - "https://www.w3.org/TR/webaudio/#MathJax-Span-132", - "https://www.w3.org/TR/webaudio/#MathJax-Span-133", - "https://www.w3.org/TR/webaudio/#MathJax-Span-134", - "https://www.w3.org/TR/webaudio/#MathJax-Span-135", - "https://www.w3.org/TR/webaudio/#MathJax-Span-136", - "https://www.w3.org/TR/webaudio/#MathJax-Span-137", - "https://www.w3.org/TR/webaudio/#MathJax-Span-138", - "https://www.w3.org/TR/webaudio/#MathJax-Span-139", - "https://www.w3.org/TR/webaudio/#MathJax-Span-140", - "https://www.w3.org/TR/webaudio/#MathJax-Span-141", - "https://www.w3.org/TR/webaudio/#MathJax-Span-142", - "https://www.w3.org/TR/webaudio/#MathJax-Span-143", - "https://www.w3.org/TR/webaudio/#MathJax-Span-144", - "https://www.w3.org/TR/webaudio/#MathJax-Span-145", - "https://www.w3.org/TR/webaudio/#MathJax-Span-146", - "https://www.w3.org/TR/webaudio/#MathJax-Span-147", - "https://www.w3.org/TR/webaudio/#MathJax-Span-148", - "https://www.w3.org/TR/webaudio/#MathJax-Element-18", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#most-positive-single-float", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#most-negative-single-float", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dfn-automation-event", - "https://www.w3.org/TR/webaudio/#automation-event-time", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dfn-automation-method", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime", - "https://www.w3.org/TR/webaudio/#ref-for-automation-event-time", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-19-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-149", - "https://www.w3.org/TR/webaudio/#MathJax-Span-150", - "https://www.w3.org/TR/webaudio/#MathJax-Span-151", - "https://www.w3.org/TR/webaudio/#MathJax-Element-19", - "https://www.w3.org/TR/webaudio/#MathJax-Element-20-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-152", - "https://www.w3.org/TR/webaudio/#MathJax-Span-153", - "https://www.w3.org/TR/webaudio/#MathJax-Span-154", - "https://www.w3.org/TR/webaudio/#MathJax-Element-20", - "https://www.w3.org/TR/webaudio/#MathJax-Element-21-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-155", - "https://www.w3.org/TR/webaudio/#MathJax-Span-156", - "https://www.w3.org/TR/webaudio/#MathJax-Span-157", - "https://www.w3.org/TR/webaudio/#MathJax-Element-21", - "https://www.w3.org/TR/webaudio/#MathJax-Element-22-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-158", - "https://www.w3.org/TR/webaudio/#MathJax-Span-159", - "https://www.w3.org/TR/webaudio/#MathJax-Span-160", - "https://www.w3.org/TR/webaudio/#MathJax-Span-161", - "https://www.w3.org/TR/webaudio/#MathJax-Span-162", - "https://www.w3.org/TR/webaudio/#MathJax-Element-22", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-automation-method", - "https://www.w3.org/TR/webaudio/#MathJax-Element-23-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-163", - "https://www.w3.org/TR/webaudio/#MathJax-Span-164", - "https://www.w3.org/TR/webaudio/#MathJax-Span-165", - "https://www.w3.org/TR/webaudio/#MathJax-Span-166", - "https://www.w3.org/TR/webaudio/#MathJax-Span-167", - "https://www.w3.org/TR/webaudio/#MathJax-Span-168", - "https://www.w3.org/TR/webaudio/#MathJax-Span-169", - "https://www.w3.org/TR/webaudio/#MathJax-Span-170", - "https://www.w3.org/TR/webaudio/#MathJax-Span-171", - "https://www.w3.org/TR/webaudio/#MathJax-Element-23", - "https://www.w3.org/TR/webaudio/#MathJax-Element-24-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-172", - "https://www.w3.org/TR/webaudio/#MathJax-Span-173", - "https://www.w3.org/TR/webaudio/#MathJax-Span-174", - "https://www.w3.org/TR/webaudio/#MathJax-Element-24", - "https://www.w3.org/TR/webaudio/#MathJax-Element-25-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-175", - "https://www.w3.org/TR/webaudio/#MathJax-Span-176", - "https://www.w3.org/TR/webaudio/#MathJax-Span-177", - "https://www.w3.org/TR/webaudio/#MathJax-Element-25", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#enumdef-automationrate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-automationrate", - "https://www.w3.org/TR/webaudio/#dom-automationrate-a-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-automationrate-k-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-current-value-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-automationrate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value-starttime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value-starttime-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value-endtime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value-endtime-endtime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value-endtime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value-endtime-endtime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-target", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target-starttime-timeconstant-timeconstant", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-values", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values-starttime-duration-duration", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues-canceltime-canceltime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime-canceltime-canceltime", - "https://www.w3.org/TR/webaudio/#AudioParam-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioparam-automationrate", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-automationrate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#audioparam-automation-rate-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-threshold", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-knee", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-ratio", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-attack", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-release", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-hrtf", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparam-defaultvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioparam-maxvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range", - "https://www.w3.org/TR/webaudio/#dom-audioparam-minvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioparam-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioParam-methods", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime-canceltime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-26-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-178", - "https://www.w3.org/TR/webaudio/#MathJax-Span-179", - "https://www.w3.org/TR/webaudio/#MathJax-Span-180", - "https://www.w3.org/TR/webaudio/#MathJax-Span-181", - "https://www.w3.org/TR/webaudio/#MathJax-Span-182", - "https://www.w3.org/TR/webaudio/#MathJax-Element-26", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-27-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-183", - "https://www.w3.org/TR/webaudio/#MathJax-Span-184", - "https://www.w3.org/TR/webaudio/#MathJax-Span-185", - "https://www.w3.org/TR/webaudio/#MathJax-Span-186", - "https://www.w3.org/TR/webaudio/#MathJax-Span-187", - "https://www.w3.org/TR/webaudio/#MathJax-Element-27", - "https://www.w3.org/TR/webaudio/#MathJax-Element-28-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-188", - "https://www.w3.org/TR/webaudio/#MathJax-Span-189", - "https://www.w3.org/TR/webaudio/#MathJax-Span-190", - "https://www.w3.org/TR/webaudio/#MathJax-Span-191", - "https://www.w3.org/TR/webaudio/#MathJax-Span-192", - "https://www.w3.org/TR/webaudio/#MathJax-Element-28", - "https://www.w3.org/TR/webaudio/#MathJax-Element-29-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-193", - "https://www.w3.org/TR/webaudio/#MathJax-Span-194", - "https://www.w3.org/TR/webaudio/#MathJax-Span-195", - "https://www.w3.org/TR/webaudio/#MathJax-Span-196", - "https://www.w3.org/TR/webaudio/#MathJax-Span-197", - "https://www.w3.org/TR/webaudio/#MathJax-Element-29", - "https://www.w3.org/TR/webaudio/#MathJax-Element-30-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-198", - "https://www.w3.org/TR/webaudio/#MathJax-Span-199", - "https://www.w3.org/TR/webaudio/#MathJax-Span-200", - "https://www.w3.org/TR/webaudio/#MathJax-Span-201", - "https://www.w3.org/TR/webaudio/#MathJax-Span-202", - "https://www.w3.org/TR/webaudio/#MathJax-Span-203", - "https://www.w3.org/TR/webaudio/#MathJax-Span-204", - "https://www.w3.org/TR/webaudio/#MathJax-Span-205", - "https://www.w3.org/TR/webaudio/#MathJax-Span-206", - "https://www.w3.org/TR/webaudio/#MathJax-Element-30", - "https://www.w3.org/TR/webaudio/#MathJax-Element-31-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-207", - "https://www.w3.org/TR/webaudio/#MathJax-Span-208", - "https://www.w3.org/TR/webaudio/#MathJax-Span-209", - "https://www.w3.org/TR/webaudio/#MathJax-Span-210", - "https://www.w3.org/TR/webaudio/#MathJax-Span-211", - "https://www.w3.org/TR/webaudio/#MathJax-Element-31", - "https://www.w3.org/TR/webaudio/#MathJax-Element-32-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-212", - "https://www.w3.org/TR/webaudio/#MathJax-Span-213", - "https://www.w3.org/TR/webaudio/#MathJax-Span-214", - "https://www.w3.org/TR/webaudio/#MathJax-Span-215", - "https://www.w3.org/TR/webaudio/#MathJax-Span-216", - "https://www.w3.org/TR/webaudio/#MathJax-Element-32", - "https://www.w3.org/TR/webaudio/#MathJax-Element-33-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-217", - "https://www.w3.org/TR/webaudio/#MathJax-Span-218", - "https://www.w3.org/TR/webaudio/#MathJax-Span-219", - "https://www.w3.org/TR/webaudio/#MathJax-Span-220", - "https://www.w3.org/TR/webaudio/#MathJax-Span-221", - "https://www.w3.org/TR/webaudio/#MathJax-Element-33", - "https://www.w3.org/TR/webaudio/#MathJax-Element-34-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-222", - "https://www.w3.org/TR/webaudio/#MathJax-Span-223", - "https://www.w3.org/TR/webaudio/#MathJax-Span-224", - "https://www.w3.org/TR/webaudio/#MathJax-Span-225", - "https://www.w3.org/TR/webaudio/#MathJax-Span-226", - "https://www.w3.org/TR/webaudio/#MathJax-Span-227", - "https://www.w3.org/TR/webaudio/#MathJax-Span-228", - "https://www.w3.org/TR/webaudio/#MathJax-Span-229", - "https://www.w3.org/TR/webaudio/#MathJax-Span-230", - "https://www.w3.org/TR/webaudio/#MathJax-Element-34", - "https://www.w3.org/TR/webaudio/#MathJax-Element-35-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-231", - "https://www.w3.org/TR/webaudio/#MathJax-Span-232", - "https://www.w3.org/TR/webaudio/#MathJax-Span-233", - "https://www.w3.org/TR/webaudio/#MathJax-Span-234", - "https://www.w3.org/TR/webaudio/#MathJax-Span-235", - "https://www.w3.org/TR/webaudio/#MathJax-Element-35", - "https://www.w3.org/TR/webaudio/#MathJax-Element-36-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-236", - "https://www.w3.org/TR/webaudio/#MathJax-Span-237", - "https://www.w3.org/TR/webaudio/#MathJax-Span-238", - "https://www.w3.org/TR/webaudio/#MathJax-Span-239", - "https://www.w3.org/TR/webaudio/#MathJax-Span-240", - "https://www.w3.org/TR/webaudio/#MathJax-Element-36", - "https://www.w3.org/TR/webaudio/#MathJax-Element-37-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-241", - "https://www.w3.org/TR/webaudio/#MathJax-Span-242", - "https://www.w3.org/TR/webaudio/#MathJax-Span-243", - "https://www.w3.org/TR/webaudio/#MathJax-Span-244", - "https://www.w3.org/TR/webaudio/#MathJax-Span-245", - "https://www.w3.org/TR/webaudio/#MathJax-Element-37", - "https://www.w3.org/TR/webaudio/#MathJax-Element-38-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-246", - "https://www.w3.org/TR/webaudio/#MathJax-Span-247", - "https://www.w3.org/TR/webaudio/#MathJax-Span-248", - "https://www.w3.org/TR/webaudio/#MathJax-Span-249", - "https://www.w3.org/TR/webaudio/#MathJax-Span-250", - "https://www.w3.org/TR/webaudio/#MathJax-Element-38", - "https://www.w3.org/TR/webaudio/#MathJax-Element-39-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-251", - "https://www.w3.org/TR/webaudio/#MathJax-Span-252", - "https://www.w3.org/TR/webaudio/#MathJax-Span-253", - "https://www.w3.org/TR/webaudio/#MathJax-Span-254", - "https://www.w3.org/TR/webaudio/#MathJax-Span-255", - "https://www.w3.org/TR/webaudio/#MathJax-Element-39", - "https://www.w3.org/TR/webaudio/#MathJax-Element-40-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-256", - "https://www.w3.org/TR/webaudio/#MathJax-Span-257", - "https://www.w3.org/TR/webaudio/#MathJax-Span-258", - "https://www.w3.org/TR/webaudio/#MathJax-Span-259", - "https://www.w3.org/TR/webaudio/#MathJax-Span-260", - "https://www.w3.org/TR/webaudio/#MathJax-Element-40", - "https://www.w3.org/TR/webaudio/#MathJax-Element-41-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-261", - "https://www.w3.org/TR/webaudio/#MathJax-Span-262", - "https://www.w3.org/TR/webaudio/#MathJax-Span-263", - "https://www.w3.org/TR/webaudio/#MathJax-Span-264", - "https://www.w3.org/TR/webaudio/#MathJax-Span-265", - "https://www.w3.org/TR/webaudio/#MathJax-Element-41", - "https://www.w3.org/TR/webaudio/#MathJax-Element-42-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-266", - "https://www.w3.org/TR/webaudio/#MathJax-Span-267", - "https://www.w3.org/TR/webaudio/#MathJax-Span-268", - "https://www.w3.org/TR/webaudio/#MathJax-Span-269", - "https://www.w3.org/TR/webaudio/#MathJax-Span-270", - "https://www.w3.org/TR/webaudio/#MathJax-Element-42", - "https://www.w3.org/TR/webaudio/#MathJax-Element-43-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-271", - "https://www.w3.org/TR/webaudio/#MathJax-Span-272", - "https://www.w3.org/TR/webaudio/#MathJax-Span-273", - "https://www.w3.org/TR/webaudio/#MathJax-Span-274", - "https://www.w3.org/TR/webaudio/#MathJax-Span-275", - "https://www.w3.org/TR/webaudio/#MathJax-Element-43", - "https://www.w3.org/TR/webaudio/#MathJax-Element-44-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-276", - "https://www.w3.org/TR/webaudio/#MathJax-Span-277", - "https://www.w3.org/TR/webaudio/#MathJax-Span-278", - "https://www.w3.org/TR/webaudio/#MathJax-Span-279", - "https://www.w3.org/TR/webaudio/#MathJax-Span-280", - "https://www.w3.org/TR/webaudio/#MathJax-Element-44", - "https://www.w3.org/TR/webaudio/#MathJax-Element-45-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-281", - "https://www.w3.org/TR/webaudio/#MathJax-Span-282", - "https://www.w3.org/TR/webaudio/#MathJax-Span-283", - "https://www.w3.org/TR/webaudio/#MathJax-Span-284", - "https://www.w3.org/TR/webaudio/#MathJax-Span-285", - "https://www.w3.org/TR/webaudio/#MathJax-Element-45", - "https://www.w3.org/TR/webaudio/#MathJax-Element-46-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-286", - "https://www.w3.org/TR/webaudio/#MathJax-Span-287", - "https://www.w3.org/TR/webaudio/#MathJax-Span-288", - "https://www.w3.org/TR/webaudio/#MathJax-Element-46", - "https://www.w3.org/TR/webaudio/#MathJax-Element-47-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-289", - "https://www.w3.org/TR/webaudio/#MathJax-Span-290", - "https://www.w3.org/TR/webaudio/#MathJax-Span-291", - "https://www.w3.org/TR/webaudio/#MathJax-Span-292", - "https://www.w3.org/TR/webaudio/#MathJax-Span-293", - "https://www.w3.org/TR/webaudio/#MathJax-Span-294", - "https://www.w3.org/TR/webaudio/#MathJax-Span-295", - "https://www.w3.org/TR/webaudio/#MathJax-Span-296", - "https://www.w3.org/TR/webaudio/#MathJax-Span-297", - "https://www.w3.org/TR/webaudio/#MathJax-Span-298", - "https://www.w3.org/TR/webaudio/#MathJax-Span-299", - "https://www.w3.org/TR/webaudio/#MathJax-Element-47", - "https://www.w3.org/TR/webaudio/#MathJax-Element-48-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-300", - "https://www.w3.org/TR/webaudio/#MathJax-Span-301", - "https://www.w3.org/TR/webaudio/#MathJax-Span-302", - "https://www.w3.org/TR/webaudio/#MathJax-Span-303", - "https://www.w3.org/TR/webaudio/#MathJax-Span-304", - "https://www.w3.org/TR/webaudio/#MathJax-Element-48", - "https://www.w3.org/TR/webaudio/#MathJax-Element-49-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-305", - "https://www.w3.org/TR/webaudio/#MathJax-Span-306", - "https://www.w3.org/TR/webaudio/#MathJax-Span-307", - "https://www.w3.org/TR/webaudio/#MathJax-Span-308", - "https://www.w3.org/TR/webaudio/#MathJax-Span-309", - "https://www.w3.org/TR/webaudio/#MathJax-Span-310", - "https://www.w3.org/TR/webaudio/#MathJax-Span-311", - "https://www.w3.org/TR/webaudio/#MathJax-Span-312", - "https://www.w3.org/TR/webaudio/#MathJax-Span-313", - "https://www.w3.org/TR/webaudio/#MathJax-Element-49", - "https://www.w3.org/TR/webaudio/#MathJax-Element-50-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-314", - "https://www.w3.org/TR/webaudio/#MathJax-Span-315", - "https://www.w3.org/TR/webaudio/#MathJax-Span-316", - "https://www.w3.org/TR/webaudio/#MathJax-Span-317", - "https://www.w3.org/TR/webaudio/#MathJax-Span-318", - "https://www.w3.org/TR/webaudio/#MathJax-Element-50", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-51-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-319", - "https://www.w3.org/TR/webaudio/#MathJax-Span-320", - "https://www.w3.org/TR/webaudio/#MathJax-Span-321", - "https://www.w3.org/TR/webaudio/#MathJax-Span-322", - "https://www.w3.org/TR/webaudio/#MathJax-Span-323", - "https://www.w3.org/TR/webaudio/#MathJax-Element-51", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelandholdattime-canceltime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime-canceltime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime", - "https://www.w3.org/TR/webaudio/#ref-for-automation-event-time%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelandholdattime%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-52-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-324", - "https://www.w3.org/TR/webaudio/#MathJax-Span-325", - "https://www.w3.org/TR/webaudio/#MathJax-Span-326", - "https://www.w3.org/TR/webaudio/#MathJax-Span-327", - "https://www.w3.org/TR/webaudio/#MathJax-Span-328", - "https://www.w3.org/TR/webaudio/#MathJax-Element-52", - "https://www.w3.org/TR/webaudio/#MathJax-Element-53-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-329", - "https://www.w3.org/TR/webaudio/#MathJax-Span-330", - "https://www.w3.org/TR/webaudio/#MathJax-Span-331", - "https://www.w3.org/TR/webaudio/#MathJax-Span-332", - "https://www.w3.org/TR/webaudio/#MathJax-Span-333", - "https://www.w3.org/TR/webaudio/#MathJax-Element-53", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-duration", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues-canceltime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-54-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-334", - "https://www.w3.org/TR/webaudio/#MathJax-Span-335", - "https://www.w3.org/TR/webaudio/#MathJax-Span-336", - "https://www.w3.org/TR/webaudio/#MathJax-Span-337", - "https://www.w3.org/TR/webaudio/#MathJax-Span-338", - "https://www.w3.org/TR/webaudio/#MathJax-Span-339", - "https://www.w3.org/TR/webaudio/#MathJax-Span-340", - "https://www.w3.org/TR/webaudio/#MathJax-Span-341", - "https://www.w3.org/TR/webaudio/#MathJax-Span-342", - "https://www.w3.org/TR/webaudio/#MathJax-Span-343", - "https://www.w3.org/TR/webaudio/#MathJax-Span-344", - "https://www.w3.org/TR/webaudio/#MathJax-Span-345", - "https://www.w3.org/TR/webaudio/#MathJax-Span-346", - "https://www.w3.org/TR/webaudio/#MathJax-Span-347", - "https://www.w3.org/TR/webaudio/#MathJax-Span-348", - "https://www.w3.org/TR/webaudio/#MathJax-Element-54", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-cancelscheduledvalues%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-cancelscheduledvalues-canceltime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-55-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-349", - "https://www.w3.org/TR/webaudio/#MathJax-Span-350", - "https://www.w3.org/TR/webaudio/#MathJax-Span-351", - "https://www.w3.org/TR/webaudio/#MathJax-Span-352", - "https://www.w3.org/TR/webaudio/#MathJax-Span-353", - "https://www.w3.org/TR/webaudio/#MathJax-Span-354", - "https://www.w3.org/TR/webaudio/#MathJax-Span-355", - "https://www.w3.org/TR/webaudio/#MathJax-Span-356", - "https://www.w3.org/TR/webaudio/#MathJax-Span-357", - "https://www.w3.org/TR/webaudio/#MathJax-Span-358", - "https://www.w3.org/TR/webaudio/#MathJax-Span-359", - "https://www.w3.org/TR/webaudio/#MathJax-Element-55", - "https://www.w3.org/TR/webaudio/#MathJax-Element-56-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-360", - "https://www.w3.org/TR/webaudio/#MathJax-Span-361", - "https://www.w3.org/TR/webaudio/#MathJax-Span-362", - "https://www.w3.org/TR/webaudio/#MathJax-Span-363", - "https://www.w3.org/TR/webaudio/#MathJax-Span-364", - "https://www.w3.org/TR/webaudio/#MathJax-Element-56", - "https://www.w3.org/TR/webaudio/#MathJax-Element-57-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-365", - "https://www.w3.org/TR/webaudio/#MathJax-Span-366", - "https://www.w3.org/TR/webaudio/#MathJax-Span-367", - "https://www.w3.org/TR/webaudio/#MathJax-Span-368", - "https://www.w3.org/TR/webaudio/#MathJax-Span-369", - "https://www.w3.org/TR/webaudio/#MathJax-Element-57", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime-endtime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-58-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-370", - "https://www.w3.org/TR/webaudio/#MathJax-Span-371", - "https://www.w3.org/TR/webaudio/#MathJax-Span-372", - "https://www.w3.org/TR/webaudio/#MathJax-Span-373", - "https://www.w3.org/TR/webaudio/#MathJax-Span-374", - "https://www.w3.org/TR/webaudio/#MathJax-Span-375", - "https://www.w3.org/TR/webaudio/#MathJax-Span-376", - "https://www.w3.org/TR/webaudio/#MathJax-Span-377", - "https://www.w3.org/TR/webaudio/#MathJax-Span-378", - "https://www.w3.org/TR/webaudio/#MathJax-Span-379", - "https://www.w3.org/TR/webaudio/#MathJax-Span-380", - "https://www.w3.org/TR/webaudio/#MathJax-Span-381", - "https://www.w3.org/TR/webaudio/#MathJax-Span-382", - "https://www.w3.org/TR/webaudio/#MathJax-Span-383", - "https://www.w3.org/TR/webaudio/#MathJax-Span-384", - "https://www.w3.org/TR/webaudio/#MathJax-Span-385", - "https://www.w3.org/TR/webaudio/#MathJax-Span-386", - "https://www.w3.org/TR/webaudio/#MathJax-Span-387", - "https://www.w3.org/TR/webaudio/#MathJax-Span-388", - "https://www.w3.org/TR/webaudio/#MathJax-Span-389", - "https://www.w3.org/TR/webaudio/#MathJax-Span-390", - "https://www.w3.org/TR/webaudio/#MathJax-Span-391", - "https://www.w3.org/TR/webaudio/#MathJax-Span-392", - "https://www.w3.org/TR/webaudio/#MathJax-Span-393", - "https://www.w3.org/TR/webaudio/#MathJax-Span-394", - "https://www.w3.org/TR/webaudio/#MathJax-Span-395", - "https://www.w3.org/TR/webaudio/#MathJax-Span-396", - "https://www.w3.org/TR/webaudio/#MathJax-Span-397", - "https://www.w3.org/TR/webaudio/#MathJax-Span-398", - "https://www.w3.org/TR/webaudio/#MathJax-Span-399", - "https://www.w3.org/TR/webaudio/#MathJax-Span-400", - "https://www.w3.org/TR/webaudio/#MathJax-Span-401", - "https://www.w3.org/TR/webaudio/#MathJax-Span-402", - "https://www.w3.org/TR/webaudio/#MathJax-Span-403", - "https://www.w3.org/TR/webaudio/#MathJax-Span-404", - "https://www.w3.org/TR/webaudio/#MathJax-Span-405", - "https://www.w3.org/TR/webaudio/#MathJax-Element-58", - "https://www.w3.org/TR/webaudio/#MathJax-Element-59-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-406", - "https://www.w3.org/TR/webaudio/#MathJax-Span-407", - "https://www.w3.org/TR/webaudio/#MathJax-Span-408", - "https://www.w3.org/TR/webaudio/#MathJax-Span-409", - "https://www.w3.org/TR/webaudio/#MathJax-Span-410", - "https://www.w3.org/TR/webaudio/#MathJax-Element-59", - "https://www.w3.org/TR/webaudio/#MathJax-Element-60-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-411", - "https://www.w3.org/TR/webaudio/#MathJax-Span-412", - "https://www.w3.org/TR/webaudio/#MathJax-Span-413", - "https://www.w3.org/TR/webaudio/#MathJax-Span-414", - "https://www.w3.org/TR/webaudio/#MathJax-Span-415", - "https://www.w3.org/TR/webaudio/#MathJax-Element-60", - "https://www.w3.org/TR/webaudio/#MathJax-Element-61-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-416", - "https://www.w3.org/TR/webaudio/#MathJax-Span-417", - "https://www.w3.org/TR/webaudio/#MathJax-Span-418", - "https://www.w3.org/TR/webaudio/#MathJax-Span-419", - "https://www.w3.org/TR/webaudio/#MathJax-Span-420", - "https://www.w3.org/TR/webaudio/#MathJax-Element-61", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime-value", - "https://www.w3.org/TR/webaudio/#MathJax-Element-62-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-421", - "https://www.w3.org/TR/webaudio/#MathJax-Span-422", - "https://www.w3.org/TR/webaudio/#MathJax-Span-423", - "https://www.w3.org/TR/webaudio/#MathJax-Span-424", - "https://www.w3.org/TR/webaudio/#MathJax-Span-425", - "https://www.w3.org/TR/webaudio/#MathJax-Element-62", - "https://www.w3.org/TR/webaudio/#MathJax-Element-63-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-426", - "https://www.w3.org/TR/webaudio/#MathJax-Span-427", - "https://www.w3.org/TR/webaudio/#MathJax-Span-428", - "https://www.w3.org/TR/webaudio/#MathJax-Span-429", - "https://www.w3.org/TR/webaudio/#MathJax-Span-430", - "https://www.w3.org/TR/webaudio/#MathJax-Element-63", - "https://www.w3.org/TR/webaudio/#MathJax-Element-64-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-431", - "https://www.w3.org/TR/webaudio/#MathJax-Span-432", - "https://www.w3.org/TR/webaudio/#MathJax-Span-433", - "https://www.w3.org/TR/webaudio/#MathJax-Span-434", - "https://www.w3.org/TR/webaudio/#MathJax-Span-435", - "https://www.w3.org/TR/webaudio/#MathJax-Element-64", - "https://www.w3.org/TR/webaudio/#MathJax-Element-65-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-436", - "https://www.w3.org/TR/webaudio/#MathJax-Span-437", - "https://www.w3.org/TR/webaudio/#MathJax-Span-438", - "https://www.w3.org/TR/webaudio/#MathJax-Span-439", - "https://www.w3.org/TR/webaudio/#MathJax-Span-440", - "https://www.w3.org/TR/webaudio/#MathJax-Span-441", - "https://www.w3.org/TR/webaudio/#MathJax-Span-442", - "https://www.w3.org/TR/webaudio/#MathJax-Span-443", - "https://www.w3.org/TR/webaudio/#MathJax-Span-444", - "https://www.w3.org/TR/webaudio/#MathJax-Span-445", - "https://www.w3.org/TR/webaudio/#MathJax-Element-65", - "https://www.w3.org/TR/webaudio/#MathJax-Element-66-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-446", - "https://www.w3.org/TR/webaudio/#MathJax-Span-447", - "https://www.w3.org/TR/webaudio/#MathJax-Span-448", - "https://www.w3.org/TR/webaudio/#MathJax-Span-449", - "https://www.w3.org/TR/webaudio/#MathJax-Span-450", - "https://www.w3.org/TR/webaudio/#MathJax-Span-451", - "https://www.w3.org/TR/webaudio/#MathJax-Span-452", - "https://www.w3.org/TR/webaudio/#MathJax-Span-453", - "https://www.w3.org/TR/webaudio/#MathJax-Span-454", - "https://www.w3.org/TR/webaudio/#MathJax-Span-455", - "https://www.w3.org/TR/webaudio/#MathJax-Span-456", - "https://www.w3.org/TR/webaudio/#MathJax-Element-66", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-67-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-457", - "https://www.w3.org/TR/webaudio/#MathJax-Span-458", - "https://www.w3.org/TR/webaudio/#MathJax-Span-459", - "https://www.w3.org/TR/webaudio/#MathJax-Span-460", - "https://www.w3.org/TR/webaudio/#MathJax-Span-461", - "https://www.w3.org/TR/webaudio/#MathJax-Span-462", - "https://www.w3.org/TR/webaudio/#MathJax-Span-463", - "https://www.w3.org/TR/webaudio/#MathJax-Element-67", - "https://www.w3.org/TR/webaudio/#MathJax-Element-68-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-464", - "https://www.w3.org/TR/webaudio/#MathJax-Span-465", - "https://www.w3.org/TR/webaudio/#MathJax-Span-466", - "https://www.w3.org/TR/webaudio/#MathJax-Span-467", - "https://www.w3.org/TR/webaudio/#MathJax-Span-468", - "https://www.w3.org/TR/webaudio/#MathJax-Span-469", - "https://www.w3.org/TR/webaudio/#MathJax-Span-470", - "https://www.w3.org/TR/webaudio/#MathJax-Span-471", - "https://www.w3.org/TR/webaudio/#MathJax-Span-472", - "https://www.w3.org/TR/webaudio/#MathJax-Span-473", - "https://www.w3.org/TR/webaudio/#MathJax-Element-68", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-69-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-474", - "https://www.w3.org/TR/webaudio/#MathJax-Span-475", - "https://www.w3.org/TR/webaudio/#MathJax-Span-476", - "https://www.w3.org/TR/webaudio/#MathJax-Span-477", - "https://www.w3.org/TR/webaudio/#MathJax-Span-478", - "https://www.w3.org/TR/webaudio/#MathJax-Element-69", - "https://www.w3.org/TR/webaudio/#MathJax-Element-70-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-479", - "https://www.w3.org/TR/webaudio/#MathJax-Span-480", - "https://www.w3.org/TR/webaudio/#MathJax-Span-481", - "https://www.w3.org/TR/webaudio/#MathJax-Span-482", - "https://www.w3.org/TR/webaudio/#MathJax-Span-483", - "https://www.w3.org/TR/webaudio/#MathJax-Element-70", - "https://www.w3.org/TR/webaudio/#MathJax-Element-71-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-484", - "https://www.w3.org/TR/webaudio/#MathJax-Span-485", - "https://www.w3.org/TR/webaudio/#MathJax-Span-486", - "https://www.w3.org/TR/webaudio/#MathJax-Span-487", - "https://www.w3.org/TR/webaudio/#MathJax-Span-488", - "https://www.w3.org/TR/webaudio/#MathJax-Element-71", - "https://www.w3.org/TR/webaudio/#MathJax-Element-72-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-489", - "https://www.w3.org/TR/webaudio/#MathJax-Span-490", - "https://www.w3.org/TR/webaudio/#MathJax-Span-491", - "https://www.w3.org/TR/webaudio/#MathJax-Span-492", - "https://www.w3.org/TR/webaudio/#MathJax-Span-493", - "https://www.w3.org/TR/webaudio/#MathJax-Element-72", - "https://www.w3.org/TR/webaudio/#MathJax-Element-73-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-494", - "https://www.w3.org/TR/webaudio/#MathJax-Span-495", - "https://www.w3.org/TR/webaudio/#MathJax-Span-496", - "https://www.w3.org/TR/webaudio/#MathJax-Span-497", - "https://www.w3.org/TR/webaudio/#MathJax-Span-498", - "https://www.w3.org/TR/webaudio/#MathJax-Element-73", - "https://www.w3.org/TR/webaudio/#MathJax-Element-74-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-499", - "https://www.w3.org/TR/webaudio/#MathJax-Span-500", - "https://www.w3.org/TR/webaudio/#MathJax-Span-501", - "https://www.w3.org/TR/webaudio/#MathJax-Span-502", - "https://www.w3.org/TR/webaudio/#MathJax-Span-503", - "https://www.w3.org/TR/webaudio/#MathJax-Element-74", - "https://www.w3.org/TR/webaudio/#MathJax-Element-75-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-504", - "https://www.w3.org/TR/webaudio/#MathJax-Span-505", - "https://www.w3.org/TR/webaudio/#MathJax-Span-506", - "https://www.w3.org/TR/webaudio/#MathJax-Span-507", - "https://www.w3.org/TR/webaudio/#MathJax-Span-508", - "https://www.w3.org/TR/webaudio/#MathJax-Element-75", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-exponentialramptovalueattime-endtime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-76-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-509", - "https://www.w3.org/TR/webaudio/#MathJax-Span-510", - "https://www.w3.org/TR/webaudio/#MathJax-Span-511", - "https://www.w3.org/TR/webaudio/#MathJax-Span-512", - "https://www.w3.org/TR/webaudio/#MathJax-Span-513", - "https://www.w3.org/TR/webaudio/#MathJax-Span-514", - "https://www.w3.org/TR/webaudio/#MathJax-Span-515", - "https://www.w3.org/TR/webaudio/#MathJax-Span-516", - "https://www.w3.org/TR/webaudio/#MathJax-Span-517", - "https://www.w3.org/TR/webaudio/#MathJax-Span-518", - "https://www.w3.org/TR/webaudio/#MathJax-Span-519", - "https://www.w3.org/TR/webaudio/#MathJax-Element-76", - "https://www.w3.org/TR/webaudio/#MathJax-Element-77-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-520", - "https://www.w3.org/TR/webaudio/#MathJax-Span-521", - "https://www.w3.org/TR/webaudio/#MathJax-Span-522", - "https://www.w3.org/TR/webaudio/#MathJax-Span-523", - "https://www.w3.org/TR/webaudio/#MathJax-Span-524", - "https://www.w3.org/TR/webaudio/#MathJax-Element-77", - "https://www.w3.org/TR/webaudio/#MathJax-Element-78-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-525", - "https://www.w3.org/TR/webaudio/#MathJax-Span-526", - "https://www.w3.org/TR/webaudio/#MathJax-Span-527", - "https://www.w3.org/TR/webaudio/#MathJax-Span-528", - "https://www.w3.org/TR/webaudio/#MathJax-Span-529", - "https://www.w3.org/TR/webaudio/#MathJax-Element-78", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime-endtime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-79-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-530", - "https://www.w3.org/TR/webaudio/#MathJax-Span-531", - "https://www.w3.org/TR/webaudio/#MathJax-Span-532", - "https://www.w3.org/TR/webaudio/#MathJax-Span-533", - "https://www.w3.org/TR/webaudio/#MathJax-Span-534", - "https://www.w3.org/TR/webaudio/#MathJax-Span-535", - "https://www.w3.org/TR/webaudio/#MathJax-Span-536", - "https://www.w3.org/TR/webaudio/#MathJax-Span-537", - "https://www.w3.org/TR/webaudio/#MathJax-Span-538", - "https://www.w3.org/TR/webaudio/#MathJax-Span-539", - "https://www.w3.org/TR/webaudio/#MathJax-Span-540", - "https://www.w3.org/TR/webaudio/#MathJax-Span-541", - "https://www.w3.org/TR/webaudio/#MathJax-Span-542", - "https://www.w3.org/TR/webaudio/#MathJax-Span-543", - "https://www.w3.org/TR/webaudio/#MathJax-Span-544", - "https://www.w3.org/TR/webaudio/#MathJax-Span-545", - "https://www.w3.org/TR/webaudio/#MathJax-Span-546", - "https://www.w3.org/TR/webaudio/#MathJax-Span-547", - "https://www.w3.org/TR/webaudio/#MathJax-Span-548", - "https://www.w3.org/TR/webaudio/#MathJax-Span-549", - "https://www.w3.org/TR/webaudio/#MathJax-Span-550", - "https://www.w3.org/TR/webaudio/#MathJax-Span-551", - "https://www.w3.org/TR/webaudio/#MathJax-Span-552", - "https://www.w3.org/TR/webaudio/#MathJax-Span-553", - "https://www.w3.org/TR/webaudio/#MathJax-Span-554", - "https://www.w3.org/TR/webaudio/#MathJax-Span-555", - "https://www.w3.org/TR/webaudio/#MathJax-Span-556", - "https://www.w3.org/TR/webaudio/#MathJax-Span-557", - "https://www.w3.org/TR/webaudio/#MathJax-Span-558", - "https://www.w3.org/TR/webaudio/#MathJax-Span-559", - "https://www.w3.org/TR/webaudio/#MathJax-Span-560", - "https://www.w3.org/TR/webaudio/#MathJax-Span-561", - "https://www.w3.org/TR/webaudio/#MathJax-Span-562", - "https://www.w3.org/TR/webaudio/#MathJax-Span-563", - "https://www.w3.org/TR/webaudio/#MathJax-Span-564", - "https://www.w3.org/TR/webaudio/#MathJax-Element-79", - "https://www.w3.org/TR/webaudio/#MathJax-Element-80-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-565", - "https://www.w3.org/TR/webaudio/#MathJax-Span-566", - "https://www.w3.org/TR/webaudio/#MathJax-Span-567", - "https://www.w3.org/TR/webaudio/#MathJax-Span-568", - "https://www.w3.org/TR/webaudio/#MathJax-Span-569", - "https://www.w3.org/TR/webaudio/#MathJax-Element-80", - "https://www.w3.org/TR/webaudio/#MathJax-Element-81-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-570", - "https://www.w3.org/TR/webaudio/#MathJax-Span-571", - "https://www.w3.org/TR/webaudio/#MathJax-Span-572", - "https://www.w3.org/TR/webaudio/#MathJax-Span-573", - "https://www.w3.org/TR/webaudio/#MathJax-Span-574", - "https://www.w3.org/TR/webaudio/#MathJax-Element-81", - "https://www.w3.org/TR/webaudio/#MathJax-Element-82-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-575", - "https://www.w3.org/TR/webaudio/#MathJax-Span-576", - "https://www.w3.org/TR/webaudio/#MathJax-Span-577", - "https://www.w3.org/TR/webaudio/#MathJax-Span-578", - "https://www.w3.org/TR/webaudio/#MathJax-Span-579", - "https://www.w3.org/TR/webaudio/#MathJax-Element-82", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime-value", - "https://www.w3.org/TR/webaudio/#MathJax-Element-83-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-580", - "https://www.w3.org/TR/webaudio/#MathJax-Span-581", - "https://www.w3.org/TR/webaudio/#MathJax-Span-582", - "https://www.w3.org/TR/webaudio/#MathJax-Span-583", - "https://www.w3.org/TR/webaudio/#MathJax-Span-584", - "https://www.w3.org/TR/webaudio/#MathJax-Span-585", - "https://www.w3.org/TR/webaudio/#MathJax-Span-586", - "https://www.w3.org/TR/webaudio/#MathJax-Element-83", - "https://www.w3.org/TR/webaudio/#MathJax-Element-84-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-587", - "https://www.w3.org/TR/webaudio/#MathJax-Span-588", - "https://www.w3.org/TR/webaudio/#MathJax-Span-589", - "https://www.w3.org/TR/webaudio/#MathJax-Span-590", - "https://www.w3.org/TR/webaudio/#MathJax-Span-591", - "https://www.w3.org/TR/webaudio/#MathJax-Span-592", - "https://www.w3.org/TR/webaudio/#MathJax-Span-593", - "https://www.w3.org/TR/webaudio/#MathJax-Span-594", - "https://www.w3.org/TR/webaudio/#MathJax-Span-595", - "https://www.w3.org/TR/webaudio/#MathJax-Span-596", - "https://www.w3.org/TR/webaudio/#MathJax-Element-84", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-85-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-597", - "https://www.w3.org/TR/webaudio/#MathJax-Span-598", - "https://www.w3.org/TR/webaudio/#MathJax-Span-599", - "https://www.w3.org/TR/webaudio/#MathJax-Span-600", - "https://www.w3.org/TR/webaudio/#MathJax-Span-601", - "https://www.w3.org/TR/webaudio/#MathJax-Element-85", - "https://www.w3.org/TR/webaudio/#MathJax-Element-86-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-602", - "https://www.w3.org/TR/webaudio/#MathJax-Span-603", - "https://www.w3.org/TR/webaudio/#MathJax-Span-604", - "https://www.w3.org/TR/webaudio/#MathJax-Span-605", - "https://www.w3.org/TR/webaudio/#MathJax-Span-606", - "https://www.w3.org/TR/webaudio/#MathJax-Element-86", - "https://www.w3.org/TR/webaudio/#MathJax-Element-87-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-607", - "https://www.w3.org/TR/webaudio/#MathJax-Span-608", - "https://www.w3.org/TR/webaudio/#MathJax-Span-609", - "https://www.w3.org/TR/webaudio/#MathJax-Span-610", - "https://www.w3.org/TR/webaudio/#MathJax-Span-611", - "https://www.w3.org/TR/webaudio/#MathJax-Element-87", - "https://www.w3.org/TR/webaudio/#MathJax-Element-88-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-612", - "https://www.w3.org/TR/webaudio/#MathJax-Span-613", - "https://www.w3.org/TR/webaudio/#MathJax-Span-614", - "https://www.w3.org/TR/webaudio/#MathJax-Span-615", - "https://www.w3.org/TR/webaudio/#MathJax-Span-616", - "https://www.w3.org/TR/webaudio/#MathJax-Element-88", - "https://www.w3.org/TR/webaudio/#MathJax-Element-89-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-617", - "https://www.w3.org/TR/webaudio/#MathJax-Span-618", - "https://www.w3.org/TR/webaudio/#MathJax-Span-619", - "https://www.w3.org/TR/webaudio/#MathJax-Span-620", - "https://www.w3.org/TR/webaudio/#MathJax-Span-621", - "https://www.w3.org/TR/webaudio/#MathJax-Element-89", - "https://www.w3.org/TR/webaudio/#MathJax-Element-90-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-622", - "https://www.w3.org/TR/webaudio/#MathJax-Span-623", - "https://www.w3.org/TR/webaudio/#MathJax-Span-624", - "https://www.w3.org/TR/webaudio/#MathJax-Span-625", - "https://www.w3.org/TR/webaudio/#MathJax-Span-626", - "https://www.w3.org/TR/webaudio/#MathJax-Element-90", - "https://www.w3.org/TR/webaudio/#MathJax-Element-91-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-627", - "https://www.w3.org/TR/webaudio/#MathJax-Span-628", - "https://www.w3.org/TR/webaudio/#MathJax-Span-629", - "https://www.w3.org/TR/webaudio/#MathJax-Span-630", - "https://www.w3.org/TR/webaudio/#MathJax-Span-631", - "https://www.w3.org/TR/webaudio/#MathJax-Element-91", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-linearramptovalueattime-endtime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-92-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-632", - "https://www.w3.org/TR/webaudio/#MathJax-Span-633", - "https://www.w3.org/TR/webaudio/#MathJax-Span-634", - "https://www.w3.org/TR/webaudio/#MathJax-Span-635", - "https://www.w3.org/TR/webaudio/#MathJax-Span-636", - "https://www.w3.org/TR/webaudio/#MathJax-Span-637", - "https://www.w3.org/TR/webaudio/#MathJax-Span-638", - "https://www.w3.org/TR/webaudio/#MathJax-Element-92", - "https://www.w3.org/TR/webaudio/#MathJax-Element-93-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-639", - "https://www.w3.org/TR/webaudio/#MathJax-Span-640", - "https://www.w3.org/TR/webaudio/#MathJax-Span-641", - "https://www.w3.org/TR/webaudio/#MathJax-Span-642", - "https://www.w3.org/TR/webaudio/#MathJax-Span-643", - "https://www.w3.org/TR/webaudio/#MathJax-Element-93", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime-starttime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-94-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-644", - "https://www.w3.org/TR/webaudio/#MathJax-Span-645", - "https://www.w3.org/TR/webaudio/#MathJax-Span-646", - "https://www.w3.org/TR/webaudio/#MathJax-Span-647", - "https://www.w3.org/TR/webaudio/#MathJax-Span-648", - "https://www.w3.org/TR/webaudio/#MathJax-Span-649", - "https://www.w3.org/TR/webaudio/#MathJax-Span-650", - "https://www.w3.org/TR/webaudio/#MathJax-Span-651", - "https://www.w3.org/TR/webaudio/#MathJax-Span-652", - "https://www.w3.org/TR/webaudio/#MathJax-Span-653", - "https://www.w3.org/TR/webaudio/#MathJax-Span-654", - "https://www.w3.org/TR/webaudio/#MathJax-Span-655", - "https://www.w3.org/TR/webaudio/#MathJax-Span-656", - "https://www.w3.org/TR/webaudio/#MathJax-Span-657", - "https://www.w3.org/TR/webaudio/#MathJax-Span-658", - "https://www.w3.org/TR/webaudio/#MathJax-Span-659", - "https://www.w3.org/TR/webaudio/#MathJax-Span-660", - "https://www.w3.org/TR/webaudio/#MathJax-Span-661", - "https://www.w3.org/TR/webaudio/#MathJax-Span-662", - "https://www.w3.org/TR/webaudio/#MathJax-Span-663", - "https://www.w3.org/TR/webaudio/#MathJax-Span-664", - "https://www.w3.org/TR/webaudio/#MathJax-Span-665", - "https://www.w3.org/TR/webaudio/#MathJax-Span-666", - "https://www.w3.org/TR/webaudio/#MathJax-Span-667", - "https://www.w3.org/TR/webaudio/#MathJax-Span-668", - "https://www.w3.org/TR/webaudio/#MathJax-Span-669", - "https://www.w3.org/TR/webaudio/#MathJax-Span-670", - "https://www.w3.org/TR/webaudio/#MathJax-Span-671", - "https://www.w3.org/TR/webaudio/#MathJax-Span-672", - "https://www.w3.org/TR/webaudio/#MathJax-Span-673", - "https://www.w3.org/TR/webaudio/#MathJax-Span-674", - "https://www.w3.org/TR/webaudio/#MathJax-Span-675", - "https://www.w3.org/TR/webaudio/#MathJax-Span-676", - "https://www.w3.org/TR/webaudio/#MathJax-Span-677", - "https://www.w3.org/TR/webaudio/#MathJax-Span-678", - "https://www.w3.org/TR/webaudio/#MathJax-Span-679", - "https://www.w3.org/TR/webaudio/#MathJax-Span-680", - "https://www.w3.org/TR/webaudio/#MathJax-Element-94", - "https://www.w3.org/TR/webaudio/#MathJax-Element-95-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-681", - "https://www.w3.org/TR/webaudio/#MathJax-Span-682", - "https://www.w3.org/TR/webaudio/#MathJax-Span-683", - "https://www.w3.org/TR/webaudio/#MathJax-Span-684", - "https://www.w3.org/TR/webaudio/#MathJax-Span-685", - "https://www.w3.org/TR/webaudio/#MathJax-Element-95", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-96-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-686", - "https://www.w3.org/TR/webaudio/#MathJax-Span-687", - "https://www.w3.org/TR/webaudio/#MathJax-Span-688", - "https://www.w3.org/TR/webaudio/#MathJax-Span-689", - "https://www.w3.org/TR/webaudio/#MathJax-Span-690", - "https://www.w3.org/TR/webaudio/#MathJax-Element-96", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime-starttime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-97-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-691", - "https://www.w3.org/TR/webaudio/#MathJax-Span-692", - "https://www.w3.org/TR/webaudio/#MathJax-Span-693", - "https://www.w3.org/TR/webaudio/#MathJax-Span-694", - "https://www.w3.org/TR/webaudio/#MathJax-Span-695", - "https://www.w3.org/TR/webaudio/#MathJax-Element-97", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime-target", - "https://www.w3.org/TR/webaudio/#MathJax-Element-98-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-696", - "https://www.w3.org/TR/webaudio/#MathJax-Span-697", - "https://www.w3.org/TR/webaudio/#MathJax-Span-698", - "https://www.w3.org/TR/webaudio/#MathJax-Element-98", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime-timeconstant", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-target", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioparam-settargetattime-timeconstant", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-99-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-699", - "https://www.w3.org/TR/webaudio/#MathJax-Span-700", - "https://www.w3.org/TR/webaudio/#MathJax-Span-701", - "https://www.w3.org/TR/webaudio/#MathJax-Span-702", - "https://www.w3.org/TR/webaudio/#MathJax-Span-703", - "https://www.w3.org/TR/webaudio/#MathJax-Span-704", - "https://www.w3.org/TR/webaudio/#MathJax-Span-705", - "https://www.w3.org/TR/webaudio/#MathJax-Span-706", - "https://www.w3.org/TR/webaudio/#MathJax-Span-707", - "https://www.w3.org/TR/webaudio/#MathJax-Element-99", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-100-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-708", - "https://www.w3.org/TR/webaudio/#MathJax-Span-709", - "https://www.w3.org/TR/webaudio/#MathJax-Span-710", - "https://www.w3.org/TR/webaudio/#MathJax-Span-711", - "https://www.w3.org/TR/webaudio/#MathJax-Span-712", - "https://www.w3.org/TR/webaudio/#MathJax-Span-713", - "https://www.w3.org/TR/webaudio/#MathJax-Span-714", - "https://www.w3.org/TR/webaudio/#MathJax-Element-100", - "https://www.w3.org/TR/webaudio/#MathJax-Element-101-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-715", - "https://www.w3.org/TR/webaudio/#MathJax-Span-716", - "https://www.w3.org/TR/webaudio/#MathJax-Span-717", - "https://www.w3.org/TR/webaudio/#MathJax-Span-718", - "https://www.w3.org/TR/webaudio/#MathJax-Span-719", - "https://www.w3.org/TR/webaudio/#MathJax-Span-720", - "https://www.w3.org/TR/webaudio/#MathJax-Span-721", - "https://www.w3.org/TR/webaudio/#MathJax-Span-722", - "https://www.w3.org/TR/webaudio/#MathJax-Element-101", - "https://www.w3.org/TR/webaudio/#MathJax-Element-102-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-723", - "https://www.w3.org/TR/webaudio/#MathJax-Span-724", - "https://www.w3.org/TR/webaudio/#MathJax-Span-725", - "https://www.w3.org/TR/webaudio/#MathJax-Span-726", - "https://www.w3.org/TR/webaudio/#MathJax-Span-727", - "https://www.w3.org/TR/webaudio/#MathJax-Element-102", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime-starttime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-103-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-728", - "https://www.w3.org/TR/webaudio/#MathJax-Span-729", - "https://www.w3.org/TR/webaudio/#MathJax-Span-730", - "https://www.w3.org/TR/webaudio/#MathJax-Element-103", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime-value", - "https://www.w3.org/TR/webaudio/#MathJax-Element-104-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-731", - "https://www.w3.org/TR/webaudio/#MathJax-Span-732", - "https://www.w3.org/TR/webaudio/#MathJax-Span-733", - "https://www.w3.org/TR/webaudio/#MathJax-Span-734", - "https://www.w3.org/TR/webaudio/#MathJax-Span-735", - "https://www.w3.org/TR/webaudio/#MathJax-Element-104", - "https://www.w3.org/TR/webaudio/#MathJax-Element-105-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-736", - "https://www.w3.org/TR/webaudio/#MathJax-Span-737", - "https://www.w3.org/TR/webaudio/#MathJax-Span-738", - "https://www.w3.org/TR/webaudio/#MathJax-Span-739", - "https://www.w3.org/TR/webaudio/#MathJax-Span-740", - "https://www.w3.org/TR/webaudio/#MathJax-Span-741", - "https://www.w3.org/TR/webaudio/#MathJax-Span-742", - "https://www.w3.org/TR/webaudio/#MathJax-Span-743", - "https://www.w3.org/TR/webaudio/#MathJax-Span-744", - "https://www.w3.org/TR/webaudio/#MathJax-Span-745", - "https://www.w3.org/TR/webaudio/#MathJax-Span-746", - "https://www.w3.org/TR/webaudio/#MathJax-Element-105", - "https://www.w3.org/TR/webaudio/#MathJax-Element-106-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-747", - "https://www.w3.org/TR/webaudio/#MathJax-Span-748", - "https://www.w3.org/TR/webaudio/#MathJax-Span-749", - "https://www.w3.org/TR/webaudio/#MathJax-Span-750", - "https://www.w3.org/TR/webaudio/#MathJax-Span-751", - "https://www.w3.org/TR/webaudio/#MathJax-Span-752", - "https://www.w3.org/TR/webaudio/#MathJax-Span-753", - "https://www.w3.org/TR/webaudio/#MathJax-Span-754", - "https://www.w3.org/TR/webaudio/#MathJax-Element-106", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-linearramptovalueattime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-exponentialramptovalueattime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-value", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvalueattime-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime", - "https://www.w3.org/TR/webaudio/#MathJax-Element-107-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-755", - "https://www.w3.org/TR/webaudio/#MathJax-Span-756", - "https://www.w3.org/TR/webaudio/#MathJax-Span-757", - "https://www.w3.org/TR/webaudio/#MathJax-Span-758", - "https://www.w3.org/TR/webaudio/#MathJax-Span-759", - "https://www.w3.org/TR/webaudio/#MathJax-Element-107", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-starttime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-108-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-760", - "https://www.w3.org/TR/webaudio/#MathJax-Span-761", - "https://www.w3.org/TR/webaudio/#MathJax-Span-762", - "https://www.w3.org/TR/webaudio/#MathJax-Span-763", - "https://www.w3.org/TR/webaudio/#MathJax-Span-764", - "https://www.w3.org/TR/webaudio/#MathJax-Element-108", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-duration%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-109-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-765", - "https://www.w3.org/TR/webaudio/#MathJax-Span-766", - "https://www.w3.org/TR/webaudio/#MathJax-Span-767", - "https://www.w3.org/TR/webaudio/#MathJax-Element-109", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-values", - "https://www.w3.org/TR/webaudio/#MathJax-Element-110-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-768", - "https://www.w3.org/TR/webaudio/#MathJax-Span-769", - "https://www.w3.org/TR/webaudio/#MathJax-Span-770", - "https://www.w3.org/TR/webaudio/#MathJax-Element-110", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime-values%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-111-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-771", - "https://www.w3.org/TR/webaudio/#MathJax-Span-772", - "https://www.w3.org/TR/webaudio/#MathJax-Span-773", - "https://www.w3.org/TR/webaudio/#MathJax-Span-774", - "https://www.w3.org/TR/webaudio/#MathJax-Span-775", - "https://www.w3.org/TR/webaudio/#MathJax-Span-776", - "https://www.w3.org/TR/webaudio/#MathJax-Span-777", - "https://www.w3.org/TR/webaudio/#MathJax-Span-778", - "https://www.w3.org/TR/webaudio/#MathJax-Span-779", - "https://www.w3.org/TR/webaudio/#MathJax-Span-780", - "https://www.w3.org/TR/webaudio/#MathJax-Span-781", - "https://www.w3.org/TR/webaudio/#MathJax-Span-782", - "https://www.w3.org/TR/webaudio/#MathJax-Span-783", - "https://www.w3.org/TR/webaudio/#MathJax-Span-784", - "https://www.w3.org/TR/webaudio/#MathJax-Span-785", - "https://www.w3.org/TR/webaudio/#MathJax-Element-111", - "https://www.w3.org/TR/webaudio/#MathJax-Element-112-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-786", - "https://www.w3.org/TR/webaudio/#MathJax-Span-787", - "https://www.w3.org/TR/webaudio/#MathJax-Span-788", - "https://www.w3.org/TR/webaudio/#MathJax-Span-789", - "https://www.w3.org/TR/webaudio/#MathJax-Span-790", - "https://www.w3.org/TR/webaudio/#MathJax-Span-791", - "https://www.w3.org/TR/webaudio/#MathJax-Span-792", - "https://www.w3.org/TR/webaudio/#MathJax-Span-793", - "https://www.w3.org/TR/webaudio/#MathJax-Span-794", - "https://www.w3.org/TR/webaudio/#MathJax-Span-795", - "https://www.w3.org/TR/webaudio/#MathJax-Span-796", - "https://www.w3.org/TR/webaudio/#MathJax-Span-797", - "https://www.w3.org/TR/webaudio/#MathJax-Span-798", - "https://www.w3.org/TR/webaudio/#MathJax-Span-799", - "https://www.w3.org/TR/webaudio/#MathJax-Span-800", - "https://www.w3.org/TR/webaudio/#MathJax-Span-801", - "https://www.w3.org/TR/webaudio/#MathJax-Span-802", - "https://www.w3.org/TR/webaudio/#MathJax-Span-803", - "https://www.w3.org/TR/webaudio/#MathJax-Span-804", - "https://www.w3.org/TR/webaudio/#MathJax-Span-805", - "https://www.w3.org/TR/webaudio/#MathJax-Span-806", - "https://www.w3.org/TR/webaudio/#MathJax-Span-807", - "https://www.w3.org/TR/webaudio/#MathJax-Span-808", - "https://www.w3.org/TR/webaudio/#MathJax-Span-809", - "https://www.w3.org/TR/webaudio/#MathJax-Span-810", - "https://www.w3.org/TR/webaudio/#MathJax-Span-811", - "https://www.w3.org/TR/webaudio/#MathJax-Span-812", - "https://www.w3.org/TR/webaudio/#MathJax-Span-813", - "https://www.w3.org/TR/webaudio/#MathJax-Element-112", - "https://www.w3.org/TR/webaudio/#MathJax-Element-113-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-814", - "https://www.w3.org/TR/webaudio/#MathJax-Span-815", - "https://www.w3.org/TR/webaudio/#MathJax-Span-816", - "https://www.w3.org/TR/webaudio/#MathJax-Span-817", - "https://www.w3.org/TR/webaudio/#MathJax-Span-818", - "https://www.w3.org/TR/webaudio/#MathJax-Span-819", - "https://www.w3.org/TR/webaudio/#MathJax-Element-113", - "https://www.w3.org/TR/webaudio/#MathJax-Element-114-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-820", - "https://www.w3.org/TR/webaudio/#MathJax-Span-821", - "https://www.w3.org/TR/webaudio/#MathJax-Span-822", - "https://www.w3.org/TR/webaudio/#MathJax-Span-823", - "https://www.w3.org/TR/webaudio/#MathJax-Span-824", - "https://www.w3.org/TR/webaudio/#MathJax-Span-825", - "https://www.w3.org/TR/webaudio/#MathJax-Element-114", - "https://www.w3.org/TR/webaudio/#MathJax-Element-115-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-826", - "https://www.w3.org/TR/webaudio/#MathJax-Span-827", - "https://www.w3.org/TR/webaudio/#MathJax-Span-828", - "https://www.w3.org/TR/webaudio/#MathJax-Span-829", - "https://www.w3.org/TR/webaudio/#MathJax-Span-830", - "https://www.w3.org/TR/webaudio/#MathJax-Span-831", - "https://www.w3.org/TR/webaudio/#MathJax-Span-832", - "https://www.w3.org/TR/webaudio/#MathJax-Span-833", - "https://www.w3.org/TR/webaudio/#MathJax-Element-115", - "https://www.w3.org/TR/webaudio/#MathJax-Element-116-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-834", - "https://www.w3.org/TR/webaudio/#MathJax-Span-835", - "https://www.w3.org/TR/webaudio/#MathJax-Span-836", - "https://www.w3.org/TR/webaudio/#MathJax-Span-837", - "https://www.w3.org/TR/webaudio/#MathJax-Span-838", - "https://www.w3.org/TR/webaudio/#MathJax-Span-839", - "https://www.w3.org/TR/webaudio/#MathJax-Span-840", - "https://www.w3.org/TR/webaudio/#MathJax-Span-841", - "https://www.w3.org/TR/webaudio/#MathJax-Span-842", - "https://www.w3.org/TR/webaudio/#MathJax-Span-843", - "https://www.w3.org/TR/webaudio/#MathJax-Span-844", - "https://www.w3.org/TR/webaudio/#MathJax-Element-116", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvalueattime%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-117-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-845", - "https://www.w3.org/TR/webaudio/#MathJax-Span-846", - "https://www.w3.org/TR/webaudio/#MathJax-Span-847", - "https://www.w3.org/TR/webaudio/#MathJax-Span-848", - "https://www.w3.org/TR/webaudio/#MathJax-Span-849", - "https://www.w3.org/TR/webaudio/#MathJax-Span-850", - "https://www.w3.org/TR/webaudio/#MathJax-Span-851", - "https://www.w3.org/TR/webaudio/#MathJax-Span-852", - "https://www.w3.org/TR/webaudio/#MathJax-Span-853", - "https://www.w3.org/TR/webaudio/#MathJax-Element-117", - "https://www.w3.org/TR/webaudio/#MathJax-Element-118-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-854", - "https://www.w3.org/TR/webaudio/#MathJax-Span-855", - "https://www.w3.org/TR/webaudio/#MathJax-Span-856", - "https://www.w3.org/TR/webaudio/#MathJax-Span-857", - "https://www.w3.org/TR/webaudio/#MathJax-Span-858", - "https://www.w3.org/TR/webaudio/#MathJax-Span-859", - "https://www.w3.org/TR/webaudio/#MathJax-Span-860", - "https://www.w3.org/TR/webaudio/#MathJax-Span-861", - "https://www.w3.org/TR/webaudio/#MathJax-Element-118", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-values", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-starttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioparam-setvaluecurveattime-duration", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#computation-of-value", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-simple-parameter", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter", - "https://www.w3.org/TR/webaudio/#simple-parameter", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#compound-parameter", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#computedvalue", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-automation-event", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-automation-event%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-input-audioparam-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue", - "https://www.w3.org/TR/webaudio/#nominal-range", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-simple-parameter%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-simple-nominal-range", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#example-7a3be3df", - "https://www.w3.org/TR/webaudio/#MathJax-Element-119-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-862", - "https://www.w3.org/TR/webaudio/#MathJax-Span-863", - "https://www.w3.org/TR/webaudio/#MathJax-Span-864", - "https://www.w3.org/TR/webaudio/#MathJax-Element-119", - "https://www.w3.org/TR/webaudio/#MathJax-Element-120-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-865", - "https://www.w3.org/TR/webaudio/#MathJax-Span-866", - "https://www.w3.org/TR/webaudio/#MathJax-Span-867", - "https://www.w3.org/TR/webaudio/#MathJax-Element-120", - "https://www.w3.org/TR/webaudio/#MathJax-Element-121-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-868", - "https://www.w3.org/TR/webaudio/#MathJax-Span-869", - "https://www.w3.org/TR/webaudio/#MathJax-Span-870", - "https://www.w3.org/TR/webaudio/#MathJax-Span-871", - "https://www.w3.org/TR/webaudio/#MathJax-Span-872", - "https://www.w3.org/TR/webaudio/#MathJax-Span-873", - "https://www.w3.org/TR/webaudio/#MathJax-Span-874", - "https://www.w3.org/TR/webaudio/#MathJax-Element-121", - "https://www.w3.org/TR/webaudio/#example1-AudioParam", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#example-ab13e619", - "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#playing", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-source-started-slot", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-onended", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start-when-when", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop-when-when", - "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-onended", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-event-handlers%E2%91%A2", - "https://www.w3.org/TR/webaudio/#eventdef-audioscheduledsourcenode-ended", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audioscheduledsourcenode-ended", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode-methods", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-start", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-source-started-slot", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-start-when-when", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start-when-when%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-stop", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioscheduledsourcenode-stop-when-when", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop-when-when%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#AnalyserNode", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-analysernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions", - "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata-array-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Uint8Array", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata-array-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloattimedomaindata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata-array-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytetimedomaindata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Uint8Array%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata-array-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-frequencybincount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-smoothingtimeconstant", - "https://www.w3.org/TR/webaudio/#AnalyserNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-analysernode-analysernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-analysernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#AnalyserNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-analysernode-fftsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-previous-block", - "https://www.w3.org/TR/webaudio/#MathJax-Element-122-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-875", - "https://www.w3.org/TR/webaudio/#MathJax-Span-876", - "https://www.w3.org/TR/webaudio/#MathJax-Span-877", - "https://www.w3.org/TR/webaudio/#MathJax-Span-878", - "https://www.w3.org/TR/webaudio/#MathJax-Span-879", - "https://www.w3.org/TR/webaudio/#MathJax-Span-880", - "https://www.w3.org/TR/webaudio/#MathJax-Span-881", - "https://www.w3.org/TR/webaudio/#MathJax-Span-882", - "https://www.w3.org/TR/webaudio/#MathJax-Span-883", - "https://www.w3.org/TR/webaudio/#MathJax-Span-884", - "https://www.w3.org/TR/webaudio/#MathJax-Span-885", - "https://www.w3.org/TR/webaudio/#MathJax-Span-886", - "https://www.w3.org/TR/webaudio/#MathJax-Span-887", - "https://www.w3.org/TR/webaudio/#MathJax-Span-888", - "https://www.w3.org/TR/webaudio/#MathJax-Span-889", - "https://www.w3.org/TR/webaudio/#MathJax-Element-122", - "https://www.w3.org/TR/webaudio/#ref-for-smoothing-over-time", - "https://www.w3.org/TR/webaudio/#MathJax-Element-123-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-890", - "https://www.w3.org/TR/webaudio/#MathJax-Span-891", - "https://www.w3.org/TR/webaudio/#MathJax-Span-892", - "https://www.w3.org/TR/webaudio/#MathJax-Element-123", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-current-time-domain-data", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-current-time-domain-data%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-analysernode-frequencybincount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-maxdecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-analysernode-mindecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-analysernode-smoothingtimeconstant", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AnalyserNode-methods", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata", - "https://www.w3.org/TR/webaudio/#ref-for-arraybufferview-write%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-current-frequency-data", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-byte-length", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-frequencybincount%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-byte-length%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-frequencybincount%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-current-frequency-data%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-124-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-893", - "https://www.w3.org/TR/webaudio/#MathJax-Span-894", - "https://www.w3.org/TR/webaudio/#MathJax-Span-895", - "https://www.w3.org/TR/webaudio/#MathJax-Span-896", - "https://www.w3.org/TR/webaudio/#MathJax-Span-897", - "https://www.w3.org/TR/webaudio/#MathJax-Span-898", - "https://www.w3.org/TR/webaudio/#MathJax-Element-124", - "https://www.w3.org/TR/webaudio/#ref-for-current-frequency-data%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-125-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-899", - "https://www.w3.org/TR/webaudio/#MathJax-Span-900", - "https://www.w3.org/TR/webaudio/#MathJax-Span-901", - "https://www.w3.org/TR/webaudio/#MathJax-Span-902", - "https://www.w3.org/TR/webaudio/#MathJax-Span-903", - "https://www.w3.org/TR/webaudio/#MathJax-Span-904", - "https://www.w3.org/TR/webaudio/#MathJax-Element-125", - "https://www.w3.org/TR/webaudio/#MathJax-Element-126-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-905", - "https://www.w3.org/TR/webaudio/#MathJax-Span-906", - "https://www.w3.org/TR/webaudio/#MathJax-Span-907", - "https://www.w3.org/TR/webaudio/#MathJax-Span-908", - "https://www.w3.org/TR/webaudio/#MathJax-Span-909", - "https://www.w3.org/TR/webaudio/#MathJax-Span-910", - "https://www.w3.org/TR/webaudio/#MathJax-Span-911", - "https://www.w3.org/TR/webaudio/#MathJax-Span-912", - "https://www.w3.org/TR/webaudio/#MathJax-Span-913", - "https://www.w3.org/TR/webaudio/#MathJax-Span-914", - "https://www.w3.org/TR/webaudio/#MathJax-Span-915", - "https://www.w3.org/TR/webaudio/#MathJax-Span-916", - "https://www.w3.org/TR/webaudio/#MathJax-Span-917", - "https://www.w3.org/TR/webaudio/#MathJax-Span-918", - "https://www.w3.org/TR/webaudio/#MathJax-Span-919", - "https://www.w3.org/TR/webaudio/#MathJax-Span-920", - "https://www.w3.org/TR/webaudio/#MathJax-Span-921", - "https://www.w3.org/TR/webaudio/#MathJax-Span-922", - "https://www.w3.org/TR/webaudio/#MathJax-Span-923", - "https://www.w3.org/TR/webaudio/#MathJax-Span-924", - "https://www.w3.org/TR/webaudio/#MathJax-Span-925", - "https://www.w3.org/TR/webaudio/#MathJax-Span-926", - "https://www.w3.org/TR/webaudio/#MathJax-Span-927", - "https://www.w3.org/TR/webaudio/#MathJax-Span-928", - "https://www.w3.org/TR/webaudio/#MathJax-Span-929", - "https://www.w3.org/TR/webaudio/#MathJax-Span-930", - "https://www.w3.org/TR/webaudio/#MathJax-Span-931", - "https://www.w3.org/TR/webaudio/#MathJax-Span-932", - "https://www.w3.org/TR/webaudio/#MathJax-Span-933", - "https://www.w3.org/TR/webaudio/#MathJax-Span-934", - "https://www.w3.org/TR/webaudio/#MathJax-Span-935", - "https://www.w3.org/TR/webaudio/#MathJax-Span-936", - "https://www.w3.org/TR/webaudio/#MathJax-Span-937", - "https://www.w3.org/TR/webaudio/#MathJax-Span-938", - "https://www.w3.org/TR/webaudio/#MathJax-Span-939", - "https://www.w3.org/TR/webaudio/#MathJax-Span-940", - "https://www.w3.org/TR/webaudio/#MathJax-Span-941", - "https://www.w3.org/TR/webaudio/#MathJax-Span-942", - "https://www.w3.org/TR/webaudio/#MathJax-Span-943", - "https://www.w3.org/TR/webaudio/#MathJax-Span-944", - "https://www.w3.org/TR/webaudio/#MathJax-Span-945", - "https://www.w3.org/TR/webaudio/#MathJax-Span-946", - "https://www.w3.org/TR/webaudio/#MathJax-Span-947", - "https://www.w3.org/TR/webaudio/#MathJax-Span-948", - "https://www.w3.org/TR/webaudio/#MathJax-Span-949", - "https://www.w3.org/TR/webaudio/#MathJax-Span-950", - "https://www.w3.org/TR/webaudio/#MathJax-Span-951", - "https://www.w3.org/TR/webaudio/#MathJax-Span-952", - "https://www.w3.org/TR/webaudio/#MathJax-Span-953", - "https://www.w3.org/TR/webaudio/#MathJax-Element-126", - "https://www.w3.org/TR/webaudio/#MathJax-Element-127-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-954", - "https://www.w3.org/TR/webaudio/#MathJax-Span-955", - "https://www.w3.org/TR/webaudio/#MathJax-Span-956", - "https://www.w3.org/TR/webaudio/#MathJax-Span-957", - "https://www.w3.org/TR/webaudio/#MathJax-Span-958", - "https://www.w3.org/TR/webaudio/#MathJax-Span-959", - "https://www.w3.org/TR/webaudio/#MathJax-Span-960", - "https://www.w3.org/TR/webaudio/#MathJax-Span-961", - "https://www.w3.org/TR/webaudio/#MathJax-Span-962", - "https://www.w3.org/TR/webaudio/#MathJax-Span-963", - "https://www.w3.org/TR/webaudio/#MathJax-Span-964", - "https://www.w3.org/TR/webaudio/#MathJax-Element-127", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-128-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-965", - "https://www.w3.org/TR/webaudio/#MathJax-Span-966", - "https://www.w3.org/TR/webaudio/#MathJax-Span-967", - "https://www.w3.org/TR/webaudio/#MathJax-Span-968", - "https://www.w3.org/TR/webaudio/#MathJax-Span-969", - "https://www.w3.org/TR/webaudio/#MathJax-Span-970", - "https://www.w3.org/TR/webaudio/#MathJax-Span-971", - "https://www.w3.org/TR/webaudio/#MathJax-Span-972", - "https://www.w3.org/TR/webaudio/#MathJax-Span-973", - "https://www.w3.org/TR/webaudio/#MathJax-Span-974", - "https://www.w3.org/TR/webaudio/#MathJax-Span-975", - "https://www.w3.org/TR/webaudio/#MathJax-Element-128", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-129-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-976", - "https://www.w3.org/TR/webaudio/#MathJax-Span-977", - "https://www.w3.org/TR/webaudio/#MathJax-Span-978", - "https://www.w3.org/TR/webaudio/#MathJax-Span-979", - "https://www.w3.org/TR/webaudio/#MathJax-Span-980", - "https://www.w3.org/TR/webaudio/#MathJax-Span-981", - "https://www.w3.org/TR/webaudio/#MathJax-Element-129", - "https://www.w3.org/TR/webaudio/#MathJax-Element-130-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-982", - "https://www.w3.org/TR/webaudio/#MathJax-Span-983", - "https://www.w3.org/TR/webaudio/#MathJax-Span-984", - "https://www.w3.org/TR/webaudio/#MathJax-Span-985", - "https://www.w3.org/TR/webaudio/#MathJax-Span-986", - "https://www.w3.org/TR/webaudio/#MathJax-Span-987", - "https://www.w3.org/TR/webaudio/#MathJax-Element-130", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytefrequencydata-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Uint8Array%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata", - "https://www.w3.org/TR/webaudio/#ref-for-arraybufferview-write%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-current-time-domain-data%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-byte-length%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-buffersource-byte-length%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-131-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-988", - "https://www.w3.org/TR/webaudio/#MathJax-Span-989", - "https://www.w3.org/TR/webaudio/#MathJax-Span-990", - "https://www.w3.org/TR/webaudio/#MathJax-Span-991", - "https://www.w3.org/TR/webaudio/#MathJax-Span-992", - "https://www.w3.org/TR/webaudio/#MathJax-Span-993", - "https://www.w3.org/TR/webaudio/#MathJax-Element-131", - "https://www.w3.org/TR/webaudio/#MathJax-Element-132-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-994", - "https://www.w3.org/TR/webaudio/#MathJax-Span-995", - "https://www.w3.org/TR/webaudio/#MathJax-Span-996", - "https://www.w3.org/TR/webaudio/#MathJax-Span-997", - "https://www.w3.org/TR/webaudio/#MathJax-Span-998", - "https://www.w3.org/TR/webaudio/#MathJax-Span-999", - "https://www.w3.org/TR/webaudio/#MathJax-Element-132", - "https://www.w3.org/TR/webaudio/#MathJax-Element-133-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1000", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1001", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1002", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1003", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1004", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1005", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1006", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1007", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1008", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1009", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1010", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1011", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1012", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1013", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1014", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1015", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1016", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1017", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1018", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1019", - "https://www.w3.org/TR/webaudio/#MathJax-Element-133", - "https://www.w3.org/TR/webaudio/#MathJax-Element-134-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1020", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1021", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1022", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1023", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1024", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1025", - "https://www.w3.org/TR/webaudio/#MathJax-Element-134", - "https://www.w3.org/TR/webaudio/#MathJax-Element-135-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1026", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1027", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1028", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1029", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1030", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1031", - "https://www.w3.org/TR/webaudio/#MathJax-Element-135", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytetimedomaindata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getbytetimedomaindata-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Uint8Array%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata", - "https://www.w3.org/TR/webaudio/#ref-for-arraybufferview-write%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-current-frequency-data%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-frequencybincount%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-frequencybincount%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-current-frequency-data%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloatfrequencydata-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata", - "https://www.w3.org/TR/webaudio/#ref-for-arraybufferview-write%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-current-time-domain-data%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloattimedomaindata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-analysernode-getfloattimedomaindata-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#AnalyserOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analyseroptions-fftsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analyseroptions-maxdecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analyseroptions-mindecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analyseroptions-smoothingtimeconstant", - "https://www.w3.org/TR/webaudio/#dictionary-analyseroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-analyseroptions-fftsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-analyseroptions-maxdecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-analyseroptions-mindecibels", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-analyseroptions-smoothingtimeconstant", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#time-domain-down-mixing", - "https://www.w3.org/TR/webaudio/#current-time-domain-data", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#fft-windowing-and-smoothing-over-time", - "https://www.w3.org/TR/webaudio/#current-frequency-data", - "https://www.w3.org/TR/webaudio/#ref-for-current-time-domain-data%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-blackman-window", - "https://www.w3.org/TR/webaudio/#ref-for-fourier-transform", - "https://www.w3.org/TR/webaudio/#ref-for-smoothing-over-time%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-conversion-to-db", - "https://www.w3.org/TR/webaudio/#MathJax-Element-136-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1032", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1033", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1034", - "https://www.w3.org/TR/webaudio/#MathJax-Element-136", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-fftsize%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#blackman-window", - "https://www.w3.org/TR/webaudio/#MathJax-Element-137-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1035", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1036", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1037", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1038", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1039", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1040", - "https://www.w3.org/TR/webaudio/#MathJax-Element-137", - "https://www.w3.org/TR/webaudio/#MathJax-Element-138-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1041", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1042", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1043", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1044", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1045", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1046", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1047", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1048", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1049", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1050", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1051", - "https://www.w3.org/TR/webaudio/#MathJax-Element-138", - "https://www.w3.org/TR/webaudio/#MathJax-Element-139-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1052", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1053", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1054", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1055", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1056", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1057", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1065", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1066", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1067", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1068", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1069", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1080", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1081", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1082", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1083", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1084", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1092", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1093", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1094", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1095", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1096", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1104", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1105", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1106", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1107", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1108", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1109", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1058", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1059", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1060", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1061", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1062", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1063", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1064", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1070", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1071", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1072", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1073", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1074", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1075", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1076", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1077", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1078", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1079", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1085", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1086", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1087", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1088", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1089", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1090", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1091", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1097", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1098", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1099", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1100", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1101", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1102", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1103", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1110", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1111", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1112", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1113", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1114", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1115", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1116", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1117", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1118", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1119", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1120", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1121", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1122", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1123", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1124", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1125", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1126", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1127", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1128", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1129", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1130", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1131", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1132", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1133", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1134", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1135", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1136", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1137", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1138", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1139", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1140", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1141", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1142", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1143", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1144", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1145", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1146", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1147", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1148", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1149", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1150", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1151", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1152", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1153", - "https://www.w3.org/TR/webaudio/#MathJax-Element-139", - "https://www.w3.org/TR/webaudio/#MathJax-Element-140-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1154", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1155", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1156", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1157", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1158", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1159", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1160", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1161", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1162", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1163", - "https://www.w3.org/TR/webaudio/#MathJax-Element-140", - "https://www.w3.org/TR/webaudio/#MathJax-Element-141-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1164", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1165", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1166", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1167", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1168", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1169", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1170", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1171", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1172", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1173", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1174", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1175", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1176", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1177", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1178", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1179", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1180", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1181", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1182", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1183", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1184", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1185", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1186", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1187", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1188", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1189", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1190", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1191", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1192", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1193", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1194", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1195", - "https://www.w3.org/TR/webaudio/#MathJax-Element-141", - "https://www.w3.org/TR/webaudio/#fourier-transform", - "https://www.w3.org/TR/webaudio/#MathJax-Element-142-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1196", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1197", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1198", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1199", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1200", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1201", - "https://www.w3.org/TR/webaudio/#MathJax-Element-142", - "https://www.w3.org/TR/webaudio/#MathJax-Element-143-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1202", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1203", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1204", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1205", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1206", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1207", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1208", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1209", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1210", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1211", - "https://www.w3.org/TR/webaudio/#MathJax-Element-143", - "https://www.w3.org/TR/webaudio/#MathJax-Element-144-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1212", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1213", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1214", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1215", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1216", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1217", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1218", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1219", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1220", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1221", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1222", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1223", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1224", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1225", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1226", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1227", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1228", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1229", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1230", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1231", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1232", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1233", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1234", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1235", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1236", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1237", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1238", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1239", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1240", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1241", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1242", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1243", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1244", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1245", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1246", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1247", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1248", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1249", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1250", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1251", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1252", - "https://www.w3.org/TR/webaudio/#MathJax-Element-144", - "https://www.w3.org/TR/webaudio/#MathJax-Element-145-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1253", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1254", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1255", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1256", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1257", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1258", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1259", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1260", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1261", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1262", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1263", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1264", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1265", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1266", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1267", - "https://www.w3.org/TR/webaudio/#MathJax-Element-145", - "https://www.w3.org/TR/webaudio/#MathJax-Element-146-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1268", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1269", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1270", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1271", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1272", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1273", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1274", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1275", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1276", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1277", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1278", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1279", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1280", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1281", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1282", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1283", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1284", - "https://www.w3.org/TR/webaudio/#MathJax-Element-146", - "https://www.w3.org/TR/webaudio/#smoothing-over-time", - "https://www.w3.org/TR/webaudio/#MathJax-Element-147-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1285", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1286", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1287", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1288", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1289", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1290", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1291", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1292", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1293", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1294", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1295", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1296", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1297", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1298", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1299", - "https://www.w3.org/TR/webaudio/#MathJax-Element-147", - "https://www.w3.org/TR/webaudio/#ref-for-previous-block%E2%91%A0", - "https://www.w3.org/TR/webaudio/#previous-block", - "https://www.w3.org/TR/webaudio/#ref-for-smoothing-over-time%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-148-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1300", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1301", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1302", - "https://www.w3.org/TR/webaudio/#MathJax-Element-148", - "https://www.w3.org/TR/webaudio/#ref-for-smoothing-over-time%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-149-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1303", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1304", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1305", - "https://www.w3.org/TR/webaudio/#MathJax-Element-149", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-smoothingtimeconstant%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-150-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1306", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1307", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1308", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1309", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1310", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1311", - "https://www.w3.org/TR/webaudio/#MathJax-Element-150", - "https://www.w3.org/TR/webaudio/#ref-for-fourier-transform%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-151-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1312", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1313", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1314", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1315", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1316", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1317", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1318", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1319", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1320", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1321", - "https://www.w3.org/TR/webaudio/#MathJax-Element-151", - "https://www.w3.org/TR/webaudio/#MathJax-Element-152-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1322", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1323", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1324", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1325", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1326", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1327", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1328", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1329", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1330", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1331", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1332", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1333", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1334", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1335", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1336", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1337", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1338", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1339", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1340", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1341", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1342", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1343", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1344", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1345", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1346", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1347", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1348", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1349", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1350", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1351", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1352", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1353", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1354", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1355", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1356", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1357", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1358", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1359", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1360", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1361", - "https://www.w3.org/TR/webaudio/#MathJax-Element-152", - "https://www.w3.org/TR/webaudio/#MathJax-Element-153-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1362", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1363", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1364", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1365", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1366", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1367", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1368", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1369", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1370", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1371", - "https://www.w3.org/TR/webaudio/#MathJax-Element-153", - "https://www.w3.org/TR/webaudio/#MathJax-Element-154-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1372", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1373", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1374", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1375", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1376", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1377", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1378", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1379", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1380", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1381", - "https://www.w3.org/TR/webaudio/#MathJax-Element-154", - "https://www.w3.org/TR/webaudio/#MathJax-Element-155-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1382", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1383", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1384", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1385", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1386", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1387", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1388", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1389", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1390", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1391", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1392", - "https://www.w3.org/TR/webaudio/#MathJax-Element-155", - "https://www.w3.org/TR/webaudio/#conversion-to-db", - "https://www.w3.org/TR/webaudio/#MathJax-Element-156-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1393", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1394", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1395", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1396", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1397", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1398", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1399", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1400", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1401", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1402", - "https://www.w3.org/TR/webaudio/#MathJax-Element-156", - "https://www.w3.org/TR/webaudio/#ref-for-smoothing-over-time%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-157-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1403", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1404", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1405", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1406", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1407", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1408", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1409", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1410", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1411", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1412", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1413", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1414", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1415", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1416", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1417", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1418", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1419", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1420", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1421", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1422", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1423", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1424", - "https://www.w3.org/TR/webaudio/#MathJax-Element-157", - "https://www.w3.org/TR/webaudio/#MathJax-Element-158-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1425", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1426", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1427", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1428", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1429", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1430", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1431", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1432", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1433", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1434", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1435", - "https://www.w3.org/TR/webaudio/#MathJax-Element-158", - "https://www.w3.org/TR/webaudio/#MathJax-Element-159-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1436", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1437", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1438", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1439", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1440", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1441", - "https://www.w3.org/TR/webaudio/#MathJax-Element-159", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getfloatfrequencydata%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-getbytefrequencydata%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-160-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1442", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1443", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1444", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1445", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1446", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1447", - "https://www.w3.org/TR/webaudio/#MathJax-Element-160", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-mindecibels%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-analysernode-maxdecibels%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop-when-when%E2%91%A1", - "https://www.w3.org/TR/webaudio/#playhead-position", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A2", - "https://www.w3.org/TR/webaudio/#computedplaybackrate", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-161-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1448", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1449", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1450", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1451", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1452", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1453", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1454", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1455", - "https://www.w3.org/TR/webaudio/#MathJax-Element-161", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-buffer-set-slot", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-audiobuffersourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-when", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-offset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-constructor-audiobuffersourcenode", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-audiobuffersourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-audiobuffersourcenode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer-set-slot", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer-set-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-computedplaybackrate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loop", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loopend", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-playhead-position", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-loopstart", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-playhead-position%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-playbackrate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-computedplaybackrate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioBufferSourceNode-methods", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-source-started-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-allowed-to-start%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-when", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-offset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-playhead-position%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourcenode-start-when-offset-duration-duration", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start-when-offset-duration-duration%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#AudioBufferSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-loop", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-loopend", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-loopstart", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-playbackrate", - "https://www.w3.org/TR/webaudio/#dictionary-audiobuffersourceoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourceoptions-buffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-buffer%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-detune%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loop", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loopend", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-loopstart", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiobuffersourceoptions-playbackrate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#looping-AudioBufferSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loop%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-stop%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopstart%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-loopend%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-playbackrate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#playback-AudioBufferSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-computedplaybackrate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffersourcenode-start%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#AudioDestinationNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioDestinationNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiodestinationnode-maxchannelcount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioDestinationNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A2", - "https://www.w3.org/TR/webaudio/#AudioListener", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-listener%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardx", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardy", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardz", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionx%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positiony%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionz%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardx%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardy%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardz%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upy", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x-y-z-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-xup", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-yup", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x-y-z-xup-yup-zup-zup", - "https://www.w3.org/TR/webaudio/#AudioListener-attributes", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardy", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-forwardz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-upx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-upy", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-upz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioListener-methods", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardx%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardy%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardz%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upx%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upy%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upz%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardx%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardy%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-forwardz%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upx%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upy%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-upz%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-forward", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-up", - "https://www.w3.org/TR/webaudio/#audiolistener-forward", - "https://www.w3.org/TR/webaudio/#audiolistener-up", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-x", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-y", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-z", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-forward%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-xup", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-yup", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation-zup", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-up%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setorientation%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-xup", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-yup", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setorientation-zup", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionx%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positiony%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionz%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionx%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positiony%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-positionz%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition-x", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition-y", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition-z", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiolistener-setposition%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audiolistener-setposition-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#listenerprocessing", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#AudioProcessingEvent", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-event%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-type", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEventInit", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-audioprocessingevent-type-eventinitdict-eventinitdict", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-playbacktime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-inputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioProcessingEvent-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-inputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-outputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingevent-playbacktime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioProcessingEventInit", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEventInit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEventInit%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEventInit%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dictdef-eventinit%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingeventinit-playbacktime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingeventinit-inputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingeventinit-outputbuffer", - "https://www.w3.org/TR/webaudio/#dictionary-audioprocessingeventinit-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEventInit%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-inputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-inputbuffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-outputbuffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-outputbuffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioprocessingeventinit-playbacktime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioprocessingevent-playbacktime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#BiquadFilterNode", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-frequency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#computedfrequency", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A4", - "https://www.w3.org/TR/webaudio/#enumdef-biquadfiltertype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowpass", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highpass", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-bandpass", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowshelf", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highshelf", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-peaking", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-notch", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-allpass", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-biquadfiltertype", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-lowpass", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-highpass", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-bandpass", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-lowshelf", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-highshelf", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-peaking", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-notch", - "https://www.w3.org/TR/webaudio/#dom-biquadfiltertype-allpass", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-biquadfiltertype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-type", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-frequency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-detune%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-q", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-gain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-getfrequencyresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "https://www.w3.org/TR/webaudio/#BiquadFilterNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-biquadfilternode-context-options", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-biquadfilternode", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#BiquadFilterNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-q", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highpass%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-q%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-162-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1456", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1457", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1458", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1459", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1460", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1461", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1462", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1463", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1464", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1465", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1466", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1467", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1468", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1469", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1470", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1471", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1472", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1473", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1474", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1475", - "https://www.w3.org/TR/webaudio/#MathJax-Element-162", - "https://www.w3.org/TR/webaudio/#MathJax-Element-163-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1476", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1477", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1478", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1479", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1480", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1481", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1482", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1483", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1484", - "https://www.w3.org/TR/webaudio/#MathJax-Element-163", - "https://www.w3.org/TR/webaudio/#MathJax-Element-164-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1485", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1486", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1487", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1488", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1489", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1490", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1491", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1492", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1493", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1494", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1495", - "https://www.w3.org/TR/webaudio/#MathJax-Element-164", - "https://www.w3.org/TR/webaudio/#MathJax-Element-165-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1496", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1497", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1498", - "https://www.w3.org/TR/webaudio/#MathJax-Element-165", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-bandpass%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-notch%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-allpass%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-peaking%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-166-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1499", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1500", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1501", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1502", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1503", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1504", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1505", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1506", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1507", - "https://www.w3.org/TR/webaudio/#MathJax-Element-166", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-frequency%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-computedfrequency", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-167-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1508", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1509", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1510", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1511", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1512", - "https://www.w3.org/TR/webaudio/#MathJax-Element-167", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-168-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1513", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1514", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1515", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1516", - "https://www.w3.org/TR/webaudio/#MathJax-Element-168", - "https://www.w3.org/TR/webaudio/#MathJax-Element-169-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1517", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1518", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1519", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1520", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1521", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1522", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1523", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1524", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1525", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1526", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1527", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1528", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1529", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1530", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1531", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1532", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1533", - "https://www.w3.org/TR/webaudio/#MathJax-Element-169", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-detune%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-computedfrequency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-gain", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-peaking%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#MathJax-Element-170-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1534", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1535", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1536", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1537", - "https://www.w3.org/TR/webaudio/#MathJax-Element-170", - "https://www.w3.org/TR/webaudio/#MathJax-Element-171-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1538", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1539", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1540", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1541", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1542", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1543", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1544", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1545", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1546", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1547", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1548", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1549", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1550", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1551", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1552", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1553", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1554", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1555", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1556", - "https://www.w3.org/TR/webaudio/#MathJax-Element-171", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-biquadfiltertype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-type%E2%91%A0", - "https://www.w3.org/TR/webaudio/#BiquadFilterNode-methods", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-getfrequencyresponse%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-frequencyhz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-magresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-biquadfilternode-getfrequencyresponse-phaseresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#BiquadFilterOptions", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-biquadfiltertype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilteroptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilteroptions-q", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilteroptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilteroptions-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilteroptions-gain", - "https://www.w3.org/TR/webaudio/#dictionary-biquadfilteroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-q", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-q%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-detune%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-frequency%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-gain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-gain%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-biquadfilteroptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-biquadfiltertype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#filters-characteristics", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-conforming-implementation", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-172-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1557", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1558", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1559", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1560", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1561", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1562", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1563", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1564", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1565", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1566", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1567", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1568", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1569", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1570", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1571", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1572", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1573", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1574", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1575", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1576", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1577", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1578", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1579", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1580", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1581", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1582", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1583", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1584", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1585", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1586", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1587", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1588", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1589", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1590", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1591", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1592", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1593", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1594", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1595", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1596", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1597", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1598", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1599", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1600", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1601", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1602", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1603", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1604", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1605", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1606", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1607", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1608", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1609", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1610", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1611", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1612", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1613", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1614", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1615", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1616", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1617", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1618", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1619", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1620", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1621", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1622", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1623", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1624", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1625", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1626", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1627", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1628", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1629", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1630", - "https://www.w3.org/TR/webaudio/#MathJax-Element-172", - "https://www.w3.org/TR/webaudio/#MathJax-Element-173-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1631", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1632", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1633", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1634", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1635", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1636", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1637", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1638", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1639", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1640", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1641", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1642", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1643", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1644", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1645", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1646", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1647", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1648", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1649", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1650", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1651", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1652", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1653", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1654", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1655", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1656", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1657", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1658", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1659", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1660", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1661", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1662", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1663", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1664", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1665", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1666", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1667", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1668", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1669", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1670", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1671", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1672", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1673", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1674", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1675", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1676", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1677", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1678", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1679", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1680", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1681", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1682", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1683", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1684", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1685", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1686", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1687", - "https://www.w3.org/TR/webaudio/#MathJax-Element-173", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-174-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1688", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1689", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1690", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1691", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1692", - "https://www.w3.org/TR/webaudio/#MathJax-Element-174", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-175-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1693", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1694", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1695", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1696", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1697", - "https://www.w3.org/TR/webaudio/#MathJax-Element-175", - "https://www.w3.org/TR/webaudio/#ref-for-computedfrequency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-176-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1698", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1699", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1700", - "https://www.w3.org/TR/webaudio/#MathJax-Element-176", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-gain%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-177-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1701", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1702", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1703", - "https://www.w3.org/TR/webaudio/#MathJax-Element-177", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfilternode-q%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-178-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1704", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1705", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1706", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1707", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1708", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1709", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1721", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1722", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1723", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1724", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1725", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1739", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1740", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1741", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1742", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1743", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1758", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1759", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1760", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1761", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1762", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1763", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1764", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1765", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1766", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1767", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1768", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1769", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1793", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1794", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1795", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1801", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1802", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1803", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1804", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1805", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1710", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1711", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1712", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1713", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1714", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1715", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1716", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1717", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1718", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1719", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1720", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1726", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1727", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1728", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1729", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1730", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1731", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1732", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1733", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1734", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1735", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1736", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1737", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1738", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1744", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1745", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1746", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1747", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1748", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1749", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1750", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1751", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1752", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1753", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1754", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1755", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1756", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1757", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1770", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1771", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1772", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1773", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1774", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1775", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1776", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1777", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1778", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1779", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1780", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1781", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1782", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1783", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1784", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1785", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1786", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1787", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1788", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1789", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1790", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1791", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1792", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1796", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1797", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1798", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1799", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1800", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1806", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1807", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1808", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1809", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1810", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1811", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1812", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1813", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1814", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1815", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1816", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1817", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1818", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1819", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1820", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1821", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1822", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1823", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1824", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1825", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1826", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1827", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1828", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1829", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1830", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1831", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1832", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1833", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1834", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1835", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1836", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1837", - "https://www.w3.org/TR/webaudio/#MathJax-Element-178", - "https://www.w3.org/TR/webaudio/#MathJax-Element-179-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1838", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1839", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1840", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1841", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1842", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1843", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1844", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1845", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1846", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1847", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1848", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1849", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1850", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1851", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1852", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1853", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1854", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1855", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1856", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1857", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1858", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1859", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1860", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1861", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1862", - "https://www.w3.org/TR/webaudio/#MathJax-Element-179", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowpass%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-180-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1863", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1864", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1865", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1866", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1867", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1868", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1869", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1870", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1885", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1886", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1887", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1888", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1889", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1901", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1902", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1903", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1904", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1905", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1920", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1921", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1922", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1923", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1924", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1941", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1942", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1943", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1944", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1945", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1957", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1958", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1959", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1960", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1961", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1871", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1872", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1873", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1874", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1875", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1876", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1877", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1878", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1879", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1880", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1881", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1882", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1883", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1884", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1890", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1891", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1892", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1893", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1894", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1895", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1896", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1897", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1898", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1899", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1900", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1906", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1907", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1908", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1909", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1910", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1911", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1912", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1913", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1914", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1915", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1916", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1917", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1918", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1919", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1925", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1926", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1927", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1928", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1929", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1930", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1931", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1932", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1933", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1934", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1935", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1936", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1937", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1938", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1939", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1940", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1946", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1947", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1948", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1949", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1950", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1951", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1952", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1953", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1954", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1955", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1956", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1962", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1963", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1964", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1965", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1966", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1967", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1968", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1969", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1970", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1971", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1972", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1973", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1974", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1975", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1976", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1977", - "https://www.w3.org/TR/webaudio/#MathJax-Element-180", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highpass%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-181-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1978", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1979", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1980", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1981", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1982", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1983", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1984", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1985", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2000", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2001", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2002", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2003", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2004", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2019", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2020", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2021", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2022", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2023", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2038", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2039", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2040", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2041", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2042", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2059", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2060", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2061", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2062", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2063", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2075", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2076", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2077", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2078", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2079", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1986", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1987", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1988", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1989", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1990", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1991", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1992", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1993", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1994", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1995", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1996", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1997", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1998", - "https://www.w3.org/TR/webaudio/#MathJax-Span-1999", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2005", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2006", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2007", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2008", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2009", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2010", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2011", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2012", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2013", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2014", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2015", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2016", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2017", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2018", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2024", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2025", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2026", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2027", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2028", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2029", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2030", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2031", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2032", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2033", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2034", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2035", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2036", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2037", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2043", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2044", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2045", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2046", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2047", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2048", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2049", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2050", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2051", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2052", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2053", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2054", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2055", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2056", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2057", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2058", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2064", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2065", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2066", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2067", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2068", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2069", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2070", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2071", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2072", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2073", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2074", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2080", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2081", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2082", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2083", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2084", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2085", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2086", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2087", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2088", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2089", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2090", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2091", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2092", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2093", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2094", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2095", - "https://www.w3.org/TR/webaudio/#MathJax-Element-181", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-bandpass%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-182-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2096", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2097", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2098", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2099", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2100", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2101", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2102", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2103", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2111", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2112", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2113", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2114", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2115", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2121", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2122", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2123", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2124", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2125", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2134", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2135", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2136", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2137", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2138", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2148", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2149", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2150", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2151", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2152", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2164", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2165", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2166", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2167", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2168", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2104", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2105", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2106", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2107", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2108", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2109", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2110", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2116", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2117", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2118", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2119", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2120", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2126", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2127", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2128", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2129", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2130", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2131", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2132", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2133", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2139", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2140", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2141", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2142", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2143", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2144", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2145", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2146", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2147", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2153", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2154", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2155", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2156", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2157", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2158", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2159", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2160", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2161", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2162", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2163", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2169", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2170", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2171", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2172", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2173", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2174", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2175", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2176", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2177", - "https://www.w3.org/TR/webaudio/#MathJax-Element-182", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-notch%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-183-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2178", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2179", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2180", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2181", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2182", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2183", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2184", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2185", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2191", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2192", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2193", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2194", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2195", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2207", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2208", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2209", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2210", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2211", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2217", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2218", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2219", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2220", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2221", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2231", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2232", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2233", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2234", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2235", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2247", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2248", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2249", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2250", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2251", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2186", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2187", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2188", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2189", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2190", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2196", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2197", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2198", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2199", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2200", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2201", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2202", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2203", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2204", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2205", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2206", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2212", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2213", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2214", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2215", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2216", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2222", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2223", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2224", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2225", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2226", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2227", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2228", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2229", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2230", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2236", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2237", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2238", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2239", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2240", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2241", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2242", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2243", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2244", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2245", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2246", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2252", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2253", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2254", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2255", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2256", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2257", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2258", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2259", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2260", - "https://www.w3.org/TR/webaudio/#MathJax-Element-183", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-allpass%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-184-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2261", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2262", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2263", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2264", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2265", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2266", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2267", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2268", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2278", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2279", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2280", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2281", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2282", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2294", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2295", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2296", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2297", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2298", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2308", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2309", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2310", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2311", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2312", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2322", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2323", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2324", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2325", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2326", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2338", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2339", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2340", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2341", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2342", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2269", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2270", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2271", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2272", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2273", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2274", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2275", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2276", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2277", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2283", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2284", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2285", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2286", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2287", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2288", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2289", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2290", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2291", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2292", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2293", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2299", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2300", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2301", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2302", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2303", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2304", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2305", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2306", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2307", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2313", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2314", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2315", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2316", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2317", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2318", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2319", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2320", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2321", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2327", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2328", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2329", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2330", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2331", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2332", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2333", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2334", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2335", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2336", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2337", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2343", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2344", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2345", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2346", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2347", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2348", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2349", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2350", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2351", - "https://www.w3.org/TR/webaudio/#MathJax-Element-184", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-peaking%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-185-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2352", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2353", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2354", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2355", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2356", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2357", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2358", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2359", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2371", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2372", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2373", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2374", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2375", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2387", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2388", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2389", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2390", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2391", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2403", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2404", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2405", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2406", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2407", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2419", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2420", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2421", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2422", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2423", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2435", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2436", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2437", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2438", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2439", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2360", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2361", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2362", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2363", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2364", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2365", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2366", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2367", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2368", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2369", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2370", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2376", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2377", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2378", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2379", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2380", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2381", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2382", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2383", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2384", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2385", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2386", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2392", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2393", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2394", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2395", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2396", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2397", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2398", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2399", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2400", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2401", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2402", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2408", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2409", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2410", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2411", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2412", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2413", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2414", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2415", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2416", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2417", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2418", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2424", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2425", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2426", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2427", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2428", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2429", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2430", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2431", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2432", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2433", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2434", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2440", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2441", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2442", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2443", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2444", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2445", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2446", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2447", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2448", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2449", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2450", - "https://www.w3.org/TR/webaudio/#MathJax-Element-185", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-lowshelf%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-186-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2451", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2452", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2453", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2454", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2455", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2456", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2457", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2458", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2492", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2493", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2494", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2495", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2496", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2523", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2524", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2525", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2526", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2527", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2561", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2562", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2563", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2564", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2565", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2594", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2595", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2596", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2597", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2598", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2624", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2625", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2626", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2627", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2628", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2459", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2460", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2461", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2462", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2463", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2464", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2465", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2466", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2467", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2468", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2469", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2470", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2471", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2472", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2473", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2474", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2475", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2476", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2477", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2478", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2479", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2480", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2481", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2482", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2483", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2484", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2485", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2486", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2487", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2488", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2489", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2490", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2491", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2497", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2498", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2499", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2500", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2501", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2502", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2503", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2504", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2505", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2506", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2507", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2508", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2509", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2510", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2511", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2512", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2513", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2514", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2515", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2516", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2517", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2518", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2519", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2520", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2521", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2522", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2528", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2529", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2530", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2531", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2532", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2533", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2534", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2535", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2536", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2537", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2538", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2539", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2540", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2541", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2542", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2543", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2544", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2545", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2546", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2547", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2548", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2549", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2550", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2551", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2552", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2553", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2554", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2555", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2556", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2557", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2558", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2559", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2560", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2566", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2567", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2568", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2569", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2570", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2571", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2572", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2573", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2574", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2575", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2576", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2577", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2578", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2579", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2580", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2581", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2582", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2583", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2584", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2585", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2586", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2587", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2588", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2589", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2590", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2591", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2592", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2593", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2599", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2600", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2601", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2602", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2603", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2604", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2605", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2606", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2607", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2608", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2609", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2610", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2611", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2612", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2613", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2614", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2615", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2616", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2617", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2618", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2619", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2620", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2621", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2622", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2623", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2629", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2630", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2631", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2632", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2633", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2634", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2635", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2636", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2637", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2638", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2639", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2640", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2641", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2642", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2643", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2644", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2645", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2646", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2647", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2648", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2649", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2650", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2651", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2652", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2653", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2654", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2655", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2656", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2657", - "https://www.w3.org/TR/webaudio/#MathJax-Element-186", - "https://www.w3.org/TR/webaudio/#ref-for-dom-biquadfiltertype-highshelf%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-187-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2658", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2659", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2660", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2661", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2662", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2663", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2664", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2665", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2699", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2700", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2701", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2702", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2703", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2731", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2732", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2733", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2734", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2735", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2769", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2770", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2771", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2772", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2773", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2802", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2803", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2804", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2805", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2806", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2831", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2832", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2833", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2834", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2835", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2666", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2667", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2668", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2669", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2670", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2671", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2672", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2673", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2674", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2675", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2676", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2677", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2678", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2679", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2680", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2681", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2682", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2683", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2684", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2685", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2686", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2687", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2688", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2689", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2690", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2691", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2692", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2693", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2694", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2695", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2696", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2697", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2698", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2704", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2705", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2706", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2707", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2708", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2709", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2710", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2711", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2712", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2713", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2714", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2715", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2716", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2717", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2718", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2719", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2720", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2721", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2722", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2723", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2724", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2725", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2726", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2727", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2728", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2729", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2730", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2736", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2737", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2738", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2739", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2740", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2741", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2742", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2743", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2744", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2745", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2746", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2747", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2748", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2749", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2750", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2751", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2752", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2753", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2754", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2755", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2756", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2757", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2758", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2759", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2760", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2761", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2762", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2763", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2764", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2765", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2766", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2767", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2768", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2774", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2775", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2776", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2777", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2778", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2779", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2780", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2781", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2782", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2783", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2784", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2785", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2786", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2787", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2788", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2789", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2790", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2791", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2792", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2793", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2794", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2795", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2796", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2797", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2798", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2799", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2800", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2801", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2807", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2808", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2809", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2810", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2811", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2812", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2813", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2814", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2815", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2816", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2817", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2818", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2819", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2820", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2821", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2822", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2823", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2824", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2825", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2826", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2827", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2828", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2829", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2830", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2836", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2837", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2838", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2839", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2840", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2841", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2842", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2843", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2844", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2845", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2846", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2847", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2848", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2849", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2850", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2851", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2852", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2853", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2854", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2855", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2856", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2857", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2858", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2859", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2860", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2861", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2862", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2863", - "https://www.w3.org/TR/webaudio/#MathJax-Element-187", - "https://www.w3.org/TR/webaudio/#ChannelMergerNode", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelmergeroptions-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#example-c8345030", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelmergernode-channelmergernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ChannelMergerNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-constructor-channelmergernode", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-channelmergernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelmergernode-channelmergernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-channelmergernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ChannelMergerOptions", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelmergeroptions-numberofinputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-channelmergeroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-channelmergeroptions-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelmerger%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ChannelSplitterNode", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitteroptions-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitteroptions-numberofoutputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitternode-channelsplitternode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-discrete%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelinterpretation-constraints", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A2", - "https://www.w3.org/TR/webaudio/#example-889bcff3", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitternode-channelsplitternode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode-context-options-options", - "https://www.w3.org/TR/webaudio/#ChannelSplitterNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-constructor-channelsplitternode", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-channelsplitternode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitternode-channelsplitternode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-channelsplitternode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ChannelSplitterOptions", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelsplitteroptions-numberofoutputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dictionary-channelsplitteroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-channelsplitteroptions-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createchannelsplitter%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ConstantSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourcenode-offset", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourcenode-constantsourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourcenode-offset%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ConstantSourceNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constructor-constantsourcenode", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constantsourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourcenode-constantsourcenode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ConstantSourceNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-constantsourcenode-offset", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ConstantSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourceoptions-offset", - "https://www.w3.org/TR/webaudio/#dictionary-constantsourceoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-ConstantSourceOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-constantsourceoptions-offset", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-constantsourcenode-offset%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ConvolverNode", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-clamped-max%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-convolvernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize", - "https://www.w3.org/TR/webaudio/#ConvolverNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-constructor-convolvernode", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-convolvernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolveroptions-disablenormalization", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcount%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcount%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcountmode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelcountmode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelinterpretation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionodeoptions-channelinterpretation%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-convolvernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ConvolverNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-buffer-attribute", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-numberofchannels%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-samplerate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-convolvernode-normalize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ConvolverOptions", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolveroptions-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolveroptions-disablenormalization%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-convolveroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-convolveroptions-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolveroptions-disablenormalization%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-convolveroptions-disablenormalization", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-normalize%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#Convolution-channel-configurations", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-convolvernode-buffer%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#convolver-diagram", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#DelayNode", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delayoptions-maxdelaytime", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delaynode-delaynode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions", - "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delaynode-delaytime", - "https://www.w3.org/TR/webaudio/#DelayNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-delaynode-constructor-delaynode", - "https://www.w3.org/TR/webaudio/#dom-delaynode-delaynode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delaynode-delaynode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-delaynode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-delaynode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#DelayNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-delaynode-delaytime", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delaynode-delaynode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-cycle", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delaynode-delaytime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#DelayOptions", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delayoptions-maxdelaytime%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-delayoptions-delaytime", - "https://www.w3.org/TR/webaudio/#dictionary-delayoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-DelayOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-delayoptions-delaytime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-delayoptions-maxdelaytime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createdelay-maxdelaytime-maxdelaytime%E2%91%A1", - "https://www.w3.org/TR/webaudio/#DelayNode-processing", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#delaywriter", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#delayreader", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-delayreader", - "https://www.w3.org/TR/webaudio/#ref-for-source-node%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-delaywriter", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-delayreader%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-delaywriter%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-clamped-max%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-dynamicscompressornode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-knee%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-reduction", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-attack%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-release%E2%91%A0", - "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-constructor-dynamicscompressornode", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-dynamicscompressornode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-internal-reduction-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-internal-reduction-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-dynamicscompressornode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#DynamicsCompressorNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-attack", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-knee", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-ratio", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-reduction", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-internal-reduction-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-release", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-threshold", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A5", - "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressoroptions-attack", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressoroptions-knee", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressoroptions-ratio", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressoroptions-release", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressoroptions-threshold", - "https://www.w3.org/TR/webaudio/#dictionary-dynamicscompressoroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-attack", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-attack%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-knee", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-knee%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-ratio", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-release", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-release%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressoroptions-threshold", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A1", - "https://www.w3.org/TR/webaudio/#DynamicsCompressorOptions-processing", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-188-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2864", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2865", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2866", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2867", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2868", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2869", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2870", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2871", - "https://www.w3.org/TR/webaudio/#MathJax-Element-188", - "https://www.w3.org/TR/webaudio/#MathJax-Element-189-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2872", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2873", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2874", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2875", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2876", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2877", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2878", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2879", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2880", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2881", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2882", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2883", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2884", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2885", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2886", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2887", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2888", - "https://www.w3.org/TR/webaudio/#MathJax-Element-189", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#envelopefollower", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-envelopefollower", - "https://www.w3.org/TR/webaudio/#ref-for-envelopefollower%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-detector-average-slot", - "https://www.w3.org/TR/webaudio/#dom-dynamicscompressornode-compressor-gain-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-attack%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-release%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-detector-average-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-compressor-gain-slot", - "https://www.w3.org/TR/webaudio/#ref-for-compression-curve", - "https://www.w3.org/TR/webaudio/#ref-for-detector-curve", - "https://www.w3.org/TR/webaudio/#ref-for-computing-the-envelope-rate", - "https://www.w3.org/TR/webaudio/#ref-for-computing-the-makeup-gain", - "https://www.w3.org/TR/webaudio/#ref-for-linear-to-decibel", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-compressor-gain-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-detector-average-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-atomically%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-internal-reduction-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#computing-the-makeup-gain", - "https://www.w3.org/TR/webaudio/#ref-for-compression-curve%E2%91%A0", - "https://www.w3.org/TR/webaudio/#computing-the-envelope-rate", - "https://www.w3.org/TR/webaudio/#MathJax-Element-190-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2889", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2890", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2891", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2892", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2893", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2894", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2895", - "https://www.w3.org/TR/webaudio/#MathJax-Element-190", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-attack%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-release%E2%91%A3", - "https://www.w3.org/TR/webaudio/#detector-curve", - "https://www.w3.org/TR/webaudio/#MathJax-Element-191-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2896", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2897", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2898", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2899", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2900", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2901", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2902", - "https://www.w3.org/TR/webaudio/#MathJax-Element-191", - "https://www.w3.org/TR/webaudio/#compression-curve", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-knee%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-decibels-to-linear-gain-unit", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-threshold%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-knee%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-decibels-to-linear-gain-unit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-dynamicscompressornode-ratio%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-192-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2903", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2904", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2905", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2906", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2907", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2908", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2909", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2910", - "https://www.w3.org/TR/webaudio/#MathJax-Element-192", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#MathJax-Element-193-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2911", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2912", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2913", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2914", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2915", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2916", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2917", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2918", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2919", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2920", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2921", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2922", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2923", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2924", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2925", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2926", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2927", - "https://www.w3.org/TR/webaudio/#MathJax-Element-193", - "https://www.w3.org/TR/webaudio/#MathJax-Element-194-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2928", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2929", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2930", - "https://www.w3.org/TR/webaudio/#MathJax-Element-194", - "https://www.w3.org/TR/webaudio/#linear-to-decibel", - "https://www.w3.org/TR/webaudio/#MathJax-Element-195-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2931", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2932", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2933", - "https://www.w3.org/TR/webaudio/#MathJax-Element-195", - "https://www.w3.org/TR/webaudio/#MathJax-Element-196-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2934", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2935", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2936", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2937", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2938", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2939", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2940", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2941", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2942", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2943", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2944", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2945", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2946", - "https://www.w3.org/TR/webaudio/#MathJax-Element-196", - "https://www.w3.org/TR/webaudio/#MathJax-Element-197-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2947", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2948", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2949", - "https://www.w3.org/TR/webaudio/#MathJax-Element-197", - "https://www.w3.org/TR/webaudio/#decibels-to-linear-gain-unit", - "https://www.w3.org/TR/webaudio/#MathJax-Element-198-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2950", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2951", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2952", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2953", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2954", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2955", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2956", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2957", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2958", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2959", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2960", - "https://www.w3.org/TR/webaudio/#MathJax-Element-198", - "https://www.w3.org/TR/webaudio/#GainNode", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainnode-gain", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainnode-gainnode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions", - "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainnode-gain%E2%91%A0", - "https://www.w3.org/TR/webaudio/#GainNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-gainnode-constructor-gainnode", - "https://www.w3.org/TR/webaudio/#dom-gainnode-gainnode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainnode-gainnode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-gainnode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-gainnode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#GainNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-gainnode-gain", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#GainOptions", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainoptions-gain", - "https://www.w3.org/TR/webaudio/#dictionary-gainoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-GainOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-gainoptions-gain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-gainnode-gain%E2%91%A1", - "https://www.w3.org/TR/webaudio/#IIRFilterNode", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilternode-iirfilternode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilternode-getfrequencyresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-frequencyhz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-magresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz-magresponse-phaseresponse-phaseresponse", - "https://www.w3.org/TR/webaudio/#IIRFilterNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-constructor-iirfilternode", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-iirfilternode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilternode-iirfilternode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#IIRFilterNode-methods", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-invalidaccesserror%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilternode-getfrequencyresponse%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-frequencyhz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-magresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-iirfilternode-getfrequencyresponse-phaseresponse", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#IIRFilterOptions", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilteroptions-feedforward", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilteroptions-feedback", - "https://www.w3.org/TR/webaudio/#dictionary-iirfilteroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-iirfilteroptions-feedforward", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter-feedforward", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-iirfilteroptions-feedback", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter-feedback", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A2", - "https://www.w3.org/TR/webaudio/#IIRFilterNode-filter-definition", - "https://www.w3.org/TR/webaudio/#MathJax-Element-199-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2961", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2962", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2963", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2964", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2965", - "https://www.w3.org/TR/webaudio/#MathJax-Element-199", - "https://www.w3.org/TR/webaudio/#MathJax-Element-200-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2966", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2967", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2968", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2969", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2970", - "https://www.w3.org/TR/webaudio/#MathJax-Element-200", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-iirfilternode-iirfilternode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-201-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2971", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2972", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2973", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2974", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2975", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2976", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2977", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2978", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2979", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2980", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2981", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2982", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2983", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2984", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2985", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2986", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2987", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2988", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2989", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2990", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2991", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2992", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2993", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2994", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2995", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2996", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2997", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2998", - "https://www.w3.org/TR/webaudio/#MathJax-Span-2999", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3000", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3001", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3002", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3003", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3004", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3005", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3006", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3007", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3008", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3009", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3010", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3011", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3012", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3013", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3014", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3015", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3016", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3017", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3018", - "https://www.w3.org/TR/webaudio/#MathJax-Element-201", - "https://www.w3.org/TR/webaudio/#MathJax-Element-202-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3019", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3020", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3021", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3022", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3023", - "https://www.w3.org/TR/webaudio/#MathJax-Element-202", - "https://www.w3.org/TR/webaudio/#MathJax-Element-203-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3024", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3025", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3026", - "https://www.w3.org/TR/webaudio/#MathJax-Element-203", - "https://www.w3.org/TR/webaudio/#MathJax-Element-204-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3027", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3028", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3029", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3030", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3031", - "https://www.w3.org/TR/webaudio/#MathJax-Element-204", - "https://www.w3.org/TR/webaudio/#MathJax-Element-205-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3032", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3033", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3034", - "https://www.w3.org/TR/webaudio/#MathJax-Element-205", - "https://www.w3.org/TR/webaudio/#MathJax-Element-206-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3035", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3036", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3037", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3038", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3039", - "https://www.w3.org/TR/webaudio/#MathJax-Element-206", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter-feedback%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-207-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3040", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3041", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3042", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3043", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3044", - "https://www.w3.org/TR/webaudio/#MathJax-Element-207", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter-feedforward%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createiirfilter%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-208-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3045", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3046", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3047", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3048", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3049", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3050", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3051", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3052", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3053", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3054", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3055", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3056", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3057", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3058", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3059", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3060", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3061", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3062", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3063", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3064", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3065", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3066", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3067", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3068", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3069", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3070", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3071", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3072", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3073", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3074", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3075", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3076", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3077", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3078", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3079", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3080", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3081", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3082", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3083", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3084", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3085", - "https://www.w3.org/TR/webaudio/#MathJax-Element-208", - "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-audio%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-video%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourceoptions-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-createmediaelementsource%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#example-92c31c2c", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-SameObject%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourcenode-mediaelement%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourcenode-mediaelementaudiosourcenode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourcenode-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediaelementaudiosourceoptions-mediaelement%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-mediaelementaudiosourceoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-mediaelementaudiosourceoptions-mediaelement", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#MediaElementAudioSourceOptions-security", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaElementAudioSourceNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-htmlmediaelement%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiodestinationnode-stream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices-getusermedia%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiodestinationnode-stream%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiodestinationnode-mediastreamaudiodestinationnode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioDestinationNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiodestinationnode-stream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-SameObject%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourcenode-mediastream", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourceoptions-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-code-unit", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-input-track-slot", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourcenode-input-track-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourcenode-mediastreamaudiosourcenode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourcenode-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MediaStreamAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamaudiosourceoptions-mediastream%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-mediastreamaudiosourceoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-mediastreamaudiosourceoptions-mediastream", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastream%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode-context-options-options", - "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourcenode-mediastreamtrackaudiosourcenode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourcenode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MediaStreamTrackAudioSourceOptions", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrackaudiosourceoptions-mediastreamtrack%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dictionary-mediastreamtrackaudiosourceoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-mediastreamtrackaudiosourceoptions-mediastreamtrack", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediastreamtrack%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#OscillatorNode", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioscheduledsourcenode-start%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#computedoscfrequency", - "https://www.w3.org/TR/webaudio/#ref-for-computedoscfrequency", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#enumdef-oscillatortype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-square", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sawtooth", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-triangle", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-custom", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oscillatortype", - "https://www.w3.org/TR/webaudio/#dom-oscillatortype-sine", - "https://www.w3.org/TR/webaudio/#dom-oscillatortype-square", - "https://www.w3.org/TR/webaudio/#dom-oscillatortype-sawtooth", - "https://www.w3.org/TR/webaudio/#dom-oscillatortype-triangle", - "https://www.w3.org/TR/webaudio/#dom-oscillatortype-custom", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioScheduledSourceNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-oscillatornode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oscillatortype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-type", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-frequency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-detune%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-setperiodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave-periodicwave-periodicwave", - "https://www.w3.org/TR/webaudio/#OscillatorNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-oscillatornode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-oscillatornode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#OscillatorNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-detune", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-frequency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-frequency%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-computedoscfrequency%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-frequency%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-209-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3086", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3087", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3088", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3089", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3090", - "https://www.w3.org/TR/webaudio/#MathJax-Element-209", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-210-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3091", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3092", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3093", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3094", - "https://www.w3.org/TR/webaudio/#MathJax-Element-210", - "https://www.w3.org/TR/webaudio/#MathJax-Element-211-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3095", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3096", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3097", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3098", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3099", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3100", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3101", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3102", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3103", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3104", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3105", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3106", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3107", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3108", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3109", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3110", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3111", - "https://www.w3.org/TR/webaudio/#MathJax-Element-211", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-compound-parameter%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-detune%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-computedoscfrequency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-nominal-range%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for---nyquist-frequency%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oscillatortype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-custom%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-setperiodicwave%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-custom%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine%E2%91%A0", - "https://www.w3.org/TR/webaudio/#OscillatorNode-methods", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-setperiodicwave%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-oscillatornode-setperiodicwave-periodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#OscillatorOptions", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oscillatortype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-periodicwave", - "https://www.w3.org/TR/webaudio/#dictionary-oscillatoroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-detune", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-frequency", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-periodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-type%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-custom%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-oscillatoroptions-type", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oscillatortype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-periodicwave%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-periodicwave%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatoroptions-type%E2%91%A1", - "https://www.w3.org/TR/webaudio/#basic-waveform-phase", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-212-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3112", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3113", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3114", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3115", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3116", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3117", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3118", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3119", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3120", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3121", - "https://www.w3.org/TR/webaudio/#MathJax-Element-212", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-square%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-213-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3122", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3123", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3124", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3125", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3126", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3127", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3128", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3129", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3130", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3131", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3132", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3133", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3134", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3145", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3146", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3147", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3148", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3135", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3136", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3137", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3138", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3139", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3140", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3141", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3142", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3143", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3144", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3149", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3150", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3151", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3152", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3153", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3154", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3155", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3156", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3157", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3158", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3159", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3160", - "https://www.w3.org/TR/webaudio/#MathJax-Element-213", - "https://www.w3.org/TR/webaudio/#MathJax-Element-214-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3161", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3162", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3163", - "https://www.w3.org/TR/webaudio/#MathJax-Element-214", - "https://www.w3.org/TR/webaudio/#MathJax-Element-215-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3164", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3165", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3166", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3167", - "https://www.w3.org/TR/webaudio/#MathJax-Element-215", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sawtooth%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-216-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3168", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3169", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3170", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3171", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3172", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3173", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3174", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3175", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3176", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3177", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3178", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3179", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3180", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3181", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3182", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3183", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3184", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3185", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3186", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3187", - "https://www.w3.org/TR/webaudio/#MathJax-Element-216", - "https://www.w3.org/TR/webaudio/#MathJax-Element-217-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3188", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3189", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3190", - "https://www.w3.org/TR/webaudio/#MathJax-Element-217", - "https://www.w3.org/TR/webaudio/#MathJax-Element-218-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3191", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3192", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3193", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3194", - "https://www.w3.org/TR/webaudio/#MathJax-Element-218", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-triangle%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-219-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3195", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3196", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3197", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3198", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3199", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3200", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3201", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3202", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3203", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3204", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3205", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3206", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3207", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3208", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3209", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3210", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3223", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3224", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3225", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3226", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3227", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3228", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3229", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3230", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3231", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3232", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3233", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3234", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3235", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3236", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3237", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3211", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3212", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3213", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3214", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3215", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3216", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3217", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3218", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3219", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3220", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3221", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3222", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3238", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3239", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3240", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3241", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3242", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3243", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3244", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3245", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3246", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3247", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3248", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3249", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3250", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3251", - "https://www.w3.org/TR/webaudio/#MathJax-Element-219", - "https://www.w3.org/TR/webaudio/#MathJax-Element-220-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3252", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3253", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3254", - "https://www.w3.org/TR/webaudio/#MathJax-Element-220", - "https://www.w3.org/TR/webaudio/#MathJax-Element-221-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3255", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3256", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3257", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3258", - "https://www.w3.org/TR/webaudio/#MathJax-Element-221", - "https://www.w3.org/TR/webaudio/#PannerNode", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-listener%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-clamped-max%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-hrtf%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-equalpower", - "https://www.w3.org/TR/webaudio/#enumdef-panningmodeltype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-equalpower%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-hrtf%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-panningmodeltype-equalpower", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-panningmodeltype-hrtf", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-k-rate%E2%91%A5", - "https://www.w3.org/TR/webaudio/#effective-automation-rate", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-hrtf%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-effective-automation-rate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-effective-automation-rate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-inverse", - "https://www.w3.org/TR/webaudio/#MathJax-Element-222-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3259", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3260", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3261", - "https://www.w3.org/TR/webaudio/#MathJax-Element-222", - "https://www.w3.org/TR/webaudio/#MathJax-Element-223-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3262", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3263", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3264", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3265", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3266", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3267", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3268", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3269", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3270", - "https://www.w3.org/TR/webaudio/#MathJax-Element-223", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-refdistance", - "https://www.w3.org/TR/webaudio/#MathJax-Element-224-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3271", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3272", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3273", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3274", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3275", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3276", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3277", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3278", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3279", - "https://www.w3.org/TR/webaudio/#MathJax-Element-224", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-maxdistance", - "https://www.w3.org/TR/webaudio/#MathJax-Element-225-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3280", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3281", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3282", - "https://www.w3.org/TR/webaudio/#MathJax-Element-225", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-rollofffactor", - "https://www.w3.org/TR/webaudio/#enumdef-distancemodeltype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-linear", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-inverse%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-exponential", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-linear", - "https://www.w3.org/TR/webaudio/#MathJax-Element-226-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3283", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3284", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3285", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3286", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3287", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3288", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3289", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3290", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3291", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3292", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3293", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3294", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3295", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3296", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3297", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3298", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3299", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3300", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3301", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3302", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3303", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3304", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3305", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3306", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3307", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3308", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3309", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3310", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3311", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3312", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3313", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3314", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3315", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3316", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3317", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3318", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3319", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3320", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3321", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3322", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3323", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3324", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3325", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3326", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3327", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3328", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3329", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3330", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3331", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3332", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3333", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3334", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3335", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3336", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3337", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3338", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3339", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3340", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3341", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3342", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3343", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3344", - "https://www.w3.org/TR/webaudio/#MathJax-Element-226", - "https://www.w3.org/TR/webaudio/#MathJax-Element-227-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3345", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3346", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3347", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3348", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3349", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3350", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3351", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3352", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3353", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3354", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3355", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3356", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3357", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3358", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3359", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3360", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3361", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3362", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3363", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3364", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3365", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3366", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3367", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3368", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3369", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3370", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3371", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3372", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3373", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3374", - "https://www.w3.org/TR/webaudio/#MathJax-Element-227", - "https://www.w3.org/TR/webaudio/#MathJax-Element-228-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3375", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3376", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3377", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3378", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3379", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3380", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3381", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3382", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3383", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3384", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3385", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3386", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3387", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3388", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3389", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3390", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3391", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3392", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3393", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3394", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3395", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3396", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3397", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3398", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3399", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3400", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3401", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3402", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3403", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3404", - "https://www.w3.org/TR/webaudio/#MathJax-Element-228", - "https://www.w3.org/TR/webaudio/#MathJax-Element-229-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3405", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3406", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3407", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3408", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3409", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3410", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3411", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3412", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3413", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3414", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3415", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3416", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3417", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3418", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3419", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3420", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3421", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3422", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3423", - "https://www.w3.org/TR/webaudio/#MathJax-Element-229", - "https://www.w3.org/TR/webaudio/#MathJax-Element-230-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3424", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3425", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3426", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3427", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3428", - "https://www.w3.org/TR/webaudio/#MathJax-Element-230", - "https://www.w3.org/TR/webaudio/#MathJax-Element-231-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3429", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3430", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3431", - "https://www.w3.org/TR/webaudio/#MathJax-Element-231", - "https://www.w3.org/TR/webaudio/#MathJax-Element-232-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3432", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3433", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3434", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3435", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3436", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3437", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3438", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3439", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3440", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3441", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3442", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3443", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3444", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3445", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3446", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3447", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3448", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3449", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3450", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3451", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3452", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3453", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3454", - "https://www.w3.org/TR/webaudio/#MathJax-Element-232", - "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-inverse", - "https://www.w3.org/TR/webaudio/#MathJax-Element-233-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3455", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3456", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3457", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3458", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3459", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3460", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3461", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3462", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3463", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3464", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3465", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3466", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3467", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3468", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3469", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3470", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3471", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3472", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3473", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3474", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3475", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3476", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3477", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3478", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3479", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3480", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3481", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3482", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3483", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3484", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3485", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3486", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3487", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3488", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3489", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3490", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3491", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3492", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3493", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3494", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3495", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3496", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3497", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3498", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3499", - "https://www.w3.org/TR/webaudio/#MathJax-Element-233", - "https://www.w3.org/TR/webaudio/#MathJax-Element-234-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3500", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3501", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3502", - "https://www.w3.org/TR/webaudio/#MathJax-Element-234", - "https://www.w3.org/TR/webaudio/#MathJax-Element-235-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3503", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3504", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3505", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3506", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3507", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3508", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3509", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3510", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3511", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3512", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3513", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3514", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3515", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3516", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3517", - "https://www.w3.org/TR/webaudio/#MathJax-Element-235", - "https://www.w3.org/TR/webaudio/#MathJax-Element-236-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3518", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3519", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3520", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3521", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3522", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3523", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3524", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3525", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3526", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3527", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3528", - "https://www.w3.org/TR/webaudio/#MathJax-Element-236", - "https://www.w3.org/TR/webaudio/#MathJax-Element-237-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3529", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3530", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3531", - "https://www.w3.org/TR/webaudio/#MathJax-Element-237", - "https://www.w3.org/TR/webaudio/#MathJax-Element-238-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3532", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3533", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3534", - "https://www.w3.org/TR/webaudio/#MathJax-Element-238", - "https://www.w3.org/TR/webaudio/#dom-distancemodeltype-exponential", - "https://www.w3.org/TR/webaudio/#MathJax-Element-239-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3535", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3536", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3537", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3538", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3539", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3540", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3541", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3542", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3543", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3544", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3545", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3546", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3547", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3548", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3549", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3550", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3551", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3552", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3553", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3554", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3555", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3556", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3557", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3558", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3559", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3560", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3561", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3562", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3563", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3564", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3565", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3566", - "https://www.w3.org/TR/webaudio/#MathJax-Element-239", - "https://www.w3.org/TR/webaudio/#MathJax-Element-240-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3567", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3568", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3569", - "https://www.w3.org/TR/webaudio/#MathJax-Element-240", - "https://www.w3.org/TR/webaudio/#MathJax-Element-241-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3570", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3571", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3572", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3573", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3574", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3575", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3576", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3577", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3578", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3579", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3580", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3581", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3582", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3583", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3584", - "https://www.w3.org/TR/webaudio/#MathJax-Element-241", - "https://www.w3.org/TR/webaudio/#MathJax-Element-242-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3585", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3586", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3587", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3588", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3589", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3590", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3591", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3592", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3593", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3594", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3595", - "https://www.w3.org/TR/webaudio/#MathJax-Element-242", - "https://www.w3.org/TR/webaudio/#MathJax-Element-243-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3596", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3597", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3598", - "https://www.w3.org/TR/webaudio/#MathJax-Element-243", - "https://www.w3.org/TR/webaudio/#MathJax-Element-244-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3599", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3600", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3601", - "https://www.w3.org/TR/webaudio/#MathJax-Element-244", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-pannernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions", - "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationy", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationz", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-distancemodel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-refdistance%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-maxdistance%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-rollofffactor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneinnerangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneouterangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneoutergain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-setposition", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x-y-z-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-setorientation", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x-y-z-z", - "https://www.w3.org/TR/webaudio/#PannerNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-pannernode-pannernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-pannernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-pannernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#PannerNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-pannernode-coneinnerangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-pannernode-coneouterangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneoutergain%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-coneoutergain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneouterangle%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-pannernode-distancemodel", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-inverse%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-pannernode-maxdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#MathJax-Element-245-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3602", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3603", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3604", - "https://www.w3.org/TR/webaudio/#MathJax-Element-245", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationy", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#MathJax-Element-246-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3605", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3606", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3607", - "https://www.w3.org/TR/webaudio/#MathJax-Element-246", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-pannernode-orientationz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#MathJax-Element-247-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3608", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3609", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3610", - "https://www.w3.org/TR/webaudio/#MathJax-Element-247", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-pannernode-panningmodel", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-equalpower%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-pannernode-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#MathJax-Element-248-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3611", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3612", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3613", - "https://www.w3.org/TR/webaudio/#MathJax-Element-248", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-pannernode-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-249-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3614", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3615", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3616", - "https://www.w3.org/TR/webaudio/#MathJax-Element-249", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-250-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3617", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3618", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3619", - "https://www.w3.org/TR/webaudio/#MathJax-Element-250", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-negative-single-float%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-most-positive-single-float%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audioparam-automation-rate-constraints%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-pannernode-refdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-pannernode-rollofffactor", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-rangeerror%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-rollofffactor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-distancemodel%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-linear%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-251-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3620", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3621", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3622", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3623", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3624", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3625", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3626", - "https://www.w3.org/TR/webaudio/#MathJax-Element-251", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-inverse%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-252-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3627", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3628", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3629", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3630", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3631", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3632", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3633", - "https://www.w3.org/TR/webaudio/#MathJax-Element-252", - "https://www.w3.org/TR/webaudio/#ref-for-dom-distancemodeltype-exponential%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-253-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3634", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3635", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3636", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3637", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3638", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3639", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3640", - "https://www.w3.org/TR/webaudio/#MathJax-Element-253", - "https://www.w3.org/TR/webaudio/#PannerNode-methods", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationx%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationy%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationz%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationx%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationy%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationz%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-setorientation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setorientation-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionx%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positiony%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionz%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionx%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positiony%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionz%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-setvaluecurveattime%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-listener%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-setposition%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-x", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-y", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-pannernode-setposition-z", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#PannerOptions", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-panningmodel", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-distancemodel", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-orientationx", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-orientationy", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-orientationz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-refdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-maxdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-rollofffactor", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-coneinnerangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-coneouterangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panneroptions-coneoutergain", - "https://www.w3.org/TR/webaudio/#dictionary-pannernode-members", - "https://www.w3.org/TR/webaudio/#ref-for-PannerOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneinnerangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneinnerangle%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneouterangle", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneouterangle%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-coneoutergain", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneoutergain%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-distancemodel", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-maxdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-maxdistance%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationx", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#MathJax-Element-254-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3641", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3642", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3643", - "https://www.w3.org/TR/webaudio/#MathJax-Element-254", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationx%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationy", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#MathJax-Element-255-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3644", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3645", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3646", - "https://www.w3.org/TR/webaudio/#MathJax-Element-255", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationy%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-orientationz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#MathJax-Element-256-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3647", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3648", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3649", - "https://www.w3.org/TR/webaudio/#MathJax-Element-256", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-orientationz%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-panningmodel", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-panningmodeltype%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-positionx", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-257-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3650", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3651", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3652", - "https://www.w3.org/TR/webaudio/#MathJax-Element-257", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionx%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-positiony", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-258-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3653", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3654", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3655", - "https://www.w3.org/TR/webaudio/#MathJax-Element-258", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positiony%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-positionz", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-259-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3656", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3657", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3658", - "https://www.w3.org/TR/webaudio/#MathJax-Element-259", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-positionz%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-refdistance", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-refdistance%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-panneroptions-rollofffactor", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-rollofffactor%E2%91%A2", - "https://www.w3.org/TR/webaudio/#panner-channel-limitations", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#PeriodicWave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dfn-conforming-implementation%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-periodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave-context-options-options", - "https://www.w3.org/TR/webaudio/#PeriodicWave-constructors", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-periodicwave", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-real-slot", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-imag-slot", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-normalize-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-periodicwave-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-normalize-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-periodicwave%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-periodicwave-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#PeriodicWaveConstraints", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveconstraints-disablenormalization%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveconstraints-members", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-periodicwaveconstraints-disablenormalization", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A8", - "https://www.w3.org/TR/webaudio/#PeriodicWaveOptions", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatornode-type%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveConstraints%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dictionary-periodicwaveoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWaveOptions%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-periodicwaveoptions-imag", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-imag%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-periodicwaveoptions-real", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwaveoptions-real%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#waveform-generation", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-260-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3659", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3660", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3661", - "https://www.w3.org/TR/webaudio/#MathJax-Element-260", - "https://www.w3.org/TR/webaudio/#MathJax-Element-261-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3662", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3663", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3664", - "https://www.w3.org/TR/webaudio/#MathJax-Element-261", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-real-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-imag-slot%E2%91%A8", - "https://www.w3.org/TR/webaudio/#MathJax-Element-262-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3665", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3666", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3667", - "https://www.w3.org/TR/webaudio/#MathJax-Element-262", - "https://www.w3.org/TR/webaudio/#MathJax-Element-263-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3668", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3669", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3670", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3671", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3672", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3673", - "https://www.w3.org/TR/webaudio/#MathJax-Element-263", - "https://www.w3.org/TR/webaudio/#MathJax-Element-264-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3674", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3675", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3676", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3677", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3678", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3679", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3680", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3681", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3682", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3683", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3684", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3685", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3686", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3687", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3688", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3689", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3690", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3691", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3692", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3693", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3694", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3695", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3696", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3697", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3698", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3699", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3700", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3701", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3702", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3703", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3704", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3705", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3706", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3707", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3708", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3709", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3710", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3711", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3712", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3713", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3714", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3715", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3716", - "https://www.w3.org/TR/webaudio/#MathJax-Element-264", - "https://www.w3.org/TR/webaudio/#waveform-normalization", - "https://www.w3.org/TR/webaudio/#ref-for-dom-periodicwave-normalize-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-265-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3717", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3718", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3719", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3720", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3721", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3722", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3723", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3724", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3725", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3726", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3727", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3728", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3729", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3730", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3731", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3732", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3733", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3734", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3735", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3736", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3737", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3738", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3739", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3740", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3741", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3742", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3743", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3744", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3745", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3746", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3747", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3748", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3749", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3750", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3751", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3752", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3753", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3754", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3755", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3756", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3757", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3758", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3759", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3760", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3761", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3762", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3763", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3764", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3765", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3766", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3767", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3768", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3769", - "https://www.w3.org/TR/webaudio/#MathJax-Element-265", - "https://www.w3.org/TR/webaudio/#MathJax-Element-266-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3770", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3771", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3772", - "https://www.w3.org/TR/webaudio/#MathJax-Element-266", - "https://www.w3.org/TR/webaudio/#MathJax-Element-267-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3773", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3774", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3775", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3776", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3777", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3778", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3779", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3780", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3781", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3782", - "https://www.w3.org/TR/webaudio/#MathJax-Element-267", - "https://www.w3.org/TR/webaudio/#MathJax-Element-268-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3783", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3784", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3785", - "https://www.w3.org/TR/webaudio/#MathJax-Element-268", - "https://www.w3.org/TR/webaudio/#MathJax-Element-269-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3786", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3787", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3788", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3789", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3790", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3791", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3792", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3793", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3794", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3795", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3796", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3797", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3798", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3799", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3800", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3801", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3802", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3803", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3804", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3805", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3806", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3807", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3808", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3809", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3810", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3811", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3812", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3813", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3814", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3815", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3816", - "https://www.w3.org/TR/webaudio/#MathJax-Element-269", - "https://www.w3.org/TR/webaudio/#MathJax-Element-270-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3817", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3818", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3819", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3820", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3821", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3822", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3823", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3824", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3825", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3826", - "https://www.w3.org/TR/webaudio/#MathJax-Element-270", - "https://www.w3.org/TR/webaudio/#MathJax-Element-271-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3827", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3828", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3829", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3830", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3831", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3832", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3833", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3834", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3835", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3836", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3837", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3838", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3839", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3840", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3841", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3842", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3843", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3844", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3845", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3846", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3847", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3848", - "https://www.w3.org/TR/webaudio/#MathJax-Element-271", - "https://www.w3.org/TR/webaudio/#oscillator-coefficients", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-PeriodicWave%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-272-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3849", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3850", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3851", - "https://www.w3.org/TR/webaudio/#MathJax-Element-272", - "https://www.w3.org/TR/webaudio/#MathJax-Element-273-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3852", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3853", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3854", - "https://www.w3.org/TR/webaudio/#MathJax-Element-273", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createperiodicwave%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-274-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3855", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3856", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3857", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3858", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3859", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3860", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3861", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3862", - "https://www.w3.org/TR/webaudio/#MathJax-Element-274", - "https://www.w3.org/TR/webaudio/#MathJax-Element-275-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3863", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3864", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3865", - "https://www.w3.org/TR/webaudio/#MathJax-Element-275", - "https://www.w3.org/TR/webaudio/#MathJax-Element-276-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3866", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3867", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3868", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3869", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3870", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3871", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3872", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3873", - "https://www.w3.org/TR/webaudio/#MathJax-Element-276", - "https://www.w3.org/TR/webaudio/#MathJax-Element-277-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3874", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3875", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3876", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3877", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3878", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3879", - "https://www.w3.org/TR/webaudio/#MathJax-Element-277", - "https://www.w3.org/TR/webaudio/#MathJax-Element-278-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3880", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3881", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3882", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3883", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3884", - "https://www.w3.org/TR/webaudio/#MathJax-Element-278", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sine%E2%91%A4", - "https://www.w3.org/TR/webaudio/#MathJax-Element-279-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3885", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3886", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3887", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3888", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3889", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3890", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3891", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3892", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3893", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3894", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3895", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3896", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3897", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3906", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3907", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3908", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3898", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3899", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3900", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3901", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3902", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3903", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3904", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3905", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3909", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3910", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3911", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3912", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3913", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3914", - "https://www.w3.org/TR/webaudio/#MathJax-Element-279", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-square%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-280-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3915", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3916", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3917", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3918", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3919", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3920", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3921", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3922", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3923", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3924", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3925", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3926", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3927", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3928", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3929", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3930", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3931", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3932", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3933", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3934", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3935", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3936", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3937", - "https://www.w3.org/TR/webaudio/#MathJax-Element-280", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-sawtooth%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-281-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3938", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3939", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3940", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3941", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3942", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3943", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3944", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3945", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3946", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3947", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3948", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3949", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3950", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3951", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3952", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3953", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3954", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3955", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3956", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3957", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3958", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3959", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3960", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3961", - "https://www.w3.org/TR/webaudio/#MathJax-Element-281", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oscillatortype-triangle%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-282-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3962", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3963", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3964", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3965", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3966", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3967", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3968", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3969", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3970", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3971", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3972", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3973", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3974", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3975", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3976", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3977", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3978", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3979", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3980", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3981", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3982", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3983", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3984", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3985", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3986", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3987", - "https://www.w3.org/TR/webaudio/#MathJax-Element-282", - "https://www.w3.org/TR/webaudio/#ScriptProcessorNode", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-explicit%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-buffersize%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofinputchannels%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-createscriptprocessor-buffersize-numberofinputchannels-numberofoutputchannels-numberofoutputchannels%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-scriptprocessornode-onaudioprocess", - "https://www.w3.org/TR/webaudio/#ref-for-idl-long", - "https://www.w3.org/TR/webaudio/#ref-for-dom-scriptprocessornode-buffersize%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ScriptProcessorNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-scriptprocessornode-buffersize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-long%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-scriptprocessornode-audioprocess%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-scriptprocessornode-onaudioprocess", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-event-handlers%E2%91%A3", - "https://www.w3.org/TR/webaudio/#eventdef-scriptprocessornode-audioprocess", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A3", - "https://www.w3.org/TR/webaudio/#stereopannernode", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcount-constraints%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-clamped-max%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-channelcountmode-constraints%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-stereopannernode-stereopannernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-stereopannernode-pan", - "https://www.w3.org/TR/webaudio/#StereoPannerNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-stereopannernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-stereopannernode-stereopannernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#StereoPannerNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-stereopannernode-pan", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-defaultvalue%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-minvalue%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-maxvalue%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#StereoPannerOptions", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-stereopanneroptions-pan", - "https://www.w3.org/TR/webaudio/#dictionary-stereopanneroptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-StereoPannerOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-stereopanneroptions-pan", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-stereopannernode-pan%E2%91%A0", - "https://www.w3.org/TR/webaudio/#StereoPanner-channel-limitations", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelSplitterNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-GainNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ChannelMergerNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#WaveShaperNode", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-oversample", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-2x", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-4x", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#enumdef-oversampletype", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-none", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-2x%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-4x%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oversampletype", - "https://www.w3.org/TR/webaudio/#dom-oversampletype-none", - "https://www.w3.org/TR/webaudio/#dom-oversampletype-2x", - "https://www.w3.org/TR/webaudio/#dom-oversampletype-4x", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-waveshapernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode-context-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oversampletype%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-oversample%E2%91%A0", - "https://www.w3.org/TR/webaudio/#WaveShaperNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-waveshapernode", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-curve-set-slot", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-waveshapernode-context-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshaperoptions-curve", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve-set-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-waveshapernode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A8", - "https://www.w3.org/TR/webaudio/#WaveShaperNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-curve", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A1", - "https://www.w3.org/TR/webaudio/#MathJax-Element-283-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3988", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3989", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3990", - "https://www.w3.org/TR/webaudio/#MathJax-Element-283", - "https://www.w3.org/TR/webaudio/#MathJax-Element-284-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3991", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3992", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3993", - "https://www.w3.org/TR/webaudio/#MathJax-Element-284", - "https://www.w3.org/TR/webaudio/#MathJax-Element-285-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3994", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3995", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3996", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3997", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3998", - "https://www.w3.org/TR/webaudio/#MathJax-Element-285", - "https://www.w3.org/TR/webaudio/#MathJax-Element-286-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-3999", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4000", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4001", - "https://www.w3.org/TR/webaudio/#MathJax-Element-286", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A2", - "https://www.w3.org/TR/webaudio/#MathJax-Element-287-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4002", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4003", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4004", - "https://www.w3.org/TR/webaudio/#MathJax-Element-287", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A3", - "https://www.w3.org/TR/webaudio/#MathJax-Element-288-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4005", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4006", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4007", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4008", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4009", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4010", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4026", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4027", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4028", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4036", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4037", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4038", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4011", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4012", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4013", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4014", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4015", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4016", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4017", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4018", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4019", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4020", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4021", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4022", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4023", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4024", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4025", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4029", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4030", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4031", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4032", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4033", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4034", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4035", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4039", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4040", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4041", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4042", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4043", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4044", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4045", - "https://www.w3.org/TR/webaudio/#MathJax-Element-288", - "https://www.w3.org/TR/webaudio/#MathJax-Element-289-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4046", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4047", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4048", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4049", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4050", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4051", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4052", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4053", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4054", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4055", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4056", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4057", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4058", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4059", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4060", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4061", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4062", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4063", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4069", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4070", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4071", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4072", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4073", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4074", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4075", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4076", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4077", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4085", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4086", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4087", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4088", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4089", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4090", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4091", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4092", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4093", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4094", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4095", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4096", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4097", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4098", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4099", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4100", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4101", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4102", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4103", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4104", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4064", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4065", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4066", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4067", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4068", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4078", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4079", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4080", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4081", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4082", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4083", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4084", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4105", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4106", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4107", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4108", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4109", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4110", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4111", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4112", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4113", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4114", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4115", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4116", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4117", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4118", - "https://www.w3.org/TR/webaudio/#MathJax-Element-289", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve-set-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve-set-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshapernode-curve%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-waveshapernode-oversample", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oversampletype%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-none%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-2x%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-4x%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-4x%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-2x%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-oversampletype-4x%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#WaveShaperOptions", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshaperoptions-curve%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oversampletype%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-waveshaperoptions-oversample", - "https://www.w3.org/TR/webaudio/#dictionary-waveshaperoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-waveshaperoptions-curve", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-waveshaperoptions-oversample", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-oversampletype%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioWorklet", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-worklet", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworklet-port%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioWorklet-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioworklet-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworklet-port%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-event-close", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioWorklet-concepts", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-worklet-global-scope-type", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-worklet-destination-type", - "https://www.w3.org/TR/webaudio/#ref-for-dom-worklet-addmodule", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#node-name-to-parameter-descriptor-map", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-processor-constructor-map", - "https://www.w3.org/TR/webaudio/#ref-for-parameterdescriptors", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-worklet-addmodule%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-audioworklet%E2%91%A2", - "https://www.w3.org/TR/webaudio/#example-d0db141d", - "https://www.w3.org/TR/webaudio/#example-885ab32a", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A7", - "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-terminate-a-worklet-global-scope", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#node-name-to-processor-constructor-map", - "https://www.w3.org/TR/webaudio/#ref-for-callbackdef-audioworkletprocessorconstructor", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#pending-processor-construction-data", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data", - "https://www.w3.org/TR/webaudio/#pending-processor-construction-data-node-reference", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#pending-processor-construction-data-transferred-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#callbackdef-audioworkletprocessorconstructor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-object", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessorconstructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-Global", - "https://www.w3.org/TR/webaudio/#ref-for-worklet%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-workletglobalscope", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "https://www.w3.org/TR/webaudio/#ref-for-callbackdef-audioworkletprocessorconstructor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long-long", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-currentframe", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-currenttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-renderquantumsize", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-port%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-currentframe", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long-long%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-current-frame-slot", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-currenttime", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-samplerate", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-renderquantumsize", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-port%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-event-close%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioWorkletGlobalScope-methods", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-processor-constructor-map%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-typeerror", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-typeerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#steps-parameterDescriptorSequence", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-name", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-defaultvalue", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-minvalue", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-maxvalue", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-processor-constructor-map%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#6d54a0c516", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-parameter-descriptor-map", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-registerprocessor%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-name", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audioworkletglobalscope-registerprocessor-name-processorctor-processorctor", - "https://www.w3.org/TR/webaudio/#ref-for-callbackdef-audioworkletprocessorconstructor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-instantiation", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-struct", - "https://www.w3.org/TR/webaudio/#processor-construction-data", - "https://www.w3.org/TR/webaudio/#ref-for-struct%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-struct-item", - "https://www.w3.org/TR/webaudio/#processor-construction-data-name", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-processor-constructor-map%E2%91%A2", - "https://www.w3.org/TR/webaudio/#processor-construction-data-node", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#processor-construction-data-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-audioworkletnode", - "https://www.w3.org/TR/webaudio/#processor-construction-data-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-port", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#invoking-processor-constructor", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data-name", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data-node", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data-port", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data-options", - "https://www.w3.org/TR/webaudio/#ref-for-structureddeserialize%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-structureddeserialize%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-processor-constructor-map%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data-node-reference", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data-transferred-port", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-construct-a-callback-function", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-task", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audioworkletnode-processorerror", - "https://www.w3.org/TR/webaudio/#ref-for-errorevent", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data%E2%91%A1", - "https://www.w3.org/TR/webaudio/#AudioWorkletNode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcount%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelcountmode-max%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#active-source", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#audioparammap", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-SecureContext%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-context", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-name", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode-context-name-options-options", - "https://www.w3.org/TR/webaudio/#ref-for-audioparammap", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-port%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-onprocessorerror", - "https://www.w3.org/TR/webaudio/#AudioWorkletNode-constructors", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-audioworkletnode", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A1", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-context", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-associated%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-name", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-constructor-options", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-audioworkletnode%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audionode-constructor-init%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-messagechannel-port2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-structuredserializewithtransfer%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-structuredserialize", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-port%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-node-name-to-parameter-descriptor-map%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audioparammap%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-name%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-automationrate", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-defaultvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-minvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-maxvalue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-parameterdata", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-parameterdata%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-parameters%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-audioworkletprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-processor-construction-data%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioWorkletNode-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-onprocessorerror", - "https://www.w3.org/TR/webaudio/#ref-for-eventhandler%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#eventdef-audioworkletnode-processorerror", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-errorevent%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-audioparammap%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnode-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnode-port%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-event-close%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#AudioWorkletNodeOptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNodeOptions%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-sequence%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount", - "https://www.w3.org/TR/webaudio/#ref-for-idl-record", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-parameterdata%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-object%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-processoroptions", - "https://www.w3.org/TR/webaudio/#dictionary-audioworkletnodeoptions-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-numberofinputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofinputs%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-numberofoutputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-unsigned-long%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-numberofoutputs%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-outputchannelcount", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-parameterdata", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-double%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#dom-audioworkletnodeoptions-processoroptions", - "https://www.w3.org/TR/webaudio/#ref-for-idl-object%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#configuring-channels-with-audioworkletnodeoptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNodeOptions%E2%91%A7", - "https://www.w3.org/TR/webaudio/#configure-with-audioworkletnodeoptions", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-notsupportederror%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-indexsizeerror%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-outputchannelcount%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-map-exists%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofinputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletnodeoptions-numberofoutputs%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelcountmode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-Exposed%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-audioworkletprocessor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-port", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-idl-boolean%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-inputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-outputs", - "https://www.w3.org/TR/webaudio/#ref-for-idl-object%E2%91%A2", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocesscallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-node-reference-slot", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-callable-process-slot", - "https://www.w3.org/TR/webaudio/#ref-for-process", - "https://www.w3.org/TR/webaudio/#AudioWorketProcessor-constructors", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-audioworkletprocessor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data-node-reference%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-exceptiondef-typeerror%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-this%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-node-reference-slot", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data-transferred-port%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-port%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-pending-processor-construction-data%E2%91%A4", - "https://www.w3.org/TR/webaudio/#AudioWorkletProcessor-attributes", - "https://www.w3.org/TR/webaudio/#dom-audioworkletprocessor-port", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-messageport%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-port%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-event-close%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-messagechannel%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#callback-audioworketprocess-callback", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters%E2%91%A1", - "https://www.w3.org/TR/webaudio/#process", - "https://www.w3.org/TR/webaudio/#parameterdescriptors", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-process%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-process%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-process%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletglobalscope-currenttime%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-process%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-process%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-undefined%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A2", - "https://www.w3.org/TR/webaudio/#example-1d246ea2", - "https://www.w3.org/TR/webaudio/#audioworkletprocess-callback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-audioworkletprocess-callback-parameters%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-inputs", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-outputs", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#MathJax-Element-290-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4119", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4120", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4121", - "https://www.w3.org/TR/webaudio/#MathJax-Element-290", - "https://www.w3.org/TR/webaudio/#MathJax-Element-291-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4122", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4123", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4124", - "https://www.w3.org/TR/webaudio/#MathJax-Element-291", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-actively-processing%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%93%AA", - "https://www.w3.org/TR/webaudio/#MathJax-Element-292-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4125", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4126", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4127", - "https://www.w3.org/TR/webaudio/#MathJax-Element-292", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#MathJax-Element-293-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4128", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4129", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4130", - "https://www.w3.org/TR/webaudio/#MathJax-Element-293", - "https://www.w3.org/TR/webaudio/#MathJax-Element-294-Frame", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4131", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4132", - "https://www.w3.org/TR/webaudio/#MathJax-Span-4133", - "https://www.w3.org/TR/webaudio/#MathJax-Element-294", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-parameters", - "https://www.w3.org/TR/webaudio/#ref-for-idl-object%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-ordered-map", - "https://www.w3.org/TR/webaudio/#ref-for-idl-frozen-array%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-ordered-map%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ordered-map%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-parameters%E2%91%A0", - "https://www.w3.org/TR/webaudio/#AudioParamDescriptor", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-name%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-defaultvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-minvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-maxvalue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-automationrate%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparamdescriptor-automationrate%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dictionary-audioparamdescriptor-members", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParamDescriptor%E2%91%A4", - "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-automationrate", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-automationrate%E2%91%A3", - "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-defaultvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-maxvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-minvalue", - "https://www.w3.org/TR/webaudio/#ref-for-idl-float%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#dom-audioparamdescriptor-name", - "https://www.w3.org/TR/webaudio/#ref-for-idl-DOMString%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#AudioWorklet-Sequence", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorklet%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-worklet-addmodule%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#AudioWorklet-Examples", - "https://www.w3.org/TR/webaudio/#the-bitcrusher-node", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#example-06f3f4b7", - "https://www.w3.org/TR/webaudio/#example-d7261c66", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-invalidstateerror%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#vu-meter-mode", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#example-d5157576", - "https://www.w3.org/TR/webaudio/#example-55c4a817", - "https://www.w3.org/TR/webaudio/#example-2d1abf00", - "https://www.w3.org/TR/webaudio/#processing-model", - "https://www.w3.org/TR/webaudio/#processing-model-background", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A1", - "https://www.w3.org/TR/webaudio/#control-thread-and-rendering-thread", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#control-thread", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#rendering-thread", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A2%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#control-message-queue", - "https://www.w3.org/TR/webaudio/#control-message", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#queuing", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#oldest-message", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#swap", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#asynchronous-operations", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-control-message%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#rendering-loop", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#render-quantum-size", - "https://www.w3.org/TR/webaudio/#render-quantum", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextoptions-rendersizehint%E2%91%A0", - "https://www.w3.org/TR/webaudio/#atomically", - "https://www.w3.org/TR/webaudio/#ref-for-atomically%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#system-level-audio-callback", - "https://www.w3.org/TR/webaudio/#system-level-audio-callback-buffer-size", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A5", - "https://www.w3.org/TR/webaudio/#load-value", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback-buffer-size", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-load-value%E2%91%A2", - "https://www.w3.org/TR/webaudio/#audio-buffer-underrun", - "https://www.w3.org/TR/webaudio/#ref-for-load-value%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback-buffer-size%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-audio-buffer-underrun", - "https://www.w3.org/TR/webaudio/#ref-for-system-level-audio-callback%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-load-value%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A3%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A7", - "https://www.w3.org/TR/webaudio/#baseaudiocontext-associated-task-queue", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-baseaudiocontext-associated-task-queue", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#rendering-initialization", - "https://www.w3.org/TR/webaudio/#dom-baseaudiocontext-current-frame-slot", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A5", - "https://www.w3.org/TR/webaudio/#rendering-a-graph", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-atomically%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-swap", - "https://www.w3.org/TR/webaudio/#ref-for-control-message-queue%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-oldest-message", - "https://www.w3.org/TR/webaudio/#ref-for-oldest-message%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-baseaudiocontext-associated-task-queue%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-baseaudiocontext-associated-task-queue%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-delaywriter%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-delayreader%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-mute", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A7%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-visit", - "https://www.w3.org/TR/webaudio/#visit", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-visit%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-visit%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A5%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A0", - "https://www.w3.org/TR/webaudio/#input-audioparam-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-current-value-slot%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A0%E2%91%A8%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%93%AA", - "https://www.w3.org/TR/webaudio/#input-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-source-node%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-computing-a-block-of-audio", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletProcessor%E2%91%A3%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-prepare-to-run-script", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-prepare-to-run-a-callback", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-inputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-parameters%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-computing-a-block-of-audio%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocesscallback-outputs%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-idl-promise%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletGlobalScope%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-active-source%E2%91%A0", - "https://www.w3.org/TR/webaudio/#audio-worklet-render-return", - "https://www.w3.org/TR/webaudio/#ref-for-clean-up-after-running-a-callback", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-clean-up-after-running-script", - "https://www.w3.org/TR/webaudio/#ref-for-current-settings-object%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioworkletprocessor-callable-process-slot%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-active-source%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-task%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-control-thread%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audioworkletnode-processorerror%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-errorevent%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-destination-node", - "https://www.w3.org/TR/webaudio/#ref-for-recording-the-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-processing-an-input-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-input-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-available-for-reading%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-atomically%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-current-frame-slot%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-render-quantum-size%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-currenttime%E2%91%A3%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-current-frame-slot%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-samplerate%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-perform-a-microtask-checkpoint", - "https://www.w3.org/TR/webaudio/#mute", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A5", - "https://www.w3.org/TR/webaudio/#available-for-reading", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%93%AA%E2%91%A8", - "https://www.w3.org/TR/webaudio/#recording-the-input", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#computing-a-block-of-audio", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-render-quantum-size-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#processing-an-input-buffer", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-input-buffer%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#error-handling-on-a-running-audio-context", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A3%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-rendering-thread%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-releasing%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiocontext-error%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-suspended-by-user-slot%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-control-thread-state-slot%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-state%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontextstate-suspended%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-baseaudiocontext-statechange%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-rendering-thread-state-slot%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-queue-a-media-element-task%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-concept-event-fire%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-eventdef-audiocontext-error%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A0", - "https://www.w3.org/TR/webaudio/#unloading-a-document", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-pending-promises-slot%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-baseaudiocontext-decoding-thread%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-queuing%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-close%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OfflineAudioContext%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#DynamicLifetime", - "https://www.w3.org/TR/webaudio/#dynamic-lifetime-background", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#dynamic-lifetime-example", - "https://www.w3.org/TR/webaudio/#example-9dbf5ad3", - "https://www.w3.org/TR/webaudio/#channel-up-mixing-and-down-mixing", - "https://www.w3.org/TR/webaudio/#mixing-rules", - "https://www.w3.org/TR/webaudio/#ref-for-mixing-rules", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#up-mixing", - "https://www.w3.org/TR/webaudio/#down-mixing", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-up-mixing", - "https://www.w3.org/TR/webaudio/#ref-for-down-mixing", - "https://www.w3.org/TR/webaudio/#ref-for-computednumberofchannels%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-channelinterpretation%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-up-mixing%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-down-mixing%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ChannelLayouts", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audionode-channelinterpretation%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-channelinterpretation-speakers%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-up-mixing%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-down-mixing%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ChannelOrdering", - "https://www.w3.org/TR/webaudio/#channels-tail-time", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-tail-time%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#UpMix-sub", - "https://www.w3.org/TR/webaudio/#down-mix", - "https://www.w3.org/TR/webaudio/#ChannelRules-section", - "https://www.w3.org/TR/webaudio/#example-c5d47e05", - "https://www.w3.org/TR/webaudio/#audio-signal-values", - "https://www.w3.org/TR/webaudio/#audio-sample-format", - "https://www.w3.org/TR/webaudio/#linear-pcm", - "https://www.w3.org/TR/webaudio/#ref-for-idl-Float32Array%E2%91%A3%E2%91%A1", - "https://www.w3.org/TR/webaudio/#audio-values-rendering", - "https://www.w3.org/TR/webaudio/#Spatialization", - "https://www.w3.org/TR/webaudio/#Spatialization-background", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-BaseAudioContext%E2%91%A0%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-forward%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-audiolistener-up%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#azimuth-elevation", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-k-rate%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#Spatialization-panning-algorithm", - "https://www.w3.org/TR/webaudio/#Spatialization-equal-power-panning", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-panningmodel%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-panningmodeltype-equalpower%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-automationrate%E2%91%A3%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioListener%E2%91%A1%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-dom-automationrate-a-rate%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-a-rate%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#Spatialization-hrtf-panning", - "https://www.w3.org/TR/webaudio/#stereopanner-algorithm", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-computedvalue%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-stereopannernode%E2%91%A0%E2%91%A3", - "https://www.w3.org/TR/webaudio/#Spatialization-distance-effects", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-distancemodel%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-distancemodel%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-enumdef-distancemodeltype%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#Spatialization-sound-cones", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneinnerangle%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-pannernode-coneouterangle%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-PannerNode%E2%91%A2%E2%91%A0", - "https://www.w3.org/TR/webaudio/#Performance", - "https://www.w3.org/TR/webaudio/#latency", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioProcessingEvent%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-AudioWorkletNode%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-DelayNode%E2%91%A2%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-BiquadFilterNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-IIRFilterNode%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-ConvolverNode%E2%91%A1%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioSourceNode%E2%91%A0%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamTrackAudioSourceNode%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-MediaStreamAudioDestinationNode%E2%91%A0%E2%93%AA", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-WaveShaperNode%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#audio-buffer-copying", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A0%E2%91%A0", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A0%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBufferSourceNode%E2%91%A2%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiobuffer-getchanneldata%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-idl-ArrayBuffer%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-acquire-the-content%E2%91%A0%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-AudioBuffer%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#audioparam-transitions", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-value%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-AudioParam%E2%91%A0%E2%91%A6%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audioparam-settargetattime%E2%91%A3", - "https://www.w3.org/TR/webaudio/#audio-glitching", - "https://www.w3.org/TR/webaudio/#priv-sec", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices-getusermedia%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-AudioNode%E2%91%A1%E2%91%A1%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AnalyserNode%E2%91%A0%E2%91%A5", - "https://www.w3.org/TR/webaudio/#ref-for-ScriptProcessorNode%E2%91%A0%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-DynamicsCompressorNode%E2%91%A1%E2%91%A2", - "https://www.w3.org/TR/webaudio/#ref-for-OscillatorNode%E2%91%A0%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-getoutputtimestamp%E2%91%A4", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-baselatency%E2%91%A1", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiocontext-outputlatency%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A6", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A7", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices", - "https://www.w3.org/TR/webaudio/#ref-for-AudioContext%E2%91%A0%E2%91%A4%E2%91%A8", - "https://www.w3.org/TR/webaudio/#ref-for-dom-audiodestinationnode-maxchannelcount%E2%91%A3", - "https://www.w3.org/TR/webaudio/#ref-for-dom-mediadevices-getusermedia%E2%91%A2", - "https://www.w3.org/TR/webaudio/#requirements", - "https://www.w3.org/TR/webaudio/#common-definitions", - "https://www.w3.org/TR/webaudio/#changes", - "https://www.w3.org/TR/webaudio/#acks", - "https://www.w3.org/TR/webaudio/#w3c-conformance", - "https://www.w3.org/TR/webaudio/#w3c-conventions", - "https://www.w3.org/TR/webaudio/#w3c-example", - "https://www.w3.org/TR/webaudio/#w3c-conformant-algorithms", - "https://www.w3.org/TR/webaudio/#index", - "https://www.w3.org/TR/webaudio/#index-defined-here", - "https://www.w3.org/TR/webaudio/#index-defined-elsewhere", - "https://www.w3.org/TR/webaudio/#321b1ad4", - "https://www.w3.org/TR/webaudio/#129bdae8", - "https://www.w3.org/TR/webaudio/#44a7708c", - "https://www.w3.org/TR/webaudio/#2bc0cdf4", - "https://www.w3.org/TR/webaudio/#5fd23811", - "https://www.w3.org/TR/webaudio/#acb50c28", - "https://www.w3.org/TR/webaudio/#2a9f2069", - "https://www.w3.org/TR/webaudio/#ccfe986b", - "https://www.w3.org/TR/webaudio/#f0951476", - "https://www.w3.org/TR/webaudio/#1076ec40", - "https://www.w3.org/TR/webaudio/#02fb8691", - "https://www.w3.org/TR/webaudio/#df16744f", - "https://www.w3.org/TR/webaudio/#0800bdf4", - "https://www.w3.org/TR/webaudio/#89786baf", - "https://www.w3.org/TR/webaudio/#9da834a1", - "https://www.w3.org/TR/webaudio/#2879c404", - "https://www.w3.org/TR/webaudio/#0c9b0d3c", - "https://www.w3.org/TR/webaudio/#eec46e27", - "https://www.w3.org/TR/webaudio/#3349d69f", - "https://www.w3.org/TR/webaudio/#2c82d279", - "https://www.w3.org/TR/webaudio/#d5ac3b38", - "https://www.w3.org/TR/webaudio/#b6a1ae3f", - "https://www.w3.org/TR/webaudio/#dff7b498", - "https://www.w3.org/TR/webaudio/#12b8dfc0", - "https://www.w3.org/TR/webaudio/#6a5a59a0", - "https://www.w3.org/TR/webaudio/#0e3ba9f8", - "https://www.w3.org/TR/webaudio/#8603b31a", - "https://www.w3.org/TR/webaudio/#6aa169c3", - "https://www.w3.org/TR/webaudio/#7a048f5b", - "https://www.w3.org/TR/webaudio/#b5c3b552", - "https://www.w3.org/TR/webaudio/#c2359c09", - "https://www.w3.org/TR/webaudio/#8abbe523", - "https://www.w3.org/TR/webaudio/#9a517a7d", - "https://www.w3.org/TR/webaudio/#e99bd18e", - "https://www.w3.org/TR/webaudio/#ca96a59c", - "https://www.w3.org/TR/webaudio/#d2f99df9", - "https://www.w3.org/TR/webaudio/#aa7bbf63", - "https://www.w3.org/TR/webaudio/#93252241", - "https://www.w3.org/TR/webaudio/#3b8ce5a6", - "https://www.w3.org/TR/webaudio/#59912c93", - "https://www.w3.org/TR/webaudio/#1243a891", - "https://www.w3.org/TR/webaudio/#c88f3887", - "https://www.w3.org/TR/webaudio/#84b454ff", - "https://www.w3.org/TR/webaudio/#984221ca", - "https://www.w3.org/TR/webaudio/#b2a4c232", - "https://www.w3.org/TR/webaudio/#5e59c46d", - "https://www.w3.org/TR/webaudio/#dda39259", - "https://www.w3.org/TR/webaudio/#bf1ce648", - "https://www.w3.org/TR/webaudio/#2f8afbfe", - "https://www.w3.org/TR/webaudio/#dca2de17", - "https://www.w3.org/TR/webaudio/#8855a9aa", - "https://www.w3.org/TR/webaudio/#d54f5897", - "https://www.w3.org/TR/webaudio/#9befea0b", - "https://www.w3.org/TR/webaudio/#889e932f", - "https://www.w3.org/TR/webaudio/#0a296dfe", - "https://www.w3.org/TR/webaudio/#dcf5fafa", - "https://www.w3.org/TR/webaudio/#7fb6fbc6", - "https://www.w3.org/TR/webaudio/#c9dac9f9", - "https://www.w3.org/TR/webaudio/#37afd48d", - "https://www.w3.org/TR/webaudio/#797018a7", - "https://www.w3.org/TR/webaudio/#ba556545", - "https://www.w3.org/TR/webaudio/#9eda9b58", - "https://www.w3.org/TR/webaudio/#3182eb71", - "https://www.w3.org/TR/webaudio/#bdbd19d1", - "https://www.w3.org/TR/webaudio/#ec878a66", - "https://www.w3.org/TR/webaudio/#a5c91173", - "https://www.w3.org/TR/webaudio/#b75bb3bd", - "https://www.w3.org/TR/webaudio/#82ca3efc", - "https://www.w3.org/TR/webaudio/#95d7775a", - "https://www.w3.org/TR/webaudio/#81dd847b", - "https://www.w3.org/TR/webaudio/#d0b4a948", - "https://www.w3.org/TR/webaudio/#5372cca8", - "https://www.w3.org/TR/webaudio/#495737df", - "https://www.w3.org/TR/webaudio/#6aefdf11", - "https://www.w3.org/TR/webaudio/#1fc2b625", - "https://www.w3.org/TR/webaudio/#1003edc0", - "https://www.w3.org/TR/webaudio/#e97b1447", - "https://www.w3.org/TR/webaudio/#8c800cdf", - "https://www.w3.org/TR/webaudio/#eec1be2d", - "https://www.w3.org/TR/webaudio/#92d13070", - "https://www.w3.org/TR/webaudio/#f8de33a3", - "https://www.w3.org/TR/webaudio/#efd1ec5d", - "https://www.w3.org/TR/webaudio/#7787d359", - "https://www.w3.org/TR/webaudio/#9cce47fd", - "https://www.w3.org/TR/webaudio/#4013a022", - "https://www.w3.org/TR/webaudio/#5f90bbfb", - "https://www.w3.org/TR/webaudio/#e97a9688", - "https://www.w3.org/TR/webaudio/#f14b47b8", - "https://www.w3.org/TR/webaudio/#f3fd9d04", - "https://www.w3.org/TR/webaudio/#references", - "https://www.w3.org/TR/webaudio/#normative", - "https://www.w3.org/TR/webaudio/#biblio-dom", - "https://www.w3.org/TR/webaudio/#biblio-ecmascript", - "https://www.w3.org/TR/webaudio/#biblio-fetch", - "https://www.w3.org/TR/webaudio/#biblio-hr-time-3", - "https://www.w3.org/TR/webaudio/#biblio-html", - "https://www.w3.org/TR/webaudio/#biblio-infra", - "https://www.w3.org/TR/webaudio/#biblio-mediacapture-streams", - "https://www.w3.org/TR/webaudio/#biblio-mimesniff", - "https://www.w3.org/TR/webaudio/#biblio-rfc2119", - "https://www.w3.org/TR/webaudio/#biblio-security-privacy-questionnaire", - "https://www.w3.org/TR/webaudio/#biblio-webidl", - "https://www.w3.org/TR/webaudio/#biblio-webrtc", - "https://www.w3.org/TR/webaudio/#informative", - "https://www.w3.org/TR/webaudio/#biblio-2dcontext", - "https://www.w3.org/TR/webaudio/#biblio-mediastream-recording", - "https://www.w3.org/TR/webaudio/#biblio-webaudio-usecases", - "https://www.w3.org/TR/webaudio/#biblio-webcodecs", - "https://www.w3.org/TR/webaudio/#biblio-webgl", - "https://www.w3.org/TR/webaudio/#biblio-xhr", - "https://www.w3.org/TR/webaudio/#idl-index", - "https://www.w3.org/TR/webaudio/#mathjax", - "https://www.w3.org/TR/webaudio/#MathJax_Font_Test" - ] -} \ No newline at end of file diff --git a/tr/links/webaudio.json b/tr/links/webaudio.json deleted file mode 100644 index 2e709be20d1e..000000000000 --- a/tr/links/webaudio.json +++ /dev/null @@ -1,523 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" - }, - "links": { - "rawlinks": { - "https://audiofingerprint.openwpm.com/": {}, - "https://datatracker.ietf.org/doc/html/rfc2119": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/AnalyserNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/fftSize": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/frequencyBinCount": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getByteFrequencyData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getByteTimeDomainData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatFrequencyData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/getFloatTimeDomainData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/maxDecibels": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/minDecibels": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/smoothingTimeConstant": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/AudioBuffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/copyFromChannel": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/copyToChannel": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/duration": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/getChannelData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/length": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/numberOfChannels": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBuffer/sampleRate": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/AudioBufferSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/buffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/detune": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/loop": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/loopEnd": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/loopStart": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/playbackRate": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/start": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/AudioContext": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/baseLatency": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/close": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaElementSource": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaStreamDestination": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaStreamSource": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createMediaStreamTrackSource": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/getOutputTimestamp": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/outputLatency": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/resume": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/setSinkId": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/sinkId": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/sinkchange_event": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/suspend": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode/maxChannelCount": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/forwardX": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/forwardY": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/forwardZ": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/positionX": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/positionY": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/positionZ": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/upX": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/upY": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioListener/upZ": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/channelCount": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/channelCountMode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/channelInterpretation": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/connect": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/context": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/disconnect": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/numberOfInputs": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/numberOfOutputs": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/cancelAndHoldAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/cancelScheduledValues": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/defaultValue": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/exponentialRampToValueAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/linearRampToValueAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/maxValue": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/minValue": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setTargetAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setValueAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setValueCurveAtTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/value": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioParamMap": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/ended_event": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/start": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioScheduledSourceNode/stop": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioSinkInfo": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioSinkInfo/type": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorklet": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/currentFrame": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/currentTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/registerProcessor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletGlobalScope/sampleRate": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/AudioWorkletNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/parameters": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/port": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletNode/processorerror_event": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor/AudioWorkletProcessor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor/port": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/audioWorklet": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createAnalyser": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createBiquadFilter": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createBuffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createBufferSource": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createChannelMerger": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createChannelSplitter": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createConstantSource": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createConvolver": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createDelay": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createDynamicsCompressor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createGain": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createIIRFilter": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createOscillator": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createPanner": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createPeriodicWave": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createStereoPanner": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/createWaveShaper": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/currentTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/decodeAudioData": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/destination": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/listener": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/sampleRate": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/state": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BaseAudioContext/statechange_event": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/BiquadFilterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/Q": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/detune": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/frequency": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/gain": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/getFrequencyResponse": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode/type": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ChannelMergerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ChannelMergerNode/ChannelMergerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ChannelSplitterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ChannelSplitterNode/ChannelSplitterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConstantSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConstantSourceNode/ConstantSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConstantSourceNode/offset": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConvolverNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConvolverNode/ConvolverNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConvolverNode/buffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/ConvolverNode/normalize": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DelayNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DelayNode/DelayNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DelayNode/delayTime": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/DynamicsCompressorNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/attack": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/knee": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/ratio": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/reduction": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/release": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/DynamicsCompressorNode/threshold": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/GainNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/GainNode/GainNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/GainNode/gain": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/IIRFilterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/IIRFilterNode/IIRFilterNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/IIRFilterNode/getFrequencyResponse": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaElementAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaElementAudioSourceNode/MediaElementAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaElementAudioSourceNode/mediaElement": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/stream": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode/MediaStreamAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioSourceNode/mediaStream": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackAudioSourceNode/MediaStreamTrackAudioSourceNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioCompletionEvent": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioCompletionEvent/OfflineAudioCompletionEvent": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioCompletionEvent/renderedBuffer": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/OfflineAudioContext": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/complete_event": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/length": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/resume": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/startRendering": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/suspend": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode/OscillatorNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode/detune": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode/frequency": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode/setPeriodicWave": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/OscillatorNode/type": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/PannerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/coneInnerAngle": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/coneOuterAngle": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/coneOuterGain": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/distanceModel": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/maxDistance": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/orientationX": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/orientationY": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/orientationZ": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/panningModel": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/positionX": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/positionY": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/positionZ": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/refDistance": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/rolloffFactor": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PeriodicWave": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/PeriodicWave/PeriodicWave": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/StereoPannerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/StereoPannerNode/StereoPannerNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/StereoPannerNode/pan": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode/WaveShaperNode": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode/curve": {}, - "https://developer.mozilla.org/en-US/docs/Web/API/WaveShaperNode/oversample": {}, - "https://dom.spec.whatwg.org/": {}, - "https://en.wikipedia.org/wiki/Aliasing": {}, - "https://en.wikipedia.org/wiki/All-pass_filter": { - "anchors": [ - "Digital_implementation" - ] - }, - "https://en.wikipedia.org/wiki/Band-pass_filter": {}, - "https://en.wikipedia.org/wiki/Band-stop_filter": {}, - "https://en.wikipedia.org/wiki/Cent_(music)": {}, - "https://en.wikipedia.org/wiki/Group_delay": {}, - "https://en.wikipedia.org/wiki/Head-related_transfer_function": {}, - "https://en.wikipedia.org/wiki/High-pass_filter": {}, - "https://en.wikipedia.org/wiki/Infinite_impulse_response": {}, - "https://en.wikipedia.org/wiki/Low-pass_filter": {}, - "https://en.wikipedia.org/wiki/Q_factor": {}, - "https://fetch.spec.whatwg.org/": { - "anchors": [ - "fetching" - ] - }, - "https://github.com/WebAudio/web-audio-api/issues/new": {}, - "https://html.spec.whatwg.org/": { - "anchors": [ - "cors-cross-origin", - "unloading-document-cleanup-steps" - ] - }, - "https://html.spec.whatwg.org/multipage/": {}, - "https://html.spec.whatwg.org/multipage/browsers.html": { - "anchors": [ - "origin" - ] - }, - "https://html.spec.whatwg.org/multipage/infrastructure.html": { - "anchors": [ - "in-parallel" - ] - }, - "https://html.spec.whatwg.org/multipage/media.html": { - "anchors": [ - "media-element-event-task-source", - "queue-a-media-element-task" - ] - }, - "https://html.spec.whatwg.org/multipage/web-messaging.html": { - "anchors": [ - "ports-and-garbage-collection" - ] - }, - "https://html.spec.whatwg.org/multipage/webappapis.html": { - "anchors": [ - "task-queue" - ] - }, - "https://infra.spec.whatwg.org/": {}, - "https://lists.w3.org/Archives/Public/public-audio/": {}, - "https://mimesniff.spec.whatwg.org/": { - "anchors": [ - "matching-an-audio-or-video-type-pattern" - ] - }, - "https://murdoch.is/talks/eurobsdcon07hotornot.pdf": {}, - "https://openal.org/": {}, - "https://padenot.github.io/web-audio-perf/": { - "anchors": [ - "latency" - ] - }, - "https://pdfs.semanticscholar.org/cfd2/6a17234696593919df3f880a235d6ac5871d.pdf": {}, - "https://tc39.es/ecma262": { - "anchors": [ - "sec-isconstructor", - "sec-get-o-p", - "sec-ecmascript-data-types-and-values" - ] - }, - "https://tc39.es/ecma262/": { - "anchors": [ - "sec-setintegritylevel", - "sec-returnifabrupt-shorthands", - "sec-iscallable", - "sec-throwcompletion", - "sec-native-error-types-used-in-this-standard-typeerror", - "sec-completion-record-specification-type" - ] - }, - "https://tc39.es/ecma262/multipage/": {}, - "https://tc39.github.io/ecma262/": { - "anchors": [ - "sec-createbytedatablock", - "sec-get-o-p", - "sec-completion-record-specification-type", - "sec-call", - "sec-toboolean" - ] - }, - "https://webaudio.github.io/Audio-EQ-Cookbook/audio-eq-cookbook.html": {}, - "https://webidl.spec.whatwg.org/": { - "anchors": [ - "es-to-sequence", - "dictionary-to-es", - "web-idl-arguments-list", - "web-idl-arguments-list-converting" - ] - }, - "https://www.khronos.org/registry/webgl/specs/latest/2.0/": {}, - "https://www.w3.org/2011/audio/": {}, - "https://www.w3.org/TR/": {}, - "https://www.w3.org/TR/2dcontext/": {}, - "https://www.w3.org/TR/hr-time-3/": { - "anchors": [ - "sec-privacy" - ] - }, - "https://www.w3.org/TR/mediacapture-fromelement/": { - "anchors": [ - "dom-htmlmediaelement-capturestream" - ] - }, - "https://www.w3.org/TR/mediacapture-streams/": { - "anchors": [ - "media-track-supported-constraints" - ] - }, - "https://www.w3.org/TR/mediastream-recording/": {}, - "https://www.w3.org/TR/security-privacy-questionnaire/": { - "anchors": [ - "questions" - ] - }, - "https://www.w3.org/TR/webaudio-usecases/": {}, - "https://www.w3.org/TR/webcodecs/": {}, - "https://www.w3.org/TR/webrtc/": {}, - "https://www.w3.org/groups/wg/audio": {}, - "https://www.w3.org/groups/wg/audio/ipr": {}, - "https://www.w3.org/policies/patent-policy/": { - "anchors": [ - "def-essential", - "sec-Disclosure" - ] - }, - "https://www.w3.org/policies/process/20231103/": { - "anchors": [ - "recs-and-notes" - ] - }, - "https://xhr.spec.whatwg.org/": {} - }, - "autolinks": { - "https://dom.spec.whatwg.org/": { - "anchors": [ - "eventtarget", - "event", - "concept-event-fire", - "dictdef-eventinit" - ] - }, - "https://html.spec.whatwg.org/multipage/document-sequences.html": { - "anchors": [ - "fully-active" - ] - }, - "https://html.spec.whatwg.org/multipage/indices.html": { - "anchors": [ - "event-close" - ] - }, - "https://html.spec.whatwg.org/multipage/interaction.html": { - "anchors": [ - "sticky-activation" - ] - }, - "https://html.spec.whatwg.org/multipage/media.html": { - "anchors": [ - "audio", - "video", - "htmlmediaelement", - "queue-a-media-element-task" - ] - }, - "https://html.spec.whatwg.org/multipage/nav-history-apis.html": { - "anchors": [ - "concept-document-window" - ] - }, - "https://html.spec.whatwg.org/multipage/structured-data.html": { - "anchors": [ - "structuredserializewithtransfer", - "structureddeserialize", - "structuredserialize" - ] - }, - "https://html.spec.whatwg.org/multipage/web-messaging.html": { - "anchors": [ - "messagechannel", - "dom-messagechannel-port1", - "dom-messagechannel-port2", - "messageport" - ] - }, - "https://html.spec.whatwg.org/multipage/webappapis.html": { - "anchors": [ - "eventhandler", - "event-handlers", - "concept-relevant-global", - "current-settings-object", - "queue-a-task", - "errorevent", - "prepare-to-run-script", - "prepare-to-run-a-callback", - "clean-up-after-running-a-callback", - "clean-up-after-running-script", - "perform-a-microtask-checkpoint" - ] - }, - "https://html.spec.whatwg.org/multipage/worklets.html": { - "anchors": [ - "worklet", - "worklet-global-scope-type", - "worklet-destination-type", - "dom-worklet-addmodule", - "terminate-a-worklet-global-scope", - "workletglobalscope" - ] - }, - "https://infra.spec.whatwg.org/": { - "anchors": [ - "map-exists", - "code-unit", - "struct", - "struct-item", - "ordered-map" - ] - }, - "https://tc39.github.io/ecma262/": { - "anchors": [ - "sec-data-blocks" - ] - }, - "https://webidl.spec.whatwg.org/": { - "anchors": [ - "idl-undefined", - "idl-DOMException", - "Exposed", - "idl-float", - "idl-double", - "idl-unsigned-long", - "SameObject", - "SecureContext", - "idl-sequence", - "idl-promise", - "idl-ArrayBuffer", - "notsupportederror", - "indexsizeerror", - "invalidstateerror", - "this", - "a-promise-rejected-with", - "buffersource-detached", - "dfn-detach", - "datacloneerror", - "encodingerror", - "idl-DOMString", - "invalidaccesserror", - "notallowederror", - "notfounderror", - "idl-Float32Array", - "unknownerror", - "arraybufferview-write", - "dfn-get-buffer-source-copy", - "exceptiondef-rangeerror", - "idl-Uint8Array", - "buffersource-byte-length", - "idl-boolean", - "dfn-conforming-implementation", - "idl-long", - "idl-object", - "Global", - "idl-unsigned-long-long", - "exceptiondef-typeerror", - "construct-a-callback-function", - "idl-record", - "idl-frozen-array" - ] - }, - "https://www.w3.org/TR/hr-time-3/": { - "anchors": [ - "dom-domhighrestimestamp" - ] - }, - "https://www.w3.org/TR/mediacapture-streams/": { - "anchors": [ - "dom-mediadevices-getusermedia", - "dom-mediastream", - "dom-mediastreamtrack", - "dom-mediadevices-enumeratedevices", - "dom-mediadevices" - ] - } - } - } -} \ No newline at end of file diff --git a/tr/refs/webaudio.json b/tr/refs/webaudio.json deleted file mode 100644 index a49dd91baf82..000000000000 --- a/tr/refs/webaudio.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "spec": { - "title": "Web Audio API 1.1", - "url": "https://www.w3.org/TR/webaudio/" - }, - "refs": { - "normative": [ - { - "name": "DOM", - "url": "https://dom.spec.whatwg.org/" - }, - { - "name": "ECMASCRIPT", - "url": "https://tc39.es/ecma262/multipage/" - }, - { - "name": "FETCH", - "url": "https://fetch.spec.whatwg.org/" - }, - { - "name": "HR-TIME-3", - "url": "https://www.w3.org/TR/hr-time-3/" - }, - { - "name": "HTML", - "url": "https://html.spec.whatwg.org/multipage/" - }, - { - "name": "INFRA", - "url": "https://infra.spec.whatwg.org/" - }, - { - "name": "MEDIACAPTURE-STREAMS", - "url": "https://www.w3.org/TR/mediacapture-streams/" - }, - { - "name": "MIMESNIFF", - "url": "https://mimesniff.spec.whatwg.org/" - }, - { - "name": "RFC2119", - "url": "https://datatracker.ietf.org/doc/html/rfc2119" - }, - { - "name": "SECURITY-PRIVACY-QUESTIONNAIRE", - "url": "https://www.w3.org/TR/security-privacy-questionnaire/" - }, - { - "name": "WEBIDL", - "url": "https://webidl.spec.whatwg.org/" - }, - { - "name": "WEBRTC", - "url": "https://www.w3.org/TR/webrtc/" - } - ], - "informative": [ - { - "name": "2DCONTEXT", - "url": "https://www.w3.org/TR/2dcontext/" - }, - { - "name": "MEDIASTREAM-RECORDING", - "url": "https://www.w3.org/TR/mediastream-recording/" - }, - { - "name": "WEBAUDIO-USECASES", - "url": "https://www.w3.org/TR/webaudio-usecases/" - }, - { - "name": "WEBCODECS", - "url": "https://www.w3.org/TR/webcodecs/" - }, - { - "name": "WEBGL", - "url": "https://www.khronos.org/registry/webgl/specs/latest/2.0/" - }, - { - "name": "XHR", - "url": "https://xhr.spec.whatwg.org/" - } - ] - } -} \ No newline at end of fileif ( pan<= 0 ) { \n outputL= inputL+ inputR* gainL; \n outputR= inputR* gainR; \n} else { \n outputL= inputL* gainL; \n outputR= inputR+ inputL* gainR; \n} \n