blob: c77f551f119ad125af06798c39b59ce5cf8339ac [file] [log] [blame]
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006-2007 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
17#define LOG_TAG "AudioSystem"
18//#define LOG_NDEBUG 0
19
20#include <utils/Log.h>
Mathias Agopian75624082009-05-19 19:08:10 -070021#include <binder/IServiceManager.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080022#include <media/AudioSystem.h>
Eric Laurentc2f1f072009-07-17 12:17:14 -070023#include <media/IAudioPolicyService.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080024#include <math.h>
25
Eric Laurentc2f1f072009-07-17 12:17:14 -070026// ----------------------------------------------------------------------------
27// the sim build doesn't have gettid
28
29#ifndef HAVE_GETTID
30# define gettid getpid
31#endif
32
33// ----------------------------------------------------------------------------
34
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080035namespace android {
36
37// client singleton for AudioFlinger binder interface
38Mutex AudioSystem::gLock;
39sp<IAudioFlinger> AudioSystem::gAudioFlinger;
40sp<AudioSystem::AudioFlingerClient> AudioSystem::gAudioFlingerClient;
41audio_error_callback AudioSystem::gAudioErrorCallback = NULL;
42// Cached values
Eric Laurentc2f1f072009-07-17 12:17:14 -070043DefaultKeyedVector<int, audio_io_handle_t> AudioSystem::gStreamOutputMap(0);
44DefaultKeyedVector<audio_io_handle_t, AudioSystem::OutputDescriptor *> AudioSystem::gOutputs(0);
45
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080046// Cached values for recording queries
47uint32_t AudioSystem::gPrevInSamplingRate = 16000;
48int AudioSystem::gPrevInFormat = AudioSystem::PCM_16_BIT;
49int AudioSystem::gPrevInChannelCount = 1;
50size_t AudioSystem::gInBuffSize = 0;
51
52
53// establish binder interface to AudioFlinger service
54const sp<IAudioFlinger>& AudioSystem::get_audio_flinger()
55{
56 Mutex::Autolock _l(gLock);
57 if (gAudioFlinger.get() == 0) {
58 sp<IServiceManager> sm = defaultServiceManager();
59 sp<IBinder> binder;
60 do {
61 binder = sm->getService(String16("media.audio_flinger"));
62 if (binder != 0)
63 break;
64 LOGW("AudioFlinger not published, waiting...");
65 usleep(500000); // 0.5 s
66 } while(true);
67 if (gAudioFlingerClient == NULL) {
68 gAudioFlingerClient = new AudioFlingerClient();
69 } else {
70 if (gAudioErrorCallback) {
71 gAudioErrorCallback(NO_ERROR);
72 }
73 }
74 binder->linkToDeath(gAudioFlingerClient);
75 gAudioFlinger = interface_cast<IAudioFlinger>(binder);
76 gAudioFlinger->registerClient(gAudioFlingerClient);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080077 }
78 LOGE_IF(gAudioFlinger==0, "no AudioFlinger!?");
Eric Laurentc2f1f072009-07-17 12:17:14 -070079
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080080 return gAudioFlinger;
81}
82
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080083status_t AudioSystem::muteMicrophone(bool state) {
84 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
85 if (af == 0) return PERMISSION_DENIED;
86 return af->setMicMute(state);
87}
88
89status_t AudioSystem::isMicrophoneMuted(bool* state) {
90 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
91 if (af == 0) return PERMISSION_DENIED;
92 *state = af->getMicMute();
93 return NO_ERROR;
94}
95
96status_t AudioSystem::setMasterVolume(float value)
97{
98 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
99 if (af == 0) return PERMISSION_DENIED;
100 af->setMasterVolume(value);
101 return NO_ERROR;
102}
103
104status_t AudioSystem::setMasterMute(bool mute)
105{
106 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
107 if (af == 0) return PERMISSION_DENIED;
108 af->setMasterMute(mute);
109 return NO_ERROR;
110}
111
112status_t AudioSystem::getMasterVolume(float* volume)
113{
114 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
115 if (af == 0) return PERMISSION_DENIED;
116 *volume = af->masterVolume();
117 return NO_ERROR;
118}
119
120status_t AudioSystem::getMasterMute(bool* mute)
121{
122 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
123 if (af == 0) return PERMISSION_DENIED;
124 *mute = af->masterMute();
125 return NO_ERROR;
126}
127
Eric Laurentfa2877b2009-07-28 08:44:33 -0700128status_t AudioSystem::setStreamVolume(int stream, float value, int output)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800129{
130 if (uint32_t(stream) >= NUM_STREAM_TYPES) return BAD_VALUE;
131 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
132 if (af == 0) return PERMISSION_DENIED;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700133 af->setStreamVolume(stream, value, output);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800134 return NO_ERROR;
135}
136
137status_t AudioSystem::setStreamMute(int stream, bool mute)
138{
139 if (uint32_t(stream) >= NUM_STREAM_TYPES) return BAD_VALUE;
140 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
141 if (af == 0) return PERMISSION_DENIED;
142 af->setStreamMute(stream, mute);
143 return NO_ERROR;
144}
145
Eric Laurentfa2877b2009-07-28 08:44:33 -0700146status_t AudioSystem::getStreamVolume(int stream, float* volume, int output)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800147{
148 if (uint32_t(stream) >= NUM_STREAM_TYPES) return BAD_VALUE;
149 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
150 if (af == 0) return PERMISSION_DENIED;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700151 *volume = af->streamVolume(stream, output);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800152 return NO_ERROR;
153}
154
155status_t AudioSystem::getStreamMute(int stream, bool* mute)
156{
157 if (uint32_t(stream) >= NUM_STREAM_TYPES) return BAD_VALUE;
158 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
159 if (af == 0) return PERMISSION_DENIED;
160 *mute = af->streamMute(stream);
161 return NO_ERROR;
162}
163
164status_t AudioSystem::setMode(int mode)
165{
166 if (mode >= NUM_MODES) return BAD_VALUE;
167 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
168 if (af == 0) return PERMISSION_DENIED;
169 return af->setMode(mode);
170}
171
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800172
Eric Laurentb72a3962010-01-25 08:49:09 -0800173status_t AudioSystem::isStreamActive(int stream, bool* state) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800174 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
175 if (af == 0) return PERMISSION_DENIED;
Eric Laurentb72a3962010-01-25 08:49:09 -0800176 *state = af->isStreamActive(stream);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800177 return NO_ERROR;
178}
179
Eric Laurentc2f1f072009-07-17 12:17:14 -0700180
181status_t AudioSystem::setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800182 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
183 if (af == 0) return PERMISSION_DENIED;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700184 return af->setParameters(ioHandle, keyValuePairs);
185}
186
187String8 AudioSystem::getParameters(audio_io_handle_t ioHandle, const String8& keys) {
188 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
189 String8 result = String8("");
190 if (af == 0) return result;
191
192 result = af->getParameters(ioHandle, keys);
193 return result;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800194}
195
196// convert volume steps to natural log scale
197
198// change this value to change volume scaling
199static const float dBPerStep = 0.5f;
200// shouldn't need to touch these
201static const float dBConvert = -dBPerStep * 2.302585093f / 20.0f;
202static const float dBConvertInverse = 1.0f / dBConvert;
203
204float AudioSystem::linearToLog(int volume)
205{
206 // float v = volume ? exp(float(100 - volume) * dBConvert) : 0;
207 // LOGD("linearToLog(%d)=%f", volume, v);
208 // return v;
209 return volume ? exp(float(100 - volume) * dBConvert) : 0;
210}
211
212int AudioSystem::logToLinear(float volume)
213{
214 // int v = volume ? 100 - int(dBConvertInverse * log(volume) + 0.5) : 0;
215 // LOGD("logTolinear(%d)=%f", v, volume);
216 // return v;
217 return volume ? 100 - int(dBConvertInverse * log(volume) + 0.5) : 0;
218}
219
220status_t AudioSystem::getOutputSamplingRate(int* samplingRate, int streamType)
221{
Eric Laurentc2f1f072009-07-17 12:17:14 -0700222 OutputDescriptor *outputDesc;
223 audio_io_handle_t output;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800224
Eric Laurentc2f1f072009-07-17 12:17:14 -0700225 if (streamType == DEFAULT) {
226 streamType = MUSIC;
227 }
228
229 output = getOutput((stream_type)streamType);
230 if (output == 0) {
231 return PERMISSION_DENIED;
232 }
233
234 gLock.lock();
235 outputDesc = AudioSystem::gOutputs.valueFor(output);
236 if (outputDesc == 0) {
Eric Laurentfa2877b2009-07-28 08:44:33 -0700237 LOGV("getOutputSamplingRate() no output descriptor for output %d in gOutputs", output);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700238 gLock.unlock();
239 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
240 if (af == 0) return PERMISSION_DENIED;
241 *samplingRate = af->sampleRate(output);
242 } else {
243 LOGV("getOutputSamplingRate() reading from output desc");
244 *samplingRate = outputDesc->samplingRate;
245 gLock.unlock();
246 }
247
Eric Laurentfa2877b2009-07-28 08:44:33 -0700248 LOGV("getOutputSamplingRate() streamType %d, output %d, sampling rate %d", streamType, output, *samplingRate);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700249
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800250 return NO_ERROR;
251}
252
253status_t AudioSystem::getOutputFrameCount(int* frameCount, int streamType)
254{
Eric Laurentc2f1f072009-07-17 12:17:14 -0700255 OutputDescriptor *outputDesc;
256 audio_io_handle_t output;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800257
Eric Laurentc2f1f072009-07-17 12:17:14 -0700258 if (streamType == DEFAULT) {
259 streamType = MUSIC;
260 }
Eric Laurent48f7f5e2009-04-02 09:32:43 -0700261
Eric Laurentc2f1f072009-07-17 12:17:14 -0700262 output = getOutput((stream_type)streamType);
263 if (output == 0) {
264 return PERMISSION_DENIED;
265 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800266
Eric Laurentc2f1f072009-07-17 12:17:14 -0700267 gLock.lock();
268 outputDesc = AudioSystem::gOutputs.valueFor(output);
269 if (outputDesc == 0) {
270 gLock.unlock();
271 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
272 if (af == 0) return PERMISSION_DENIED;
273 *frameCount = af->frameCount(output);
274 } else {
275 *frameCount = outputDesc->frameCount;
276 gLock.unlock();
277 }
278
Eric Laurentfa2877b2009-07-28 08:44:33 -0700279 LOGV("getOutputFrameCount() streamType %d, output %d, frameCount %d", streamType, output, *frameCount);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700280
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800281 return NO_ERROR;
282}
283
284status_t AudioSystem::getOutputLatency(uint32_t* latency, int streamType)
285{
Eric Laurentc2f1f072009-07-17 12:17:14 -0700286 OutputDescriptor *outputDesc;
287 audio_io_handle_t output;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800288
Eric Laurentc2f1f072009-07-17 12:17:14 -0700289 if (streamType == DEFAULT) {
290 streamType = MUSIC;
291 }
Eric Laurent48f7f5e2009-04-02 09:32:43 -0700292
Eric Laurentc2f1f072009-07-17 12:17:14 -0700293 output = getOutput((stream_type)streamType);
294 if (output == 0) {
295 return PERMISSION_DENIED;
296 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800297
Eric Laurentc2f1f072009-07-17 12:17:14 -0700298 gLock.lock();
299 outputDesc = AudioSystem::gOutputs.valueFor(output);
300 if (outputDesc == 0) {
301 gLock.unlock();
302 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
303 if (af == 0) return PERMISSION_DENIED;
304 *latency = af->latency(output);
305 } else {
306 *latency = outputDesc->latency;
307 gLock.unlock();
308 }
309
Eric Laurentfa2877b2009-07-28 08:44:33 -0700310 LOGV("getOutputLatency() streamType %d, output %d, latency %d", streamType, output, *latency);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700311
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800312 return NO_ERROR;
313}
314
Eric Laurentc2f1f072009-07-17 12:17:14 -0700315status_t AudioSystem::getInputBufferSize(uint32_t sampleRate, int format, int channelCount,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800316 size_t* buffSize)
317{
318 // Do we have a stale gInBufferSize or are we requesting the input buffer size for new values
Eric Laurentc2f1f072009-07-17 12:17:14 -0700319 if ((gInBuffSize == 0) || (sampleRate != gPrevInSamplingRate) || (format != gPrevInFormat)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800320 || (channelCount != gPrevInChannelCount)) {
321 // save the request params
322 gPrevInSamplingRate = sampleRate;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700323 gPrevInFormat = format;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800324 gPrevInChannelCount = channelCount;
325
326 gInBuffSize = 0;
327 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
328 if (af == 0) {
329 return PERMISSION_DENIED;
330 }
331 gInBuffSize = af->getInputBufferSize(sampleRate, format, channelCount);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700332 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800333 *buffSize = gInBuffSize;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700334
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800335 return NO_ERROR;
336}
337
Eric Laurentf0ee6f42009-10-21 08:14:22 -0700338status_t AudioSystem::setVoiceVolume(float value)
339{
340 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
341 if (af == 0) return PERMISSION_DENIED;
342 return af->setVoiceVolume(value);
343}
344
Eric Laurent342e9cf2010-01-19 17:37:09 -0800345status_t AudioSystem::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames, int stream)
346{
347 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
348 if (af == 0) return PERMISSION_DENIED;
349
350 if (stream == DEFAULT) {
351 stream = MUSIC;
352 }
353
354 return af->getRenderPosition(halFrames, dspFrames, getOutput((stream_type)stream));
355}
356
Eric Laurent05bca2f2010-02-26 02:47:27 -0800357unsigned int AudioSystem::getInputFramesLost(audio_io_handle_t ioHandle) {
358 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
359 unsigned int result = 0;
360 if (af == 0) return result;
Eric Laurentbe55a2d2010-03-11 14:47:00 -0800361 if (ioHandle == 0) return result;
Eric Laurent05bca2f2010-02-26 02:47:27 -0800362
363 result = af->getInputFramesLost(ioHandle);
364 return result;
365}
366
Eric Laurentbe916aa2010-06-01 23:49:17 -0700367int AudioSystem::newAudioSessionId() {
368 const sp<IAudioFlinger>& af = AudioSystem::get_audio_flinger();
369 if (af == 0) return 0;
370 return af->newAudioSessionId();
371}
372
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800373// ---------------------------------------------------------------------------
374
Eric Laurentc2f1f072009-07-17 12:17:14 -0700375void AudioSystem::AudioFlingerClient::binderDied(const wp<IBinder>& who) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800376 Mutex::Autolock _l(AudioSystem::gLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800377
Eric Laurentc2f1f072009-07-17 12:17:14 -0700378 AudioSystem::gAudioFlinger.clear();
Eric Laurent0ef583f2010-01-25 10:27:15 -0800379 // clear output handles and stream to output map caches
380 AudioSystem::gStreamOutputMap.clear();
381 AudioSystem::gOutputs.clear();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800382
383 if (gAudioErrorCallback) {
384 gAudioErrorCallback(DEAD_OBJECT);
385 }
386 LOGW("AudioFlinger server died!");
387}
388
Eric Laurentfa2877b2009-07-28 08:44:33 -0700389void AudioSystem::AudioFlingerClient::ioConfigChanged(int event, int ioHandle, void *param2) {
Eric Laurentc2f1f072009-07-17 12:17:14 -0700390 LOGV("ioConfigChanged() event %d", event);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700391 OutputDescriptor *desc;
392 uint32_t stream;
393
Eric Laurentfa2877b2009-07-28 08:44:33 -0700394 if (ioHandle == 0) return;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700395
396 Mutex::Autolock _l(AudioSystem::gLock);
397
398 switch (event) {
399 case STREAM_CONFIG_CHANGED:
400 if (param2 == 0) break;
401 stream = *(uint32_t *)param2;
Eric Laurentfa2877b2009-07-28 08:44:33 -0700402 LOGV("ioConfigChanged() STREAM_CONFIG_CHANGED stream %d, output %d", stream, ioHandle);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700403 if (gStreamOutputMap.indexOfKey(stream) >= 0) {
404 gStreamOutputMap.replaceValueFor(stream, ioHandle);
405 }
406 break;
407 case OUTPUT_OPENED: {
408 if (gOutputs.indexOfKey(ioHandle) >= 0) {
Eric Laurentfa2877b2009-07-28 08:44:33 -0700409 LOGV("ioConfigChanged() opening already existing output! %d", ioHandle);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700410 break;
411 }
412 if (param2 == 0) break;
413 desc = (OutputDescriptor *)param2;
414
415 OutputDescriptor *outputDesc = new OutputDescriptor(*desc);
416 gOutputs.add(ioHandle, outputDesc);
417 LOGV("ioConfigChanged() new output samplingRate %d, format %d channels %d frameCount %d latency %d",
418 outputDesc->samplingRate, outputDesc->format, outputDesc->channels, outputDesc->frameCount, outputDesc->latency);
419 } break;
420 case OUTPUT_CLOSED: {
421 if (gOutputs.indexOfKey(ioHandle) < 0) {
Eric Laurentfa2877b2009-07-28 08:44:33 -0700422 LOGW("ioConfigChanged() closing unknow output! %d", ioHandle);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700423 break;
424 }
Eric Laurentfa2877b2009-07-28 08:44:33 -0700425 LOGV("ioConfigChanged() output %d closed", ioHandle);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700426
427 gOutputs.removeItem(ioHandle);
428 for (int i = gStreamOutputMap.size() - 1; i >= 0 ; i--) {
429 if (gStreamOutputMap.valueAt(i) == ioHandle) {
430 gStreamOutputMap.removeItemsAt(i);
431 }
432 }
433 } break;
434
435 case OUTPUT_CONFIG_CHANGED: {
436 int index = gOutputs.indexOfKey(ioHandle);
437 if (index < 0) {
Eric Laurentfa2877b2009-07-28 08:44:33 -0700438 LOGW("ioConfigChanged() modifying unknow output! %d", ioHandle);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700439 break;
440 }
441 if (param2 == 0) break;
442 desc = (OutputDescriptor *)param2;
443
Eric Laurentfa2877b2009-07-28 08:44:33 -0700444 LOGV("ioConfigChanged() new config for output %d samplingRate %d, format %d channels %d frameCount %d latency %d",
Eric Laurentc2f1f072009-07-17 12:17:14 -0700445 ioHandle, desc->samplingRate, desc->format,
446 desc->channels, desc->frameCount, desc->latency);
447 OutputDescriptor *outputDesc = gOutputs.valueAt(index);
448 delete outputDesc;
449 outputDesc = new OutputDescriptor(*desc);
450 gOutputs.replaceValueFor(ioHandle, outputDesc);
451 } break;
452 case INPUT_OPENED:
453 case INPUT_CLOSED:
454 case INPUT_CONFIG_CHANGED:
455 break;
456
457 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800458}
459
460void AudioSystem::setErrorCallback(audio_error_callback cb) {
Eric Laurentc2f1f072009-07-17 12:17:14 -0700461 Mutex::Autolock _l(gLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800462 gAudioErrorCallback = cb;
463}
464
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800465bool AudioSystem::routedToA2dpOutput(int streamType) {
466 switch(streamType) {
467 case MUSIC:
468 case VOICE_CALL:
469 case BLUETOOTH_SCO:
470 case SYSTEM:
471 return true;
472 default:
473 return false;
474 }
475}
476
477
Eric Laurentc2f1f072009-07-17 12:17:14 -0700478// client singleton for AudioPolicyService binder interface
479sp<IAudioPolicyService> AudioSystem::gAudioPolicyService;
480sp<AudioSystem::AudioPolicyServiceClient> AudioSystem::gAudioPolicyServiceClient;
481
482
483// establish binder interface to AudioFlinger service
484const sp<IAudioPolicyService>& AudioSystem::get_audio_policy_service()
485{
486 gLock.lock();
487 if (gAudioPolicyService.get() == 0) {
488 sp<IServiceManager> sm = defaultServiceManager();
489 sp<IBinder> binder;
490 do {
491 binder = sm->getService(String16("media.audio_policy"));
492 if (binder != 0)
493 break;
494 LOGW("AudioPolicyService not published, waiting...");
495 usleep(500000); // 0.5 s
496 } while(true);
497 if (gAudioPolicyServiceClient == NULL) {
498 gAudioPolicyServiceClient = new AudioPolicyServiceClient();
499 }
500 binder->linkToDeath(gAudioPolicyServiceClient);
501 gAudioPolicyService = interface_cast<IAudioPolicyService>(binder);
502 gLock.unlock();
503 } else {
504 gLock.unlock();
505 }
506 return gAudioPolicyService;
507}
508
509status_t AudioSystem::setDeviceConnectionState(audio_devices device,
510 device_connection_state state,
511 const char *device_address)
512{
513 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
514 if (aps == 0) return PERMISSION_DENIED;
515
516 return aps->setDeviceConnectionState(device, state, device_address);
517}
518
519AudioSystem::device_connection_state AudioSystem::getDeviceConnectionState(audio_devices device,
520 const char *device_address)
521{
522 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
523 if (aps == 0) return DEVICE_STATE_UNAVAILABLE;
524
525 return aps->getDeviceConnectionState(device, device_address);
526}
527
528status_t AudioSystem::setPhoneState(int state)
529{
530 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
531 if (aps == 0) return PERMISSION_DENIED;
532
533 return aps->setPhoneState(state);
534}
535
536status_t AudioSystem::setRingerMode(uint32_t mode, uint32_t mask)
537{
538 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
539 if (aps == 0) return PERMISSION_DENIED;
540 return aps->setRingerMode(mode, mask);
541}
542
543status_t AudioSystem::setForceUse(force_use usage, forced_config config)
544{
545 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
546 if (aps == 0) return PERMISSION_DENIED;
547 return aps->setForceUse(usage, config);
548}
549
550AudioSystem::forced_config AudioSystem::getForceUse(force_use usage)
551{
552 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
553 if (aps == 0) return FORCE_NONE;
554 return aps->getForceUse(usage);
555}
556
557
558audio_io_handle_t AudioSystem::getOutput(stream_type stream,
559 uint32_t samplingRate,
560 uint32_t format,
561 uint32_t channels,
562 output_flags flags)
563{
Eric Laurentfa2877b2009-07-28 08:44:33 -0700564 audio_io_handle_t output = 0;
Eric Laurentbe55a2d2010-03-11 14:47:00 -0800565 // Do not use stream to output map cache if the direct output
566 // flag is set or if we are likely to use a direct output
567 // (e.g voice call stream @ 8kHz could use BT SCO device and be routed to
568 // a direct output on some platforms).
569 // TODO: the output cache and stream to output mapping implementation needs to
570 // be reworked for proper operation with direct outputs. This code is too specific
571 // to the first use case we want to cover (Voice Recognition and Voice Dialer over
572 // Bluetooth SCO
573 if ((flags & AudioSystem::OUTPUT_FLAG_DIRECT) == 0 &&
574 ((stream != AudioSystem::VOICE_CALL && stream != AudioSystem::BLUETOOTH_SCO) ||
575 channels != AudioSystem::CHANNEL_OUT_MONO ||
576 (samplingRate != 8000 && samplingRate != 16000))) {
Eric Laurentc2f1f072009-07-17 12:17:14 -0700577 Mutex::Autolock _l(gLock);
578 output = AudioSystem::gStreamOutputMap.valueFor(stream);
Eric Laurentfa2877b2009-07-28 08:44:33 -0700579 LOGV_IF((output != 0), "getOutput() read %d from cache for stream %d", output, stream);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700580 }
Eric Laurentfa2877b2009-07-28 08:44:33 -0700581 if (output == 0) {
Eric Laurentc2f1f072009-07-17 12:17:14 -0700582 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
Eric Laurentfa2877b2009-07-28 08:44:33 -0700583 if (aps == 0) return 0;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700584 output = aps->getOutput(stream, samplingRate, format, channels, flags);
585 if ((flags & AudioSystem::OUTPUT_FLAG_DIRECT) == 0) {
586 Mutex::Autolock _l(gLock);
587 AudioSystem::gStreamOutputMap.add(stream, output);
588 }
589 }
590 return output;
591}
592
593status_t AudioSystem::startOutput(audio_io_handle_t output, AudioSystem::stream_type stream)
594{
595 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
596 if (aps == 0) return PERMISSION_DENIED;
597 return aps->startOutput(output, stream);
598}
599
600status_t AudioSystem::stopOutput(audio_io_handle_t output, AudioSystem::stream_type stream)
601{
602 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
603 if (aps == 0) return PERMISSION_DENIED;
604 return aps->stopOutput(output, stream);
605}
606
607void AudioSystem::releaseOutput(audio_io_handle_t output)
608{
609 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
610 if (aps == 0) return;
611 aps->releaseOutput(output);
612}
613
614audio_io_handle_t AudioSystem::getInput(int inputSource,
615 uint32_t samplingRate,
616 uint32_t format,
617 uint32_t channels,
618 audio_in_acoustics acoustics)
619{
620 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
Eric Laurentfa2877b2009-07-28 08:44:33 -0700621 if (aps == 0) return 0;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700622 return aps->getInput(inputSource, samplingRate, format, channels, acoustics);
623}
624
625status_t AudioSystem::startInput(audio_io_handle_t input)
626{
627 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
628 if (aps == 0) return PERMISSION_DENIED;
629 return aps->startInput(input);
630}
631
632status_t AudioSystem::stopInput(audio_io_handle_t input)
633{
634 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
635 if (aps == 0) return PERMISSION_DENIED;
636 return aps->stopInput(input);
637}
638
639void AudioSystem::releaseInput(audio_io_handle_t input)
640{
641 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
642 if (aps == 0) return;
643 aps->releaseInput(input);
644}
645
646status_t AudioSystem::initStreamVolume(stream_type stream,
647 int indexMin,
648 int indexMax)
649{
650 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
651 if (aps == 0) return PERMISSION_DENIED;
652 return aps->initStreamVolume(stream, indexMin, indexMax);
653}
654
655status_t AudioSystem::setStreamVolumeIndex(stream_type stream, int index)
656{
657 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
658 if (aps == 0) return PERMISSION_DENIED;
659 return aps->setStreamVolumeIndex(stream, index);
660}
661
662status_t AudioSystem::getStreamVolumeIndex(stream_type stream, int *index)
663{
664 const sp<IAudioPolicyService>& aps = AudioSystem::get_audio_policy_service();
665 if (aps == 0) return PERMISSION_DENIED;
666 return aps->getStreamVolumeIndex(stream, index);
667}
668
669// ---------------------------------------------------------------------------
670
671void AudioSystem::AudioPolicyServiceClient::binderDied(const wp<IBinder>& who) {
672 Mutex::Autolock _l(AudioSystem::gLock);
673 AudioSystem::gAudioPolicyService.clear();
674
675 LOGW("AudioPolicyService server died!");
676}
677
678// ---------------------------------------------------------------------------
679
680
681// use emulated popcount optimization
682// http://www.df.lth.se/~john_e/gems/gem002d.html
683uint32_t AudioSystem::popCount(uint32_t u)
684{
685 u = ((u&0x55555555) + ((u>>1)&0x55555555));
686 u = ((u&0x33333333) + ((u>>2)&0x33333333));
687 u = ((u&0x0f0f0f0f) + ((u>>4)&0x0f0f0f0f));
688 u = ((u&0x00ff00ff) + ((u>>8)&0x00ff00ff));
689 u = ( u&0x0000ffff) + (u>>16);
690 return u;
691}
692
693bool AudioSystem::isOutputDevice(audio_devices device)
694{
695 if ((popCount(device) == 1 ) &&
696 ((device & ~AudioSystem::DEVICE_OUT_ALL) == 0)) {
697 return true;
698 } else {
699 return false;
700 }
701}
702
703bool AudioSystem::isInputDevice(audio_devices device)
704{
705 if ((popCount(device) == 1 ) &&
706 ((device & ~AudioSystem::DEVICE_IN_ALL) == 0)) {
707 return true;
708 } else {
709 return false;
710 }
711}
712
713bool AudioSystem::isA2dpDevice(audio_devices device)
714{
715 if ((popCount(device) == 1 ) &&
716 (device & (AudioSystem::DEVICE_OUT_BLUETOOTH_A2DP |
717 AudioSystem::DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
718 AudioSystem::DEVICE_OUT_BLUETOOTH_A2DP_SPEAKER))) {
719 return true;
720 } else {
721 return false;
722 }
723}
724
725bool AudioSystem::isBluetoothScoDevice(audio_devices device)
726{
727 if ((popCount(device) == 1 ) &&
728 (device & (AudioSystem::DEVICE_OUT_BLUETOOTH_SCO |
729 AudioSystem::DEVICE_OUT_BLUETOOTH_SCO_HEADSET |
730 AudioSystem::DEVICE_OUT_BLUETOOTH_SCO_CARKIT))) {
731 return true;
732 } else {
733 return false;
734 }
735}
736
737bool AudioSystem::isLowVisibility(stream_type stream)
738{
Eric Laurent7c7fa1b2010-02-22 01:37:19 -0800739 if (stream == AudioSystem::SYSTEM ||
740 stream == AudioSystem::NOTIFICATION ||
741 stream == AudioSystem::RING) {
Eric Laurentc2f1f072009-07-17 12:17:14 -0700742 return true;
743 } else {
744 return false;
745 }
746}
747
748bool AudioSystem::isInputChannel(uint32_t channel)
749{
750 if ((channel & ~AudioSystem::CHANNEL_IN_ALL) == 0) {
751 return true;
752 } else {
753 return false;
754 }
755}
756
757bool AudioSystem::isOutputChannel(uint32_t channel)
758{
759 if ((channel & ~AudioSystem::CHANNEL_OUT_ALL) == 0) {
760 return true;
761 } else {
762 return false;
763 }
764}
765
766bool AudioSystem::isValidFormat(uint32_t format)
767{
768 switch (format & MAIN_FORMAT_MASK) {
769 case PCM:
770 case MP3:
771 case AMR_NB:
772 case AMR_WB:
773 case AAC:
774 case HE_AAC_V1:
775 case HE_AAC_V2:
776 case VORBIS:
777 return true;
778 default:
779 return false;
780 }
781}
782
783bool AudioSystem::isLinearPCM(uint32_t format)
784{
785 switch (format) {
786 case PCM_16_BIT:
787 case PCM_8_BIT:
788 return true;
789 default:
790 return false;
791 }
792}
793
794//------------------------- AudioParameter class implementation ---------------
795
796const char *AudioParameter::keyRouting = "routing";
797const char *AudioParameter::keySamplingRate = "sampling_rate";
798const char *AudioParameter::keyFormat = "format";
799const char *AudioParameter::keyChannels = "channels";
800const char *AudioParameter::keyFrameCount = "frame_count";
801
802AudioParameter::AudioParameter(const String8& keyValuePairs)
803{
804 char *str = new char[keyValuePairs.length()+1];
805 mKeyValuePairs = keyValuePairs;
806
807 strcpy(str, keyValuePairs.string());
808 char *pair = strtok(str, ";");
809 while (pair != NULL) {
810 if (strlen(pair) != 0) {
811 size_t eqIdx = strcspn(pair, "=");
812 String8 key = String8(pair, eqIdx);
813 String8 value;
814 if (eqIdx == strlen(pair)) {
815 value = String8("");
816 } else {
817 value = String8(pair + eqIdx + 1);
818 }
819 if (mParameters.indexOfKey(key) < 0) {
820 mParameters.add(key, value);
821 } else {
822 mParameters.replaceValueFor(key, value);
823 }
824 } else {
825 LOGV("AudioParameter() cstor empty key value pair");
826 }
827 pair = strtok(NULL, ";");
828 }
829
830 delete[] str;
831}
832
833AudioParameter::~AudioParameter()
834{
835 mParameters.clear();
836}
837
838String8 AudioParameter::toString()
839{
840 String8 str = String8("");
841
842 size_t size = mParameters.size();
843 for (size_t i = 0; i < size; i++) {
844 str += mParameters.keyAt(i);
845 str += "=";
846 str += mParameters.valueAt(i);
847 if (i < (size - 1)) str += ";";
848 }
849 return str;
850}
851
852status_t AudioParameter::add(const String8& key, const String8& value)
853{
854 if (mParameters.indexOfKey(key) < 0) {
855 mParameters.add(key, value);
856 return NO_ERROR;
857 } else {
858 mParameters.replaceValueFor(key, value);
859 return ALREADY_EXISTS;
860 }
861}
862
863status_t AudioParameter::addInt(const String8& key, const int value)
864{
865 char str[12];
866 if (snprintf(str, 12, "%d", value) > 0) {
867 String8 str8 = String8(str);
868 return add(key, str8);
869 } else {
870 return BAD_VALUE;
871 }
872}
873
874status_t AudioParameter::addFloat(const String8& key, const float value)
875{
876 char str[23];
877 if (snprintf(str, 23, "%.10f", value) > 0) {
878 String8 str8 = String8(str);
879 return add(key, str8);
880 } else {
881 return BAD_VALUE;
882 }
883}
884
885status_t AudioParameter::remove(const String8& key)
886{
887 if (mParameters.indexOfKey(key) >= 0) {
888 mParameters.removeItem(key);
889 return NO_ERROR;
890 } else {
891 return BAD_VALUE;
892 }
893}
894
895status_t AudioParameter::get(const String8& key, String8& value)
896{
897 if (mParameters.indexOfKey(key) >= 0) {
898 value = mParameters.valueFor(key);
899 return NO_ERROR;
900 } else {
901 return BAD_VALUE;
902 }
903}
904
905status_t AudioParameter::getInt(const String8& key, int& value)
906{
907 String8 str8;
908 status_t result = get(key, str8);
909 value = 0;
910 if (result == NO_ERROR) {
911 int val;
912 if (sscanf(str8.string(), "%d", &val) == 1) {
913 value = val;
914 } else {
915 result = INVALID_OPERATION;
916 }
917 }
918 return result;
919}
920
921status_t AudioParameter::getFloat(const String8& key, float& value)
922{
923 String8 str8;
924 status_t result = get(key, str8);
925 value = 0;
926 if (result == NO_ERROR) {
927 float val;
928 if (sscanf(str8.string(), "%f", &val) == 1) {
929 value = val;
930 } else {
931 result = INVALID_OPERATION;
932 }
933 }
934 return result;
935}
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800936
Eric Laurenta9c322e2009-08-27 00:48:47 -0700937status_t AudioParameter::getAt(size_t index, String8& key, String8& value)
938{
939 if (mParameters.size() > index) {
940 key = mParameters.keyAt(index);
941 value = mParameters.valueAt(index);
942 return NO_ERROR;
943 } else {
944 return BAD_VALUE;
945 }
946}
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800947}; // namespace android
948