mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
CUETools.DSP.Resampler: split classes into separate files.
This commit is contained in:
16
CUETools.DSP.Resampler/Internal/thread_fft_cache.cs
Normal file
16
CUETools.DSP.Resampler/Internal/thread_fft_cache.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user