CUETools.Codecs.FLAKE: split classes into separate files.

This commit is contained in:
karamanolev
2011-10-24 11:50:45 +00:00
parent f365e6359f
commit e0f784a88a
15 changed files with 338 additions and 300 deletions

View File

@@ -0,0 +1,12 @@
namespace CUETools.Codecs.FLAKE
{
public enum WindowFunction
{
Welch = 1,
Tukey = 2,
Hann = 4,
Flattop = 8,
Bartlett = 16,
TukeyFlattop = 10
}
}