mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
17 lines
351 B
C#
17 lines
351 B
C#
namespace CUETools.DSP.Resampler.Internal
|
|
{
|
|
class thread_fft_cache
|
|
{
|
|
internal int[] lsx_fft_br;
|
|
internal double[] lsx_fft_sc;
|
|
internal int fft_len;
|
|
|
|
internal thread_fft_cache()
|
|
{
|
|
fft_len = 0;
|
|
lsx_fft_br = null;
|
|
lsx_fft_sc = null;
|
|
}
|
|
}
|
|
}
|