Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 | |
Eric Laurent | cb4dae2 | 2017-07-01 19:39:32 -0700 | [diff] [blame] | 17 | #define LOG_TAG "AAudioServiceStreamShared" |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 18 | //#define LOG_NDEBUG 0 |
| 19 | #include <utils/Log.h> |
| 20 | |
Phil Burk | a5222e2 | 2017-07-28 13:31:14 -0700 | [diff] [blame] | 21 | #include <iomanip> |
| 22 | #include <iostream> |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 23 | #include <mutex> |
| 24 | |
| 25 | #include <aaudio/AAudio.h> |
| 26 | |
| 27 | #include "binding/IAAudioService.h" |
| 28 | |
| 29 | #include "binding/AAudioServiceMessage.h" |
| 30 | #include "AAudioServiceStreamBase.h" |
| 31 | #include "AAudioServiceStreamShared.h" |
| 32 | #include "AAudioEndpointManager.h" |
| 33 | #include "AAudioService.h" |
| 34 | #include "AAudioServiceEndpoint.h" |
| 35 | |
| 36 | using namespace android; |
| 37 | using namespace aaudio; |
| 38 | |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 39 | #define MIN_BURSTS_PER_BUFFER 2 |
| 40 | #define DEFAULT_BURSTS_PER_BUFFER 16 |
| 41 | // This is an arbitrary range. TODO review. |
| 42 | #define MAX_FRAMES_PER_BUFFER (32 * 1024) |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 43 | |
| 44 | AAudioServiceStreamShared::AAudioServiceStreamShared(AAudioService &audioService) |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 45 | : AAudioServiceStreamBase(audioService) |
Phil Burk | 97350f9 | 2017-07-21 15:59:44 -0700 | [diff] [blame] | 46 | , mTimestampPositionOffset(0) |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 47 | , mXRunCount(0) { |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 48 | } |
| 49 | |
Phil Burk | a5222e2 | 2017-07-28 13:31:14 -0700 | [diff] [blame] | 50 | std::string AAudioServiceStreamShared::dumpHeader() { |
| 51 | std::stringstream result; |
| 52 | result << AAudioServiceStreamBase::dumpHeader(); |
| 53 | result << " Write# Read# Avail XRuns"; |
| 54 | return result.str(); |
| 55 | } |
| 56 | |
| 57 | std::string AAudioServiceStreamShared::dump() const { |
| 58 | std::stringstream result; |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 59 | |
Phil Burk | a5222e2 | 2017-07-28 13:31:14 -0700 | [diff] [blame] | 60 | result << AAudioServiceStreamBase::dump(); |
| 61 | |
Phil Burk | 8f4fe50 | 2020-07-15 23:54:50 +0000 | [diff] [blame] | 62 | result << mAudioDataQueue->dump(); |
Phil Burk | a5222e2 | 2017-07-28 13:31:14 -0700 | [diff] [blame] | 63 | result << std::setw(8) << getXRunCount(); |
| 64 | |
| 65 | return result.str(); |
| 66 | } |
| 67 | |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 68 | int32_t AAudioServiceStreamShared::calculateBufferCapacity(int32_t requestedCapacityFrames, |
| 69 | int32_t framesPerBurst) { |
| 70 | |
| 71 | if (requestedCapacityFrames > MAX_FRAMES_PER_BUFFER) { |
Phil Burk | fbf031e | 2017-10-12 15:58:31 -0700 | [diff] [blame] | 72 | ALOGE("calculateBufferCapacity() requested capacity %d > max %d", |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 73 | requestedCapacityFrames, MAX_FRAMES_PER_BUFFER); |
| 74 | return AAUDIO_ERROR_OUT_OF_RANGE; |
| 75 | } |
| 76 | |
| 77 | // Determine how many bursts will fit in the buffer. |
| 78 | int32_t numBursts; |
| 79 | if (requestedCapacityFrames == AAUDIO_UNSPECIFIED) { |
| 80 | // Use fewer bursts if default is too many. |
| 81 | if ((DEFAULT_BURSTS_PER_BUFFER * framesPerBurst) > MAX_FRAMES_PER_BUFFER) { |
| 82 | numBursts = MAX_FRAMES_PER_BUFFER / framesPerBurst; |
| 83 | } else { |
| 84 | numBursts = DEFAULT_BURSTS_PER_BUFFER; |
| 85 | } |
| 86 | } else { |
| 87 | // round up to nearest burst boundary |
| 88 | numBursts = (requestedCapacityFrames + framesPerBurst - 1) / framesPerBurst; |
| 89 | } |
| 90 | |
| 91 | // Clip to bare minimum. |
| 92 | if (numBursts < MIN_BURSTS_PER_BUFFER) { |
| 93 | numBursts = MIN_BURSTS_PER_BUFFER; |
| 94 | } |
| 95 | // Check for numeric overflow. |
| 96 | if (numBursts > 0x8000 || framesPerBurst > 0x8000) { |
Phil Burk | fbf031e | 2017-10-12 15:58:31 -0700 | [diff] [blame] | 97 | ALOGE("calculateBufferCapacity() overflow, capacity = %d * %d", |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 98 | numBursts, framesPerBurst); |
| 99 | return AAUDIO_ERROR_OUT_OF_RANGE; |
| 100 | } |
| 101 | int32_t capacityInFrames = numBursts * framesPerBurst; |
| 102 | |
Phil Burk | 18142ae | 2020-07-28 12:44:37 -0700 | [diff] [blame] | 103 | // Final range check. |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 104 | if (capacityInFrames > MAX_FRAMES_PER_BUFFER) { |
Phil Burk | fbf031e | 2017-10-12 15:58:31 -0700 | [diff] [blame] | 105 | ALOGE("calculateBufferCapacity() calc capacity %d > max %d", |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 106 | capacityInFrames, MAX_FRAMES_PER_BUFFER); |
| 107 | return AAUDIO_ERROR_OUT_OF_RANGE; |
| 108 | } |
Phil Burk | 7ba4655 | 2019-04-15 08:58:08 -0700 | [diff] [blame] | 109 | ALOGV("calculateBufferCapacity() requested %d frames, actual = %d", |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 110 | requestedCapacityFrames, capacityInFrames); |
| 111 | return capacityInFrames; |
| 112 | } |
| 113 | |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 114 | aaudio_result_t AAudioServiceStreamShared::open(const aaudio::AAudioStreamRequest &request) { |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 115 | |
Phil Burk | 11e8d33 | 2017-05-24 09:59:02 -0700 | [diff] [blame] | 116 | sp<AAudioServiceStreamShared> keep(this); |
| 117 | |
Phil Burk | 15f97c9 | 2018-09-04 14:06:27 -0700 | [diff] [blame] | 118 | if (request.getConstantConfiguration().getSharingMode() != AAUDIO_SHARING_MODE_SHARED) { |
| 119 | ALOGE("%s() sharingMode mismatch %d", __func__, |
| 120 | request.getConstantConfiguration().getSharingMode()); |
| 121 | return AAUDIO_ERROR_INTERNAL; |
| 122 | } |
| 123 | |
| 124 | aaudio_result_t result = AAudioServiceStreamBase::open(request); |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 125 | if (result != AAUDIO_OK) { |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 126 | return result; |
| 127 | } |
| 128 | |
| 129 | const AAudioStreamConfiguration &configurationInput = request.getConstantConfiguration(); |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 130 | |
Phil Burk | 6e2770e | 2018-05-01 13:03:52 -0700 | [diff] [blame] | 131 | sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); |
| 132 | if (endpoint == nullptr) { |
| 133 | result = AAUDIO_ERROR_INVALID_STATE; |
| 134 | goto error; |
| 135 | } |
| 136 | |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 137 | // Is the request compatible with the shared endpoint? |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 138 | setFormat(configurationInput.getFormat()); |
Phil Burk | 0127c1b | 2018-03-29 13:48:06 -0700 | [diff] [blame] | 139 | if (getFormat() == AUDIO_FORMAT_DEFAULT) { |
| 140 | setFormat(AUDIO_FORMAT_PCM_FLOAT); |
| 141 | } else if (getFormat() != AUDIO_FORMAT_PCM_FLOAT) { |
Phil Burk | 7ba4655 | 2019-04-15 08:58:08 -0700 | [diff] [blame] | 142 | ALOGD("%s() audio_format_t mAudioFormat = %d, need FLOAT", __func__, getFormat()); |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 143 | result = AAUDIO_ERROR_INVALID_FORMAT; |
| 144 | goto error; |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 145 | } |
| 146 | |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 147 | setSampleRate(configurationInput.getSampleRate()); |
| 148 | if (getSampleRate() == AAUDIO_UNSPECIFIED) { |
Phil Burk | 6e2770e | 2018-05-01 13:03:52 -0700 | [diff] [blame] | 149 | setSampleRate(endpoint->getSampleRate()); |
| 150 | } else if (getSampleRate() != endpoint->getSampleRate()) { |
Phil Burk | 7ba4655 | 2019-04-15 08:58:08 -0700 | [diff] [blame] | 151 | ALOGD("%s() mSampleRate = %d, need %d", |
Phil Burk | 6e2770e | 2018-05-01 13:03:52 -0700 | [diff] [blame] | 152 | __func__, getSampleRate(), endpoint->getSampleRate()); |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 153 | result = AAUDIO_ERROR_INVALID_RATE; |
| 154 | goto error; |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 155 | } |
| 156 | |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 157 | setSamplesPerFrame(configurationInput.getSamplesPerFrame()); |
| 158 | if (getSamplesPerFrame() == AAUDIO_UNSPECIFIED) { |
Phil Burk | 6e2770e | 2018-05-01 13:03:52 -0700 | [diff] [blame] | 159 | setSamplesPerFrame(endpoint->getSamplesPerFrame()); |
| 160 | } else if (getSamplesPerFrame() != endpoint->getSamplesPerFrame()) { |
Phil Burk | 7ba4655 | 2019-04-15 08:58:08 -0700 | [diff] [blame] | 161 | ALOGD("%s() mSamplesPerFrame = %d, need %d", |
Phil Burk | 6e2770e | 2018-05-01 13:03:52 -0700 | [diff] [blame] | 162 | __func__, getSamplesPerFrame(), endpoint->getSamplesPerFrame()); |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 163 | result = AAUDIO_ERROR_OUT_OF_RANGE; |
| 164 | goto error; |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 165 | } |
| 166 | |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 167 | setBufferCapacity(calculateBufferCapacity(configurationInput.getBufferCapacity(), |
| 168 | mFramesPerBurst)); |
| 169 | if (getBufferCapacity() < 0) { |
| 170 | result = getBufferCapacity(); // negative error code |
| 171 | setBufferCapacity(0); |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 172 | goto error; |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 173 | } |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 174 | |
Phil Burk | 523b304 | 2017-09-13 13:03:08 -0700 | [diff] [blame] | 175 | { |
| 176 | std::lock_guard<std::mutex> lock(mAudioDataQueueLock); |
| 177 | // Create audio data shared memory buffer for client. |
Phil Burk | 8f4fe50 | 2020-07-15 23:54:50 +0000 | [diff] [blame] | 178 | mAudioDataQueue = std::make_shared<SharedRingBuffer>(); |
Phil Burk | 523b304 | 2017-09-13 13:03:08 -0700 | [diff] [blame] | 179 | result = mAudioDataQueue->allocate(calculateBytesPerFrame(), getBufferCapacity()); |
| 180 | if (result != AAUDIO_OK) { |
Phil Burk | 55e5eab | 2018-04-10 15:16:38 -0700 | [diff] [blame] | 181 | ALOGE("%s() could not allocate FIFO with %d frames", |
| 182 | __func__, getBufferCapacity()); |
Phil Burk | 523b304 | 2017-09-13 13:03:08 -0700 | [diff] [blame] | 183 | result = AAUDIO_ERROR_NO_MEMORY; |
| 184 | goto error; |
| 185 | } |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Phil Burk | 6e2770e | 2018-05-01 13:03:52 -0700 | [diff] [blame] | 188 | result = endpoint->registerStream(keep); |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 189 | if (result != AAUDIO_OK) { |
| 190 | goto error; |
| 191 | } |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 192 | |
Phil Burk | 5a26e66 | 2017-07-07 12:44:48 -0700 | [diff] [blame] | 193 | setState(AAUDIO_STREAM_STATE_OPEN); |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 194 | return AAUDIO_OK; |
Phil Burk | ec89b2e | 2017-06-20 15:05:06 -0700 | [diff] [blame] | 195 | |
| 196 | error: |
| 197 | close(); |
| 198 | return result; |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 199 | } |
| 200 | |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 201 | /** |
| 202 | * Get an immutable description of the data queue created by this service. |
| 203 | */ |
Phil Burk | 523b304 | 2017-09-13 13:03:08 -0700 | [diff] [blame] | 204 | aaudio_result_t AAudioServiceStreamShared::getAudioDataDescription( |
| 205 | AudioEndpointParcelable &parcelable) |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 206 | { |
Phil Burk | 523b304 | 2017-09-13 13:03:08 -0700 | [diff] [blame] | 207 | std::lock_guard<std::mutex> lock(mAudioDataQueueLock); |
| 208 | if (mAudioDataQueue == nullptr) { |
Phil Burk | 7ba4655 | 2019-04-15 08:58:08 -0700 | [diff] [blame] | 209 | ALOGW("%s(): mUpMessageQueue null! - stream not open", __func__); |
Phil Burk | 523b304 | 2017-09-13 13:03:08 -0700 | [diff] [blame] | 210 | return AAUDIO_ERROR_NULL; |
| 211 | } |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 212 | // Gather information on the data queue. |
| 213 | mAudioDataQueue->fillParcelable(parcelable, |
| 214 | parcelable.mDownDataQueueParcelable); |
| 215 | parcelable.mDownDataQueueParcelable.setFramesPerBurst(getFramesPerBurst()); |
| 216 | return AAUDIO_OK; |
| 217 | } |
| 218 | |
Phil Burk | 97350f9 | 2017-07-21 15:59:44 -0700 | [diff] [blame] | 219 | void AAudioServiceStreamShared::markTransferTime(Timestamp ×tamp) { |
Phil Burk | a53ffa6 | 2018-10-10 16:21:37 -0700 | [diff] [blame] | 220 | mAtomicStreamTimestamp.write(timestamp); |
Phil Burk | 71f35bb | 2017-04-13 16:05:07 -0700 | [diff] [blame] | 221 | } |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 222 | |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 223 | // Get timestamp that was written by mixer or distributor. |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 224 | aaudio_result_t AAudioServiceStreamShared::getFreeRunningPosition(int64_t *positionFrames, |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 225 | int64_t *timeNanos) { |
| 226 | // TODO Get presentation timestamp from the HAL |
Phil Burk | a53ffa6 | 2018-10-10 16:21:37 -0700 | [diff] [blame] | 227 | if (mAtomicStreamTimestamp.isValid()) { |
| 228 | Timestamp timestamp = mAtomicStreamTimestamp.read(); |
Phil Burk | 97350f9 | 2017-07-21 15:59:44 -0700 | [diff] [blame] | 229 | *positionFrames = timestamp.getPosition(); |
| 230 | *timeNanos = timestamp.getNanoseconds(); |
| 231 | return AAUDIO_OK; |
| 232 | } else { |
| 233 | return AAUDIO_ERROR_UNAVAILABLE; |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | // Get timestamp from lower level service. |
| 238 | aaudio_result_t AAudioServiceStreamShared::getHardwareTimestamp(int64_t *positionFrames, |
Phil Burk | 39f02dd | 2017-08-04 09:13:31 -0700 | [diff] [blame] | 239 | int64_t *timeNanos) { |
Phil Burk | 97350f9 | 2017-07-21 15:59:44 -0700 | [diff] [blame] | 240 | |
Phil Burk | bcc3674 | 2017-08-31 17:24:51 -0700 | [diff] [blame] | 241 | int64_t position = 0; |
Phil Burk | 6e2770e | 2018-05-01 13:03:52 -0700 | [diff] [blame] | 242 | sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); |
| 243 | if (endpoint == nullptr) { |
Phil Burk | 7ba4655 | 2019-04-15 08:58:08 -0700 | [diff] [blame] | 244 | ALOGW("%s() has no endpoint", __func__); |
Phil Burk | 6e2770e | 2018-05-01 13:03:52 -0700 | [diff] [blame] | 245 | return AAUDIO_ERROR_INVALID_STATE; |
| 246 | } |
| 247 | |
| 248 | aaudio_result_t result = endpoint->getTimestamp(&position, timeNanos); |
Phil Burk | 97350f9 | 2017-07-21 15:59:44 -0700 | [diff] [blame] | 249 | if (result == AAUDIO_OK) { |
Phil Burk | bcc3674 | 2017-08-31 17:24:51 -0700 | [diff] [blame] | 250 | int64_t offset = mTimestampPositionOffset.load(); |
| 251 | // TODO, do not go below starting value |
| 252 | position -= offset; // Offset from shared MMAP stream |
Phil Burk | 55e5eab | 2018-04-10 15:16:38 -0700 | [diff] [blame] | 253 | ALOGV("%s() %8lld = %8lld - %8lld", |
| 254 | __func__, (long long) position, (long long) (position + offset), (long long) offset); |
Phil Burk | 97350f9 | 2017-07-21 15:59:44 -0700 | [diff] [blame] | 255 | } |
Phil Burk | bcc3674 | 2017-08-31 17:24:51 -0700 | [diff] [blame] | 256 | *positionFrames = position; |
Phil Burk | 97350f9 | 2017-07-21 15:59:44 -0700 | [diff] [blame] | 257 | return result; |
Phil Burk | c0c70e3 | 2017-02-09 13:18:38 -0800 | [diff] [blame] | 258 | } |
Phil Burk | 8f4fe50 | 2020-07-15 23:54:50 +0000 | [diff] [blame] | 259 | |
| 260 | void AAudioServiceStreamShared::writeDataIfRoom(int64_t mmapFramesRead, |
| 261 | const void *buffer, int32_t numFrames) { |
| 262 | int64_t clientFramesWritten = 0; |
| 263 | |
| 264 | // Lock the AudioFifo to protect against close. |
| 265 | std::lock_guard <std::mutex> lock(mAudioDataQueueLock); |
| 266 | |
| 267 | if (mAudioDataQueue != nullptr) { |
| 268 | std::shared_ptr<FifoBuffer> fifo = mAudioDataQueue->getFifoBuffer(); |
| 269 | // Determine offset between framePosition in client's stream |
| 270 | // vs the underlying MMAP stream. |
| 271 | clientFramesWritten = fifo->getWriteCounter(); |
| 272 | // There are two indices that refer to the same frame. |
| 273 | int64_t positionOffset = mmapFramesRead - clientFramesWritten; |
| 274 | setTimestampPositionOffset(positionOffset); |
| 275 | |
| 276 | // Is the buffer too full to write a burst? |
| 277 | if (fifo->getEmptyFramesAvailable() < getFramesPerBurst()) { |
| 278 | incrementXRunCount(); |
| 279 | } else { |
| 280 | fifo->write(buffer, numFrames); |
| 281 | } |
| 282 | clientFramesWritten = fifo->getWriteCounter(); |
| 283 | } |
| 284 | |
| 285 | if (clientFramesWritten > 0) { |
| 286 | // This timestamp represents the completion of data being written into the |
| 287 | // client buffer. It is sent to the client and used in the timing model |
| 288 | // to decide when data will be available to read. |
| 289 | Timestamp timestamp(clientFramesWritten, AudioClock::getNanoseconds()); |
| 290 | markTransferTime(timestamp); |
| 291 | } |
| 292 | } |