From 0d73e966093ecdce124cef682f12d7a8c223de29 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sat, 1 Mar 2014 16:49:15 +0100 Subject: AudioSink: Fix API doc (minor edit) --- src/jogl/classes/com/jogamp/opengl/util/av/AudioSink.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/jogl/classes/com/jogamp/opengl/util/av/AudioSink.java b/src/jogl/classes/com/jogamp/opengl/util/av/AudioSink.java index b964245ad..f4ea29084 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/av/AudioSink.java +++ b/src/jogl/classes/com/jogamp/opengl/util/av/AudioSink.java @@ -133,7 +133,7 @@ public interface AudioSink { * @param sampleCount sample count per frame and channel */ public final float getSamplesDuration(int sampleCount) { - return ( 1000f * (float) sampleCount ) / (float)sampleRate; + return ( 1000f * sampleCount ) / sampleRate; } /** @@ -152,7 +152,7 @@ public interface AudioSink { * @param frameDuration duration per frame in milliseconds. */ public final int getFrameCount(int millisecs, float frameDuration) { - return Math.max(1, (int) ( (float)millisecs / frameDuration + 0.5f )); + return Math.max(1, (int) ( millisecs / frameDuration + 0.5f )); } /** @@ -187,7 +187,7 @@ public interface AudioSink { *

* Byte Count -> Sample Count *

- * @param sampleCount sample count + * @param byteCount number of bytes */ public final int getBytesSampleCount(int byteCount) { return ( byteCount << 3 ) / sampleSize; -- cgit v1.2.3