com.beatofthedrum.alacdecoder.AlacContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jald Show documentation
Show all versions of jald Show documentation
Java implementation of Apple Lossless decoder supports both 16-bit and 24-bit Apple Lossless files
The newest version!
/*
** AlacContext.java
**
** Copyright (c) 2011 Peter McQuillan
**
** All Rights Reserved.
**
** Distributed under the BSD Software License (see license.txt)
**
*/
package com.beatofthedrum.alacdecoder;
public class AlacContext
{
DemuxResT demux_res = new DemuxResT();
AlacFile alac = new AlacFile();
public AlacInputStream input_stream;
int current_sample_block = 0;
int offset;
public boolean error;
public Exception error_message = null;
//public String error_message = "";
byte[] read_buffer = new byte[1024 * 80]; // sample big enough to hold any input for a single alac frame
}