Files
cuetools.net/CUETools.Codecs.Flake/PredictionType.cs
Natalia Portillo 422c24145c Fix case collision between FLAKE and Flake. (#52)
* Fix case collision between FLAKE and Flake.

* Keep only necessary changes of PR#52

Co-authored-by: Wolfgang Stöggl <c72578@yahoo.de>
2020-06-07 07:36:15 +02:00

26 lines
559 B
C#

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
}
}