blob: 351815bdb440ad1993eab7e2b5362870a5464b8a [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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#include <math.h>
18
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -080019//#define LOG_NDEBUG 0
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080020#define LOG_TAG "A2dpAudioInterface"
21#include <utils/Log.h>
22#include <utils/String8.h>
23
24#include "A2dpAudioInterface.h"
25#include "audio/liba2dp.h"
26
27
28namespace android {
29
30// ----------------------------------------------------------------------------
31
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -080032//AudioHardwareInterface* A2dpAudioInterface::createA2dpInterface()
33//{
34// AudioHardwareInterface* hw = 0;
35//
36// hw = AudioHardwareInterface::create();
37// LOGD("new A2dpAudioInterface(hw: %p)", hw);
38// hw = new A2dpAudioInterface(hw);
39// return hw;
40//}
41
42A2dpAudioInterface::A2dpAudioInterface(AudioHardwareInterface* hw) :
43 mOutput(0), mHardwareInterface(hw), mBluetoothEnabled(true), mSuspended(false)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080044{
45}
46
47A2dpAudioInterface::~A2dpAudioInterface()
48{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -080049 closeOutputStream((AudioStreamOut *)mOutput);
50 delete mHardwareInterface;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080051}
52
53status_t A2dpAudioInterface::initCheck()
54{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -080055 if (mHardwareInterface == 0) return NO_INIT;
56 return mHardwareInterface->initCheck();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080057}
58
59AudioStreamOut* A2dpAudioInterface::openOutputStream(
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -080060 uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080061{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -080062 if (!AudioSystem::isA2dpDevice((AudioSystem::audio_devices)devices)) {
63 LOGV("A2dpAudioInterface::openOutputStream() open HW device: %x", devices);
64 return mHardwareInterface->openOutputStream(devices, format, channels, sampleRate, status);
65 }
66
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080067 status_t err = 0;
68
69 // only one output stream allowed
70 if (mOutput) {
71 if (status)
72 *status = -1;
73 return NULL;
74 }
75
76 // create new output stream
77 A2dpAudioStreamOut* out = new A2dpAudioStreamOut();
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -080078 if ((err = out->set(devices, format, channels, sampleRate)) == NO_ERROR) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080079 mOutput = out;
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -080080 mOutput->setBluetoothEnabled(mBluetoothEnabled);
81 mOutput->setSuspended(mSuspended);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080082 } else {
83 delete out;
84 }
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -080085
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080086 if (status)
87 *status = err;
88 return mOutput;
89}
90
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -080091void A2dpAudioInterface::closeOutputStream(AudioStreamOut* out) {
92 if (mOutput == 0 || mOutput != out) {
93 mHardwareInterface->closeOutputStream(out);
94 }
95 else {
96 delete mOutput;
97 mOutput = 0;
98 }
99}
100
101
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800102AudioStreamIn* A2dpAudioInterface::openInputStream(
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800103 uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status,
104 AudioSystem::audio_in_acoustics acoustics)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800105{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800106 return mHardwareInterface->openInputStream(devices, format, channels, sampleRate, status, acoustics);
107}
108
109void A2dpAudioInterface::closeInputStream(AudioStreamIn* in)
110{
111 return mHardwareInterface->closeInputStream(in);
112}
113
114status_t A2dpAudioInterface::setMode(int mode)
115{
116 return mHardwareInterface->setMode(mode);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800117}
118
119status_t A2dpAudioInterface::setMicMute(bool state)
120{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800121 return mHardwareInterface->setMicMute(state);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122}
123
124status_t A2dpAudioInterface::getMicMute(bool* state)
125{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800126 return mHardwareInterface->getMicMute(state);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800127}
128
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800129status_t A2dpAudioInterface::setParameters(const String8& keyValuePairs)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800130{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800131 AudioParameter param = AudioParameter(keyValuePairs);
132 String8 value;
133 String8 key;
134 status_t status = NO_ERROR;
Nick Pellycb5883e2009-04-01 16:40:01 -0700135
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800136 LOGV("setParameters() %s", keyValuePairs.string());
Nick Pellycb5883e2009-04-01 16:40:01 -0700137
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800138 key = "bluetooth_enabled";
139 if (param.get(key, value) == NO_ERROR) {
140 mBluetoothEnabled = (value == "true");
141 if (mOutput) {
142 mOutput->setBluetoothEnabled(mBluetoothEnabled);
143 }
144 param.remove(key);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800145 }
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800146 key = String8("A2dpSuspended");
147 if (param.get(key, value) == NO_ERROR) {
148 mSuspended = (value == "true");
149 if (mOutput) {
150 mOutput->setSuspended(mSuspended);
151 }
152 param.remove(key);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800153 }
154
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800155 if (param.size()) {
156 status_t hwStatus = mHardwareInterface->setParameters(param.toString());
157 if (status == NO_ERROR) {
158 status = hwStatus;
159 }
160 }
161
162 return status;
163}
164
165String8 A2dpAudioInterface::getParameters(const String8& keys)
166{
167 AudioParameter param = AudioParameter(keys);
168 AudioParameter a2dpParam = AudioParameter();
169 String8 value;
170 String8 key;
171
172 key = "bluetooth_enabled";
173 if (param.get(key, value) == NO_ERROR) {
174 value = mBluetoothEnabled ? "true" : "false";
175 a2dpParam.add(key, value);
176 param.remove(key);
177 }
178 key = "A2dpSuspended";
179 if (param.get(key, value) == NO_ERROR) {
180 value = mSuspended ? "true" : "false";
181 a2dpParam.add(key, value);
182 param.remove(key);
183 }
184
185 String8 keyValuePairs = a2dpParam.toString();
186
187 if (param.size()) {
188 keyValuePairs += ";";
189 keyValuePairs += mHardwareInterface->getParameters(param.toString());
190 }
191
192 LOGV("getParameters() %s", keyValuePairs.string());
193 return keyValuePairs;
194}
195
196size_t A2dpAudioInterface::getInputBufferSize(uint32_t sampleRate, int format, int channelCount)
197{
198 return mHardwareInterface->getInputBufferSize(sampleRate, format, channelCount);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800199}
200
201status_t A2dpAudioInterface::setVoiceVolume(float v)
202{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800203 return mHardwareInterface->setVoiceVolume(v);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800204}
205
206status_t A2dpAudioInterface::setMasterVolume(float v)
207{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800208 return mHardwareInterface->setMasterVolume(v);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800209}
210
211status_t A2dpAudioInterface::dump(int fd, const Vector<String16>& args)
212{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800213 return mHardwareInterface->dumpState(fd, args);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800214}
215
216// ----------------------------------------------------------------------------
217
218A2dpAudioInterface::A2dpAudioStreamOut::A2dpAudioStreamOut() :
Nick Pellycb5883e2009-04-01 16:40:01 -0700219 mFd(-1), mStandby(true), mStartCount(0), mRetryCount(0), mData(NULL),
220 // assume BT enabled to start, this is safe because its only the
221 // enabled->disabled transition we are worried about
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800222 mBluetoothEnabled(true), mDevice(0), mClosing(false), mSuspended(false)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800223{
224 // use any address by default
The Android Open Source Project22f8def2009-03-09 11:52:12 -0700225 strcpy(mA2dpAddress, "00:00:00:00:00:00");
226 init();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800227}
228
229status_t A2dpAudioInterface::A2dpAudioStreamOut::set(
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800230 uint32_t device, int *pFormat, uint32_t *pChannels, uint32_t *pRate)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800231{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800232 int lFormat = pFormat ? *pFormat : 0;
233 uint32_t lChannels = pChannels ? *pChannels : 0;
234 uint32_t lRate = pRate ? *pRate : 0;
235
236 LOGD("A2dpAudioStreamOut::set %x, %d, %d, %d\n", device, lFormat, lChannels, lRate);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800237
238 // fix up defaults
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800239 if (lFormat == 0) lFormat = format();
240 if (lChannels == 0) lChannels = channels();
241 if (lRate == 0) lRate = sampleRate();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800242
243 // check values
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800244 if ((lFormat != format()) ||
245 (lChannels != channels()) ||
246 (lRate != sampleRate())){
247 if (pFormat) *pFormat = format();
248 if (pChannels) *pChannels = channels();
249 if (pRate) *pRate = sampleRate();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800250 return BAD_VALUE;
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800251 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800252
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800253 if (pFormat) *pFormat = lFormat;
254 if (pChannels) *pChannels = lChannels;
255 if (pRate) *pRate = lRate;
256
257 mDevice = device;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800258 return NO_ERROR;
259}
260
261A2dpAudioInterface::A2dpAudioStreamOut::~A2dpAudioStreamOut()
262{
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800263 LOGV("A2dpAudioStreamOut destructor");
264 standby();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800265 close();
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800266 LOGV("A2dpAudioStreamOut destructor returning from close()");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800267}
268
269ssize_t A2dpAudioInterface::A2dpAudioStreamOut::write(const void* buffer, size_t bytes)
Nick Pellycb5883e2009-04-01 16:40:01 -0700270{
The Android Open Source Project22f8def2009-03-09 11:52:12 -0700271 Mutex::Autolock lock(mLock);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800272
The Android Open Source Project22f8def2009-03-09 11:52:12 -0700273 size_t remaining = bytes;
Nick Pellycb5883e2009-04-01 16:40:01 -0700274 status_t status = -1;
275
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800276 if (!mBluetoothEnabled || mClosing || mSuspended) {
277 LOGV("A2dpAudioStreamOut::write(), but bluetooth disabled \
278 mBluetoothEnabled %d, mClosing %d, mSuspended %d",
279 mBluetoothEnabled, mClosing, mSuspended);
Nick Pellycb5883e2009-04-01 16:40:01 -0700280 goto Error;
281 }
282
283 status = init();
The Android Open Source Project22f8def2009-03-09 11:52:12 -0700284 if (status < 0)
285 goto Error;
Nick Pellycb5883e2009-04-01 16:40:01 -0700286
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800287 while (remaining > 0) {
288 status = a2dp_write(mData, buffer, remaining);
289 if (status <= 0) {
290 LOGE("a2dp_write failed err: %d\n", status);
291 goto Error;
292 }
293 remaining -= status;
294 buffer = ((char *)buffer) + status;
295 }
296
297 mStandby = false;
Nick Pellycb5883e2009-04-01 16:40:01 -0700298
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800299 return bytes;
300
301Error:
302 // Simulate audio output timing in case of error
303 usleep(bytes * 1000000 / frameSize() / sampleRate());
304
305 return status;
306}
307
The Android Open Source Project22f8def2009-03-09 11:52:12 -0700308status_t A2dpAudioInterface::A2dpAudioStreamOut::init()
309{
310 if (!mData) {
311 status_t status = a2dp_init(44100, 2, &mData);
312 if (status < 0) {
313 LOGE("a2dp_init failed err: %d\n", status);
314 mData = NULL;
315 return status;
316 }
317 a2dp_set_sink(mData, mA2dpAddress);
318 }
319
320 return 0;
321}
322
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800323status_t A2dpAudioInterface::A2dpAudioStreamOut::standby()
324{
325 int result = 0;
326
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800327 if (mClosing) {
328 LOGV("Ignore standby, closing");
329 return result;
330 }
331
The Android Open Source Project22f8def2009-03-09 11:52:12 -0700332 Mutex::Autolock lock(mLock);
333
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800334 if (!mStandby) {
335 result = a2dp_stop(mData);
336 if (result == 0)
337 mStandby = true;
338 }
339
340 return result;
341}
342
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800343status_t A2dpAudioInterface::A2dpAudioStreamOut::setParameters(const String8& keyValuePairs)
344{
345 AudioParameter param = AudioParameter(keyValuePairs);
346 String8 value;
347 String8 key = String8("a2dp_sink_address");
348 status_t status = NO_ERROR;
349 int device;
350 LOGV("A2dpAudioStreamOut::setParameters() %s", keyValuePairs.string());
351
352 if (param.get(key, value) == NO_ERROR) {
353 if (value.length() != strlen("00:00:00:00:00:00")) {
354 status = BAD_VALUE;
355 } else {
356 setAddress(value.string());
357 }
358 param.remove(key);
359 }
360 key = String8("closing");
361 if (param.get(key, value) == NO_ERROR) {
362 mClosing = (value == "true");
363 param.remove(key);
364 }
365 key = AudioParameter::keyRouting;
366 if (param.getInt(key, device) == NO_ERROR) {
367 if (AudioSystem::isA2dpDevice((AudioSystem::audio_devices)device)) {
368 mDevice = device;
369 status = NO_ERROR;
370 } else {
371 status = BAD_VALUE;
372 }
373 param.remove(key);
374 }
375
376 if (param.size()) {
377 status = BAD_VALUE;
378 }
379 return status;
380}
381
382String8 A2dpAudioInterface::A2dpAudioStreamOut::getParameters(const String8& keys)
383{
384 AudioParameter param = AudioParameter(keys);
385 String8 value;
386 String8 key = String8("a2dp_sink_address");
387
388 if (param.get(key, value) == NO_ERROR) {
389 value = mA2dpAddress;
390 param.add(key, value);
391 }
392 key = AudioParameter::keyRouting;
393 if (param.get(key, value) == NO_ERROR) {
394 param.addInt(key, (int)mDevice);
395 }
396
397 LOGV("A2dpAudioStreamOut::getParameters() %s", param.toString().string());
398 return param.toString();
399}
400
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800401status_t A2dpAudioInterface::A2dpAudioStreamOut::setAddress(const char* address)
402{
The Android Open Source Project22f8def2009-03-09 11:52:12 -0700403 Mutex::Autolock lock(mLock);
404
405 if (strlen(address) != strlen("00:00:00:00:00:00"))
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800406 return -EINVAL;
407
The Android Open Source Project22f8def2009-03-09 11:52:12 -0700408 strcpy(mA2dpAddress, address);
409 if (mData)
410 a2dp_set_sink(mData, mA2dpAddress);
411
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800412 return NO_ERROR;
413}
414
Nick Pellycb5883e2009-04-01 16:40:01 -0700415status_t A2dpAudioInterface::A2dpAudioStreamOut::setBluetoothEnabled(bool enabled)
416{
417 LOGD("setBluetoothEnabled %d", enabled);
418
419 Mutex::Autolock lock(mLock);
420
421 mBluetoothEnabled = enabled;
422 if (!enabled) {
423 return close_l();
424 }
425 return NO_ERROR;
426}
427
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800428status_t A2dpAudioInterface::A2dpAudioStreamOut::setSuspended(bool onOff)
429{
430 LOGV("setSuspended %d", onOff);
431 mSuspended = onOff;
432 standby();
433 return NO_ERROR;
434}
435
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800436status_t A2dpAudioInterface::A2dpAudioStreamOut::close()
437{
Nick Pellycb5883e2009-04-01 16:40:01 -0700438 Mutex::Autolock lock(mLock);
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800439 LOGV("A2dpAudioStreamOut::close() calling close_l()");
Nick Pellycb5883e2009-04-01 16:40:01 -0700440 return close_l();
441}
442
443status_t A2dpAudioInterface::A2dpAudioStreamOut::close_l()
444{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800445 if (mData) {
Jean-Baptiste Querucc8c35c2009-11-12 18:45:53 -0800446 LOGV("A2dpAudioStreamOut::close_l() calling a2dp_cleanup(mData)");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800447 a2dp_cleanup(mData);
448 mData = NULL;
449 }
450 return NO_ERROR;
451}
452
453status_t A2dpAudioInterface::A2dpAudioStreamOut::dump(int fd, const Vector<String16>& args)
454{
455 return NO_ERROR;
456}
457
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800458}; // namespace android