blob: f953cc8704b7b51155f8bcd607fbf86114de66b6 [file] [log] [blame]
Phil Burk062e67a2015-02-11 13:40:50 -08001/*
2**
3** Copyright 2015, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#define LOG_TAG "AudioFlinger"
19//#define LOG_NDEBUG 0
20
21#include <hardware/audio.h>
22#include <utils/Log.h>
23
24#include "AudioHwDevice.h"
25#include "AudioStreamOut.h"
26
27namespace android {
28
29// ----------------------------------------------------------------------------
Phil Burk062e67a2015-02-11 13:40:50 -080030AudioStreamOut::AudioStreamOut(AudioHwDevice *dev, audio_output_flags_t flags)
31 : audioHwDev(dev)
32 , stream(NULL)
33 , flags(flags)
Phil Burk90eea762015-07-06 16:24:14 -070034 , mFramesWritten(0)
35 , mFramesWrittenAtStandby(0)
36 , mRenderPosition(0)
37 , mRateMultiplier(1)
38 , mHalFormatIsLinearPcm(false)
39 , mHalFrameSize(0)
Phil Burk062e67a2015-02-11 13:40:50 -080040{
41}
42
Phil Burk90eea762015-07-06 16:24:14 -070043audio_hw_device_t *AudioStreamOut::hwDev() const
Phil Burk062e67a2015-02-11 13:40:50 -080044{
45 return audioHwDev->hwDevice();
46}
47
Phil Burk90eea762015-07-06 16:24:14 -070048status_t AudioStreamOut::getRenderPosition(uint64_t *frames)
Phil Burk062e67a2015-02-11 13:40:50 -080049{
50 if (stream == NULL) {
51 return NO_INIT;
52 }
Phil Burk90eea762015-07-06 16:24:14 -070053
54 uint32_t halPosition = 0;
55 status_t status = stream->get_render_position(stream, &halPosition);
56 if (status != NO_ERROR) {
57 return status;
58 }
59
60 // Maintain a 64-bit render position using the 32-bit result from the HAL.
61 // This delta calculation relies on the arithmetic overflow behavior
62 // of integers. For example (100 - 0xFFFFFFF0) = 116.
63 uint32_t truncatedPosition = (uint32_t)mRenderPosition;
64 int32_t deltaHalPosition = (int32_t)(halPosition - truncatedPosition);
65 if (deltaHalPosition > 0) {
66 mRenderPosition += deltaHalPosition;
67 }
68 // Scale from HAL sample rate to application rate.
69 *frames = mRenderPosition / mRateMultiplier;
70
71 return status;
72}
73
74// return bottom 32-bits of the render position
75status_t AudioStreamOut::getRenderPosition(uint32_t *frames)
76{
77 uint64_t position64 = 0;
78 status_t status = getRenderPosition(&position64);
79 if (status == NO_ERROR) {
80 *frames = (uint32_t)position64;
81 }
82 return status;
Phil Burk062e67a2015-02-11 13:40:50 -080083}
84
85status_t AudioStreamOut::getPresentationPosition(uint64_t *frames, struct timespec *timestamp)
86{
87 if (stream == NULL) {
88 return NO_INIT;
89 }
Phil Burk90eea762015-07-06 16:24:14 -070090
91 uint64_t halPosition = 0;
92 status_t status = stream->get_presentation_position(stream, &halPosition, timestamp);
93 if (status != NO_ERROR) {
94 return status;
95 }
96
97 // Adjust for standby using HAL rate frames.
98 // Only apply this correction if the HAL is getting PCM frames.
99 if (mHalFormatIsLinearPcm) {
100 uint64_t adjustedPosition = (halPosition <= mFramesWrittenAtStandby) ?
101 0 : (halPosition - mFramesWrittenAtStandby);
102 // Scale from HAL sample rate to application rate.
103 *frames = adjustedPosition / mRateMultiplier;
104 } else {
105 // For offloaded MP3 and other compressed formats.
106 *frames = halPosition;
107 }
108
109 return status;
Phil Burk062e67a2015-02-11 13:40:50 -0800110}
111
112status_t AudioStreamOut::open(
113 audio_io_handle_t handle,
114 audio_devices_t devices,
115 struct audio_config *config,
116 const char *address)
117{
Phil Burk90eea762015-07-06 16:24:14 -0700118 audio_stream_out_t *outStream;
Phil Burk062e67a2015-02-11 13:40:50 -0800119 int status = hwDev()->open_output_stream(
120 hwDev(),
121 handle,
122 devices,
123 flags,
124 config,
125 &outStream,
126 address);
127 ALOGV("AudioStreamOut::open(), HAL open_output_stream returned "
128 " %p, sampleRate %d, Format %#x, "
129 "channelMask %#x, status %d",
130 outStream,
131 config->sample_rate,
132 config->format,
133 config->channel_mask,
134 status);
135
136 if (status == NO_ERROR) {
137 stream = outStream;
Phil Burk90eea762015-07-06 16:24:14 -0700138 mHalFormatIsLinearPcm = audio_is_linear_pcm(config->format);
139 ALOGI("AudioStreamOut::open(), mHalFormatIsLinearPcm = %d", (int)mHalFormatIsLinearPcm);
140 mHalFrameSize = audio_stream_out_frame_size(stream);
Phil Burk062e67a2015-02-11 13:40:50 -0800141 }
142
143 return status;
144}
145
146size_t AudioStreamOut::getFrameSize()
147{
Phil Burk90eea762015-07-06 16:24:14 -0700148 return mHalFrameSize;
Phil Burk062e67a2015-02-11 13:40:50 -0800149}
150
151int AudioStreamOut::flush()
152{
153 ALOG_ASSERT(stream != NULL);
Phil Burk90eea762015-07-06 16:24:14 -0700154 mRenderPosition = 0;
155 mFramesWritten = 0;
156 mFramesWrittenAtStandby = 0;
Phil Burk062e67a2015-02-11 13:40:50 -0800157 if (stream->flush != NULL) {
158 return stream->flush(stream);
159 }
160 return NO_ERROR;
161}
162
163int AudioStreamOut::standby()
164{
165 ALOG_ASSERT(stream != NULL);
Phil Burk90eea762015-07-06 16:24:14 -0700166 mRenderPosition = 0;
167 mFramesWrittenAtStandby = mFramesWritten;
168 ALOGI("AudioStreamOut::standby(), mFramesWrittenAtStandby = %llu", mFramesWrittenAtStandby);
Phil Burk062e67a2015-02-11 13:40:50 -0800169 return stream->common.standby(&stream->common);
170}
171
Phil Burk90eea762015-07-06 16:24:14 -0700172ssize_t AudioStreamOut::write(const void *buffer, size_t numBytes)
Phil Burk062e67a2015-02-11 13:40:50 -0800173{
174 ALOG_ASSERT(stream != NULL);
Phil Burk90eea762015-07-06 16:24:14 -0700175 ssize_t bytesWritten = stream->write(stream, buffer, numBytes);
176 if (bytesWritten > 0 && mHalFrameSize > 0) {
177 mFramesWritten += bytesWritten / mHalFrameSize;
178 }
179 return bytesWritten;
Phil Burk062e67a2015-02-11 13:40:50 -0800180}
181
182} // namespace android