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: Do not edit - generated code. | |
6 | |
7 interface RealtimeAnalyserNode extends AudioNode { | |
8 | |
9 int fftSize; | |
10 | |
11 final int frequencyBinCount; | |
12 | |
13 num maxDecibels; | |
14 | |
15 num minDecibels; | |
16 | |
17 num smoothingTimeConstant; | |
18 | |
19 void getByteFrequencyData(Uint8Array array); | |
20 | |
21 void getByteTimeDomainData(Uint8Array array); | |
22 | |
23 void getFloatFrequencyData(Float32Array array); | |
24 } | |
OLD | NEW |