CUETools.Codecs.ALAC: split classes into separate files.

This commit is contained in:
karamanolev
2011-10-24 15:55:31 +00:00
parent 5c3afc77be
commit c7fc187b35
13 changed files with 267 additions and 240 deletions

View 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;
}
}