aboutsummaryrefslogtreecommitdiffstats
path: root/src/jake2/sound/soundinfo_t.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jake2/sound/soundinfo_t.java')
-rw-r--r--src/jake2/sound/soundinfo_t.java19
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;
+}