aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tv/tuner/exoplayer/ac3/AudioClock.java
blob: 600c2c88ba377e0857e2e3acb161b2ef07409555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
 * Copyright (C) 2015 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.tv.tuner.exoplayer.ac3;

import com.android.tv.common.SoftPreconditions;

import android.os.SystemClock;

/**
 * Copy of {@link com.google.android.exoplayer.MediaClock}.
 * <p>
 * A simple clock for tracking the progression of media time. The clock can be started, stopped and
 * its time can be set and retrieved. When started, this clock is based on
 * {@link SystemClock#elapsedRealtime()}.
 */
/* package */ class AudioClock {
    private boolean mStarted;

    /**
     * The media time when the clock was last set or stopped.
     */
    private long mPositionUs;

    /**
     * The difference between {@link SystemClock#elapsedRealtime()} and {@link #mPositionUs}
     * when the clock was last set or mStarted.
     */
    private long mDeltaUs;

    private float mPlaybackSpeed = 1.0f;
    private long mDeltaUpdatedTimeUs;

    /**
     * Starts the clock. Does nothing if the clock is already started.
     */
    public void start() {
        if (!mStarted) {
            mStarted = true;
            mDeltaUs = elapsedRealtimeMinus(mPositionUs);
            mDeltaUpdatedTimeUs = SystemClock.elapsedRealtime() * 1000;
        }
    }

    /**
     * Stops the clock. Does nothing if the clock is already stopped.
     */
    public void stop() {
        if (mStarted) {
            mPositionUs = elapsedRealtimeMinus(mDeltaUs);
            mStarted = false;
        }
    }

    /**
     * @param timeUs The position to set in microseconds.
     */
    public void setPositionUs(long timeUs) {
        this.mPositionUs = timeUs;
        mDeltaUs = elapsedRealtimeMinus(timeUs);
        mDeltaUpdatedTimeUs = SystemClock.elapsedRealtime() * 1000;
    }

    /**
     * @return The current position in microseconds.
     */
    public long getPositionUs() {
        if (!mStarted) {
            return mPositionUs;
        }
        if (mPlaybackSpeed != 1.0f) {
            long elapsedTimeFromPlaybackSpeedChanged = SystemClock.elapsedRealtime() * 1000
                    - mDeltaUpdatedTimeUs;
            return elapsedRealtimeMinus(mDeltaUs)
                    + (long) ((mPlaybackSpeed - 1.0f) * elapsedTimeFromPlaybackSpeedChanged);
        } else {
            return elapsedRealtimeMinus(mDeltaUs);
        }
    }

    /**
     * Sets playback speed. {@code speed} should be positive.
     */
    public void setPlaybackSpeed(float speed) {
        SoftPreconditions.checkState(speed > 0);
        mDeltaUs = elapsedRealtimeMinus(getPositionUs());
        mDeltaUpdatedTimeUs = SystemClock.elapsedRealtime() * 1000;
        mPlaybackSpeed = speed;
    }

    private long elapsedRealtimeMinus(long toSubtractUs) {
        return SystemClock.elapsedRealtime() * 1000 - toSubtractUs;
    }
}