/* * Based on TTA1-C++ library functions * Copyright (c) 2011 Aleksander Djuric. All rights reserved. * Distributed under the GNU Lesser General Public License (LGPL). * The complete text of the license can be found in the COPYING * file included in the distribution. */ package com.tulskiy.tta; /** * Author: Denis Tulskiy * Date: 5/30/11 */ public class TTA_info { public int format; // audio format public int nch; // number of channels public int bps; // bits per sample public int sps; // samplerate (sps) public int samples; // data length in samples public int bitrate; }