blob: 76a28fc2d95fbe6383f00214a42feacc08aadffa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* wavinfo_t.java
* Copyright (C) 2004
*
* $Id: wavinfo_t.java,v 1.1 2004-07-08 20:56:49 hzi Exp $
*/
package jake2.sound;
/**
* wavinfo_t
*/
public class wavinfo_t {
public int rate;
public int width;
public int channels;
public int loopstart;
public int samples;
public int dataofs; // chunk starts this many bytes from file start
}
|