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/rate_shared_t.cs
Normal file
16
CUETools.DSP.Resampler/Internal/rate_shared_t.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user