diff options
author | Sven Gothel <[email protected]> | 2023-10-06 12:19:59 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-10-06 12:19:59 +0200 |
commit | 8376f21f2b6f25f3fc8ff2688ef49a2e9c91f966 (patch) | |
tree | 0a7117e602b3effe50d64b1f16ec110ed6e40a60 | |
parent | ba3748eb1d478d4377ea003f909c668db90a82c3 (diff) |
AudioSink/TimeFrame1: API doc: Add notes about integer stored milliseconds for PTS and duration, i.e. good for 24.855 days
-rw-r--r-- | src/java/com/jogamp/common/av/AudioSink.java | 11 | ||||
-rw-r--r-- | src/java/com/jogamp/common/av/TimeFrameI.java | 35 |
2 files changed, 39 insertions, 7 deletions
diff --git a/src/java/com/jogamp/common/av/AudioSink.java b/src/java/com/jogamp/common/av/AudioSink.java index 1b7b736..f3ed5a8 100644 --- a/src/java/com/jogamp/common/av/AudioSink.java +++ b/src/java/com/jogamp/common/av/AudioSink.java @@ -404,11 +404,22 @@ public interface AudioSink { /** * Return the current audio presentation timestamp (PTS) in milliseconds. + * <p> + * In case implementation updates the audio buffer passively, consider using {@link #updateQueue()}. + * </p> + * <p> + * The relative millisecond PTS since start of the presentation stored in integer + * covers a time span of 2'147'483'647 ms (see {@link Integer#MAX_VALUE} + * or 2'147'483 seconds or 24.855 days. + * </p> + * @see #updateQueue() + * @see #enqueueData(int, ByteBuffer, int) */ public int getPTS(); /** * Return the last buffered audio presentation timestamp (PTS) in milliseconds. + * @see #getPTS() */ public int getLastBufferedPTS(); diff --git a/src/java/com/jogamp/common/av/TimeFrameI.java b/src/java/com/jogamp/common/av/TimeFrameI.java index 400618f..90ee90e 100644 --- a/src/java/com/jogamp/common/av/TimeFrameI.java +++ b/src/java/com/jogamp/common/av/TimeFrameI.java @@ -34,7 +34,7 @@ package com.jogamp.common.av; * and characteristics of audio / video streaming and animations. * Milliseconds of type integer with a maximum value of {@link Integer#MAX_VALUE} * will allow tracking time up 2,147,483.647 seconds or - * 24 days 20 hours 31 minutes and 23 seconds. + * 24 days 20 hours 31 minutes and 23 seconds, see {@link #getPTS()} and {@link #getDuration()}. * </p> * <p> * Milliseconds granularity is also more than enough to deal with A-V synchronization, @@ -65,21 +65,42 @@ public class TimeFrameI { } /** * Create a new instance - * @param pts frame pts in milliseconds - * @param duration frame duration in milliseconds + * @param pts frame pts in milliseconds, see {@link #getPTS()} + * @param duration frame duration in milliseconds, see {@link #getDuration()} + * @see #getPTS() + * @see #getDuration() */ public TimeFrameI(final int pts, final int duration) { this.pts = pts; this.duration = duration; } - /** Get this frame's presentation timestamp (PTS) in milliseconds. */ + /** + * Returns this frame's presentation timestamp (PTS) in milliseconds. + * <p> + * The relative millisecond PTS since start of the presentation stored in integer + * covers a time span of 2'147'483'647 ms (see {@link Integer#MAX_VALUE} + * or 2'147'483 seconds or 24.855 days. + * </p> + */ public final int getPTS() { return pts; } - /** Set this frame's presentation timestamp (PTS) in milliseconds. */ + /** + * Set this frame's presentation timestamp (PTS) in milliseconds. + * @see #getPTS() + */ public final void setPTS(final int pts) { this.pts = pts; } - /** Get this frame's duration in milliseconds. */ + /** + * Get this frame's duration in milliseconds. + * <p> + * The duration stored in integer covers 2'147'483'647 ms (see {@link Integer#MAX_VALUE} + * or 2'147'483 seconds or 24.855 days. + * </p> + */ public final int getDuration() { return duration; } - /** Set this frame's duration in milliseconds. */ + /** + * Set this frame's duration in milliseconds. + * @see #getDuration() + */ public final void setDuration(final int duration) { this.duration = duration; } @Override |