| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, 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 get fftSize(); | |
| 10 | |
| 11 void set fftSize(int value); | |
| 12 | |
| 13 int get frequencyBinCount(); | |
| 14 | |
| 15 num get maxDecibels(); | |
| 16 | |
| 17 void set maxDecibels(num value); | |
| 18 | |
| 19 num get minDecibels(); | |
| 20 | |
| 21 void set minDecibels(num value); | |
| 22 | |
| 23 num get smoothingTimeConstant(); | |
| 24 | |
| 25 void set smoothingTimeConstant(num value); | |
| 26 | |
| 27 void getByteFrequencyData(Uint8Array array); | |
| 28 | |
| 29 void getByteTimeDomainData(Uint8Array array); | |
| 30 | |
| 31 void getFloatFrequencyData(Float32Array array); | |
| 32 } | |
| OLD | NEW |