mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
12 lines
294 B
C#
12 lines
294 B
C#
namespace CUETools.DSP.Resampler
|
|
{
|
|
public struct SOXResamplerConfig
|
|
{
|
|
public double phase;
|
|
public double bandwidth;
|
|
public bool allow_aliasing;
|
|
public SOXResamplerQuality quality;
|
|
/*double coef_interp; -- interpolation...*/
|
|
}
|
|
}
|