Enum AudioEffectPitchShift.FftSizeEnum
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum AudioEffectPitchShift.FftSizeEnum : long
Fields
Max = 5
Represents the size of the AudioEffectPitchShift.FftSizeEnum enum.
Size1024 = 2
Use a buffer of 1024 samples for the Fast Fourier transform. This is a compromise between latency and stability over time.
Size2048 = 3
Use a buffer of 2048 samples for the Fast Fourier transform. High latency, but stable over time.
Size256 = 0
Use a buffer of 256 samples for the Fast Fourier transform. Lowest latency, but least stable over time.
Size4096 = 4
Use a buffer of 4096 samples for the Fast Fourier transform. Highest latency, but most stable over time.
Size512 = 1
Use a buffer of 512 samples for the Fast Fourier transform. Low latency, but less stable over time.