diff minijss/jssmix.h @ 1269:4b22da2a309f

Comments, cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 03 Jun 2015 16:17:04 +0300
parents aa3738b121d1
children d6b9410f1b1b
line wrap: on
line diff
--- a/minijss/jssmix.h	Mon Jun 01 03:34:16 2015 +0300
+++ b/minijss/jssmix.h	Wed Jun 03 16:17:04 2015 +0300
@@ -42,7 +42,7 @@
     int     chVolumeD,
             chPanningD;
 
-    int     chFreq;         // Frequency of sampel in Hz
+    int     chFreq;         // Frequency of sample in Hz
 
     void    *chData;        // Pointer to data
 
@@ -65,10 +65,11 @@
 
 struct _JSSMixer
 {
-    int             outFormat,
-                    outChannels,
-                    outFreq,
+    int             outFormat,     // Output format (see JSS_AUDIO_* in jss.h)
+                    outChannels,   // Number of output channels
+                    outFreq,       // Real output frequency
                     globalVol;
+
     JSSChannel      channels[jsetNChannels];
 
     int             addBufSize;