blob: d926cb14fc57c0539e283fe70eb443bd5c5cf763 [file] [log] [blame]
The Android Open Source Project9066cfe2009-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
Eric Laurent80a6a222009-10-08 10:58:19 -070019//#define LOG_NDEBUG 0
The Android Open Source Project9066cfe2009-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"
Eric Laurent6dc08b32010-11-23 17:59:39 -080026#include <hardware_legacy/power.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027
28namespace android {
29
Eric Laurent6dc08b32010-11-23 17:59:39 -080030static const char *sA2dpWakeLock = "A2dpOutputStream";
31#define MAX_WRITE_RETRIES 5
32
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033// ----------------------------------------------------------------------------
34
Eric Laurenta553c252009-07-17 12:17:14 -070035//AudioHardwareInterface* A2dpAudioInterface::createA2dpInterface()
36//{
37// AudioHardwareInterface* hw = 0;
38//
39// hw = AudioHardwareInterface::create();
40// LOGD("new A2dpAudioInterface(hw: %p)", hw);
41// hw = new A2dpAudioInterface(hw);
42// return hw;
43//}
44
45A2dpAudioInterface::A2dpAudioInterface(AudioHardwareInterface* hw) :
Eric Laurent80a6a222009-10-08 10:58:19 -070046 mOutput(0), mHardwareInterface(hw), mBluetoothEnabled(true), mSuspended(false)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047{
48}
49
50A2dpAudioInterface::~A2dpAudioInterface()
51{
Eric Laurenta553c252009-07-17 12:17:14 -070052 closeOutputStream((AudioStreamOut *)mOutput);
53 delete mHardwareInterface;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054}
55
56status_t A2dpAudioInterface::initCheck()
57{
Eric Laurenta553c252009-07-17 12:17:14 -070058 if (mHardwareInterface == 0) return NO_INIT;
59 return mHardwareInterface->initCheck();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060}
61
62AudioStreamOut* A2dpAudioInterface::openOutputStream(
Eric Laurenta553c252009-07-17 12:17:14 -070063 uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064{
Eric Laurenta553c252009-07-17 12:17:14 -070065 if (!AudioSystem::isA2dpDevice((AudioSystem::audio_devices)devices)) {
66 LOGV("A2dpAudioInterface::openOutputStream() open HW device: %x", devices);
67 return mHardwareInterface->openOutputStream(devices, format, channels, sampleRate, status);
68 }
69
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070 status_t err = 0;
71
72 // only one output stream allowed
73 if (mOutput) {
74 if (status)
75 *status = -1;
76 return NULL;
77 }
78
79 // create new output stream
80 A2dpAudioStreamOut* out = new A2dpAudioStreamOut();
Eric Laurenta553c252009-07-17 12:17:14 -070081 if ((err = out->set(devices, format, channels, sampleRate)) == NO_ERROR) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 mOutput = out;
Eric Laurenta553c252009-07-17 12:17:14 -070083 mOutput->setBluetoothEnabled(mBluetoothEnabled);
Eric Laurent80a6a222009-10-08 10:58:19 -070084 mOutput->setSuspended(mSuspended);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 } else {
86 delete out;
87 }
Eric Laurenta553c252009-07-17 12:17:14 -070088
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 if (status)
90 *status = err;
91 return mOutput;
92}
93
Eric Laurenta553c252009-07-17 12:17:14 -070094void A2dpAudioInterface::closeOutputStream(AudioStreamOut* out) {
95 if (mOutput == 0 || mOutput != out) {
Eric Laurent351def22009-08-04 07:43:10 -070096 mHardwareInterface->closeOutputStream(out);
Eric Laurenta553c252009-07-17 12:17:14 -070097 }
98 else {
99 delete mOutput;
100 mOutput = 0;
101 }
102}
103
104
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105AudioStreamIn* A2dpAudioInterface::openInputStream(
Eric Laurenta553c252009-07-17 12:17:14 -0700106 uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status,
107 AudioSystem::audio_in_acoustics acoustics)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108{
Eric Laurenta553c252009-07-17 12:17:14 -0700109 return mHardwareInterface->openInputStream(devices, format, channels, sampleRate, status, acoustics);
110}
111
112void A2dpAudioInterface::closeInputStream(AudioStreamIn* in)
113{
114 return mHardwareInterface->closeInputStream(in);
115}
116
117status_t A2dpAudioInterface::setMode(int mode)
118{
119 return mHardwareInterface->setMode(mode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120}
121
122status_t A2dpAudioInterface::setMicMute(bool state)
123{
Eric Laurenta553c252009-07-17 12:17:14 -0700124 return mHardwareInterface->setMicMute(state);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800125}
126
127status_t A2dpAudioInterface::getMicMute(bool* state)
128{
Eric Laurenta553c252009-07-17 12:17:14 -0700129 return mHardwareInterface->getMicMute(state);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130}
131
Eric Laurenta553c252009-07-17 12:17:14 -0700132status_t A2dpAudioInterface::setParameters(const String8& keyValuePairs)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800133{
Eric Laurenta553c252009-07-17 12:17:14 -0700134 AudioParameter param = AudioParameter(keyValuePairs);
135 String8 value;
136 String8 key;
137 status_t status = NO_ERROR;
Nick Pelly0827c812009-04-02 01:21:13 -0700138
Eric Laurenta553c252009-07-17 12:17:14 -0700139 LOGV("setParameters() %s", keyValuePairs.string());
Nick Pelly0827c812009-04-02 01:21:13 -0700140
Eric Laurenta553c252009-07-17 12:17:14 -0700141 key = "bluetooth_enabled";
142 if (param.get(key, value) == NO_ERROR) {
143 mBluetoothEnabled = (value == "true");
144 if (mOutput) {
145 mOutput->setBluetoothEnabled(mBluetoothEnabled);
146 }
147 param.remove(key);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 }
Eric Laurent80a6a222009-10-08 10:58:19 -0700149 key = String8("A2dpSuspended");
150 if (param.get(key, value) == NO_ERROR) {
151 mSuspended = (value == "true");
152 if (mOutput) {
153 mOutput->setSuspended(mSuspended);
154 }
155 param.remove(key);
156 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157
Eric Laurenta553c252009-07-17 12:17:14 -0700158 if (param.size()) {
159 status_t hwStatus = mHardwareInterface->setParameters(param.toString());
160 if (status == NO_ERROR) {
161 status = hwStatus;
162 }
163 }
164
165 return status;
166}
167
168String8 A2dpAudioInterface::getParameters(const String8& keys)
169{
170 AudioParameter param = AudioParameter(keys);
171 AudioParameter a2dpParam = AudioParameter();
172 String8 value;
173 String8 key;
174
175 key = "bluetooth_enabled";
176 if (param.get(key, value) == NO_ERROR) {
177 value = mBluetoothEnabled ? "true" : "false";
178 a2dpParam.add(key, value);
179 param.remove(key);
180 }
Eric Laurent80a6a222009-10-08 10:58:19 -0700181 key = "A2dpSuspended";
182 if (param.get(key, value) == NO_ERROR) {
183 value = mSuspended ? "true" : "false";
184 a2dpParam.add(key, value);
185 param.remove(key);
186 }
Eric Laurenta553c252009-07-17 12:17:14 -0700187
188 String8 keyValuePairs = a2dpParam.toString();
189
190 if (param.size()) {
Eric Laurent4ad9ec42009-11-25 06:08:44 -0800191 if (keyValuePairs != "") {
192 keyValuePairs += ";";
193 }
Eric Laurenta553c252009-07-17 12:17:14 -0700194 keyValuePairs += mHardwareInterface->getParameters(param.toString());
195 }
196
197 LOGV("getParameters() %s", keyValuePairs.string());
198 return keyValuePairs;
199}
200
201size_t A2dpAudioInterface::getInputBufferSize(uint32_t sampleRate, int format, int channelCount)
202{
203 return mHardwareInterface->getInputBufferSize(sampleRate, format, channelCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204}
205
206status_t A2dpAudioInterface::setVoiceVolume(float v)
207{
Eric Laurenta553c252009-07-17 12:17:14 -0700208 return mHardwareInterface->setVoiceVolume(v);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800209}
210
211status_t A2dpAudioInterface::setMasterVolume(float v)
212{
Eric Laurenta553c252009-07-17 12:17:14 -0700213 return mHardwareInterface->setMasterVolume(v);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214}
215
216status_t A2dpAudioInterface::dump(int fd, const Vector<String16>& args)
217{
Eric Laurenta553c252009-07-17 12:17:14 -0700218 return mHardwareInterface->dumpState(fd, args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800219}
220
221// ----------------------------------------------------------------------------
222
223A2dpAudioInterface::A2dpAudioStreamOut::A2dpAudioStreamOut() :
Nick Pelly0827c812009-04-02 01:21:13 -0700224 mFd(-1), mStandby(true), mStartCount(0), mRetryCount(0), mData(NULL),
225 // assume BT enabled to start, this is safe because its only the
226 // enabled->disabled transition we are worried about
Eric Laurent80a6a222009-10-08 10:58:19 -0700227 mBluetoothEnabled(true), mDevice(0), mClosing(false), mSuspended(false)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800228{
229 // use any address by default
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700230 strcpy(mA2dpAddress, "00:00:00:00:00:00");
231 init();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800232}
233
234status_t A2dpAudioInterface::A2dpAudioStreamOut::set(
Eric Laurenta553c252009-07-17 12:17:14 -0700235 uint32_t device, int *pFormat, uint32_t *pChannels, uint32_t *pRate)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236{
Eric Laurenta553c252009-07-17 12:17:14 -0700237 int lFormat = pFormat ? *pFormat : 0;
238 uint32_t lChannels = pChannels ? *pChannels : 0;
239 uint32_t lRate = pRate ? *pRate : 0;
240
241 LOGD("A2dpAudioStreamOut::set %x, %d, %d, %d\n", device, lFormat, lChannels, lRate);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242
243 // fix up defaults
Eric Laurenta553c252009-07-17 12:17:14 -0700244 if (lFormat == 0) lFormat = format();
245 if (lChannels == 0) lChannels = channels();
246 if (lRate == 0) lRate = sampleRate();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247
248 // check values
Eric Laurenta553c252009-07-17 12:17:14 -0700249 if ((lFormat != format()) ||
250 (lChannels != channels()) ||
251 (lRate != sampleRate())){
252 if (pFormat) *pFormat = format();
253 if (pChannels) *pChannels = channels();
254 if (pRate) *pRate = sampleRate();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 return BAD_VALUE;
Eric Laurenta553c252009-07-17 12:17:14 -0700256 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257
Eric Laurenta553c252009-07-17 12:17:14 -0700258 if (pFormat) *pFormat = lFormat;
259 if (pChannels) *pChannels = lChannels;
260 if (pRate) *pRate = lRate;
261
262 mDevice = device;
Eric Laurente7155e62010-12-17 10:27:02 -0800263 mBufferDurationUs = ((bufferSize() * 1000 )/ frameSize() / sampleRate()) * 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 return NO_ERROR;
265}
266
267A2dpAudioInterface::A2dpAudioStreamOut::~A2dpAudioStreamOut()
268{
Eric Laurenta553c252009-07-17 12:17:14 -0700269 LOGV("A2dpAudioStreamOut destructor");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800270 close();
Eric Laurenta553c252009-07-17 12:17:14 -0700271 LOGV("A2dpAudioStreamOut destructor returning from close()");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272}
273
274ssize_t A2dpAudioInterface::A2dpAudioStreamOut::write(const void* buffer, size_t bytes)
Nick Pelly0827c812009-04-02 01:21:13 -0700275{
Nick Pelly0827c812009-04-02 01:21:13 -0700276 status_t status = -1;
Eric Laurent6dc08b32010-11-23 17:59:39 -0800277 {
278 Mutex::Autolock lock(mLock);
Nick Pelly0827c812009-04-02 01:21:13 -0700279
Eric Laurent6dc08b32010-11-23 17:59:39 -0800280 size_t remaining = bytes;
Nick Pelly0827c812009-04-02 01:21:13 -0700281
Eric Laurent6dc08b32010-11-23 17:59:39 -0800282 if (!mBluetoothEnabled || mClosing || mSuspended) {
283 LOGV("A2dpAudioStreamOut::write(), but bluetooth disabled \
284 mBluetoothEnabled %d, mClosing %d, mSuspended %d",
285 mBluetoothEnabled, mClosing, mSuspended);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800286 goto Error;
287 }
Eric Laurent6dc08b32010-11-23 17:59:39 -0800288
289 if (mStandby) {
290 acquire_wake_lock (PARTIAL_WAKE_LOCK, sA2dpWakeLock);
291 mStandby = false;
Eric Laurente7155e62010-12-17 10:27:02 -0800292 mLastWriteTime = systemTime();
Eric Laurent6dc08b32010-11-23 17:59:39 -0800293 }
294
295 status = init();
296 if (status < 0)
297 goto Error;
298
299 int retries = MAX_WRITE_RETRIES;
300 while (remaining > 0 && retries) {
301 status = a2dp_write(mData, buffer, remaining);
302 if (status < 0) {
303 LOGE("a2dp_write failed err: %d\n", status);
304 goto Error;
305 }
306 if (status == 0) {
307 retries--;
308 }
309 remaining -= status;
310 buffer = (char *)buffer + status;
311 }
312
Eric Laurente7155e62010-12-17 10:27:02 -0800313 // if A2DP sink runs abnormally fast, sleep a little so that audioflinger mixer thread
314 // does no spin and starve other threads.
315 // NOTE: It is likely that the A2DP headset is being disconnected
316 nsecs_t now = systemTime();
317 if ((uint32_t)ns2us(now - mLastWriteTime) < (mBufferDurationUs >> 2)) {
318 LOGV("A2DP sink runs too fast");
319 usleep(mBufferDurationUs - (uint32_t)ns2us(now - mLastWriteTime));
320 }
321 mLastWriteTime = now;
Eric Laurent6dc08b32010-11-23 17:59:39 -0800322 return bytes;
323
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800324 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800325Error:
Eric Laurent6dc08b32010-11-23 17:59:39 -0800326
327 standby();
328
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 // Simulate audio output timing in case of error
Eric Laurente7155e62010-12-17 10:27:02 -0800330 usleep(mBufferDurationUs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800331
332 return status;
333}
334
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700335status_t A2dpAudioInterface::A2dpAudioStreamOut::init()
336{
337 if (!mData) {
338 status_t status = a2dp_init(44100, 2, &mData);
339 if (status < 0) {
340 LOGE("a2dp_init failed err: %d\n", status);
341 mData = NULL;
342 return status;
343 }
344 a2dp_set_sink(mData, mA2dpAddress);
345 }
346
347 return 0;
348}
349
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350status_t A2dpAudioInterface::A2dpAudioStreamOut::standby()
351{
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700352 Mutex::Autolock lock(mLock);
Eric Laurent6dc08b32010-11-23 17:59:39 -0800353 return standby_l();
354}
355
356status_t A2dpAudioInterface::A2dpAudioStreamOut::standby_l()
357{
358 int result = NO_ERROR;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700359
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 if (!mStandby) {
Eric Laurent6dc08b32010-11-23 17:59:39 -0800361 LOGV_IF(mClosing || !mBluetoothEnabled, "Standby skip stop: closing %d enabled %d",
362 mClosing, mBluetoothEnabled);
363 if (!mClosing && mBluetoothEnabled) {
364 result = a2dp_stop(mData);
365 }
366 release_wake_lock(sA2dpWakeLock);
367 mStandby = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 }
369
370 return result;
371}
372
Eric Laurenta553c252009-07-17 12:17:14 -0700373status_t A2dpAudioInterface::A2dpAudioStreamOut::setParameters(const String8& keyValuePairs)
374{
375 AudioParameter param = AudioParameter(keyValuePairs);
376 String8 value;
377 String8 key = String8("a2dp_sink_address");
378 status_t status = NO_ERROR;
379 int device;
380 LOGV("A2dpAudioStreamOut::setParameters() %s", keyValuePairs.string());
381
382 if (param.get(key, value) == NO_ERROR) {
383 if (value.length() != strlen("00:00:00:00:00:00")) {
384 status = BAD_VALUE;
385 } else {
386 setAddress(value.string());
387 }
388 param.remove(key);
389 }
Eric Laurentfe4fc912009-08-12 05:49:58 -0700390 key = String8("closing");
391 if (param.get(key, value) == NO_ERROR) {
392 mClosing = (value == "true");
Eric Laurent6dc08b32010-11-23 17:59:39 -0800393 if (mClosing) {
394 standby();
395 }
Eric Laurentfe4fc912009-08-12 05:49:58 -0700396 param.remove(key);
397 }
Eric Laurenta553c252009-07-17 12:17:14 -0700398 key = AudioParameter::keyRouting;
399 if (param.getInt(key, device) == NO_ERROR) {
400 if (AudioSystem::isA2dpDevice((AudioSystem::audio_devices)device)) {
401 mDevice = device;
402 status = NO_ERROR;
403 } else {
404 status = BAD_VALUE;
405 }
406 param.remove(key);
407 }
408
409 if (param.size()) {
410 status = BAD_VALUE;
411 }
412 return status;
413}
414
415String8 A2dpAudioInterface::A2dpAudioStreamOut::getParameters(const String8& keys)
416{
417 AudioParameter param = AudioParameter(keys);
418 String8 value;
419 String8 key = String8("a2dp_sink_address");
420
421 if (param.get(key, value) == NO_ERROR) {
422 value = mA2dpAddress;
423 param.add(key, value);
424 }
425 key = AudioParameter::keyRouting;
426 if (param.get(key, value) == NO_ERROR) {
427 param.addInt(key, (int)mDevice);
428 }
429
430 LOGV("A2dpAudioStreamOut::getParameters() %s", param.toString().string());
431 return param.toString();
432}
433
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800434status_t A2dpAudioInterface::A2dpAudioStreamOut::setAddress(const char* address)
435{
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700436 Mutex::Autolock lock(mLock);
437
438 if (strlen(address) != strlen("00:00:00:00:00:00"))
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800439 return -EINVAL;
440
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700441 strcpy(mA2dpAddress, address);
442 if (mData)
443 a2dp_set_sink(mData, mA2dpAddress);
444
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800445 return NO_ERROR;
446}
447
Nick Pelly0827c812009-04-02 01:21:13 -0700448status_t A2dpAudioInterface::A2dpAudioStreamOut::setBluetoothEnabled(bool enabled)
449{
450 LOGD("setBluetoothEnabled %d", enabled);
451
452 Mutex::Autolock lock(mLock);
453
454 mBluetoothEnabled = enabled;
455 if (!enabled) {
456 return close_l();
457 }
458 return NO_ERROR;
459}
460
Eric Laurent80a6a222009-10-08 10:58:19 -0700461status_t A2dpAudioInterface::A2dpAudioStreamOut::setSuspended(bool onOff)
462{
463 LOGV("setSuspended %d", onOff);
464 mSuspended = onOff;
465 standby();
466 return NO_ERROR;
467}
468
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800469status_t A2dpAudioInterface::A2dpAudioStreamOut::close()
470{
Nick Pelly0827c812009-04-02 01:21:13 -0700471 Mutex::Autolock lock(mLock);
Eric Laurenta553c252009-07-17 12:17:14 -0700472 LOGV("A2dpAudioStreamOut::close() calling close_l()");
Nick Pelly0827c812009-04-02 01:21:13 -0700473 return close_l();
474}
475
476status_t A2dpAudioInterface::A2dpAudioStreamOut::close_l()
477{
Eric Laurent6dc08b32010-11-23 17:59:39 -0800478 standby_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800479 if (mData) {
Eric Laurenta553c252009-07-17 12:17:14 -0700480 LOGV("A2dpAudioStreamOut::close_l() calling a2dp_cleanup(mData)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800481 a2dp_cleanup(mData);
482 mData = NULL;
483 }
484 return NO_ERROR;
485}
486
487status_t A2dpAudioInterface::A2dpAudioStreamOut::dump(int fd, const Vector<String16>& args)
488{
489 return NO_ERROR;
490}
491
Eric Laurent0986e792010-01-19 17:37:09 -0800492status_t A2dpAudioInterface::A2dpAudioStreamOut::getRenderPosition(uint32_t *driverFrames)
493{
494 //TODO: enable when supported by driver
495 return INVALID_OPERATION;
496}
497
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800498}; // namespace android