| OLD | NEW |
| 1 | 1 |
| 2 class RealtimeAnalyserNodeJs extends AudioNodeJs implements RealtimeAnalyserNode
native "*RealtimeAnalyserNode" { | 2 class _RealtimeAnalyserNodeJs extends _AudioNodeJs implements RealtimeAnalyserNo
de native "*RealtimeAnalyserNode" { |
| 3 | 3 |
| 4 int get fftSize() native "return this.fftSize;"; | 4 int get fftSize() native "return this.fftSize;"; |
| 5 | 5 |
| 6 void set fftSize(int value) native "this.fftSize = value;"; | 6 void set fftSize(int value) native "this.fftSize = value;"; |
| 7 | 7 |
| 8 int get frequencyBinCount() native "return this.frequencyBinCount;"; | 8 int get frequencyBinCount() native "return this.frequencyBinCount;"; |
| 9 | 9 |
| 10 num get maxDecibels() native "return this.maxDecibels;"; | 10 num get maxDecibels() native "return this.maxDecibels;"; |
| 11 | 11 |
| 12 void set maxDecibels(num value) native "this.maxDecibels = value;"; | 12 void set maxDecibels(num value) native "this.maxDecibels = value;"; |
| 13 | 13 |
| 14 num get minDecibels() native "return this.minDecibels;"; | 14 num get minDecibels() native "return this.minDecibels;"; |
| 15 | 15 |
| 16 void set minDecibels(num value) native "this.minDecibels = value;"; | 16 void set minDecibels(num value) native "this.minDecibels = value;"; |
| 17 | 17 |
| 18 num get smoothingTimeConstant() native "return this.smoothingTimeConstant;"; | 18 num get smoothingTimeConstant() native "return this.smoothingTimeConstant;"; |
| 19 | 19 |
| 20 void set smoothingTimeConstant(num value) native "this.smoothingTimeConstant =
value;"; | 20 void set smoothingTimeConstant(num value) native "this.smoothingTimeConstant =
value;"; |
| 21 | 21 |
| 22 void getByteFrequencyData(Uint8ArrayJs array) native; | 22 void getByteFrequencyData(_Uint8ArrayJs array) native; |
| 23 | 23 |
| 24 void getByteTimeDomainData(Uint8ArrayJs array) native; | 24 void getByteTimeDomainData(_Uint8ArrayJs array) native; |
| 25 | 25 |
| 26 void getFloatFrequencyData(Float32ArrayJs array) native; | 26 void getFloatFrequencyData(_Float32ArrayJs array) native; |
| 27 } | 27 } |
| OLD | NEW |