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:
23
CUETools.Codecs.ALAC/ALACSubframe.cs
Normal file
23
CUETools.Codecs.ALAC/ALACSubframe.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace CUETools.Codecs.ALAC
|
||||
{
|
||||
unsafe class ALACSubframe
|
||||
{
|
||||
public ALACSubframe()
|
||||
{
|
||||
rc = new RiceContext();
|
||||
coefs = new int[lpc.MAX_LPC_ORDER];
|
||||
coefs_adapted = new int[lpc.MAX_LPC_ORDER];
|
||||
}
|
||||
public int order;
|
||||
public int* residual;
|
||||
public RiceContext rc;
|
||||
public uint size;
|
||||
|
||||
public int ricemodifier;
|
||||
public int cbits;
|
||||
public int shift;
|
||||
public int[] coefs;
|
||||
public int[] coefs_adapted;
|
||||
public int window;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user