namespace CUETools.Codecs.FLAKE { /// /// Type of linear prediction /// public enum PredictionType { /// /// Verbatim /// None = 0, /// /// Fixed prediction only /// Fixed = 1, /// /// Levinson-Durbin recursion /// Levinson = 2, /// /// Exhaustive search /// Search = 3 } }