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 rate_shared_t
{
internal double[] poly_fir_coefs;
internal dft_filter_t[] half_band = new dft_filter_t[2];
internal thread_fft_cache info;
internal rate_shared_t()
{
info = new thread_fft_cache();
half_band[0] = new dft_filter_t();
half_band[1] = new dft_filter_t();
}
}
}