From a0dfa2cdd8c84db4732c9ac8344c5e8d1480bc1f Mon Sep 17 00:00:00 2001 From: Gil Dobjanschi Date: Thu, 18 Nov 2010 14:54:02 -0800 Subject: AudioTrack getTimelineDuration clarification. Change-Id: I276316e851918df227b7246766916fa8572f1b89 --- media/java/android/media/videoeditor/AudioTrack.java | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'media/java') diff --git a/media/java/android/media/videoeditor/AudioTrack.java b/media/java/android/media/videoeditor/AudioTrack.java index cf7a25c..e95ef35 100755 --- a/media/java/android/media/videoeditor/AudioTrack.java +++ b/media/java/android/media/videoeditor/AudioTrack.java @@ -286,9 +286,7 @@ public class AudioTrack { } /** - * @return The timeline duration. If looping is enabled this value - * represents the duration of the looped audio track, otherwise it - * is the duration of the audio track (mDurationMs). + * @return The timeline duration as defined by the begin and end boundaries */ public long getTimelineDuration() { return mTimelineDurationMs; @@ -312,13 +310,8 @@ public class AudioTrack { mBeginBoundaryTimeMs = beginMs; mEndBoundaryTimeMs = endMs; - if (mLoop) { - // TODO: Compute mDurationMs (from the beginning of the loop until - // the end of all the loops. - mTimelineDurationMs = mEndBoundaryTimeMs - mBeginBoundaryTimeMs; - } else { - mTimelineDurationMs = mEndBoundaryTimeMs - mBeginBoundaryTimeMs; - } + + mTimelineDurationMs = mEndBoundaryTimeMs - mBeginBoundaryTimeMs; } /** -- cgit v1.1