mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
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>
This commit is contained in:
25
CUETools.Codecs.Flake/PredictionType.cs
Normal file
25
CUETools.Codecs.Flake/PredictionType.cs
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user