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

com.beatofthedrum.alacdecoder.QTMovieT 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!
/*
** QTMovieT.java
**
** Copyright (c) 2011 Peter McQuillan
**
** All Rights Reserved.
**                       
** Distributed under the BSD Software License (see license.txt)  
**
*/

package com.beatofthedrum.alacdecoder;

class QTMovieT
{
	public MyStream qtstream;
	public DemuxResT res;
	public int saved_mdat_pos;

	public QTMovieT()
	{
		saved_mdat_pos = 0;
		qtstream = new MyStream();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy