Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
epoxy
GitHub Repository: epoxy/proj11
Path: blob/master/SLICK_HOME/src/org/newdawn/slick/openal/OggData.java
1461 views
1
package org.newdawn.slick.openal;
2
3
import java.nio.ByteBuffer;
4
5
/**
6
* Data describing the sounds in a OGG file
7
*
8
* @author Kevin Glass
9
*/
10
public 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