mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
17 lines
439 B
C#
17 lines
439 B
C#
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();
|
|
}
|
|
}
|
|
}
|