Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #701: Add constructor for IIRFilterNode #866

Merged
merged 5 commits into from
Aug 2, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 31 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7320,7 +7320,9 @@ <h2>
The number of channels of the output always equals the number of
channels of the input.
</p>
<dl title="interface IIRFilterNode : AudioNode" class="idl">
<dl title=
"[Constructor(BaseAudioContext context, IIRFilterOptions options)] interface IIRFilterNode : AudioNode"
class="idl">
<dt>
void getFrequencyResponse()
</dt>
Expand Down Expand Up @@ -7356,6 +7358,34 @@ <h2>
</dl>
</dd>
</dl>
<section>
<h2>
IIRFilterOptions
</h2>
<p>
The <code>IIRFilterOptions</code> dictionary is used to specify the
filter coefficients of the <a><code>IIRFilterNode</code></a>.
</p>
<dl title="dictionary IIRFilterOptions : AudioNodeOptions"
class="idl">
<dt>
sequence&lt;double&gt; feedforward
</dt>
<dd>
The feedforward coefficients for the
<a><code>IIRFilterNode</code></a>. This member is required. If
not specifed, a NotFoundError MUST be thrown.
</dd>
<dt>
sequence&lt;double&gt; feedback
</dt>
<dd>
The feedback coefficients for the
<a><code>IIRFilterNode</code></a>. This member is required. If
not specifed, a NotFoundError MUST be thrown.
</dd>
</dl>
</section>
<section>
<h3>
Filter Definition
Expand Down