mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move cuetools.net codec locally.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
namespace CUETools.Codecs.Flake
|
||||
{
|
||||
unsafe public class FlacSubframe
|
||||
{
|
||||
public FlacSubframe()
|
||||
{
|
||||
rc = new RiceContext();
|
||||
coefs = new int[lpc.MAX_LPC_ORDER];
|
||||
}
|
||||
public SubframeType type;
|
||||
public int order;
|
||||
public int* residual;
|
||||
public RiceContext rc;
|
||||
public uint size;
|
||||
|
||||
public int cbits;
|
||||
public int shift;
|
||||
public int[] coefs;
|
||||
public int window;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user