diff options
author | Holger Zickner <[email protected]> | 2004-07-08 20:56:55 +0000 |
---|---|---|
committer | Holger Zickner <[email protected]> | 2004-07-08 20:56:55 +0000 |
commit | 6b36f9e0380b7c80aecdc78ef07a0cf473712416 (patch) | |
tree | 4a378b960321b3b7b07ef2effac295d0dd589eab /src/jake2/sound/soundinfo_t.java | |
parent | 252832999fa43bce63ca4b643fab5d9dd51fccc4 (diff) |
import of Jake2 version v_0_9
Diffstat (limited to 'src/jake2/sound/soundinfo_t.java')
-rw-r--r-- | src/jake2/sound/soundinfo_t.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/jake2/sound/soundinfo_t.java b/src/jake2/sound/soundinfo_t.java new file mode 100644 index 0000000..2c9e6c6 --- /dev/null +++ b/src/jake2/sound/soundinfo_t.java @@ -0,0 +1,19 @@ +/* + * soundinfo_t.java + * Copyright (C) 2004 + * + * $Id: soundinfo_t.java,v 1.1 2004-07-08 20:56:49 hzi Exp $ + */ +package jake2.sound; + +/** + * soundinfo_t + */ +public class soundinfo_t { + int channels; + int samples; // mono samples in buffer + int submission_chunk; // don't mix less than this # + int samplepos; // in mono samples + int samplebits; + int speed; +} |