mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
CUETools.Codecs.ALAC: split classes into separate files.
This commit is contained in:
25
CUETools.Codecs.ALAC/RiceContext.cs
Normal file
25
CUETools.Codecs.ALAC/RiceContext.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace CUETools.Codecs.ALAC
|
||||
{
|
||||
unsafe class RiceContext
|
||||
{
|
||||
public RiceContext()
|
||||
{
|
||||
rparams = new int[Alac.MAX_PARTITIONS];
|
||||
esc_bps = new int[Alac.MAX_PARTITIONS];
|
||||
}
|
||||
/// <summary>
|
||||
/// partition order
|
||||
/// </summary>
|
||||
public int porder;
|
||||
|
||||
/// <summary>
|
||||
/// Rice parameters
|
||||
/// </summary>
|
||||
public int[] rparams;
|
||||
|
||||
/// <summary>
|
||||
/// bps if using escape code
|
||||
/// </summary>
|
||||
public int[] esc_bps;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user