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,25 @@
namespace CUETools.Codecs.FLAKE
{
/// <summary>
/// Type of linear prediction
/// </summary>
public enum PredictionType
{
/// <summary>
/// Verbatim
/// </summary>
None = 0,
/// <summary>
/// Fixed prediction only
/// </summary>
Fixed = 1,
/// <summary>
/// Levinson-Durbin recursion
/// </summary>
Levinson = 2,
/// <summary>
/// Exhaustive search
/// </summary>
Search = 3
}
}