CUETools.DSP.Resampler: split classes into separate files.

This commit is contained in:
karamanolev
2011-10-24 15:45:37 +00:00
parent 7a6e2eb5aa
commit 5c3afc77be
18 changed files with 1150 additions and 1101 deletions

View 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;
}
}
}