All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.beatofthedrum.alacdecoder.AlacContext Maven / Gradle / Ivy

Go to download

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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy