1package org.newdawn.slick.openal; 2 3import java.nio.ByteBuffer; 4 5/** 6 * Data describing the sounds in a OGG file 7 * 8 * @author Kevin Glass 9 */ 10public class OggData { 11 /** The data that has been read from the OGG file */ 12 public ByteBuffer data; 13 /** The sampling rate */ 14 public int rate; 15 /** The number of channels in the sound file */ 16 public int channels; 17} 18 19