Insignificant whitespace changes from #44.

Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
Jeffrey Han 2015-03-11 00:37:57 -04:00
parent 4fc27eb0d0
commit 65c50771ac

View File

@ -41,7 +41,6 @@ import org.lwjgl.openal.OpenALException;
import org.newdawn.slick.util.Log;
import org.newdawn.slick.util.ResourceLoader;
/**
* A generic tool to work on a supplied stream, pulling out PCM data and buffered it to OpenAL
* as required.
@ -98,20 +97,18 @@ public class OpenALStreamPlayer {
/** The music length. */
long musicLength = -1;
/** The assumed time of when the music position would be 0 */
/** The assumed time of when the music position would be 0. */
long syncStartTime;
/** The last value that was returned the music position */
/** The last value that was returned for the music position. */
float lastUpdatePosition = 0;
/** The average difference between the sync time and the music position */
/** The average difference between the sync time and the music position. */
float avgDiff;
/** The time when it was paused */
/** The time when the music was paused. */
long pauseTime;
/**
* Create a new player to work on an audio stream
*
@ -424,6 +421,7 @@ public class OpenALStreamPlayer {
return dxTime / 1000f;
}
/**
* Processes a track pause.
*/