blob: 46ca48e7af7721b9783f64aedba9218df91ddeb5 [file] [log] [blame]
Phil Burk204a1632017-01-03 17:23:43 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Phil Burk5204d312017-05-04 17:16:13 -070017#ifndef ANDROID_AAUDIO_ISOCHRONOUS_CLOCK_MODEL_H
18#define ANDROID_AAUDIO_ISOCHRONOUS_CLOCK_MODEL_H
Phil Burk204a1632017-01-03 17:23:43 -080019
20#include <stdint.h>
Phil Burk204a1632017-01-03 17:23:43 -080021
Phil Burk5ed503c2017-02-01 09:38:15 -080022namespace aaudio {
Phil Burk204a1632017-01-03 17:23:43 -080023
24/**
25 * Model an isochronous data stream using occasional timestamps as input.
26 * This can be used to predict the position of the stream at a given time.
27 *
28 * This class is not thread safe and should only be called from one thread.
29 */
30class IsochronousClockModel {
31
32public:
33 IsochronousClockModel();
34 virtual ~IsochronousClockModel();
35
Phil Burk3316d5e2017-02-15 11:23:01 -080036 void start(int64_t nanoTime);
37 void stop(int64_t nanoTime);
Phil Burk204a1632017-01-03 17:23:43 -080038
Phil Burk377c1c22018-12-12 16:06:54 -080039 /**
40 * @return true if the model is starting up
41 */
42 bool isStarting() const;
43
44 /**
45 * @return true if the model is running and producing valid results
46 */
47 bool isRunning() const;
Phil Burkbcc36742017-08-31 17:24:51 -070048
Phil Burk3316d5e2017-02-15 11:23:01 -080049 void processTimestamp(int64_t framePosition, int64_t nanoTime);
Phil Burk204a1632017-01-03 17:23:43 -080050
51 /**
52 * @param sampleRate rate of the stream in frames per second
53 */
Phil Burk3316d5e2017-02-15 11:23:01 -080054 void setSampleRate(int32_t sampleRate);
Phil Burk204a1632017-01-03 17:23:43 -080055
Phil Burkec89b2e2017-06-20 15:05:06 -070056 void setPositionAndTime(int64_t framePosition, int64_t nanoTime);
57
Phil Burk3316d5e2017-02-15 11:23:01 -080058 int32_t getSampleRate() const {
Phil Burk204a1632017-01-03 17:23:43 -080059 return mSampleRate;
60 }
61
62 /**
63 * This must be set accurately in order to track the isochronous stream.
64 *
65 * @param framesPerBurst number of frames that stream advance at one time.
66 */
Phil Burk3316d5e2017-02-15 11:23:01 -080067 void setFramesPerBurst(int32_t framesPerBurst);
Phil Burk204a1632017-01-03 17:23:43 -080068
Phil Burk3316d5e2017-02-15 11:23:01 -080069 int32_t getFramesPerBurst() const {
Phil Burk204a1632017-01-03 17:23:43 -080070 return mFramesPerBurst;
71 }
72
73 /**
74 * Calculate an estimated time when the stream will be at that position.
75 *
76 * @param framePosition position of the stream in frames
77 * @return time in nanoseconds
78 */
Phil Burk3316d5e2017-02-15 11:23:01 -080079 int64_t convertPositionToTime(int64_t framePosition) const;
Phil Burk204a1632017-01-03 17:23:43 -080080
81 /**
82 * Calculate an estimated position where the stream will be at the specified time.
83 *
84 * @param nanoTime time of interest
85 * @return position in frames
86 */
Phil Burk3316d5e2017-02-15 11:23:01 -080087 int64_t convertTimeToPosition(int64_t nanoTime) const;
Phil Burk204a1632017-01-03 17:23:43 -080088
89 /**
90 * @param framesDelta difference in frames
91 * @return duration in nanoseconds
92 */
Phil Burk3316d5e2017-02-15 11:23:01 -080093 int64_t convertDeltaPositionToTime(int64_t framesDelta) const;
Phil Burk204a1632017-01-03 17:23:43 -080094
95 /**
96 * @param nanosDelta duration in nanoseconds
97 * @return frames that stream will advance in that time
98 */
Phil Burk3316d5e2017-02-15 11:23:01 -080099 int64_t convertDeltaTimeToPosition(int64_t nanosDelta) const;
Phil Burk204a1632017-01-03 17:23:43 -0800100
Phil Burkec89b2e2017-06-20 15:05:06 -0700101 void dump() const;
102
Phil Burk204a1632017-01-03 17:23:43 -0800103private:
104 enum clock_model_state_t {
105 STATE_STOPPED,
106 STATE_STARTING,
107 STATE_SYNCING,
108 STATE_RUNNING
109 };
110
Phil Burk3316d5e2017-02-15 11:23:01 -0800111 int64_t mMarkerFramePosition;
112 int64_t mMarkerNanoTime;
113 int32_t mSampleRate;
114 int32_t mFramesPerBurst;
115 int32_t mMaxLatenessInNanos;
116 clock_model_state_t mState;
Phil Burk204a1632017-01-03 17:23:43 -0800117
118 void update();
119};
120
Phil Burk5ed503c2017-02-01 09:38:15 -0800121} /* namespace aaudio */
Phil Burk204a1632017-01-03 17:23:43 -0800122
Phil Burk5204d312017-05-04 17:16:13 -0700123#endif //ANDROID_AAUDIO_ISOCHRONOUS_CLOCK_MODEL_H