| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // WARNING: | |
| 6 // This file contains documentation that is merged into the real source. | |
| 7 // Do not make code changes here. | |
| 8 | |
| 9 /// @domName BiquadFilterNode | |
| 10 interface BiquadFilterNode extends AudioNode { | |
| 11 | |
| 12 static final int ALLPASS = 7; | |
| 13 | |
| 14 static final int BANDPASS = 2; | |
| 15 | |
| 16 static final int HIGHPASS = 1; | |
| 17 | |
| 18 static final int HIGHSHELF = 4; | |
| 19 | |
| 20 static final int LOWPASS = 0; | |
| 21 | |
| 22 static final int LOWSHELF = 3; | |
| 23 | |
| 24 static final int NOTCH = 6; | |
| 25 | |
| 26 static final int PEAKING = 5; | |
| 27 | |
| 28 /** @domName BiquadFilterNode.Q */ | |
| 29 final AudioParam Q; | |
| 30 | |
| 31 /** @domName BiquadFilterNode.frequency */ | |
| 32 final AudioParam frequency; | |
| 33 | |
| 34 /** @domName BiquadFilterNode.gain */ | |
| 35 final AudioParam gain; | |
| 36 | |
| 37 /** @domName BiquadFilterNode.type */ | |
| 38 int type; | |
| 39 | |
| 40 /** @domName BiquadFilterNode.getFrequencyResponse */ | |
| 41 void getFrequencyResponse(Float32Array frequencyHz, Float32Array magResponse,
Float32Array phaseResponse); | |
| 42 } | |
| OLD | NEW |