Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a0dfa2cd authored by Gil Dobjanschi's avatar Gil Dobjanschi
Browse files

AudioTrack getTimelineDuration clarification.

Change-Id: I276316e851918df227b7246766916fa8572f1b89
parent 23c430ca
Loading
Loading
Loading
Loading
+3 −10
Original line number Diff line number Diff line
@@ -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,14 +310,9 @@ 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;
    }
    }

    /**
     * @return The boundary begin time