liamappelbe / fftea

A simple and efficient FFT implementation for Dart
Apache License 2.0
63 stars 1 forks source link

Limit FFT size to 2^32 #18

Closed liamappelbe closed 2 years ago

liamappelbe commented 2 years ago

Also limit highestBit to 2^48. These changes ensure that the integer literals are all small enough for JS compatibility.

Fixes #17