mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 10:04:24 +00:00
12 lines
293 B
C#
12 lines
293 B
C#
namespace CUETools.DSP.Resampler
|
|
{
|
|
public struct SOXResamplerConfig
|
|
{
|
|
public double Phase;
|
|
public double Bandwidth;
|
|
public bool AllowAliasing;
|
|
public SOXResamplerQuality Quality;
|
|
/*double coef_interp; -- interpolation...*/
|
|
}
|
|
}
|