mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
26 lines
559 B
C#
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
|
|||
|
|
}
|
|||
|
|
}
|