fft: data struct optimisation

This commit is contained in:
minjaesong
2023-11-26 17:33:29 +09:00
parent 3b38958a08
commit 1d727397b4
10 changed files with 94 additions and 131 deletions

View File

@@ -20,7 +20,7 @@ class TerrarumAudioMixerTrack(val name: String, val isMaster: Boolean = false, v
const val SAMPLING_RATE = 48000
const val SAMPLING_RATEF = 48000f
const val SAMPLING_RATED = 48000.0
const val BUFFER_SIZE = 65536 // n ms -> 384 * n
const val BUFFER_SIZE = 512*4 // n ms -> 384 * n
}
val hash = getHashStr()