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,12 @@
namespace CUETools.DSP.Resampler
{
public enum SOXResamplerQuality
{
Default = -1,
Quick = 0,
Low = 1,
Medium = 2,
High = 3,
Very = 4
}
}