blob: 99dcf45d778d638533767fd19183ec5d12fc9444 [file] [log] [blame]
Glenn Kasten99e53b82012-01-19 08:59:58 -08001/*
Mathias Agopian65ab4712010-07-14 17:59:35 -07002**
3** Copyright 2007, 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
19#define LOG_TAG "AudioFlinger"
20//#define LOG_NDEBUG 0
21
22#include <math.h>
23#include <signal.h>
24#include <sys/time.h>
25#include <sys/resource.h>
26
Gloria Wang9ee159b2011-02-24 14:51:45 -080027#include <binder/IPCThreadState.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070028#include <binder/IServiceManager.h>
29#include <utils/Log.h>
30#include <binder/Parcel.h>
31#include <binder/IPCThreadState.h>
32#include <utils/String16.h>
33#include <utils/threads.h>
Eric Laurent38ccae22011-03-28 18:37:07 -070034#include <utils/Atomic.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070035
Dima Zavinfce7a472011-04-19 22:30:36 -070036#include <cutils/bitops.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070037#include <cutils/properties.h>
Glenn Kastenf6b16782011-12-15 09:51:17 -080038#include <cutils/compiler.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070039
Glenn Kastend3cee2f2012-03-13 17:55:35 -070040#undef ADD_BATTERY_DATA
41
42#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -080043#include <media/IMediaPlayerService.h>
Glenn Kasten25b248e2012-01-03 15:28:29 -080044#include <media/IMediaDeathNotifier.h>
Glenn Kastend3cee2f2012-03-13 17:55:35 -070045#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -070046
47#include <private/media/AudioTrackShared.h>
48#include <private/media/AudioEffectShared.h>
Dima Zavinfce7a472011-04-19 22:30:36 -070049
Dima Zavin64760242011-05-11 14:15:23 -070050#include <system/audio.h>
Dima Zavin7394a4f2011-06-13 18:16:26 -070051#include <hardware/audio.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070052
53#include "AudioMixer.h"
54#include "AudioFlinger.h"
Glenn Kasten44deb052012-02-05 18:09:08 -080055#include "ServiceUtilities.h"
Mathias Agopian65ab4712010-07-14 17:59:35 -070056
Mathias Agopian65ab4712010-07-14 17:59:35 -070057#include <media/EffectsFactoryApi.h>
Eric Laurent6d8b6942011-06-24 07:01:31 -070058#include <audio_effects/effect_visualizer.h>
Eric Laurent59bd0da2011-08-01 09:52:20 -070059#include <audio_effects/effect_ns.h>
60#include <audio_effects/effect_aec.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070061
Glenn Kasten3b21c502011-12-15 09:52:39 -080062#include <audio_utils/primitives.h>
63
Eric Laurentfeb0db62011-07-22 09:04:31 -070064#include <powermanager/PowerManager.h>
Glenn Kasten190a46f2012-03-06 11:27:10 -080065
Glenn Kasten4d8d0c32011-07-08 15:26:12 -070066// #define DEBUG_CPU_USAGE 10 // log statistics every n wall clock seconds
Glenn Kasten190a46f2012-03-06 11:27:10 -080067#ifdef DEBUG_CPU_USAGE
68#include <cpustats/CentralTendencyStatistics.h>
69#include <cpustats/ThreadCpuUsage.h>
70#endif
Glenn Kasten4d8d0c32011-07-08 15:26:12 -070071
John Grossman4ff14ba2012-02-08 16:37:41 -080072#include <common_time/cc_helper.h>
73#include <common_time/local_clock.h>
74
Mathias Agopian65ab4712010-07-14 17:59:35 -070075// ----------------------------------------------------------------------------
Mathias Agopian65ab4712010-07-14 17:59:35 -070076
John Grossman1c345192012-03-27 14:00:17 -070077// Note: the following macro is used for extremely verbose logging message. In
78// order to run with ALOG_ASSERT turned on, we need to have LOG_NDEBUG set to
79// 0; but one side effect of this is to turn all LOGV's as well. Some messages
80// are so verbose that we want to suppress them even when we have ALOG_ASSERT
81// turned on. Do not uncomment the #def below unless you really know what you
82// are doing and want to see all of the extremely verbose messages.
83//#define VERY_VERY_VERBOSE_LOGGING
84#ifdef VERY_VERY_VERBOSE_LOGGING
85#define ALOGVV ALOGV
86#else
87#define ALOGVV(a...) do { } while(0)
88#endif
Eric Laurentde070132010-07-13 04:45:46 -070089
Mathias Agopian65ab4712010-07-14 17:59:35 -070090namespace android {
91
Glenn Kastenec1d6b52011-12-12 09:04:45 -080092static const char kDeadlockedString[] = "AudioFlinger may be deadlocked\n";
93static const char kHardwareLockedString[] = "Hardware lock is taken\n";
Mathias Agopian65ab4712010-07-14 17:59:35 -070094
Mathias Agopian65ab4712010-07-14 17:59:35 -070095static const float MAX_GAIN = 4096.0f;
Glenn Kastenb1cf75c2012-01-17 12:20:54 -080096static const uint32_t MAX_GAIN_INT = 0x1000;
Mathias Agopian65ab4712010-07-14 17:59:35 -070097
98// retry counts for buffer fill timeout
99// 50 * ~20msecs = 1 second
100static const int8_t kMaxTrackRetries = 50;
101static const int8_t kMaxTrackStartupRetries = 50;
102// allow less retry attempts on direct output thread.
103// direct outputs can be a scarce resource in audio hardware and should
104// be released as quickly as possible.
105static const int8_t kMaxTrackRetriesDirect = 2;
106
107static const int kDumpLockRetries = 50;
Glenn Kasten7dede872011-12-13 11:04:14 -0800108static const int kDumpLockSleepUs = 20000;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700109
Glenn Kasten7dede872011-12-13 11:04:14 -0800110// don't warn about blocked writes or record buffer overflows more often than this
111static const nsecs_t kWarningThrottleNs = seconds(5);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700112
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700113// RecordThread loop sleep time upon application overrun or audio HAL read error
114static const int kRecordThreadSleepUs = 5000;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700115
Glenn Kasten7dede872011-12-13 11:04:14 -0800116// maximum time to wait for setParameters to complete
117static const nsecs_t kSetParametersTimeoutNs = seconds(2);
Eric Laurent60cd0a02011-09-13 11:40:21 -0700118
Eric Laurent7cafbb32011-11-22 18:50:29 -0800119// minimum sleep time for the mixer thread loop when tracks are active but in underrun
120static const uint32_t kMinThreadSleepTimeUs = 5000;
121// maximum divider applied to the active sleep time in the mixer thread loop
122static const uint32_t kMaxThreadSleepTimeShift = 2;
123
John Grossman4ff14ba2012-02-08 16:37:41 -0800124nsecs_t AudioFlinger::mStandbyTimeInNsecs = kDefaultStandbyTimeInNsecs;
Eric Laurent7cafbb32011-11-22 18:50:29 -0800125
Mathias Agopian65ab4712010-07-14 17:59:35 -0700126// ----------------------------------------------------------------------------
127
Glenn Kastend3cee2f2012-03-13 17:55:35 -0700128#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -0800129// To collect the amplifier usage
130static void addBatteryData(uint32_t params) {
Glenn Kasten25b248e2012-01-03 15:28:29 -0800131 sp<IMediaPlayerService> service = IMediaDeathNotifier::getMediaPlayerService();
132 if (service == NULL) {
133 // it already logged
Gloria Wang9ee159b2011-02-24 14:51:45 -0800134 return;
135 }
136
137 service->addBatteryData(params);
138}
Glenn Kastend3cee2f2012-03-13 17:55:35 -0700139#endif
Gloria Wang9ee159b2011-02-24 14:51:45 -0800140
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700141static int load_audio_interface(const char *if_name, audio_hw_device_t **dev)
Dima Zavin799a70e2011-04-18 16:57:27 -0700142{
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700143 const hw_module_t *mod;
Dima Zavin799a70e2011-04-18 16:57:27 -0700144 int rc;
145
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700146 rc = hw_get_module_by_class(AUDIO_HARDWARE_MODULE_ID, if_name, &mod);
147 ALOGE_IF(rc, "%s couldn't load audio hw module %s.%s (%s)", __func__,
148 AUDIO_HARDWARE_MODULE_ID, if_name, strerror(-rc));
149 if (rc) {
Dima Zavin799a70e2011-04-18 16:57:27 -0700150 goto out;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700151 }
152 rc = audio_hw_device_open(mod, dev);
153 ALOGE_IF(rc, "%s couldn't open audio hw device in %s.%s (%s)", __func__,
154 AUDIO_HARDWARE_MODULE_ID, if_name, strerror(-rc));
155 if (rc) {
Dima Zavin799a70e2011-04-18 16:57:27 -0700156 goto out;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700157 }
158 if ((*dev)->common.version != AUDIO_DEVICE_API_VERSION_CURRENT) {
159 ALOGE("%s wrong audio hw device version %04x", __func__, (*dev)->common.version);
160 rc = BAD_VALUE;
161 goto out;
162 }
Dima Zavin799a70e2011-04-18 16:57:27 -0700163 return 0;
164
165out:
Dima Zavin799a70e2011-04-18 16:57:27 -0700166 *dev = NULL;
167 return rc;
168}
169
Mathias Agopian65ab4712010-07-14 17:59:35 -0700170// ----------------------------------------------------------------------------
171
172AudioFlinger::AudioFlinger()
173 : BnAudioFlinger(),
John Grossman4ff14ba2012-02-08 16:37:41 -0800174 mPrimaryHardwareDev(NULL),
175 mHardwareStatus(AUDIO_HW_IDLE), // see also onFirstRef()
176 mMasterVolume(1.0f),
177 mMasterVolumeSupportLvl(MVS_NONE),
178 mMasterMute(false),
179 mNextUniqueId(1),
180 mMode(AUDIO_MODE_INVALID),
181 mBtNrecIsOff(false)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700182{
Dima Zavin5a61d2f2011-04-19 19:04:32 -0700183}
184
185void AudioFlinger::onFirstRef()
186{
Dima Zavin799a70e2011-04-18 16:57:27 -0700187 int rc = 0;
Dima Zavinfce7a472011-04-19 22:30:36 -0700188
Eric Laurent93575202011-01-18 18:39:02 -0800189 Mutex::Autolock _l(mLock);
190
Dima Zavin799a70e2011-04-18 16:57:27 -0700191 /* TODO: move all this work into an Init() function */
John Grossman4ff14ba2012-02-08 16:37:41 -0800192 char val_str[PROPERTY_VALUE_MAX] = { 0 };
193 if (property_get("ro.audio.flinger_standbytime_ms", val_str, NULL) >= 0) {
194 uint32_t int_val;
195 if (1 == sscanf(val_str, "%u", &int_val)) {
196 mStandbyTimeInNsecs = milliseconds(int_val);
197 ALOGI("Using %u mSec as standby time.", int_val);
198 } else {
199 mStandbyTimeInNsecs = kDefaultStandbyTimeInNsecs;
200 ALOGI("Using default %u mSec as standby time.",
201 (uint32_t)(mStandbyTimeInNsecs / 1000000));
202 }
203 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700204
Eric Laurenta4c5a552012-03-29 10:12:40 -0700205 mMode = AUDIO_MODE_NORMAL;
206 mMasterVolumeSW = 1.0;
207 mMasterVolume = 1.0;
John Grossman4ff14ba2012-02-08 16:37:41 -0800208 mHardwareStatus = AUDIO_HW_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700209}
210
211AudioFlinger::~AudioFlinger()
212{
Dima Zavin799a70e2011-04-18 16:57:27 -0700213
Mathias Agopian65ab4712010-07-14 17:59:35 -0700214 while (!mRecordThreads.isEmpty()) {
215 // closeInput() will remove first entry from mRecordThreads
216 closeInput(mRecordThreads.keyAt(0));
217 }
218 while (!mPlaybackThreads.isEmpty()) {
219 // closeOutput() will remove first entry from mPlaybackThreads
220 closeOutput(mPlaybackThreads.keyAt(0));
221 }
Dima Zavin799a70e2011-04-18 16:57:27 -0700222
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800223 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
224 // no mHardwareLock needed, as there are no other references to this
Eric Laurenta4c5a552012-03-29 10:12:40 -0700225 audio_hw_device_close(mAudioHwDevs.valueAt(i)->hwDevice());
226 delete mAudioHwDevs.valueAt(i);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700227 }
228}
229
Eric Laurenta4c5a552012-03-29 10:12:40 -0700230static const char * const audio_interfaces[] = {
231 AUDIO_HARDWARE_MODULE_ID_PRIMARY,
232 AUDIO_HARDWARE_MODULE_ID_A2DP,
233 AUDIO_HARDWARE_MODULE_ID_USB,
234};
235#define ARRAY_SIZE(x) (sizeof((x))/sizeof(((x)[0])))
236
237audio_hw_device_t* AudioFlinger::findSuitableHwDev_l(audio_module_handle_t module, uint32_t devices)
Dima Zavin799a70e2011-04-18 16:57:27 -0700238{
Eric Laurenta4c5a552012-03-29 10:12:40 -0700239 // if module is 0, the request comes from an old policy manager and we should load
240 // well known modules
241 if (module == 0) {
242 ALOGW("findSuitableHwDev_l() loading well know audio hw modules");
243 for (size_t i = 0; i < ARRAY_SIZE(audio_interfaces); i++) {
244 loadHwModule_l(audio_interfaces[i]);
245 }
246 } else {
247 // check a match for the requested module handle
248 AudioHwDevice *audioHwdevice = mAudioHwDevs.valueFor(module);
249 if (audioHwdevice != NULL) {
250 return audioHwdevice->hwDevice();
251 }
252 }
253 // then try to find a module supporting the requested device.
Dima Zavin799a70e2011-04-18 16:57:27 -0700254 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700255 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
Dima Zavin799a70e2011-04-18 16:57:27 -0700256 if ((dev->get_supported_devices(dev) & devices) == devices)
257 return dev;
258 }
Eric Laurenta4c5a552012-03-29 10:12:40 -0700259
Dima Zavin799a70e2011-04-18 16:57:27 -0700260 return NULL;
261}
Mathias Agopian65ab4712010-07-14 17:59:35 -0700262
263status_t AudioFlinger::dumpClients(int fd, const Vector<String16>& args)
264{
265 const size_t SIZE = 256;
266 char buffer[SIZE];
267 String8 result;
268
269 result.append("Clients:\n");
270 for (size_t i = 0; i < mClients.size(); ++i) {
Glenn Kasten77c11192012-01-25 14:27:41 -0800271 sp<Client> client = mClients.valueAt(i).promote();
272 if (client != 0) {
273 snprintf(buffer, SIZE, " pid: %d\n", client->pid());
274 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700275 }
276 }
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700277
278 result.append("Global session refs:\n");
Glenn Kasten012ca6b2012-03-06 11:22:01 -0800279 result.append(" session pid count\n");
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700280 for (size_t i = 0; i < mAudioSessionRefs.size(); i++) {
281 AudioSessionRef *r = mAudioSessionRefs[i];
Glenn Kasten012ca6b2012-03-06 11:22:01 -0800282 snprintf(buffer, SIZE, " %7d %3d %3d\n", r->mSessionid, r->mPid, r->mCnt);
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700283 result.append(buffer);
284 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700285 write(fd, result.string(), result.size());
286 return NO_ERROR;
287}
288
289
290status_t AudioFlinger::dumpInternals(int fd, const Vector<String16>& args)
291{
292 const size_t SIZE = 256;
293 char buffer[SIZE];
294 String8 result;
Glenn Kastena4454b42012-01-04 11:02:33 -0800295 hardware_call_state hardwareStatus = mHardwareStatus;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700296
John Grossman4ff14ba2012-02-08 16:37:41 -0800297 snprintf(buffer, SIZE, "Hardware status: %d\n"
298 "Standby Time mSec: %u\n",
299 hardwareStatus,
300 (uint32_t)(mStandbyTimeInNsecs / 1000000));
Mathias Agopian65ab4712010-07-14 17:59:35 -0700301 result.append(buffer);
302 write(fd, result.string(), result.size());
303 return NO_ERROR;
304}
305
306status_t AudioFlinger::dumpPermissionDenial(int fd, const Vector<String16>& args)
307{
308 const size_t SIZE = 256;
309 char buffer[SIZE];
310 String8 result;
311 snprintf(buffer, SIZE, "Permission Denial: "
312 "can't dump AudioFlinger from pid=%d, uid=%d\n",
313 IPCThreadState::self()->getCallingPid(),
314 IPCThreadState::self()->getCallingUid());
315 result.append(buffer);
316 write(fd, result.string(), result.size());
317 return NO_ERROR;
318}
319
320static bool tryLock(Mutex& mutex)
321{
322 bool locked = false;
323 for (int i = 0; i < kDumpLockRetries; ++i) {
324 if (mutex.tryLock() == NO_ERROR) {
325 locked = true;
326 break;
327 }
Glenn Kasten7dede872011-12-13 11:04:14 -0800328 usleep(kDumpLockSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700329 }
330 return locked;
331}
332
333status_t AudioFlinger::dump(int fd, const Vector<String16>& args)
334{
Glenn Kasten44deb052012-02-05 18:09:08 -0800335 if (!dumpAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700336 dumpPermissionDenial(fd, args);
337 } else {
338 // get state of hardware lock
339 bool hardwareLocked = tryLock(mHardwareLock);
340 if (!hardwareLocked) {
341 String8 result(kHardwareLockedString);
342 write(fd, result.string(), result.size());
343 } else {
344 mHardwareLock.unlock();
345 }
346
347 bool locked = tryLock(mLock);
348
349 // failed to lock - AudioFlinger is probably deadlocked
350 if (!locked) {
351 String8 result(kDeadlockedString);
352 write(fd, result.string(), result.size());
353 }
354
355 dumpClients(fd, args);
356 dumpInternals(fd, args);
357
358 // dump playback threads
359 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
360 mPlaybackThreads.valueAt(i)->dump(fd, args);
361 }
362
363 // dump record threads
364 for (size_t i = 0; i < mRecordThreads.size(); i++) {
365 mRecordThreads.valueAt(i)->dump(fd, args);
366 }
367
Dima Zavin799a70e2011-04-18 16:57:27 -0700368 // dump all hardware devs
369 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700370 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
Dima Zavin799a70e2011-04-18 16:57:27 -0700371 dev->dump(dev, fd);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700372 }
373 if (locked) mLock.unlock();
374 }
375 return NO_ERROR;
376}
377
Glenn Kasten98ec94c2012-01-25 14:28:29 -0800378sp<AudioFlinger::Client> AudioFlinger::registerPid_l(pid_t pid)
379{
380 // If pid is already in the mClients wp<> map, then use that entry
381 // (for which promote() is always != 0), otherwise create a new entry and Client.
382 sp<Client> client = mClients.valueFor(pid).promote();
383 if (client == 0) {
384 client = new Client(this, pid);
385 mClients.add(pid, client);
386 }
387
388 return client;
389}
Mathias Agopian65ab4712010-07-14 17:59:35 -0700390
391// IAudioFlinger interface
392
393
394sp<IAudioTrack> AudioFlinger::createTrack(
395 pid_t pid,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800396 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700397 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800398 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700399 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700400 int frameCount,
Glenn Kastena075db42012-03-06 11:22:44 -0800401 IAudioFlinger::track_flags_t flags,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700402 const sp<IMemory>& sharedBuffer,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800403 audio_io_handle_t output,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700404 int *sessionId,
405 status_t *status)
406{
407 sp<PlaybackThread::Track> track;
408 sp<TrackHandle> trackHandle;
409 sp<Client> client;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700410 status_t lStatus;
411 int lSessionId;
412
Glenn Kasten263709e2012-01-06 08:40:01 -0800413 // client AudioTrack::set already implements AUDIO_STREAM_DEFAULT => AUDIO_STREAM_MUSIC,
414 // but if someone uses binder directly they could bypass that and cause us to crash
415 if (uint32_t(streamType) >= AUDIO_STREAM_CNT) {
Steve Block29357bc2012-01-06 19:20:56 +0000416 ALOGE("createTrack() invalid stream type %d", streamType);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700417 lStatus = BAD_VALUE;
418 goto Exit;
419 }
420
421 {
422 Mutex::Autolock _l(mLock);
423 PlaybackThread *thread = checkPlaybackThread_l(output);
Eric Laurent39e94f82010-07-28 01:32:47 -0700424 PlaybackThread *effectThread = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700425 if (thread == NULL) {
Steve Block29357bc2012-01-06 19:20:56 +0000426 ALOGE("unknown output thread");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700427 lStatus = BAD_VALUE;
428 goto Exit;
429 }
430
Glenn Kasten98ec94c2012-01-25 14:28:29 -0800431 client = registerPid_l(pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700432
Steve Block3856b092011-10-20 11:56:00 +0100433 ALOGV("createTrack() sessionId: %d", (sessionId == NULL) ? -2 : *sessionId);
Dima Zavinfce7a472011-04-19 22:30:36 -0700434 if (sessionId != NULL && *sessionId != AUDIO_SESSION_OUTPUT_MIX) {
Eric Laurentde070132010-07-13 04:45:46 -0700435 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurent39e94f82010-07-28 01:32:47 -0700436 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
437 if (mPlaybackThreads.keyAt(i) != output) {
438 // prevent same audio session on different output threads
439 uint32_t sessions = t->hasAudioSession(*sessionId);
440 if (sessions & PlaybackThread::TRACK_SESSION) {
Steve Block29357bc2012-01-06 19:20:56 +0000441 ALOGE("createTrack() session ID %d already in use", *sessionId);
Eric Laurent39e94f82010-07-28 01:32:47 -0700442 lStatus = BAD_VALUE;
443 goto Exit;
444 }
445 // check if an effect with same session ID is waiting for a track to be created
446 if (sessions & PlaybackThread::EFFECT_SESSION) {
447 effectThread = t.get();
448 }
Eric Laurentde070132010-07-13 04:45:46 -0700449 }
450 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700451 lSessionId = *sessionId;
452 } else {
Eric Laurentde070132010-07-13 04:45:46 -0700453 // if no audio session id is provided, create one here
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700454 lSessionId = nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700455 if (sessionId != NULL) {
456 *sessionId = lSessionId;
457 }
458 }
Steve Block3856b092011-10-20 11:56:00 +0100459 ALOGV("createTrack() lSessionId: %d", lSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700460
Glenn Kastena075db42012-03-06 11:22:44 -0800461 bool isTimed = (flags & IAudioFlinger::TRACK_TIMED) != 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700462 track = thread->createTrack_l(client, streamType, sampleRate, format,
Glenn Kasten73d22752012-03-19 13:38:30 -0700463 channelMask, frameCount, sharedBuffer, lSessionId, flags, &lStatus);
Eric Laurent39e94f82010-07-28 01:32:47 -0700464
465 // move effect chain to this output thread if an effect on same session was waiting
466 // for a track to be created
467 if (lStatus == NO_ERROR && effectThread != NULL) {
468 Mutex::Autolock _dl(thread->mLock);
469 Mutex::Autolock _sl(effectThread->mLock);
470 moveEffectChain_l(lSessionId, effectThread, thread, true);
471 }
Eric Laurenta011e352012-03-29 15:51:43 -0700472
473 // Look for sync events awaiting for a session to be used.
474 for (int i = 0; i < (int)mPendingSyncEvents.size(); i++) {
475 if (mPendingSyncEvents[i]->triggerSession() == lSessionId) {
476 if (thread->isValidSyncEvent(mPendingSyncEvents[i])) {
477 track->setSyncEvent(mPendingSyncEvents[i]);
478 mPendingSyncEvents.removeAt(i);
479 i--;
480 }
481 }
482 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700483 }
484 if (lStatus == NO_ERROR) {
485 trackHandle = new TrackHandle(track);
486 } else {
487 // remove local strong reference to Client before deleting the Track so that the Client
488 // destructor is called by the TrackBase destructor with mLock held
489 client.clear();
490 track.clear();
491 }
492
493Exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700494 if (status != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700495 *status = lStatus;
496 }
497 return trackHandle;
498}
499
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800500uint32_t AudioFlinger::sampleRate(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700501{
502 Mutex::Autolock _l(mLock);
503 PlaybackThread *thread = checkPlaybackThread_l(output);
504 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000505 ALOGW("sampleRate() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700506 return 0;
507 }
508 return thread->sampleRate();
509}
510
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800511int AudioFlinger::channelCount(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700512{
513 Mutex::Autolock _l(mLock);
514 PlaybackThread *thread = checkPlaybackThread_l(output);
515 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000516 ALOGW("channelCount() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700517 return 0;
518 }
519 return thread->channelCount();
520}
521
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800522audio_format_t AudioFlinger::format(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700523{
524 Mutex::Autolock _l(mLock);
525 PlaybackThread *thread = checkPlaybackThread_l(output);
526 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000527 ALOGW("format() unknown thread %d", output);
Glenn Kasten58f30212012-01-12 12:27:51 -0800528 return AUDIO_FORMAT_INVALID;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700529 }
530 return thread->format();
531}
532
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800533size_t AudioFlinger::frameCount(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700534{
535 Mutex::Autolock _l(mLock);
536 PlaybackThread *thread = checkPlaybackThread_l(output);
537 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000538 ALOGW("frameCount() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700539 return 0;
540 }
541 return thread->frameCount();
542}
543
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800544uint32_t AudioFlinger::latency(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700545{
546 Mutex::Autolock _l(mLock);
547 PlaybackThread *thread = checkPlaybackThread_l(output);
548 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000549 ALOGW("latency() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700550 return 0;
551 }
552 return thread->latency();
553}
554
555status_t AudioFlinger::setMasterVolume(float value)
556{
Eric Laurenta1884f92011-08-23 08:25:03 -0700557 status_t ret = initCheck();
558 if (ret != NO_ERROR) {
559 return ret;
560 }
561
Mathias Agopian65ab4712010-07-14 17:59:35 -0700562 // check calling permissions
563 if (!settingsAllowed()) {
564 return PERMISSION_DENIED;
565 }
566
John Grossman4ff14ba2012-02-08 16:37:41 -0800567 float swmv = value;
568
Eric Laurenta4c5a552012-03-29 10:12:40 -0700569 Mutex::Autolock _l(mLock);
570
Mathias Agopian65ab4712010-07-14 17:59:35 -0700571 // when hw supports master volume, don't scale in sw mixer
John Grossman4ff14ba2012-02-08 16:37:41 -0800572 if (MVS_NONE != mMasterVolumeSupportLvl) {
573 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
574 AutoMutex lock(mHardwareLock);
Eric Laurenta4c5a552012-03-29 10:12:40 -0700575 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
John Grossman4ff14ba2012-02-08 16:37:41 -0800576
577 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
578 if (NULL != dev->set_master_volume) {
579 dev->set_master_volume(dev, value);
580 }
581 mHardwareStatus = AUDIO_HW_IDLE;
Eric Laurent93575202011-01-18 18:39:02 -0800582 }
John Grossman4ff14ba2012-02-08 16:37:41 -0800583
584 swmv = 1.0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700585 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700586
John Grossman4ff14ba2012-02-08 16:37:41 -0800587 mMasterVolume = value;
588 mMasterVolumeSW = swmv;
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800589 for (size_t i = 0; i < mPlaybackThreads.size(); i++)
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700590 mPlaybackThreads.valueAt(i)->setMasterVolume(swmv);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700591
592 return NO_ERROR;
593}
594
Glenn Kastenf78aee72012-01-04 11:00:47 -0800595status_t AudioFlinger::setMode(audio_mode_t mode)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700596{
Eric Laurenta1884f92011-08-23 08:25:03 -0700597 status_t ret = initCheck();
598 if (ret != NO_ERROR) {
599 return ret;
600 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700601
602 // check calling permissions
603 if (!settingsAllowed()) {
604 return PERMISSION_DENIED;
605 }
Glenn Kasten930f4ca2012-01-06 16:47:31 -0800606 if (uint32_t(mode) >= AUDIO_MODE_CNT) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000607 ALOGW("Illegal value: setMode(%d)", mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700608 return BAD_VALUE;
609 }
610
611 { // scope for the lock
612 AutoMutex lock(mHardwareLock);
613 mHardwareStatus = AUDIO_HW_SET_MODE;
Dima Zavin799a70e2011-04-18 16:57:27 -0700614 ret = mPrimaryHardwareDev->set_mode(mPrimaryHardwareDev, mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700615 mHardwareStatus = AUDIO_HW_IDLE;
616 }
617
618 if (NO_ERROR == ret) {
619 Mutex::Autolock _l(mLock);
620 mMode = mode;
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800621 for (size_t i = 0; i < mPlaybackThreads.size(); i++)
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700622 mPlaybackThreads.valueAt(i)->setMode(mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700623 }
624
625 return ret;
626}
627
628status_t AudioFlinger::setMicMute(bool state)
629{
Eric Laurenta1884f92011-08-23 08:25:03 -0700630 status_t ret = initCheck();
631 if (ret != NO_ERROR) {
632 return ret;
633 }
634
Mathias Agopian65ab4712010-07-14 17:59:35 -0700635 // check calling permissions
636 if (!settingsAllowed()) {
637 return PERMISSION_DENIED;
638 }
639
640 AutoMutex lock(mHardwareLock);
641 mHardwareStatus = AUDIO_HW_SET_MIC_MUTE;
Eric Laurenta1884f92011-08-23 08:25:03 -0700642 ret = mPrimaryHardwareDev->set_mic_mute(mPrimaryHardwareDev, state);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700643 mHardwareStatus = AUDIO_HW_IDLE;
644 return ret;
645}
646
647bool AudioFlinger::getMicMute() const
648{
Eric Laurenta1884f92011-08-23 08:25:03 -0700649 status_t ret = initCheck();
650 if (ret != NO_ERROR) {
651 return false;
652 }
653
Dima Zavinfce7a472011-04-19 22:30:36 -0700654 bool state = AUDIO_MODE_INVALID;
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800655 AutoMutex lock(mHardwareLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700656 mHardwareStatus = AUDIO_HW_GET_MIC_MUTE;
Dima Zavin799a70e2011-04-18 16:57:27 -0700657 mPrimaryHardwareDev->get_mic_mute(mPrimaryHardwareDev, &state);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700658 mHardwareStatus = AUDIO_HW_IDLE;
659 return state;
660}
661
662status_t AudioFlinger::setMasterMute(bool muted)
663{
664 // check calling permissions
665 if (!settingsAllowed()) {
666 return PERMISSION_DENIED;
667 }
668
Eric Laurent93575202011-01-18 18:39:02 -0800669 Mutex::Autolock _l(mLock);
Glenn Kasten99e53b82012-01-19 08:59:58 -0800670 // This is an optimization, so PlaybackThread doesn't have to look at the one from AudioFlinger
Mathias Agopian65ab4712010-07-14 17:59:35 -0700671 mMasterMute = muted;
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800672 for (size_t i = 0; i < mPlaybackThreads.size(); i++)
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700673 mPlaybackThreads.valueAt(i)->setMasterMute(muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700674
675 return NO_ERROR;
676}
677
678float AudioFlinger::masterVolume() const
679{
Glenn Kasten98067102011-12-13 11:47:54 -0800680 Mutex::Autolock _l(mLock);
681 return masterVolume_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700682}
683
John Grossman4ff14ba2012-02-08 16:37:41 -0800684float AudioFlinger::masterVolumeSW() const
685{
686 Mutex::Autolock _l(mLock);
687 return masterVolumeSW_l();
688}
689
Mathias Agopian65ab4712010-07-14 17:59:35 -0700690bool AudioFlinger::masterMute() const
691{
Glenn Kasten98067102011-12-13 11:47:54 -0800692 Mutex::Autolock _l(mLock);
693 return masterMute_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700694}
695
John Grossman4ff14ba2012-02-08 16:37:41 -0800696float AudioFlinger::masterVolume_l() const
697{
698 if (MVS_FULL == mMasterVolumeSupportLvl) {
699 float ret_val;
700 AutoMutex lock(mHardwareLock);
701
702 mHardwareStatus = AUDIO_HW_GET_MASTER_VOLUME;
Glenn Kasten5798d4e2012-03-08 12:18:35 -0800703 ALOG_ASSERT((NULL != mPrimaryHardwareDev) &&
704 (NULL != mPrimaryHardwareDev->get_master_volume),
705 "can't get master volume");
John Grossman4ff14ba2012-02-08 16:37:41 -0800706
707 mPrimaryHardwareDev->get_master_volume(mPrimaryHardwareDev, &ret_val);
708 mHardwareStatus = AUDIO_HW_IDLE;
709 return ret_val;
710 }
711
712 return mMasterVolume;
713}
714
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800715status_t AudioFlinger::setStreamVolume(audio_stream_type_t stream, float value,
716 audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700717{
718 // check calling permissions
719 if (!settingsAllowed()) {
720 return PERMISSION_DENIED;
721 }
722
Glenn Kasten263709e2012-01-06 08:40:01 -0800723 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Steve Block29357bc2012-01-06 19:20:56 +0000724 ALOGE("setStreamVolume() invalid stream %d", stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700725 return BAD_VALUE;
726 }
727
728 AutoMutex lock(mLock);
729 PlaybackThread *thread = NULL;
730 if (output) {
731 thread = checkPlaybackThread_l(output);
732 if (thread == NULL) {
733 return BAD_VALUE;
734 }
735 }
736
737 mStreamTypes[stream].volume = value;
738
739 if (thread == NULL) {
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800740 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700741 mPlaybackThreads.valueAt(i)->setStreamVolume(stream, value);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700742 }
743 } else {
744 thread->setStreamVolume(stream, value);
745 }
746
747 return NO_ERROR;
748}
749
Glenn Kastenfff6d712012-01-12 16:38:12 -0800750status_t AudioFlinger::setStreamMute(audio_stream_type_t stream, bool muted)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700751{
752 // check calling permissions
753 if (!settingsAllowed()) {
754 return PERMISSION_DENIED;
755 }
756
Glenn Kasten263709e2012-01-06 08:40:01 -0800757 if (uint32_t(stream) >= AUDIO_STREAM_CNT ||
Dima Zavinfce7a472011-04-19 22:30:36 -0700758 uint32_t(stream) == AUDIO_STREAM_ENFORCED_AUDIBLE) {
Steve Block29357bc2012-01-06 19:20:56 +0000759 ALOGE("setStreamMute() invalid stream %d", stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700760 return BAD_VALUE;
761 }
762
Eric Laurent93575202011-01-18 18:39:02 -0800763 AutoMutex lock(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700764 mStreamTypes[stream].mute = muted;
765 for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700766 mPlaybackThreads.valueAt(i)->setStreamMute(stream, muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700767
768 return NO_ERROR;
769}
770
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800771float AudioFlinger::streamVolume(audio_stream_type_t stream, audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700772{
Glenn Kasten263709e2012-01-06 08:40:01 -0800773 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700774 return 0.0f;
775 }
776
777 AutoMutex lock(mLock);
778 float volume;
779 if (output) {
780 PlaybackThread *thread = checkPlaybackThread_l(output);
781 if (thread == NULL) {
782 return 0.0f;
783 }
784 volume = thread->streamVolume(stream);
785 } else {
Glenn Kasten6637baa2012-01-09 09:40:36 -0800786 volume = streamVolume_l(stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700787 }
788
789 return volume;
790}
791
Glenn Kastenfff6d712012-01-12 16:38:12 -0800792bool AudioFlinger::streamMute(audio_stream_type_t stream) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700793{
Glenn Kasten263709e2012-01-06 08:40:01 -0800794 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700795 return true;
796 }
797
Glenn Kasten6637baa2012-01-09 09:40:36 -0800798 AutoMutex lock(mLock);
799 return streamMute_l(stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700800}
801
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800802status_t AudioFlinger::setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700803{
Glenn Kasten23d82a92012-02-03 11:10:00 -0800804 ALOGV("setParameters(): io %d, keyvalue %s, tid %d, calling pid %d",
Mathias Agopian65ab4712010-07-14 17:59:35 -0700805 ioHandle, keyValuePairs.string(), gettid(), IPCThreadState::self()->getCallingPid());
806 // check calling permissions
807 if (!settingsAllowed()) {
808 return PERMISSION_DENIED;
809 }
810
Mathias Agopian65ab4712010-07-14 17:59:35 -0700811 // ioHandle == 0 means the parameters are global to the audio hardware interface
812 if (ioHandle == 0) {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700813 Mutex::Autolock _l(mLock);
Dima Zavin799a70e2011-04-18 16:57:27 -0700814 status_t final_result = NO_ERROR;
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800815 {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700816 AutoMutex lock(mHardwareLock);
817 mHardwareStatus = AUDIO_HW_SET_PARAMETER;
818 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
819 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
820 status_t result = dev->set_parameters(dev, keyValuePairs.string());
821 final_result = result ?: final_result;
822 }
823 mHardwareStatus = AUDIO_HW_IDLE;
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800824 }
Eric Laurent59bd0da2011-08-01 09:52:20 -0700825 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
826 AudioParameter param = AudioParameter(keyValuePairs);
827 String8 value;
828 if (param.get(String8(AUDIO_PARAMETER_KEY_BT_NREC), value) == NO_ERROR) {
Eric Laurentbee53372011-08-29 12:42:48 -0700829 bool btNrecIsOff = (value == AUDIO_PARAMETER_VALUE_OFF);
830 if (mBtNrecIsOff != btNrecIsOff) {
Eric Laurent59bd0da2011-08-01 09:52:20 -0700831 for (size_t i = 0; i < mRecordThreads.size(); i++) {
832 sp<RecordThread> thread = mRecordThreads.valueAt(i);
833 RecordThread::RecordTrack *track = thread->track();
834 if (track != NULL) {
835 audio_devices_t device = (audio_devices_t)(
836 thread->device() & AUDIO_DEVICE_IN_ALL);
Eric Laurentbee53372011-08-29 12:42:48 -0700837 bool suspend = audio_is_bluetooth_sco_device(device) && btNrecIsOff;
Eric Laurent59bd0da2011-08-01 09:52:20 -0700838 thread->setEffectSuspended(FX_IID_AEC,
839 suspend,
840 track->sessionId());
841 thread->setEffectSuspended(FX_IID_NS,
842 suspend,
843 track->sessionId());
844 }
845 }
Eric Laurentbee53372011-08-29 12:42:48 -0700846 mBtNrecIsOff = btNrecIsOff;
Eric Laurent59bd0da2011-08-01 09:52:20 -0700847 }
848 }
Dima Zavin799a70e2011-04-18 16:57:27 -0700849 return final_result;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700850 }
851
852 // hold a strong ref on thread in case closeOutput() or closeInput() is called
853 // and the thread is exited once the lock is released
854 sp<ThreadBase> thread;
855 {
856 Mutex::Autolock _l(mLock);
857 thread = checkPlaybackThread_l(ioHandle);
858 if (thread == NULL) {
859 thread = checkRecordThread_l(ioHandle);
Glenn Kasten7fc9a6f2012-01-10 10:46:34 -0800860 } else if (thread == primaryPlaybackThread_l()) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700861 // indicate output device change to all input threads for pre processing
862 AudioParameter param = AudioParameter(keyValuePairs);
863 int value;
Eric Laurent89d94e72012-03-16 20:37:59 -0700864 if ((param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) &&
865 (value != 0)) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700866 for (size_t i = 0; i < mRecordThreads.size(); i++) {
867 mRecordThreads.valueAt(i)->setParameters(keyValuePairs);
868 }
869 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700870 }
871 }
Glenn Kasten7378ca52012-01-20 13:44:40 -0800872 if (thread != 0) {
873 return thread->setParameters(keyValuePairs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700874 }
875 return BAD_VALUE;
876}
877
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800878String8 AudioFlinger::getParameters(audio_io_handle_t ioHandle, const String8& keys) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700879{
Glenn Kasten23d82a92012-02-03 11:10:00 -0800880// ALOGV("getParameters() io %d, keys %s, tid %d, calling pid %d",
Mathias Agopian65ab4712010-07-14 17:59:35 -0700881// ioHandle, keys.string(), gettid(), IPCThreadState::self()->getCallingPid());
882
Eric Laurenta4c5a552012-03-29 10:12:40 -0700883 Mutex::Autolock _l(mLock);
884
Mathias Agopian65ab4712010-07-14 17:59:35 -0700885 if (ioHandle == 0) {
Dima Zavinfce7a472011-04-19 22:30:36 -0700886 String8 out_s8;
887
Dima Zavin799a70e2011-04-18 16:57:27 -0700888 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800889 char *s;
890 {
891 AutoMutex lock(mHardwareLock);
892 mHardwareStatus = AUDIO_HW_GET_PARAMETER;
Eric Laurenta4c5a552012-03-29 10:12:40 -0700893 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800894 s = dev->get_parameters(dev, keys.string());
895 mHardwareStatus = AUDIO_HW_IDLE;
896 }
John Grossmanef7740b2012-02-09 11:28:36 -0800897 out_s8 += String8(s ? s : "");
Dima Zavin799a70e2011-04-18 16:57:27 -0700898 free(s);
899 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700900 return out_s8;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700901 }
902
Mathias Agopian65ab4712010-07-14 17:59:35 -0700903 PlaybackThread *playbackThread = checkPlaybackThread_l(ioHandle);
904 if (playbackThread != NULL) {
905 return playbackThread->getParameters(keys);
906 }
907 RecordThread *recordThread = checkRecordThread_l(ioHandle);
908 if (recordThread != NULL) {
909 return recordThread->getParameters(keys);
910 }
911 return String8("");
912}
913
Glenn Kastenf587ba52012-01-26 16:25:10 -0800914size_t AudioFlinger::getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700915{
Eric Laurenta1884f92011-08-23 08:25:03 -0700916 status_t ret = initCheck();
917 if (ret != NO_ERROR) {
918 return 0;
919 }
920
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800921 AutoMutex lock(mHardwareLock);
922 mHardwareStatus = AUDIO_HW_GET_INPUT_BUFFER_SIZE;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700923 struct audio_config config = {
924 sample_rate: sampleRate,
925 channel_mask: audio_channel_in_mask_from_count(channelCount),
926 format: format,
927 };
928 size_t size = mPrimaryHardwareDev->get_input_buffer_size(mPrimaryHardwareDev, &config);
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800929 mHardwareStatus = AUDIO_HW_IDLE;
930 return size;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700931}
932
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800933unsigned int AudioFlinger::getInputFramesLost(audio_io_handle_t ioHandle) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700934{
935 if (ioHandle == 0) {
936 return 0;
937 }
938
939 Mutex::Autolock _l(mLock);
940
941 RecordThread *recordThread = checkRecordThread_l(ioHandle);
942 if (recordThread != NULL) {
943 return recordThread->getInputFramesLost();
944 }
945 return 0;
946}
947
948status_t AudioFlinger::setVoiceVolume(float value)
949{
Eric Laurenta1884f92011-08-23 08:25:03 -0700950 status_t ret = initCheck();
951 if (ret != NO_ERROR) {
952 return ret;
953 }
954
Mathias Agopian65ab4712010-07-14 17:59:35 -0700955 // check calling permissions
956 if (!settingsAllowed()) {
957 return PERMISSION_DENIED;
958 }
959
960 AutoMutex lock(mHardwareLock);
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800961 mHardwareStatus = AUDIO_HW_SET_VOICE_VOLUME;
Eric Laurenta1884f92011-08-23 08:25:03 -0700962 ret = mPrimaryHardwareDev->set_voice_volume(mPrimaryHardwareDev, value);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700963 mHardwareStatus = AUDIO_HW_IDLE;
964
965 return ret;
966}
967
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800968status_t AudioFlinger::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
969 audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700970{
971 status_t status;
972
973 Mutex::Autolock _l(mLock);
974
975 PlaybackThread *playbackThread = checkPlaybackThread_l(output);
976 if (playbackThread != NULL) {
977 return playbackThread->getRenderPosition(halFrames, dspFrames);
978 }
979
980 return BAD_VALUE;
981}
982
983void AudioFlinger::registerClient(const sp<IAudioFlingerClient>& client)
984{
985
986 Mutex::Autolock _l(mLock);
987
Glenn Kastenbb001922012-02-03 11:10:26 -0800988 pid_t pid = IPCThreadState::self()->getCallingPid();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700989 if (mNotificationClients.indexOfKey(pid) < 0) {
990 sp<NotificationClient> notificationClient = new NotificationClient(this,
991 client,
992 pid);
Steve Block3856b092011-10-20 11:56:00 +0100993 ALOGV("registerClient() client %p, pid %d", notificationClient.get(), pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700994
995 mNotificationClients.add(pid, notificationClient);
996
997 sp<IBinder> binder = client->asBinder();
998 binder->linkToDeath(notificationClient);
999
1000 // the config change is always sent from playback or record threads to avoid deadlock
1001 // with AudioSystem::gLock
1002 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
1003 mPlaybackThreads.valueAt(i)->sendConfigEvent(AudioSystem::OUTPUT_OPENED);
1004 }
1005
1006 for (size_t i = 0; i < mRecordThreads.size(); i++) {
1007 mRecordThreads.valueAt(i)->sendConfigEvent(AudioSystem::INPUT_OPENED);
1008 }
1009 }
1010}
1011
1012void AudioFlinger::removeNotificationClient(pid_t pid)
1013{
1014 Mutex::Autolock _l(mLock);
1015
Glenn Kastena3b09252012-01-20 09:19:01 -08001016 mNotificationClients.removeItem(pid);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001017
Steve Block3856b092011-10-20 11:56:00 +01001018 ALOGV("%d died, releasing its sessions", pid);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001019 size_t num = mAudioSessionRefs.size();
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001020 bool removed = false;
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001021 for (size_t i = 0; i< num; ) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001022 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08001023 ALOGV(" pid %d @ %d", ref->mPid, i);
1024 if (ref->mPid == pid) {
1025 ALOGV(" removing entry for pid %d session %d", pid, ref->mSessionid);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001026 mAudioSessionRefs.removeAt(i);
1027 delete ref;
1028 removed = true;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001029 num--;
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001030 } else {
1031 i++;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001032 }
1033 }
1034 if (removed) {
1035 purgeStaleEffects_l();
1036 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001037}
1038
1039// audioConfigChanged_l() must be called with AudioFlinger::mLock held
Glenn Kastenb81cc8c2012-03-01 09:14:51 -08001040void AudioFlinger::audioConfigChanged_l(int event, audio_io_handle_t ioHandle, const void *param2)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001041{
1042 size_t size = mNotificationClients.size();
1043 for (size_t i = 0; i < size; i++) {
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001044 mNotificationClients.valueAt(i)->audioFlingerClient()->ioConfigChanged(event, ioHandle,
1045 param2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001046 }
1047}
1048
1049// removeClient_l() must be called with AudioFlinger::mLock held
1050void AudioFlinger::removeClient_l(pid_t pid)
1051{
Steve Block3856b092011-10-20 11:56:00 +01001052 ALOGV("removeClient_l() pid %d, tid %d, calling tid %d", pid, gettid(), IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001053 mClients.removeItem(pid);
1054}
1055
1056
1057// ----------------------------------------------------------------------------
1058
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001059AudioFlinger::ThreadBase::ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
1060 uint32_t device, type_t type)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001061 : Thread(false),
Glenn Kasten23bb8be2012-01-26 10:38:26 -08001062 mType(type),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001063 mAudioFlinger(audioFlinger), mSampleRate(0), mFrameCount(0),
1064 // mChannelMask
1065 mChannelCount(0),
1066 mFrameSize(1), mFormat(AUDIO_FORMAT_INVALID),
1067 mParamStatus(NO_ERROR),
Glenn Kastenb28686f2012-01-06 08:39:38 -08001068 mStandby(false), mId(id),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001069 mDevice(device),
1070 mDeathRecipient(new PMDeathRecipient(this))
Mathias Agopian65ab4712010-07-14 17:59:35 -07001071{
1072}
1073
1074AudioFlinger::ThreadBase::~ThreadBase()
1075{
1076 mParamCond.broadcast();
Eric Laurentfeb0db62011-07-22 09:04:31 -07001077 // do not lock the mutex in destructor
1078 releaseWakeLock_l();
Eric Laurent9d18ec52011-09-27 12:07:15 -07001079 if (mPowerManager != 0) {
1080 sp<IBinder> binder = mPowerManager->asBinder();
1081 binder->unlinkToDeath(mDeathRecipient);
1082 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001083}
1084
1085void AudioFlinger::ThreadBase::exit()
1086{
Steve Block3856b092011-10-20 11:56:00 +01001087 ALOGV("ThreadBase::exit");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001088 {
Glenn Kastenb28686f2012-01-06 08:39:38 -08001089 // This lock prevents the following race in thread (uniprocessor for illustration):
1090 // if (!exitPending()) {
1091 // // context switch from here to exit()
1092 // // exit() calls requestExit(), what exitPending() observes
1093 // // exit() calls signal(), which is dropped since no waiters
1094 // // context switch back from exit() to here
1095 // mWaitWorkCV.wait(...);
1096 // // now thread is hung
1097 // }
Glenn Kastena7d8d6f2012-01-05 15:41:56 -08001098 AutoMutex lock(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001099 requestExit();
1100 mWaitWorkCV.signal();
1101 }
Glenn Kastenb28686f2012-01-06 08:39:38 -08001102 // When Thread::requestExitAndWait is made virtual and this method is renamed to
1103 // "virtual status_t requestExitAndWait()", replace by "return Thread::requestExitAndWait();"
Mathias Agopian65ab4712010-07-14 17:59:35 -07001104 requestExitAndWait();
1105}
1106
Mathias Agopian65ab4712010-07-14 17:59:35 -07001107status_t AudioFlinger::ThreadBase::setParameters(const String8& keyValuePairs)
1108{
1109 status_t status;
1110
Steve Block3856b092011-10-20 11:56:00 +01001111 ALOGV("ThreadBase::setParameters() %s", keyValuePairs.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001112 Mutex::Autolock _l(mLock);
1113
1114 mNewParameters.add(keyValuePairs);
1115 mWaitWorkCV.signal();
1116 // wait condition with timeout in case the thread loop has exited
1117 // before the request could be processed
Glenn Kasten7dede872011-12-13 11:04:14 -08001118 if (mParamCond.waitRelative(mLock, kSetParametersTimeoutNs) == NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001119 status = mParamStatus;
1120 mWaitWorkCV.signal();
1121 } else {
1122 status = TIMED_OUT;
1123 }
1124 return status;
1125}
1126
1127void AudioFlinger::ThreadBase::sendConfigEvent(int event, int param)
1128{
1129 Mutex::Autolock _l(mLock);
1130 sendConfigEvent_l(event, param);
1131}
1132
1133// sendConfigEvent_l() must be called with ThreadBase::mLock held
1134void AudioFlinger::ThreadBase::sendConfigEvent_l(int event, int param)
1135{
Glenn Kastenf3990f22011-12-13 11:50:00 -08001136 ConfigEvent configEvent;
1137 configEvent.mEvent = event;
1138 configEvent.mParam = param;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001139 mConfigEvents.add(configEvent);
Steve Block3856b092011-10-20 11:56:00 +01001140 ALOGV("sendConfigEvent() num events %d event %d, param %d", mConfigEvents.size(), event, param);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001141 mWaitWorkCV.signal();
1142}
1143
1144void AudioFlinger::ThreadBase::processConfigEvents()
1145{
1146 mLock.lock();
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001147 while (!mConfigEvents.isEmpty()) {
Steve Block3856b092011-10-20 11:56:00 +01001148 ALOGV("processConfigEvents() remaining events %d", mConfigEvents.size());
Glenn Kastenf3990f22011-12-13 11:50:00 -08001149 ConfigEvent configEvent = mConfigEvents[0];
Mathias Agopian65ab4712010-07-14 17:59:35 -07001150 mConfigEvents.removeAt(0);
1151 // release mLock before locking AudioFlinger mLock: lock order is always
1152 // AudioFlinger then ThreadBase to avoid cross deadlock
1153 mLock.unlock();
1154 mAudioFlinger->mLock.lock();
Glenn Kastenf3990f22011-12-13 11:50:00 -08001155 audioConfigChanged_l(configEvent.mEvent, configEvent.mParam);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001156 mAudioFlinger->mLock.unlock();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001157 mLock.lock();
1158 }
1159 mLock.unlock();
1160}
1161
1162status_t AudioFlinger::ThreadBase::dumpBase(int fd, const Vector<String16>& args)
1163{
1164 const size_t SIZE = 256;
1165 char buffer[SIZE];
1166 String8 result;
1167
1168 bool locked = tryLock(mLock);
1169 if (!locked) {
1170 snprintf(buffer, SIZE, "thread %p maybe dead locked\n", this);
1171 write(fd, buffer, strlen(buffer));
1172 }
1173
Eric Laurent612bbb52012-03-14 15:03:26 -07001174 snprintf(buffer, SIZE, "io handle: %d\n", mId);
1175 result.append(buffer);
1176 snprintf(buffer, SIZE, "TID: %d\n", getTid());
1177 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001178 snprintf(buffer, SIZE, "standby: %d\n", mStandby);
1179 result.append(buffer);
1180 snprintf(buffer, SIZE, "Sample rate: %d\n", mSampleRate);
1181 result.append(buffer);
1182 snprintf(buffer, SIZE, "Frame count: %d\n", mFrameCount);
1183 result.append(buffer);
1184 snprintf(buffer, SIZE, "Channel Count: %d\n", mChannelCount);
1185 result.append(buffer);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001186 snprintf(buffer, SIZE, "Channel Mask: 0x%08x\n", mChannelMask);
1187 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001188 snprintf(buffer, SIZE, "Format: %d\n", mFormat);
1189 result.append(buffer);
Glenn Kastenb9980652012-01-11 09:48:27 -08001190 snprintf(buffer, SIZE, "Frame size: %u\n", mFrameSize);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001191 result.append(buffer);
1192
1193 snprintf(buffer, SIZE, "\nPending setParameters commands: \n");
1194 result.append(buffer);
1195 result.append(" Index Command");
1196 for (size_t i = 0; i < mNewParameters.size(); ++i) {
1197 snprintf(buffer, SIZE, "\n %02d ", i);
1198 result.append(buffer);
1199 result.append(mNewParameters[i]);
1200 }
1201
1202 snprintf(buffer, SIZE, "\n\nPending config events: \n");
1203 result.append(buffer);
1204 snprintf(buffer, SIZE, " Index event param\n");
1205 result.append(buffer);
1206 for (size_t i = 0; i < mConfigEvents.size(); i++) {
Glenn Kastenf3990f22011-12-13 11:50:00 -08001207 snprintf(buffer, SIZE, " %02d %02d %d\n", i, mConfigEvents[i].mEvent, mConfigEvents[i].mParam);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001208 result.append(buffer);
1209 }
1210 result.append("\n");
1211
1212 write(fd, result.string(), result.size());
1213
1214 if (locked) {
1215 mLock.unlock();
1216 }
1217 return NO_ERROR;
1218}
1219
Eric Laurent1d2bff02011-07-24 17:49:51 -07001220status_t AudioFlinger::ThreadBase::dumpEffectChains(int fd, const Vector<String16>& args)
1221{
1222 const size_t SIZE = 256;
1223 char buffer[SIZE];
1224 String8 result;
1225
1226 snprintf(buffer, SIZE, "\n- %d Effect Chains:\n", mEffectChains.size());
1227 write(fd, buffer, strlen(buffer));
1228
1229 for (size_t i = 0; i < mEffectChains.size(); ++i) {
1230 sp<EffectChain> chain = mEffectChains[i];
1231 if (chain != 0) {
1232 chain->dump(fd, args);
1233 }
1234 }
1235 return NO_ERROR;
1236}
1237
Eric Laurentfeb0db62011-07-22 09:04:31 -07001238void AudioFlinger::ThreadBase::acquireWakeLock()
1239{
1240 Mutex::Autolock _l(mLock);
1241 acquireWakeLock_l();
1242}
1243
1244void AudioFlinger::ThreadBase::acquireWakeLock_l()
1245{
1246 if (mPowerManager == 0) {
1247 // use checkService() to avoid blocking if power service is not up yet
1248 sp<IBinder> binder =
1249 defaultServiceManager()->checkService(String16("power"));
1250 if (binder == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001251 ALOGW("Thread %s cannot connect to the power manager service", mName);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001252 } else {
1253 mPowerManager = interface_cast<IPowerManager>(binder);
1254 binder->linkToDeath(mDeathRecipient);
1255 }
1256 }
1257 if (mPowerManager != 0) {
1258 sp<IBinder> binder = new BBinder();
1259 status_t status = mPowerManager->acquireWakeLock(POWERMANAGER_PARTIAL_WAKE_LOCK,
1260 binder,
1261 String16(mName));
1262 if (status == NO_ERROR) {
1263 mWakeLockToken = binder;
1264 }
Steve Block3856b092011-10-20 11:56:00 +01001265 ALOGV("acquireWakeLock_l() %s status %d", mName, status);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001266 }
1267}
1268
1269void AudioFlinger::ThreadBase::releaseWakeLock()
1270{
1271 Mutex::Autolock _l(mLock);
Eric Laurent6dbe8832011-07-28 13:59:02 -07001272 releaseWakeLock_l();
Eric Laurentfeb0db62011-07-22 09:04:31 -07001273}
1274
1275void AudioFlinger::ThreadBase::releaseWakeLock_l()
1276{
1277 if (mWakeLockToken != 0) {
Steve Block3856b092011-10-20 11:56:00 +01001278 ALOGV("releaseWakeLock_l() %s", mName);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001279 if (mPowerManager != 0) {
1280 mPowerManager->releaseWakeLock(mWakeLockToken, 0);
1281 }
1282 mWakeLockToken.clear();
1283 }
1284}
1285
1286void AudioFlinger::ThreadBase::clearPowerManager()
1287{
1288 Mutex::Autolock _l(mLock);
1289 releaseWakeLock_l();
1290 mPowerManager.clear();
1291}
1292
1293void AudioFlinger::ThreadBase::PMDeathRecipient::binderDied(const wp<IBinder>& who)
1294{
1295 sp<ThreadBase> thread = mThread.promote();
1296 if (thread != 0) {
1297 thread->clearPowerManager();
1298 }
Steve Block5ff1dd52012-01-05 23:22:43 +00001299 ALOGW("power manager service died !!!");
Eric Laurentfeb0db62011-07-22 09:04:31 -07001300}
Eric Laurent1d2bff02011-07-24 17:49:51 -07001301
Eric Laurent59255e42011-07-27 19:49:51 -07001302void AudioFlinger::ThreadBase::setEffectSuspended(
1303 const effect_uuid_t *type, bool suspend, int sessionId)
1304{
1305 Mutex::Autolock _l(mLock);
1306 setEffectSuspended_l(type, suspend, sessionId);
1307}
1308
1309void AudioFlinger::ThreadBase::setEffectSuspended_l(
1310 const effect_uuid_t *type, bool suspend, int sessionId)
1311{
Glenn Kasten090f0192012-01-30 13:00:02 -08001312 sp<EffectChain> chain = getEffectChain_l(sessionId);
Eric Laurent59255e42011-07-27 19:49:51 -07001313 if (chain != 0) {
1314 if (type != NULL) {
1315 chain->setEffectSuspended_l(type, suspend);
1316 } else {
1317 chain->setEffectSuspendedAll_l(suspend);
1318 }
1319 }
1320
1321 updateSuspendedSessions_l(type, suspend, sessionId);
1322}
1323
1324void AudioFlinger::ThreadBase::checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain)
1325{
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001326 ssize_t index = mSuspendedSessions.indexOfKey(chain->sessionId());
Eric Laurent59255e42011-07-27 19:49:51 -07001327 if (index < 0) {
1328 return;
1329 }
1330
1331 KeyedVector <int, sp<SuspendedSessionDesc> > sessionEffects =
1332 mSuspendedSessions.editValueAt(index);
1333
1334 for (size_t i = 0; i < sessionEffects.size(); i++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001335 sp<SuspendedSessionDesc> desc = sessionEffects.valueAt(i);
Eric Laurent59255e42011-07-27 19:49:51 -07001336 for (int j = 0; j < desc->mRefCount; j++) {
1337 if (sessionEffects.keyAt(i) == EffectChain::kKeyForSuspendAll) {
1338 chain->setEffectSuspendedAll_l(true);
1339 } else {
Steve Block3856b092011-10-20 11:56:00 +01001340 ALOGV("checkSuspendOnAddEffectChain_l() suspending effects %08x",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001341 desc->mType.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07001342 chain->setEffectSuspended_l(&desc->mType, true);
1343 }
1344 }
1345 }
1346}
1347
Eric Laurent59255e42011-07-27 19:49:51 -07001348void AudioFlinger::ThreadBase::updateSuspendedSessions_l(const effect_uuid_t *type,
1349 bool suspend,
1350 int sessionId)
1351{
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001352 ssize_t index = mSuspendedSessions.indexOfKey(sessionId);
Eric Laurent59255e42011-07-27 19:49:51 -07001353
1354 KeyedVector <int, sp<SuspendedSessionDesc> > sessionEffects;
1355
1356 if (suspend) {
1357 if (index >= 0) {
1358 sessionEffects = mSuspendedSessions.editValueAt(index);
1359 } else {
1360 mSuspendedSessions.add(sessionId, sessionEffects);
1361 }
1362 } else {
1363 if (index < 0) {
1364 return;
1365 }
1366 sessionEffects = mSuspendedSessions.editValueAt(index);
1367 }
1368
1369
1370 int key = EffectChain::kKeyForSuspendAll;
1371 if (type != NULL) {
1372 key = type->timeLow;
1373 }
1374 index = sessionEffects.indexOfKey(key);
1375
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001376 sp<SuspendedSessionDesc> desc;
Eric Laurent59255e42011-07-27 19:49:51 -07001377 if (suspend) {
1378 if (index >= 0) {
1379 desc = sessionEffects.valueAt(index);
1380 } else {
1381 desc = new SuspendedSessionDesc();
1382 if (type != NULL) {
1383 memcpy(&desc->mType, type, sizeof(effect_uuid_t));
1384 }
1385 sessionEffects.add(key, desc);
Steve Block3856b092011-10-20 11:56:00 +01001386 ALOGV("updateSuspendedSessions_l() suspend adding effect %08x", key);
Eric Laurent59255e42011-07-27 19:49:51 -07001387 }
1388 desc->mRefCount++;
1389 } else {
1390 if (index < 0) {
1391 return;
1392 }
1393 desc = sessionEffects.valueAt(index);
1394 if (--desc->mRefCount == 0) {
Steve Block3856b092011-10-20 11:56:00 +01001395 ALOGV("updateSuspendedSessions_l() restore removing effect %08x", key);
Eric Laurent59255e42011-07-27 19:49:51 -07001396 sessionEffects.removeItemsAt(index);
1397 if (sessionEffects.isEmpty()) {
Steve Block3856b092011-10-20 11:56:00 +01001398 ALOGV("updateSuspendedSessions_l() restore removing session %d",
Eric Laurent59255e42011-07-27 19:49:51 -07001399 sessionId);
1400 mSuspendedSessions.removeItem(sessionId);
1401 }
1402 }
1403 }
1404 if (!sessionEffects.isEmpty()) {
1405 mSuspendedSessions.replaceValueFor(sessionId, sessionEffects);
1406 }
1407}
1408
1409void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1410 bool enabled,
1411 int sessionId)
1412{
1413 Mutex::Autolock _l(mLock);
Eric Laurenta85a74a2011-10-19 11:44:54 -07001414 checkSuspendOnEffectEnabled_l(effect, enabled, sessionId);
1415}
Eric Laurent59255e42011-07-27 19:49:51 -07001416
Eric Laurenta85a74a2011-10-19 11:44:54 -07001417void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
1418 bool enabled,
1419 int sessionId)
1420{
Eric Laurentdb7c0792011-08-10 10:37:50 -07001421 if (mType != RECORD) {
1422 // suspend all effects in AUDIO_SESSION_OUTPUT_MIX when enabling any effect on
1423 // another session. This gives the priority to well behaved effect control panels
1424 // and applications not using global effects.
1425 if (sessionId != AUDIO_SESSION_OUTPUT_MIX) {
1426 setEffectSuspended_l(NULL, enabled, AUDIO_SESSION_OUTPUT_MIX);
1427 }
1428 }
Eric Laurent59255e42011-07-27 19:49:51 -07001429
1430 sp<EffectChain> chain = getEffectChain_l(sessionId);
1431 if (chain != 0) {
1432 chain->checkSuspendOnEffectEnabled(effect, enabled);
1433 }
1434}
1435
Mathias Agopian65ab4712010-07-14 17:59:35 -07001436// ----------------------------------------------------------------------------
1437
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001438AudioFlinger::PlaybackThread::PlaybackThread(const sp<AudioFlinger>& audioFlinger,
1439 AudioStreamOut* output,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001440 audio_io_handle_t id,
Glenn Kasten23bb8be2012-01-26 10:38:26 -08001441 uint32_t device,
1442 type_t type)
1443 : ThreadBase(audioFlinger, id, device, type),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001444 mMixBuffer(NULL), mSuspended(0), mBytesWritten(0),
1445 // Assumes constructor is called by AudioFlinger with it's mLock held,
1446 // but it would be safer to explicitly pass initial masterMute as parameter
1447 mMasterMute(audioFlinger->masterMute_l()),
1448 // mStreamTypes[] initialized in constructor body
1449 mOutput(output),
1450 // Assumes constructor is called by AudioFlinger with it's mLock held,
1451 // but it would be safer to explicitly pass initial masterVolume as parameter
John Grossman4ff14ba2012-02-08 16:37:41 -08001452 mMasterVolume(audioFlinger->masterVolumeSW_l()),
Glenn Kastenfec279f2012-03-08 07:47:15 -08001453 mLastWriteTime(0), mNumWrites(0), mNumDelayedWrites(0), mInWrite(false),
Glenn Kastenaa4397f2012-03-12 18:13:59 -07001454 mMixerStatus(MIXER_IDLE),
Glenn Kasten66fcab92012-02-24 14:59:21 -08001455 mPrevMixerStatus(MIXER_IDLE),
1456 standbyDelay(AudioFlinger::mStandbyTimeInNsecs)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001457{
Glenn Kasten480b4682012-02-28 12:30:08 -08001458 snprintf(mName, kNameLength, "AudioOut_%X", id);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001459
Mathias Agopian65ab4712010-07-14 17:59:35 -07001460 readOutputParameters();
1461
Glenn Kasten263709e2012-01-06 08:40:01 -08001462 // mStreamTypes[AUDIO_STREAM_CNT] is initialized by stream_type_t default constructor
Glenn Kastenfff6d712012-01-12 16:38:12 -08001463 // There is no AUDIO_STREAM_MIN, and ++ operator does not compile
1464 for (audio_stream_type_t stream = (audio_stream_type_t) 0; stream < AUDIO_STREAM_CNT;
1465 stream = (audio_stream_type_t) (stream + 1)) {
Glenn Kasten6637baa2012-01-09 09:40:36 -08001466 mStreamTypes[stream].volume = mAudioFlinger->streamVolume_l(stream);
1467 mStreamTypes[stream].mute = mAudioFlinger->streamMute_l(stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001468 }
Glenn Kasten6637baa2012-01-09 09:40:36 -08001469 // mStreamTypes[AUDIO_STREAM_CNT] exists but isn't explicitly initialized here,
1470 // because mAudioFlinger doesn't have one to copy from
Mathias Agopian65ab4712010-07-14 17:59:35 -07001471}
1472
1473AudioFlinger::PlaybackThread::~PlaybackThread()
1474{
1475 delete [] mMixBuffer;
1476}
1477
1478status_t AudioFlinger::PlaybackThread::dump(int fd, const Vector<String16>& args)
1479{
1480 dumpInternals(fd, args);
1481 dumpTracks(fd, args);
1482 dumpEffectChains(fd, args);
1483 return NO_ERROR;
1484}
1485
1486status_t AudioFlinger::PlaybackThread::dumpTracks(int fd, const Vector<String16>& args)
1487{
1488 const size_t SIZE = 256;
1489 char buffer[SIZE];
1490 String8 result;
1491
1492 snprintf(buffer, SIZE, "Output thread %p tracks\n", this);
1493 result.append(buffer);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001494 result.append(" Name Clien Typ Fmt Chn mask Session Buf S M F SRate LeftV RighV Serv User Main buf Aux Buf\n");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001495 for (size_t i = 0; i < mTracks.size(); ++i) {
1496 sp<Track> track = mTracks[i];
1497 if (track != 0) {
1498 track->dump(buffer, SIZE);
1499 result.append(buffer);
1500 }
1501 }
1502
1503 snprintf(buffer, SIZE, "Output thread %p active tracks\n", this);
1504 result.append(buffer);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001505 result.append(" Name Clien Typ Fmt Chn mask Session Buf S M F SRate LeftV RighV Serv User Main buf Aux Buf\n");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001506 for (size_t i = 0; i < mActiveTracks.size(); ++i) {
Glenn Kasten77c11192012-01-25 14:27:41 -08001507 sp<Track> track = mActiveTracks[i].promote();
1508 if (track != 0) {
1509 track->dump(buffer, SIZE);
1510 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001511 }
1512 }
1513 write(fd, result.string(), result.size());
1514 return NO_ERROR;
1515}
1516
Mathias Agopian65ab4712010-07-14 17:59:35 -07001517status_t AudioFlinger::PlaybackThread::dumpInternals(int fd, const Vector<String16>& args)
1518{
1519 const size_t SIZE = 256;
1520 char buffer[SIZE];
1521 String8 result;
1522
1523 snprintf(buffer, SIZE, "\nOutput thread %p internals\n", this);
1524 result.append(buffer);
1525 snprintf(buffer, SIZE, "last write occurred (msecs): %llu\n", ns2ms(systemTime() - mLastWriteTime));
1526 result.append(buffer);
1527 snprintf(buffer, SIZE, "total writes: %d\n", mNumWrites);
1528 result.append(buffer);
1529 snprintf(buffer, SIZE, "delayed writes: %d\n", mNumDelayedWrites);
1530 result.append(buffer);
1531 snprintf(buffer, SIZE, "blocked in write: %d\n", mInWrite);
1532 result.append(buffer);
1533 snprintf(buffer, SIZE, "suspend count: %d\n", mSuspended);
1534 result.append(buffer);
1535 snprintf(buffer, SIZE, "mix buffer : %p\n", mMixBuffer);
1536 result.append(buffer);
1537 write(fd, result.string(), result.size());
1538
1539 dumpBase(fd, args);
1540
1541 return NO_ERROR;
1542}
1543
1544// Thread virtuals
1545status_t AudioFlinger::PlaybackThread::readyToRun()
1546{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001547 status_t status = initCheck();
1548 if (status == NO_ERROR) {
Steve Blockdf64d152012-01-04 20:05:49 +00001549 ALOGI("AudioFlinger's thread %p ready to run", this);
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001550 } else {
Steve Block29357bc2012-01-06 19:20:56 +00001551 ALOGE("No working audio driver found.");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001552 }
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001553 return status;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001554}
1555
1556void AudioFlinger::PlaybackThread::onFirstRef()
1557{
Eric Laurentfeb0db62011-07-22 09:04:31 -07001558 run(mName, ANDROID_PRIORITY_URGENT_AUDIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001559}
1560
1561// PlaybackThread::createTrack_l() must be called with AudioFlinger::mLock held
Glenn Kastenea7939a2012-03-14 12:56:26 -07001562sp<AudioFlinger::PlaybackThread::Track> AudioFlinger::PlaybackThread::createTrack_l(
Mathias Agopian65ab4712010-07-14 17:59:35 -07001563 const sp<AudioFlinger::Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -08001564 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001565 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08001566 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001567 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001568 int frameCount,
1569 const sp<IMemory>& sharedBuffer,
1570 int sessionId,
Glenn Kasten73d22752012-03-19 13:38:30 -07001571 IAudioFlinger::track_flags_t flags,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001572 status_t *status)
1573{
1574 sp<Track> track;
1575 status_t lStatus;
1576
Glenn Kasten73d22752012-03-19 13:38:30 -07001577 bool isTimed = (flags & IAudioFlinger::TRACK_TIMED) != 0;
1578
1579 // client expresses a preference for FAST, but we get the final say
1580 if ((flags & IAudioFlinger::TRACK_FAST) &&
1581 !(
1582 // not timed
1583 (!isTimed) &&
1584 // either of these use cases:
1585 (
1586 // use case 1: shared buffer with any frame count
1587 (
1588 (sharedBuffer != 0)
1589 ) ||
1590 // use case 2: callback handler and small power-of-2 frame count
1591 (
1592 // unfortunately we can't verify that there's a callback until start()
1593 // FIXME supported frame counts should not be hard-coded
1594 (
1595 (frameCount == 128) ||
1596 (frameCount == 256) ||
1597 (frameCount == 512)
1598 )
1599 )
1600 ) &&
1601 // PCM data
1602 audio_is_linear_pcm(format) &&
1603 // mono or stereo
1604 ( (channelMask == AUDIO_CHANNEL_OUT_MONO) ||
1605 (channelMask == AUDIO_CHANNEL_OUT_STEREO) ) &&
1606 // hardware sample rate
1607 (sampleRate == mSampleRate)
1608 // FIXME test that MixerThread for this fast track has a capable output HAL
1609 // FIXME add a permission test also?
1610 ) ) {
Eric Laurent0ca3cf92012-04-18 09:24:29 -07001611 ALOGW("AUDIO_OUTPUT_FLAG_FAST denied");
Glenn Kasten73d22752012-03-19 13:38:30 -07001612 flags &= ~IAudioFlinger::TRACK_FAST;
1613 }
1614
Mathias Agopian65ab4712010-07-14 17:59:35 -07001615 if (mType == DIRECT) {
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001616 if ((format & AUDIO_FORMAT_MAIN_MASK) == AUDIO_FORMAT_PCM) {
1617 if (sampleRate != mSampleRate || format != mFormat || channelMask != mChannelMask) {
Steve Block29357bc2012-01-06 19:20:56 +00001618 ALOGE("createTrack_l() Bad parameter: sampleRate %d format %d, channelMask 0x%08x \""
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001619 "for output %p with format %d",
1620 sampleRate, format, channelMask, mOutput, mFormat);
1621 lStatus = BAD_VALUE;
1622 goto Exit;
1623 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001624 }
1625 } else {
1626 // Resampler implementation limits input sampling rate to 2 x output sampling rate.
1627 if (sampleRate > mSampleRate*2) {
Steve Block29357bc2012-01-06 19:20:56 +00001628 ALOGE("Sample rate out of range: %d mSampleRate %d", sampleRate, mSampleRate);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001629 lStatus = BAD_VALUE;
1630 goto Exit;
1631 }
1632 }
1633
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001634 lStatus = initCheck();
1635 if (lStatus != NO_ERROR) {
Steve Block29357bc2012-01-06 19:20:56 +00001636 ALOGE("Audio driver not initialized.");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001637 goto Exit;
1638 }
1639
1640 { // scope for mLock
1641 Mutex::Autolock _l(mLock);
Eric Laurentde070132010-07-13 04:45:46 -07001642
1643 // all tracks in same audio session must share the same routing strategy otherwise
1644 // conflicts will happen when tracks are moved from one output to another by audio policy
1645 // manager
Glenn Kasten02bbd202012-02-08 12:35:35 -08001646 uint32_t strategy = AudioSystem::getStrategyForStream(streamType);
Eric Laurentde070132010-07-13 04:45:46 -07001647 for (size_t i = 0; i < mTracks.size(); ++i) {
1648 sp<Track> t = mTracks[i];
Glenn Kasten639dbee2012-03-07 12:26:34 -08001649 if (t != 0 && !t->isOutputTrack()) {
Glenn Kasten02bbd202012-02-08 12:35:35 -08001650 uint32_t actual = AudioSystem::getStrategyForStream(t->streamType());
Glenn Kastend8796012011-10-28 10:31:42 -07001651 if (sessionId == t->sessionId() && strategy != actual) {
Steve Block29357bc2012-01-06 19:20:56 +00001652 ALOGE("createTrack_l() mismatched strategy; expected %u but found %u",
Glenn Kastend8796012011-10-28 10:31:42 -07001653 strategy, actual);
Eric Laurentde070132010-07-13 04:45:46 -07001654 lStatus = BAD_VALUE;
1655 goto Exit;
1656 }
1657 }
1658 }
1659
John Grossman4ff14ba2012-02-08 16:37:41 -08001660 if (!isTimed) {
1661 track = new Track(this, client, streamType, sampleRate, format,
Glenn Kasten73d22752012-03-19 13:38:30 -07001662 channelMask, frameCount, sharedBuffer, sessionId, flags);
John Grossman4ff14ba2012-02-08 16:37:41 -08001663 } else {
1664 track = TimedTrack::create(this, client, streamType, sampleRate, format,
1665 channelMask, frameCount, sharedBuffer, sessionId);
1666 }
1667 if (track == NULL || track->getCblk() == NULL || track->name() < 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001668 lStatus = NO_MEMORY;
1669 goto Exit;
1670 }
1671 mTracks.add(track);
1672
1673 sp<EffectChain> chain = getEffectChain_l(sessionId);
1674 if (chain != 0) {
Steve Block3856b092011-10-20 11:56:00 +01001675 ALOGV("createTrack_l() setting main buffer %p", chain->inBuffer());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001676 track->setMainBuffer(chain->inBuffer());
Glenn Kasten02bbd202012-02-08 12:35:35 -08001677 chain->setStrategy(AudioSystem::getStrategyForStream(track->streamType()));
Eric Laurentb469b942011-05-09 12:09:06 -07001678 chain->incTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001679 }
1680 }
1681 lStatus = NO_ERROR;
1682
1683Exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001684 if (status) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001685 *status = lStatus;
1686 }
1687 return track;
1688}
1689
1690uint32_t AudioFlinger::PlaybackThread::latency() const
1691{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001692 Mutex::Autolock _l(mLock);
1693 if (initCheck() == NO_ERROR) {
Dima Zavin799a70e2011-04-18 16:57:27 -07001694 return mOutput->stream->get_latency(mOutput->stream);
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001695 } else {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001696 return 0;
1697 }
1698}
1699
Glenn Kasten6637baa2012-01-09 09:40:36 -08001700void AudioFlinger::PlaybackThread::setMasterVolume(float value)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001701{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001702 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001703 mMasterVolume = value;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001704}
1705
Glenn Kasten6637baa2012-01-09 09:40:36 -08001706void AudioFlinger::PlaybackThread::setMasterMute(bool muted)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001707{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001708 Mutex::Autolock _l(mLock);
1709 setMasterMute_l(muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001710}
1711
Glenn Kasten6637baa2012-01-09 09:40:36 -08001712void AudioFlinger::PlaybackThread::setStreamVolume(audio_stream_type_t stream, float value)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001713{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001714 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001715 mStreamTypes[stream].volume = value;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001716}
1717
Glenn Kasten6637baa2012-01-09 09:40:36 -08001718void AudioFlinger::PlaybackThread::setStreamMute(audio_stream_type_t stream, bool muted)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001719{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001720 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001721 mStreamTypes[stream].mute = muted;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001722}
1723
Glenn Kastenfff6d712012-01-12 16:38:12 -08001724float AudioFlinger::PlaybackThread::streamVolume(audio_stream_type_t stream) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07001725{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001726 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001727 return mStreamTypes[stream].volume;
1728}
1729
Mathias Agopian65ab4712010-07-14 17:59:35 -07001730// addTrack_l() must be called with ThreadBase::mLock held
1731status_t AudioFlinger::PlaybackThread::addTrack_l(const sp<Track>& track)
1732{
1733 status_t status = ALREADY_EXISTS;
1734
1735 // set retry count for buffer fill
1736 track->mRetryCount = kMaxTrackStartupRetries;
1737 if (mActiveTracks.indexOf(track) < 0) {
1738 // the track is newly added, make sure it fills up all its
1739 // buffers before playing. This is to ensure the client will
1740 // effectively get the latency it requested.
1741 track->mFillingUpStatus = Track::FS_FILLING;
1742 track->mResetDone = false;
1743 mActiveTracks.add(track);
1744 if (track->mainBuffer() != mMixBuffer) {
1745 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1746 if (chain != 0) {
Steve Block3856b092011-10-20 11:56:00 +01001747 ALOGV("addTrack_l() starting track on chain %p for session %d", chain.get(), track->sessionId());
Eric Laurentb469b942011-05-09 12:09:06 -07001748 chain->incActiveTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001749 }
1750 }
1751
1752 status = NO_ERROR;
1753 }
1754
Steve Block3856b092011-10-20 11:56:00 +01001755 ALOGV("mWaitWorkCV.broadcast");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001756 mWaitWorkCV.broadcast();
1757
1758 return status;
1759}
1760
1761// destroyTrack_l() must be called with ThreadBase::mLock held
1762void AudioFlinger::PlaybackThread::destroyTrack_l(const sp<Track>& track)
1763{
1764 track->mState = TrackBase::TERMINATED;
1765 if (mActiveTracks.indexOf(track) < 0) {
Eric Laurentb469b942011-05-09 12:09:06 -07001766 removeTrack_l(track);
1767 }
1768}
1769
1770void AudioFlinger::PlaybackThread::removeTrack_l(const sp<Track>& track)
1771{
1772 mTracks.remove(track);
1773 deleteTrackName_l(track->name());
1774 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1775 if (chain != 0) {
1776 chain->decTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001777 }
1778}
1779
1780String8 AudioFlinger::PlaybackThread::getParameters(const String8& keys)
1781{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001782 String8 out_s8 = String8("");
Dima Zavinfce7a472011-04-19 22:30:36 -07001783 char *s;
1784
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001785 Mutex::Autolock _l(mLock);
1786 if (initCheck() != NO_ERROR) {
1787 return out_s8;
1788 }
1789
Dima Zavin799a70e2011-04-18 16:57:27 -07001790 s = mOutput->stream->common.get_parameters(&mOutput->stream->common, keys.string());
Dima Zavinfce7a472011-04-19 22:30:36 -07001791 out_s8 = String8(s);
1792 free(s);
1793 return out_s8;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001794}
1795
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001796// audioConfigChanged_l() must be called with AudioFlinger::mLock held
Mathias Agopian65ab4712010-07-14 17:59:35 -07001797void AudioFlinger::PlaybackThread::audioConfigChanged_l(int event, int param) {
1798 AudioSystem::OutputDescriptor desc;
Glenn Kastena0d68332012-01-27 16:47:15 -08001799 void *param2 = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001800
Steve Block3856b092011-10-20 11:56:00 +01001801 ALOGV("PlaybackThread::audioConfigChanged_l, thread %p, event %d, param %d", this, event, param);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001802
1803 switch (event) {
1804 case AudioSystem::OUTPUT_OPENED:
1805 case AudioSystem::OUTPUT_CONFIG_CHANGED:
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001806 desc.channels = mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001807 desc.samplingRate = mSampleRate;
1808 desc.format = mFormat;
1809 desc.frameCount = mFrameCount;
1810 desc.latency = latency();
1811 param2 = &desc;
1812 break;
1813
1814 case AudioSystem::STREAM_CONFIG_CHANGED:
1815 param2 = &param;
1816 case AudioSystem::OUTPUT_CLOSED:
1817 default:
1818 break;
1819 }
1820 mAudioFlinger->audioConfigChanged_l(event, mId, param2);
1821}
1822
1823void AudioFlinger::PlaybackThread::readOutputParameters()
1824{
Dima Zavin799a70e2011-04-18 16:57:27 -07001825 mSampleRate = mOutput->stream->common.get_sample_rate(&mOutput->stream->common);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001826 mChannelMask = mOutput->stream->common.get_channels(&mOutput->stream->common);
1827 mChannelCount = (uint16_t)popcount(mChannelMask);
Dima Zavin799a70e2011-04-18 16:57:27 -07001828 mFormat = mOutput->stream->common.get_format(&mOutput->stream->common);
Glenn Kastenb9980652012-01-11 09:48:27 -08001829 mFrameSize = audio_stream_frame_size(&mOutput->stream->common);
Dima Zavin799a70e2011-04-18 16:57:27 -07001830 mFrameCount = mOutput->stream->common.get_buffer_size(&mOutput->stream->common) / mFrameSize;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001831
1832 // FIXME - Current mixer implementation only supports stereo output: Always
1833 // Allocate a stereo buffer even if HW output is mono.
Glenn Kastene9dd0172012-01-27 18:08:45 -08001834 delete[] mMixBuffer;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001835 mMixBuffer = new int16_t[mFrameCount * 2];
1836 memset(mMixBuffer, 0, mFrameCount * 2 * sizeof(int16_t));
1837
Eric Laurentde070132010-07-13 04:45:46 -07001838 // force reconfiguration of effect chains and engines to take new buffer size and audio
1839 // parameters into account
1840 // Note that mLock is not held when readOutputParameters() is called from the constructor
1841 // but in this case nothing is done below as no audio sessions have effect yet so it doesn't
1842 // matter.
1843 // create a copy of mEffectChains as calling moveEffectChain_l() can reorder some effect chains
1844 Vector< sp<EffectChain> > effectChains = mEffectChains;
1845 for (size_t i = 0; i < effectChains.size(); i ++) {
Eric Laurent39e94f82010-07-28 01:32:47 -07001846 mAudioFlinger->moveEffectChain_l(effectChains[i]->sessionId(), this, this, false);
Eric Laurentde070132010-07-13 04:45:46 -07001847 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001848}
1849
1850status_t AudioFlinger::PlaybackThread::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames)
1851{
Glenn Kastena0d68332012-01-27 16:47:15 -08001852 if (halFrames == NULL || dspFrames == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001853 return BAD_VALUE;
1854 }
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001855 Mutex::Autolock _l(mLock);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001856 if (initCheck() != NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001857 return INVALID_OPERATION;
1858 }
Dima Zavin799a70e2011-04-18 16:57:27 -07001859 *halFrames = mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001860
Dima Zavin799a70e2011-04-18 16:57:27 -07001861 return mOutput->stream->get_render_position(mOutput->stream, dspFrames);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001862}
1863
Eric Laurent39e94f82010-07-28 01:32:47 -07001864uint32_t AudioFlinger::PlaybackThread::hasAudioSession(int sessionId)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001865{
1866 Mutex::Autolock _l(mLock);
Eric Laurent39e94f82010-07-28 01:32:47 -07001867 uint32_t result = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001868 if (getEffectChain_l(sessionId) != 0) {
Eric Laurent39e94f82010-07-28 01:32:47 -07001869 result = EFFECT_SESSION;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001870 }
1871
1872 for (size_t i = 0; i < mTracks.size(); ++i) {
1873 sp<Track> track = mTracks[i];
Eric Laurentde070132010-07-13 04:45:46 -07001874 if (sessionId == track->sessionId() &&
1875 !(track->mCblk->flags & CBLK_INVALID_MSK)) {
Eric Laurent39e94f82010-07-28 01:32:47 -07001876 result |= TRACK_SESSION;
1877 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001878 }
1879 }
1880
Eric Laurent39e94f82010-07-28 01:32:47 -07001881 return result;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001882}
1883
Eric Laurentde070132010-07-13 04:45:46 -07001884uint32_t AudioFlinger::PlaybackThread::getStrategyForSession_l(int sessionId)
1885{
Dima Zavinfce7a472011-04-19 22:30:36 -07001886 // session AUDIO_SESSION_OUTPUT_MIX is placed in same strategy as MUSIC stream so that
Eric Laurentde070132010-07-13 04:45:46 -07001887 // it is moved to correct output by audio policy manager when A2DP is connected or disconnected
Dima Zavinfce7a472011-04-19 22:30:36 -07001888 if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
1889 return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Eric Laurentde070132010-07-13 04:45:46 -07001890 }
1891 for (size_t i = 0; i < mTracks.size(); i++) {
1892 sp<Track> track = mTracks[i];
1893 if (sessionId == track->sessionId() &&
1894 !(track->mCblk->flags & CBLK_INVALID_MSK)) {
Glenn Kasten02bbd202012-02-08 12:35:35 -08001895 return AudioSystem::getStrategyForStream(track->streamType());
Eric Laurentde070132010-07-13 04:45:46 -07001896 }
1897 }
Dima Zavinfce7a472011-04-19 22:30:36 -07001898 return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Eric Laurentde070132010-07-13 04:45:46 -07001899}
1900
Mathias Agopian65ab4712010-07-14 17:59:35 -07001901
Glenn Kastenaed850d2012-01-26 09:46:34 -08001902AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::getOutput() const
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001903{
1904 Mutex::Autolock _l(mLock);
1905 return mOutput;
1906}
1907
1908AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::clearOutput()
1909{
1910 Mutex::Autolock _l(mLock);
1911 AudioStreamOut *output = mOutput;
1912 mOutput = NULL;
1913 return output;
1914}
1915
1916// this method must always be called either with ThreadBase mLock held or inside the thread loop
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08001917audio_stream_t* AudioFlinger::PlaybackThread::stream() const
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001918{
1919 if (mOutput == NULL) {
1920 return NULL;
1921 }
1922 return &mOutput->stream->common;
1923}
1924
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08001925uint32_t AudioFlinger::PlaybackThread::activeSleepTimeUs() const
Eric Laurent162b40b2011-12-05 09:47:19 -08001926{
1927 // A2DP output latency is not due only to buffering capacity. It also reflects encoding,
1928 // decoding and transfer time. So sleeping for half of the latency would likely cause
1929 // underruns
1930 if (audio_is_a2dp_device((audio_devices_t)mDevice)) {
1931 return (uint32_t)((uint32_t)((mFrameCount * 1000) / mSampleRate) * 1000);
1932 } else {
1933 return (uint32_t)(mOutput->stream->get_latency(mOutput->stream) * 1000) / 2;
1934 }
1935}
1936
Eric Laurenta011e352012-03-29 15:51:43 -07001937status_t AudioFlinger::PlaybackThread::setSyncEvent(const sp<SyncEvent>& event)
1938{
1939 if (!isValidSyncEvent(event)) {
1940 return BAD_VALUE;
1941 }
1942
1943 Mutex::Autolock _l(mLock);
1944
1945 for (size_t i = 0; i < mTracks.size(); ++i) {
1946 sp<Track> track = mTracks[i];
1947 if (event->triggerSession() == track->sessionId()) {
1948 track->setSyncEvent(event);
1949 return NO_ERROR;
1950 }
1951 }
1952
1953 return NAME_NOT_FOUND;
1954}
1955
1956bool AudioFlinger::PlaybackThread::isValidSyncEvent(const sp<SyncEvent>& event)
1957{
1958 switch (event->type()) {
1959 case AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE:
1960 return true;
1961 default:
1962 break;
1963 }
1964 return false;
1965}
1966
Mathias Agopian65ab4712010-07-14 17:59:35 -07001967// ----------------------------------------------------------------------------
1968
Glenn Kasten23bb8be2012-01-26 10:38:26 -08001969AudioFlinger::MixerThread::MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001970 audio_io_handle_t id, uint32_t device, type_t type)
Glenn Kasten000f0e32012-03-01 17:10:56 -08001971 : PlaybackThread(audioFlinger, output, id, device, type)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001972{
Glenn Kasten000f0e32012-03-01 17:10:56 -08001973 mAudioMixer = new AudioMixer(mFrameCount, mSampleRate);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001974 // FIXME - Current mixer implementation only supports stereo output
1975 if (mChannelCount == 1) {
Steve Block29357bc2012-01-06 19:20:56 +00001976 ALOGE("Invalid audio hardware channel count");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001977 }
1978}
1979
1980AudioFlinger::MixerThread::~MixerThread()
1981{
1982 delete mAudioMixer;
1983}
1984
Glenn Kasten83efdd02012-02-24 07:21:32 -08001985class CpuStats {
1986public:
Glenn Kasten190a46f2012-03-06 11:27:10 -08001987 CpuStats();
1988 void sample(const String8 &title);
Glenn Kasten83efdd02012-02-24 07:21:32 -08001989#ifdef DEBUG_CPU_USAGE
1990private:
Glenn Kasten190a46f2012-03-06 11:27:10 -08001991 ThreadCpuUsage mCpuUsage; // instantaneous thread CPU usage in wall clock ns
1992 CentralTendencyStatistics mWcStats; // statistics on thread CPU usage in wall clock ns
1993
1994 CentralTendencyStatistics mHzStats; // statistics on thread CPU usage in cycles
1995
1996 int mCpuNum; // thread's current CPU number
1997 int mCpukHz; // frequency of thread's current CPU in kHz
Glenn Kasten83efdd02012-02-24 07:21:32 -08001998#endif
1999};
2000
Glenn Kasten190a46f2012-03-06 11:27:10 -08002001CpuStats::CpuStats()
Glenn Kasten83efdd02012-02-24 07:21:32 -08002002#ifdef DEBUG_CPU_USAGE
Glenn Kasten190a46f2012-03-06 11:27:10 -08002003 : mCpuNum(-1), mCpukHz(-1)
2004#endif
2005{
2006}
2007
2008void CpuStats::sample(const String8 &title) {
2009#ifdef DEBUG_CPU_USAGE
2010 // get current thread's delta CPU time in wall clock ns
2011 double wcNs;
2012 bool valid = mCpuUsage.sampleAndEnable(wcNs);
2013
2014 // record sample for wall clock statistics
2015 if (valid) {
2016 mWcStats.sample(wcNs);
2017 }
2018
2019 // get the current CPU number
2020 int cpuNum = sched_getcpu();
2021
2022 // get the current CPU frequency in kHz
2023 int cpukHz = mCpuUsage.getCpukHz(cpuNum);
2024
2025 // check if either CPU number or frequency changed
2026 if (cpuNum != mCpuNum || cpukHz != mCpukHz) {
2027 mCpuNum = cpuNum;
2028 mCpukHz = cpukHz;
2029 // ignore sample for purposes of cycles
2030 valid = false;
2031 }
2032
2033 // if no change in CPU number or frequency, then record sample for cycle statistics
2034 if (valid && mCpukHz > 0) {
2035 double cycles = wcNs * cpukHz * 0.000001;
2036 mHzStats.sample(cycles);
2037 }
2038
2039 unsigned n = mWcStats.n();
2040 // mCpuUsage.elapsed() is expensive, so don't call it every loop
Glenn Kasten83efdd02012-02-24 07:21:32 -08002041 if ((n & 127) == 1) {
Glenn Kasten190a46f2012-03-06 11:27:10 -08002042 long long elapsed = mCpuUsage.elapsed();
Glenn Kasten83efdd02012-02-24 07:21:32 -08002043 if (elapsed >= DEBUG_CPU_USAGE * 1000000000LL) {
2044 double perLoop = elapsed / (double) n;
2045 double perLoop100 = perLoop * 0.01;
Glenn Kasten190a46f2012-03-06 11:27:10 -08002046 double perLoop1k = perLoop * 0.001;
2047 double mean = mWcStats.mean();
2048 double stddev = mWcStats.stddev();
2049 double minimum = mWcStats.minimum();
2050 double maximum = mWcStats.maximum();
2051 double meanCycles = mHzStats.mean();
2052 double stddevCycles = mHzStats.stddev();
2053 double minCycles = mHzStats.minimum();
2054 double maxCycles = mHzStats.maximum();
2055 mCpuUsage.resetElapsed();
2056 mWcStats.reset();
2057 mHzStats.reset();
2058 ALOGD("CPU usage for %s over past %.1f secs\n"
2059 " (%u mixer loops at %.1f mean ms per loop):\n"
2060 " us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n"
2061 " %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f\n"
2062 " MHz: mean=%.1f, stddev=%.1f, min=%.1f max=%.1f",
2063 title.string(),
Glenn Kasten83efdd02012-02-24 07:21:32 -08002064 elapsed * .000000001, n, perLoop * .000001,
2065 mean * .001,
2066 stddev * .001,
2067 minimum * .001,
2068 maximum * .001,
2069 mean / perLoop100,
2070 stddev / perLoop100,
2071 minimum / perLoop100,
Glenn Kasten190a46f2012-03-06 11:27:10 -08002072 maximum / perLoop100,
2073 meanCycles / perLoop1k,
2074 stddevCycles / perLoop1k,
2075 minCycles / perLoop1k,
2076 maxCycles / perLoop1k);
2077
Glenn Kasten83efdd02012-02-24 07:21:32 -08002078 }
2079 }
2080#endif
2081};
2082
Glenn Kasten37d825e2012-02-24 07:21:48 -08002083void AudioFlinger::PlaybackThread::checkSilentMode_l()
2084{
2085 if (!mMasterMute) {
2086 char value[PROPERTY_VALUE_MAX];
2087 if (property_get("ro.audio.silent", value, "0") > 0) {
2088 char *endptr;
2089 unsigned long ul = strtoul(value, &endptr, 0);
2090 if (*endptr == '\0' && ul != 0) {
2091 ALOGD("Silence is golden");
2092 // The setprop command will not allow a property to be changed after
2093 // the first time it is set, so we don't have to worry about un-muting.
2094 setMasterMute_l(true);
2095 }
2096 }
2097 }
2098}
2099
Glenn Kasten000f0e32012-03-01 17:10:56 -08002100bool AudioFlinger::PlaybackThread::threadLoop()
Mathias Agopian65ab4712010-07-14 17:59:35 -07002101{
2102 Vector< sp<Track> > tracksToRemove;
Glenn Kasten688a6402012-02-29 07:57:06 -08002103
Glenn Kasten000f0e32012-03-01 17:10:56 -08002104 standbyTime = systemTime();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002105
2106 // MIXER
Mathias Agopian65ab4712010-07-14 17:59:35 -07002107 nsecs_t lastWarning = 0;
Glenn Kasten000f0e32012-03-01 17:10:56 -08002108if (mType == MIXER) {
2109 longStandbyExit = false;
2110}
Glenn Kasten688a6402012-02-29 07:57:06 -08002111
Glenn Kasten000f0e32012-03-01 17:10:56 -08002112 // DUPLICATING
2113 // FIXME could this be made local to while loop?
2114 writeFrames = 0;
Glenn Kasten688a6402012-02-29 07:57:06 -08002115
Glenn Kasten66fcab92012-02-24 14:59:21 -08002116 cacheParameters_l();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002117 sleepTime = idleSleepTime;
2118
2119if (mType == MIXER) {
2120 sleepTimeShift = 0;
2121}
2122
Glenn Kasten83efdd02012-02-24 07:21:32 -08002123 CpuStats cpuStats;
Glenn Kasten190a46f2012-03-06 11:27:10 -08002124 const String8 myName(String8::format("thread %p type %d TID %d", this, mType, gettid()));
Mathias Agopian65ab4712010-07-14 17:59:35 -07002125
Eric Laurentfeb0db62011-07-22 09:04:31 -07002126 acquireWakeLock();
2127
Mathias Agopian65ab4712010-07-14 17:59:35 -07002128 while (!exitPending())
2129 {
Glenn Kasten190a46f2012-03-06 11:27:10 -08002130 cpuStats.sample(myName);
Glenn Kasten688a6402012-02-29 07:57:06 -08002131
Glenn Kasten73ca0f52012-02-29 07:56:15 -08002132 Vector< sp<EffectChain> > effectChains;
2133
Mathias Agopian65ab4712010-07-14 17:59:35 -07002134 processConfigEvents();
2135
Mathias Agopian65ab4712010-07-14 17:59:35 -07002136 { // scope for mLock
2137
2138 Mutex::Autolock _l(mLock);
2139
2140 if (checkForNewParameters_l()) {
Glenn Kasten66fcab92012-02-24 14:59:21 -08002141 cacheParameters_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002142 }
2143
Glenn Kastenfa26a852012-03-06 11:28:04 -08002144 saveOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002145
Mathias Agopian65ab4712010-07-14 17:59:35 -07002146 // put audio hardware into standby after short delay
Glenn Kasten3e074702012-02-28 18:40:35 -08002147 if (CC_UNLIKELY((!mActiveTracks.size() && systemTime() > standbyTime) ||
Glenn Kastenc455fe92012-02-29 07:07:30 -08002148 mSuspended > 0)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002149 if (!mStandby) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002150
2151 threadLoop_standby();
2152
Mathias Agopian65ab4712010-07-14 17:59:35 -07002153 mStandby = true;
2154 mBytesWritten = 0;
2155 }
2156
Glenn Kasten3e074702012-02-28 18:40:35 -08002157 if (!mActiveTracks.size() && mConfigEvents.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002158 // we're about to wait, flush the binder command buffer
2159 IPCThreadState::self()->flushCommands();
2160
Glenn Kastenfa26a852012-03-06 11:28:04 -08002161 clearOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002162
Mathias Agopian65ab4712010-07-14 17:59:35 -07002163 if (exitPending()) break;
2164
Eric Laurentfeb0db62011-07-22 09:04:31 -07002165 releaseWakeLock_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002166 // wait until we have something to do...
Glenn Kasten190a46f2012-03-06 11:27:10 -08002167 ALOGV("%s going to sleep", myName.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002168 mWaitWorkCV.wait(mLock);
Glenn Kasten190a46f2012-03-06 11:27:10 -08002169 ALOGV("%s waking up", myName.string());
Eric Laurentfeb0db62011-07-22 09:04:31 -07002170 acquireWakeLock_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002171
Eric Laurent27741442012-01-17 19:20:12 -08002172 mPrevMixerStatus = MIXER_IDLE;
Glenn Kasten000f0e32012-03-01 17:10:56 -08002173
Glenn Kasten37d825e2012-02-24 07:21:48 -08002174 checkSilentMode_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002175
Glenn Kasten000f0e32012-03-01 17:10:56 -08002176 standbyTime = systemTime() + standbyDelay;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002177 sleepTime = idleSleepTime;
Glenn Kasten66fcab92012-02-24 14:59:21 -08002178 if (mType == MIXER) {
2179 sleepTimeShift = 0;
2180 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002181
Mathias Agopian65ab4712010-07-14 17:59:35 -07002182 continue;
2183 }
2184 }
2185
Glenn Kastenfec279f2012-03-08 07:47:15 -08002186 mixer_state newMixerStatus = prepareTracks_l(&tracksToRemove);
2187 // Shift in the new status; this could be a queue if it's
2188 // useful to filter the mixer status over several cycles.
2189 mPrevMixerStatus = mMixerStatus;
2190 mMixerStatus = newMixerStatus;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002191
2192 // prevent any changes in effect chain list and in each effect chain
2193 // during mixing and effect process as the audio buffers could be deleted
2194 // or modified if an effect is created or deleted
Eric Laurentde070132010-07-13 04:45:46 -07002195 lockEffectChains_l(effectChains);
Glenn Kastenc5ac4cb2011-12-12 09:05:55 -08002196 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002197
Glenn Kastenfec279f2012-03-08 07:47:15 -08002198 if (CC_LIKELY(mMixerStatus == MIXER_TRACKS_READY)) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002199 threadLoop_mix();
2200 } else {
2201 threadLoop_sleepTime();
2202 }
2203
2204 if (mSuspended > 0) {
2205 sleepTime = suspendSleepTimeUs();
2206 }
2207
2208 // only process effects if we're going to write
2209 if (sleepTime == 0) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002210 for (size_t i = 0; i < effectChains.size(); i ++) {
2211 effectChains[i]->process_l();
2212 }
2213 }
2214
2215 // enable changes in effect chain
2216 unlockEffectChains(effectChains);
2217
2218 // sleepTime == 0 means we must write to audio hardware
2219 if (sleepTime == 0) {
2220
2221 threadLoop_write();
2222
2223if (mType == MIXER) {
2224 // write blocked detection
2225 nsecs_t now = systemTime();
2226 nsecs_t delta = now - mLastWriteTime;
2227 if (!mStandby && delta > maxPeriod) {
2228 mNumDelayedWrites++;
2229 if ((now - lastWarning) > kWarningThrottleNs) {
2230 ALOGW("write blocked for %llu msecs, %d delayed writes, thread %p",
2231 ns2ms(delta), mNumDelayedWrites, this);
2232 lastWarning = now;
2233 }
2234 // FIXME this is broken: longStandbyExit should be handled out of the if() and with
2235 // a different threshold. Or completely removed for what it is worth anyway...
2236 if (mStandby) {
2237 longStandbyExit = true;
2238 }
2239 }
2240}
2241
2242 mStandby = false;
2243 } else {
2244 usleep(sleepTime);
2245 }
2246
2247 // finally let go of removed track(s), without the lock held
2248 // since we can't guarantee the destructors won't acquire that
2249 // same lock.
Glenn Kasten1465f0c2012-03-06 11:23:32 -08002250 tracksToRemove.clear();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002251
Glenn Kastenfa26a852012-03-06 11:28:04 -08002252 // FIXME I don't understand the need for this here;
2253 // it was in the original code but maybe the
2254 // assignment in saveOutputTracks() makes this unnecessary?
2255 clearOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002256
2257 // Effect chains will be actually deleted here if they were removed from
2258 // mEffectChains list during mixing or effects processing
2259 effectChains.clear();
2260
2261 // FIXME Note that the above .clear() is no longer necessary since effectChains
2262 // is now local to this block, but will keep it for now (at least until merge done).
2263 }
2264
2265if (mType == MIXER || mType == DIRECT) {
2266 // put output stream into standby mode
2267 if (!mStandby) {
2268 mOutput->stream->common.standby(&mOutput->stream->common);
2269 }
2270}
2271if (mType == DUPLICATING) {
2272 // for DuplicatingThread, standby mode is handled by the outputTracks
2273}
2274
2275 releaseWakeLock();
2276
2277 ALOGV("Thread %p type %d exiting", this, mType);
2278 return false;
2279}
2280
2281// shared by MIXER and DIRECT, overridden by DUPLICATING
2282void AudioFlinger::PlaybackThread::threadLoop_write()
2283{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002284 // FIXME rewrite to reduce number of system calls
2285 mLastWriteTime = systemTime();
2286 mInWrite = true;
2287 mBytesWritten += mixBufferSize;
2288 int bytesWritten = (int)mOutput->stream->write(mOutput->stream, mMixBuffer, mixBufferSize);
2289 if (bytesWritten < 0) mBytesWritten -= mixBufferSize;
2290 mNumWrites++;
2291 mInWrite = false;
Glenn Kasten000f0e32012-03-01 17:10:56 -08002292}
2293
2294// shared by MIXER and DIRECT, overridden by DUPLICATING
2295void AudioFlinger::PlaybackThread::threadLoop_standby()
2296{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002297 ALOGV("Audio hardware entering standby, mixer %p, suspend count %u", this, mSuspended);
2298 mOutput->stream->common.standby(&mOutput->stream->common);
Glenn Kasten000f0e32012-03-01 17:10:56 -08002299}
2300
2301void AudioFlinger::MixerThread::threadLoop_mix()
2302{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002303 // obtain the presentation timestamp of the next output buffer
2304 int64_t pts;
2305 status_t status = INVALID_OPERATION;
John Grossman4ff14ba2012-02-08 16:37:41 -08002306
Glenn Kasten952eeb22012-03-06 11:30:57 -08002307 if (NULL != mOutput->stream->get_next_write_timestamp) {
2308 status = mOutput->stream->get_next_write_timestamp(
2309 mOutput->stream, &pts);
2310 }
John Grossman4ff14ba2012-02-08 16:37:41 -08002311
Glenn Kasten952eeb22012-03-06 11:30:57 -08002312 if (status != NO_ERROR) {
2313 pts = AudioBufferProvider::kInvalidPTS;
2314 }
John Grossman4ff14ba2012-02-08 16:37:41 -08002315
Glenn Kasten952eeb22012-03-06 11:30:57 -08002316 // mix buffers...
2317 mAudioMixer->process(pts);
2318 // increase sleep time progressively when application underrun condition clears.
2319 // Only increase sleep time if the mixer is ready for two consecutive times to avoid
2320 // that a steady state of alternating ready/not ready conditions keeps the sleep time
2321 // such that we would underrun the audio HAL.
2322 if ((sleepTime == 0) && (sleepTimeShift > 0)) {
2323 sleepTimeShift--;
2324 }
2325 sleepTime = 0;
Glenn Kasten66fcab92012-02-24 14:59:21 -08002326 standbyTime = systemTime() + standbyDelay;
Glenn Kasten952eeb22012-03-06 11:30:57 -08002327 //TODO: delay standby when effects have a tail
Glenn Kasten000f0e32012-03-01 17:10:56 -08002328}
2329
2330void AudioFlinger::MixerThread::threadLoop_sleepTime()
2331{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002332 // If no tracks are ready, sleep once for the duration of an output
2333 // buffer size, then write 0s to the output
2334 if (sleepTime == 0) {
Glenn Kastenfec279f2012-03-08 07:47:15 -08002335 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08002336 sleepTime = activeSleepTime >> sleepTimeShift;
2337 if (sleepTime < kMinThreadSleepTimeUs) {
2338 sleepTime = kMinThreadSleepTimeUs;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002339 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08002340 // reduce sleep time in case of consecutive application underruns to avoid
2341 // starving the audio HAL. As activeSleepTimeUs() is larger than a buffer
2342 // duration we would end up writing less data than needed by the audio HAL if
2343 // the condition persists.
2344 if (sleepTimeShift < kMaxThreadSleepTimeShift) {
2345 sleepTimeShift++;
2346 }
2347 } else {
2348 sleepTime = idleSleepTime;
2349 }
2350 } else if (mBytesWritten != 0 ||
Glenn Kastenfec279f2012-03-08 07:47:15 -08002351 (mMixerStatus == MIXER_TRACKS_ENABLED && longStandbyExit)) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08002352 memset (mMixBuffer, 0, mixBufferSize);
2353 sleepTime = 0;
Glenn Kastenfec279f2012-03-08 07:47:15 -08002354 ALOGV_IF((mBytesWritten == 0 && (mMixerStatus == MIXER_TRACKS_ENABLED && longStandbyExit)), "anticipated start");
Glenn Kasten952eeb22012-03-06 11:30:57 -08002355 }
2356 // TODO add standby time extension fct of effect tail
Mathias Agopian65ab4712010-07-14 17:59:35 -07002357}
2358
2359// prepareTracks_l() must be called with ThreadBase::mLock held
Glenn Kasten29c23c32012-01-26 13:37:52 -08002360AudioFlinger::PlaybackThread::mixer_state AudioFlinger::MixerThread::prepareTracks_l(
Glenn Kasten3e074702012-02-28 18:40:35 -08002361 Vector< sp<Track> > *tracksToRemove)
Mathias Agopian65ab4712010-07-14 17:59:35 -07002362{
2363
Glenn Kasten29c23c32012-01-26 13:37:52 -08002364 mixer_state mixerStatus = MIXER_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002365 // find out which tracks need to be processed
Glenn Kasten3e074702012-02-28 18:40:35 -08002366 size_t count = mActiveTracks.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002367 size_t mixedTracks = 0;
2368 size_t tracksWithEffect = 0;
2369
2370 float masterVolume = mMasterVolume;
Glenn Kastenea7939a2012-03-14 12:56:26 -07002371 bool masterMute = mMasterMute;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002372
Eric Laurent571d49c2010-08-11 05:20:11 -07002373 if (masterMute) {
2374 masterVolume = 0;
2375 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002376 // Delegate master volume control to effect in output mix effect chain if needed
Dima Zavinfce7a472011-04-19 22:30:36 -07002377 sp<EffectChain> chain = getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002378 if (chain != 0) {
Eric Laurent571d49c2010-08-11 05:20:11 -07002379 uint32_t v = (uint32_t)(masterVolume * (1 << 24));
Eric Laurentcab11242010-07-15 12:50:15 -07002380 chain->setVolume_l(&v, &v);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002381 masterVolume = (float)((v + (1 << 23)) >> 24);
2382 chain.clear();
2383 }
2384
2385 for (size_t i=0 ; i<count ; i++) {
Glenn Kasten3e074702012-02-28 18:40:35 -08002386 sp<Track> t = mActiveTracks[i].promote();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002387 if (t == 0) continue;
2388
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002389 // this const just means the local variable doesn't change
Mathias Agopian65ab4712010-07-14 17:59:35 -07002390 Track* const track = t.get();
2391 audio_track_cblk_t* cblk = track->cblk();
2392
2393 // The first time a track is added we wait
2394 // for all its buffers to be filled before processing it
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002395 int name = track->name();
Eric Laurenta47b69c2011-11-08 18:10:16 -08002396 // make sure that we have enough frames to mix one full buffer.
2397 // enforce this condition only once to enable draining the buffer in case the client
2398 // app does not call stop() and relies on underrun to stop:
Eric Laurent27741442012-01-17 19:20:12 -08002399 // hence the test on (mPrevMixerStatus == MIXER_TRACKS_READY) meaning the track was mixed
Eric Laurenta47b69c2011-11-08 18:10:16 -08002400 // during last round
Eric Laurent3dbe3202011-11-03 12:16:05 -07002401 uint32_t minFrames = 1;
Eric Laurenta47b69c2011-11-08 18:10:16 -08002402 if (!track->isStopped() && !track->isPausing() &&
Eric Laurent27741442012-01-17 19:20:12 -08002403 (mPrevMixerStatus == MIXER_TRACKS_READY)) {
Eric Laurent3dbe3202011-11-03 12:16:05 -07002404 if (t->sampleRate() == (int)mSampleRate) {
2405 minFrames = mFrameCount;
2406 } else {
Eric Laurent071ccd52011-12-22 16:08:41 -08002407 // +1 for rounding and +1 for additional sample needed for interpolation
2408 minFrames = (mFrameCount * t->sampleRate()) / mSampleRate + 1 + 1;
2409 // add frames already consumed but not yet released by the resampler
Glenn Kastenea7939a2012-03-14 12:56:26 -07002410 // because cblk->framesReady() will include these frames
Eric Laurent071ccd52011-12-22 16:08:41 -08002411 minFrames += mAudioMixer->getUnreleasedFrames(track->name());
2412 // the minimum track buffer size is normally twice the number of frames necessary
2413 // to fill one buffer and the resampler should not leave more than one buffer worth
2414 // of unreleased frames after each pass, but just in case...
Steve Blockc1dc1cb2012-01-09 18:35:44 +00002415 ALOG_ASSERT(minFrames <= cblk->frameCount);
Eric Laurent3dbe3202011-11-03 12:16:05 -07002416 }
2417 }
John Grossman4ff14ba2012-02-08 16:37:41 -08002418 if ((track->framesReady() >= minFrames) && track->isReady() &&
Mathias Agopian65ab4712010-07-14 17:59:35 -07002419 !track->isPaused() && !track->isTerminated())
2420 {
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002421 //ALOGV("track %d u=%08x, s=%08x [OK] on thread %p", name, cblk->user, cblk->server, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002422
2423 mixedTracks++;
2424
2425 // track->mainBuffer() != mMixBuffer means there is an effect chain
2426 // connected to the track
2427 chain.clear();
2428 if (track->mainBuffer() != mMixBuffer) {
2429 chain = getEffectChain_l(track->sessionId());
2430 // Delegate volume control to effect in track effect chain if needed
2431 if (chain != 0) {
2432 tracksWithEffect++;
2433 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00002434 ALOGW("prepareTracks_l(): track %d attached to effect but no chain found on session %d",
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002435 name, track->sessionId());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002436 }
2437 }
2438
2439
2440 int param = AudioMixer::VOLUME;
2441 if (track->mFillingUpStatus == Track::FS_FILLED) {
2442 // no ramp for the first volume setting
2443 track->mFillingUpStatus = Track::FS_ACTIVE;
2444 if (track->mState == TrackBase::RESUMING) {
2445 track->mState = TrackBase::ACTIVE;
2446 param = AudioMixer::RAMP_VOLUME;
2447 }
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002448 mAudioMixer->setParameter(name, AudioMixer::RESAMPLE, AudioMixer::RESET, NULL);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002449 } else if (cblk->server != 0) {
2450 // If the track is stopped before the first frame was mixed,
2451 // do not apply ramp
2452 param = AudioMixer::RAMP_VOLUME;
2453 }
2454
2455 // compute volume for this track
Eric Laurente0aed6d2010-09-10 17:44:44 -07002456 uint32_t vl, vr, va;
Eric Laurent8569f0d2010-07-29 23:43:43 -07002457 if (track->isMuted() || track->isPausing() ||
Glenn Kasten02bbd202012-02-08 12:35:35 -08002458 mStreamTypes[track->streamType()].mute) {
Eric Laurente0aed6d2010-09-10 17:44:44 -07002459 vl = vr = va = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002460 if (track->isPausing()) {
2461 track->setPaused();
2462 }
2463 } else {
Eric Laurente0aed6d2010-09-10 17:44:44 -07002464
Mathias Agopian65ab4712010-07-14 17:59:35 -07002465 // read original volumes with volume control
Glenn Kasten02bbd202012-02-08 12:35:35 -08002466 float typeVolume = mStreamTypes[track->streamType()].volume;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002467 float v = masterVolume * typeVolume;
Glenn Kasten83d86532012-01-17 14:39:34 -08002468 uint32_t vlr = cblk->getVolumeLR();
Glenn Kastenb1cf75c2012-01-17 12:20:54 -08002469 vl = vlr & 0xFFFF;
2470 vr = vlr >> 16;
2471 // track volumes come from shared memory, so can't be trusted and must be clamped
2472 if (vl > MAX_GAIN_INT) {
2473 ALOGV("Track left volume out of range: %04X", vl);
2474 vl = MAX_GAIN_INT;
2475 }
2476 if (vr > MAX_GAIN_INT) {
2477 ALOGV("Track right volume out of range: %04X", vr);
2478 vr = MAX_GAIN_INT;
2479 }
2480 // now apply the master volume and stream type volume
2481 vl = (uint32_t)(v * vl) << 12;
2482 vr = (uint32_t)(v * vr) << 12;
2483 // assuming master volume and stream type volume each go up to 1.0,
2484 // vl and vr are now in 8.24 format
Mathias Agopian65ab4712010-07-14 17:59:35 -07002485
Glenn Kasten05632a52012-01-03 14:22:33 -08002486 uint16_t sendLevel = cblk->getSendLevel_U4_12();
2487 // send level comes from shared memory and so may be corrupt
Glenn Kasten3b81aca2012-01-27 15:26:23 -08002488 if (sendLevel > MAX_GAIN_INT) {
Glenn Kasten05632a52012-01-03 14:22:33 -08002489 ALOGV("Track send level out of range: %04X", sendLevel);
Glenn Kastenb1cf75c2012-01-17 12:20:54 -08002490 sendLevel = MAX_GAIN_INT;
Glenn Kasten05632a52012-01-03 14:22:33 -08002491 }
2492 va = (uint32_t)(v * sendLevel);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002493 }
Eric Laurente0aed6d2010-09-10 17:44:44 -07002494 // Delegate volume control to effect in track effect chain if needed
2495 if (chain != 0 && chain->setVolume_l(&vl, &vr)) {
2496 // Do not ramp volume if volume is controlled by effect
2497 param = AudioMixer::VOLUME;
2498 track->mHasVolumeController = true;
2499 } else {
2500 // force no volume ramp when volume controller was just disabled or removed
2501 // from effect chain to avoid volume spike
2502 if (track->mHasVolumeController) {
2503 param = AudioMixer::VOLUME;
2504 }
2505 track->mHasVolumeController = false;
2506 }
2507
2508 // Convert volumes from 8.24 to 4.12 format
Glenn Kastenb1cf75c2012-01-17 12:20:54 -08002509 // This additional clamping is needed in case chain->setVolume_l() overshot
Glenn Kasten3b81aca2012-01-27 15:26:23 -08002510 vl = (vl + (1 << 11)) >> 12;
2511 if (vl > MAX_GAIN_INT) vl = MAX_GAIN_INT;
2512 vr = (vr + (1 << 11)) >> 12;
2513 if (vr > MAX_GAIN_INT) vr = MAX_GAIN_INT;
Eric Laurente0aed6d2010-09-10 17:44:44 -07002514
Glenn Kasten3b81aca2012-01-27 15:26:23 -08002515 if (va > MAX_GAIN_INT) va = MAX_GAIN_INT; // va is uint32_t, so no need to check for -
Mathias Agopian65ab4712010-07-14 17:59:35 -07002516
Mathias Agopian65ab4712010-07-14 17:59:35 -07002517 // XXX: these things DON'T need to be done each time
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002518 mAudioMixer->setBufferProvider(name, track);
2519 mAudioMixer->enable(name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002520
Glenn Kasten3b81aca2012-01-27 15:26:23 -08002521 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME0, (void *)vl);
2522 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME1, (void *)vr);
2523 mAudioMixer->setParameter(name, param, AudioMixer::AUXLEVEL, (void *)va);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002524 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002525 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07002526 AudioMixer::TRACK,
2527 AudioMixer::FORMAT, (void *)track->format());
2528 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002529 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07002530 AudioMixer::TRACK,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07002531 AudioMixer::CHANNEL_MASK, (void *)track->channelMask());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002532 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002533 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07002534 AudioMixer::RESAMPLE,
2535 AudioMixer::SAMPLE_RATE,
2536 (void *)(cblk->sampleRate));
2537 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002538 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07002539 AudioMixer::TRACK,
2540 AudioMixer::MAIN_BUFFER, (void *)track->mainBuffer());
2541 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002542 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07002543 AudioMixer::TRACK,
2544 AudioMixer::AUX_BUFFER, (void *)track->auxBuffer());
2545
2546 // reset retry count
2547 track->mRetryCount = kMaxTrackRetries;
Glenn Kastenea7939a2012-03-14 12:56:26 -07002548
Eric Laurent27741442012-01-17 19:20:12 -08002549 // If one track is ready, set the mixer ready if:
2550 // - the mixer was not ready during previous round OR
2551 // - no other track is not ready
2552 if (mPrevMixerStatus != MIXER_TRACKS_READY ||
2553 mixerStatus != MIXER_TRACKS_ENABLED) {
2554 mixerStatus = MIXER_TRACKS_READY;
2555 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002556 } else {
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002557 //ALOGV("track %d u=%08x, s=%08x [NOT READY] on thread %p", name, cblk->user, cblk->server, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002558 if (track->isStopped()) {
2559 track->reset();
2560 }
2561 if (track->isTerminated() || track->isStopped() || track->isPaused()) {
2562 // We have consumed all the buffers of this track.
2563 // Remove it from the list of active tracks.
Eric Laurenta011e352012-03-29 15:51:43 -07002564 // TODO: use actual buffer filling status instead of latency when available from
2565 // audio HAL
2566 size_t audioHALFrames =
2567 (mOutput->stream->get_latency(mOutput->stream)*mSampleRate) / 1000;
2568 size_t framesWritten =
2569 mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
2570 if (track->presentationComplete(framesWritten, audioHALFrames)) {
2571 tracksToRemove->add(track);
2572 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002573 } else {
2574 // No buffers for this track. Give it a few chances to
2575 // fill a buffer, then remove it from active list.
2576 if (--(track->mRetryCount) <= 0) {
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002577 ALOGV("BUFFER TIMEOUT: remove(%d) from active list on thread %p", name, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002578 tracksToRemove->add(track);
Eric Laurent44d98482010-09-30 16:12:31 -07002579 // indicate to client process that the track was disabled because of underrun
Eric Laurent38ccae22011-03-28 18:37:07 -07002580 android_atomic_or(CBLK_DISABLED_ON, &cblk->flags);
Eric Laurent27741442012-01-17 19:20:12 -08002581 // If one track is not ready, mark the mixer also not ready if:
2582 // - the mixer was ready during previous round OR
2583 // - no other track is ready
2584 } else if (mPrevMixerStatus == MIXER_TRACKS_READY ||
2585 mixerStatus != MIXER_TRACKS_READY) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002586 mixerStatus = MIXER_TRACKS_ENABLED;
2587 }
2588 }
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002589 mAudioMixer->disable(name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002590 }
2591 }
2592
2593 // remove all the tracks that need to be...
2594 count = tracksToRemove->size();
Glenn Kastenf6b16782011-12-15 09:51:17 -08002595 if (CC_UNLIKELY(count)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002596 for (size_t i=0 ; i<count ; i++) {
2597 const sp<Track>& track = tracksToRemove->itemAt(i);
2598 mActiveTracks.remove(track);
2599 if (track->mainBuffer() != mMixBuffer) {
2600 chain = getEffectChain_l(track->sessionId());
2601 if (chain != 0) {
Steve Block3856b092011-10-20 11:56:00 +01002602 ALOGV("stopping track on chain %p for session Id: %d", chain.get(), track->sessionId());
Eric Laurentb469b942011-05-09 12:09:06 -07002603 chain->decActiveTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002604 }
2605 }
2606 if (track->isTerminated()) {
Eric Laurentb469b942011-05-09 12:09:06 -07002607 removeTrack_l(track);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002608 }
2609 }
2610 }
2611
2612 // mix buffer must be cleared if all tracks are connected to an
2613 // effect chain as in this case the mixer will not write to
2614 // mix buffer and track effects will accumulate into it
2615 if (mixedTracks != 0 && mixedTracks == tracksWithEffect) {
2616 memset(mMixBuffer, 0, mFrameCount * mChannelCount * sizeof(int16_t));
2617 }
2618
2619 return mixerStatus;
2620}
2621
Glenn Kasten66fcab92012-02-24 14:59:21 -08002622/*
2623The derived values that are cached:
2624 - mixBufferSize from frame count * frame size
2625 - activeSleepTime from activeSleepTimeUs()
2626 - idleSleepTime from idleSleepTimeUs()
2627 - standbyDelay from mActiveSleepTimeUs (DIRECT only)
2628 - maxPeriod from frame count and sample rate (MIXER only)
2629
2630The parameters that affect these derived values are:
2631 - frame count
2632 - frame size
2633 - sample rate
2634 - device type: A2DP or not
2635 - device latency
2636 - format: PCM or not
2637 - active sleep time
2638 - idle sleep time
2639*/
2640
2641void AudioFlinger::PlaybackThread::cacheParameters_l()
2642{
2643 mixBufferSize = mFrameCount * mFrameSize;
2644 activeSleepTime = activeSleepTimeUs();
2645 idleSleepTime = idleSleepTimeUs();
2646}
2647
Glenn Kastenfff6d712012-01-12 16:38:12 -08002648void AudioFlinger::MixerThread::invalidateTracks(audio_stream_type_t streamType)
Mathias Agopian65ab4712010-07-14 17:59:35 -07002649{
Steve Block3856b092011-10-20 11:56:00 +01002650 ALOGV ("MixerThread::invalidateTracks() mixer %p, streamType %d, mTracks.size %d",
Eric Laurentde070132010-07-13 04:45:46 -07002651 this, streamType, mTracks.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002652 Mutex::Autolock _l(mLock);
Eric Laurentde070132010-07-13 04:45:46 -07002653
Mathias Agopian65ab4712010-07-14 17:59:35 -07002654 size_t size = mTracks.size();
2655 for (size_t i = 0; i < size; i++) {
2656 sp<Track> t = mTracks[i];
Glenn Kasten02bbd202012-02-08 12:35:35 -08002657 if (t->streamType() == streamType) {
Eric Laurent38ccae22011-03-28 18:37:07 -07002658 android_atomic_or(CBLK_INVALID_ON, &t->mCblk->flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002659 t->mCblk->cv.signal();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002660 }
2661 }
2662}
2663
Mathias Agopian65ab4712010-07-14 17:59:35 -07002664// getTrackName_l() must be called with ThreadBase::mLock held
Jean-Michel Trivi7d5b2622012-04-04 18:54:36 -07002665int AudioFlinger::MixerThread::getTrackName_l(audio_channel_mask_t channelMask)
Mathias Agopian65ab4712010-07-14 17:59:35 -07002666{
Jean-Michel Trivi9bd23222012-04-16 13:43:48 -07002667 return mAudioMixer->getTrackName(channelMask);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002668}
2669
2670// deleteTrackName_l() must be called with ThreadBase::mLock held
2671void AudioFlinger::MixerThread::deleteTrackName_l(int name)
2672{
Steve Block3856b092011-10-20 11:56:00 +01002673 ALOGV("remove track (%d) and delete from mixer", name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002674 mAudioMixer->deleteTrackName(name);
2675}
2676
2677// checkForNewParameters_l() must be called with ThreadBase::mLock held
2678bool AudioFlinger::MixerThread::checkForNewParameters_l()
2679{
2680 bool reconfig = false;
2681
2682 while (!mNewParameters.isEmpty()) {
2683 status_t status = NO_ERROR;
2684 String8 keyValuePair = mNewParameters[0];
2685 AudioParameter param = AudioParameter(keyValuePair);
2686 int value;
2687
2688 if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
2689 reconfig = true;
2690 }
2691 if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
Glenn Kasten58f30212012-01-12 12:27:51 -08002692 if ((audio_format_t) value != AUDIO_FORMAT_PCM_16_BIT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002693 status = BAD_VALUE;
2694 } else {
2695 reconfig = true;
2696 }
2697 }
2698 if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
Dima Zavinfce7a472011-04-19 22:30:36 -07002699 if (value != AUDIO_CHANNEL_OUT_STEREO) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002700 status = BAD_VALUE;
2701 } else {
2702 reconfig = true;
2703 }
2704 }
2705 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
2706 // do not accept frame count changes if tracks are open as the track buffer
Glenn Kasten362c4e62011-12-14 10:28:06 -08002707 // size depends on frame count and correct behavior would not be guaranteed
Mathias Agopian65ab4712010-07-14 17:59:35 -07002708 // if frame count is changed after track creation
2709 if (!mTracks.isEmpty()) {
2710 status = INVALID_OPERATION;
2711 } else {
2712 reconfig = true;
2713 }
2714 }
2715 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
Glenn Kastend3cee2f2012-03-13 17:55:35 -07002716#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08002717 // when changing the audio output device, call addBatteryData to notify
2718 // the change
Eric Laurentb469b942011-05-09 12:09:06 -07002719 if ((int)mDevice != value) {
Gloria Wang9ee159b2011-02-24 14:51:45 -08002720 uint32_t params = 0;
2721 // check whether speaker is on
Dima Zavinfce7a472011-04-19 22:30:36 -07002722 if (value & AUDIO_DEVICE_OUT_SPEAKER) {
Gloria Wang9ee159b2011-02-24 14:51:45 -08002723 params |= IMediaPlayerService::kBatteryDataSpeakerOn;
2724 }
2725
2726 int deviceWithoutSpeaker
Dima Zavinfce7a472011-04-19 22:30:36 -07002727 = AUDIO_DEVICE_OUT_ALL & ~AUDIO_DEVICE_OUT_SPEAKER;
Gloria Wang9ee159b2011-02-24 14:51:45 -08002728 // check if any other device (except speaker) is on
2729 if (value & deviceWithoutSpeaker ) {
2730 params |= IMediaPlayerService::kBatteryDataOtherAudioDeviceOn;
2731 }
2732
2733 if (params != 0) {
2734 addBatteryData(params);
2735 }
2736 }
Glenn Kastend3cee2f2012-03-13 17:55:35 -07002737#endif
Gloria Wang9ee159b2011-02-24 14:51:45 -08002738
Mathias Agopian65ab4712010-07-14 17:59:35 -07002739 // forward device change to effects that have requested to be
2740 // aware of attached audio device.
2741 mDevice = (uint32_t)value;
2742 for (size_t i = 0; i < mEffectChains.size(); i++) {
Eric Laurentcab11242010-07-15 12:50:15 -07002743 mEffectChains[i]->setDevice_l(mDevice);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002744 }
2745 }
2746
2747 if (status == NO_ERROR) {
Dima Zavin799a70e2011-04-18 16:57:27 -07002748 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07002749 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002750 if (!mStandby && status == INVALID_OPERATION) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07002751 mOutput->stream->common.standby(&mOutput->stream->common);
2752 mStandby = true;
2753 mBytesWritten = 0;
2754 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07002755 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002756 }
2757 if (status == NO_ERROR && reconfig) {
2758 delete mAudioMixer;
Glenn Kastene9dd0172012-01-27 18:08:45 -08002759 // for safety in case readOutputParameters() accesses mAudioMixer (it doesn't)
2760 mAudioMixer = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002761 readOutputParameters();
2762 mAudioMixer = new AudioMixer(mFrameCount, mSampleRate);
2763 for (size_t i = 0; i < mTracks.size() ; i++) {
Jean-Michel Trivi7d5b2622012-04-04 18:54:36 -07002764 int name = getTrackName_l((audio_channel_mask_t)mTracks[i]->mChannelMask);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002765 if (name < 0) break;
2766 mTracks[i]->mName = name;
2767 // limit track sample rate to 2 x new output sample rate
2768 if (mTracks[i]->mCblk->sampleRate > 2 * sampleRate()) {
2769 mTracks[i]->mCblk->sampleRate = 2 * sampleRate();
2770 }
2771 }
2772 sendConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
2773 }
2774 }
2775
2776 mNewParameters.removeAt(0);
2777
2778 mParamStatus = status;
2779 mParamCond.signal();
Eric Laurent60cd0a02011-09-13 11:40:21 -07002780 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
2781 // already timed out waiting for the status and will never signal the condition.
Glenn Kasten7dede872011-12-13 11:04:14 -08002782 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002783 }
2784 return reconfig;
2785}
2786
2787status_t AudioFlinger::MixerThread::dumpInternals(int fd, const Vector<String16>& args)
2788{
2789 const size_t SIZE = 256;
2790 char buffer[SIZE];
2791 String8 result;
2792
2793 PlaybackThread::dumpInternals(fd, args);
2794
2795 snprintf(buffer, SIZE, "AudioMixer tracks: %08x\n", mAudioMixer->trackNames());
2796 result.append(buffer);
2797 write(fd, result.string(), result.size());
2798 return NO_ERROR;
2799}
2800
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08002801uint32_t AudioFlinger::MixerThread::idleSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07002802{
Eric Laurent60e18242010-07-29 06:50:24 -07002803 return (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000) / 2;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002804}
2805
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08002806uint32_t AudioFlinger::MixerThread::suspendSleepTimeUs() const
Eric Laurent25cbe0e2010-08-18 18:13:17 -07002807{
2808 return (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000);
2809}
2810
Glenn Kasten66fcab92012-02-24 14:59:21 -08002811void AudioFlinger::MixerThread::cacheParameters_l()
2812{
2813 PlaybackThread::cacheParameters_l();
2814
2815 // FIXME: Relaxed timing because of a certain device that can't meet latency
2816 // Should be reduced to 2x after the vendor fixes the driver issue
2817 // increase threshold again due to low power audio mode. The way this warning
2818 // threshold is calculated and its usefulness should be reconsidered anyway.
2819 maxPeriod = seconds(mFrameCount) / mSampleRate * 15;
2820}
2821
Mathias Agopian65ab4712010-07-14 17:59:35 -07002822// ----------------------------------------------------------------------------
Glenn Kasten72ef00d2012-01-17 11:09:42 -08002823AudioFlinger::DirectOutputThread::DirectOutputThread(const sp<AudioFlinger>& audioFlinger,
2824 AudioStreamOut* output, audio_io_handle_t id, uint32_t device)
Glenn Kasten23bb8be2012-01-26 10:38:26 -08002825 : PlaybackThread(audioFlinger, output, id, device, DIRECT)
Glenn Kasten84afa3b2012-01-25 15:28:08 -08002826 // mLeftVolFloat, mRightVolFloat
2827 // mLeftVolShort, mRightVolShort
Mathias Agopian65ab4712010-07-14 17:59:35 -07002828{
Mathias Agopian65ab4712010-07-14 17:59:35 -07002829}
2830
2831AudioFlinger::DirectOutputThread::~DirectOutputThread()
2832{
2833}
2834
Glenn Kasten1465f0c2012-03-06 11:23:32 -08002835AudioFlinger::PlaybackThread::mixer_state AudioFlinger::DirectOutputThread::prepareTracks_l(
2836 Vector< sp<Track> > *tracksToRemove
Glenn Kasten000f0e32012-03-01 17:10:56 -08002837)
Mathias Agopian65ab4712010-07-14 17:59:35 -07002838{
Glenn Kasten1465f0c2012-03-06 11:23:32 -08002839 sp<Track> trackToRemove;
2840
Glenn Kastenfec279f2012-03-08 07:47:15 -08002841 mixer_state mixerStatus = MIXER_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002842
Glenn Kasten952eeb22012-03-06 11:30:57 -08002843 // find out which tracks need to be processed
2844 if (mActiveTracks.size() != 0) {
2845 sp<Track> t = mActiveTracks[0].promote();
Glenn Kastenfec279f2012-03-08 07:47:15 -08002846 // The track died recently
2847 if (t == 0) return MIXER_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002848
Glenn Kasten952eeb22012-03-06 11:30:57 -08002849 Track* const track = t.get();
2850 audio_track_cblk_t* cblk = track->cblk();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002851
Glenn Kasten952eeb22012-03-06 11:30:57 -08002852 // The first time a track is added we wait
2853 // for all its buffers to be filled before processing it
2854 if (cblk->framesReady() && track->isReady() &&
2855 !track->isPaused() && !track->isTerminated())
2856 {
2857 //ALOGV("track %d u=%08x, s=%08x [OK]", track->name(), cblk->user, cblk->server);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002858
Glenn Kasten952eeb22012-03-06 11:30:57 -08002859 if (track->mFillingUpStatus == Track::FS_FILLED) {
2860 track->mFillingUpStatus = Track::FS_ACTIVE;
2861 mLeftVolFloat = mRightVolFloat = 0;
2862 mLeftVolShort = mRightVolShort = 0;
2863 if (track->mState == TrackBase::RESUMING) {
2864 track->mState = TrackBase::ACTIVE;
2865 rampVolume = true;
2866 }
2867 } else if (cblk->server != 0) {
2868 // If the track is stopped before the first frame was mixed,
2869 // do not apply ramp
2870 rampVolume = true;
2871 }
2872 // compute volume for this track
2873 float left, right;
2874 if (track->isMuted() || mMasterMute || track->isPausing() ||
2875 mStreamTypes[track->streamType()].mute) {
2876 left = right = 0;
2877 if (track->isPausing()) {
2878 track->setPaused();
2879 }
2880 } else {
2881 float typeVolume = mStreamTypes[track->streamType()].volume;
2882 float v = mMasterVolume * typeVolume;
2883 uint32_t vlr = cblk->getVolumeLR();
2884 float v_clamped = v * (vlr & 0xFFFF);
2885 if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
2886 left = v_clamped/MAX_GAIN;
2887 v_clamped = v * (vlr >> 16);
2888 if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
2889 right = v_clamped/MAX_GAIN;
2890 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002891
Glenn Kasten952eeb22012-03-06 11:30:57 -08002892 if (left != mLeftVolFloat || right != mRightVolFloat) {
2893 mLeftVolFloat = left;
2894 mRightVolFloat = right;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002895
Glenn Kasten952eeb22012-03-06 11:30:57 -08002896 // If audio HAL implements volume control,
2897 // force software volume to nominal value
2898 if (mOutput->stream->set_volume(mOutput->stream, left, right) == NO_ERROR) {
2899 left = 1.0f;
2900 right = 1.0f;
2901 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002902
Glenn Kasten952eeb22012-03-06 11:30:57 -08002903 // Convert volumes from float to 8.24
2904 uint32_t vl = (uint32_t)(left * (1 << 24));
2905 uint32_t vr = (uint32_t)(right * (1 << 24));
Mathias Agopian65ab4712010-07-14 17:59:35 -07002906
Glenn Kasten952eeb22012-03-06 11:30:57 -08002907 // Delegate volume control to effect in track effect chain if needed
2908 // only one effect chain can be present on DirectOutputThread, so if
2909 // there is one, the track is connected to it
2910 if (!mEffectChains.isEmpty()) {
2911 // Do not ramp volume if volume is controlled by effect
2912 if (mEffectChains[0]->setVolume_l(&vl, &vr)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002913 rampVolume = false;
2914 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08002915 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002916
Glenn Kasten952eeb22012-03-06 11:30:57 -08002917 // Convert volumes from 8.24 to 4.12 format
2918 uint32_t v_clamped = (vl + (1 << 11)) >> 12;
2919 if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
2920 leftVol = (uint16_t)v_clamped;
2921 v_clamped = (vr + (1 << 11)) >> 12;
2922 if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
2923 rightVol = (uint16_t)v_clamped;
2924 } else {
2925 leftVol = mLeftVolShort;
2926 rightVol = mRightVolShort;
2927 rampVolume = false;
2928 }
2929
2930 // reset retry count
2931 track->mRetryCount = kMaxTrackRetriesDirect;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08002932 mActiveTrack = t;
Glenn Kastenfec279f2012-03-08 07:47:15 -08002933 mixerStatus = MIXER_TRACKS_READY;
Glenn Kasten952eeb22012-03-06 11:30:57 -08002934 } else {
2935 //ALOGV("track %d u=%08x, s=%08x [NOT READY]", track->name(), cblk->user, cblk->server);
2936 if (track->isStopped()) {
2937 track->reset();
2938 }
2939 if (track->isTerminated() || track->isStopped() || track->isPaused()) {
2940 // We have consumed all the buffers of this track.
2941 // Remove it from the list of active tracks.
Eric Laurenta011e352012-03-29 15:51:43 -07002942 // TODO: implement behavior for compressed audio
2943 size_t audioHALFrames =
2944 (mOutput->stream->get_latency(mOutput->stream)*mSampleRate) / 1000;
2945 size_t framesWritten =
2946 mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
2947 if (track->presentationComplete(framesWritten, audioHALFrames)) {
2948 trackToRemove = track;
2949 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08002950 } else {
2951 // No buffers for this track. Give it a few chances to
2952 // fill a buffer, then remove it from active list.
2953 if (--(track->mRetryCount) <= 0) {
2954 ALOGV("BUFFER TIMEOUT: remove(%d) from active list", track->name());
2955 trackToRemove = track;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002956 } else {
Glenn Kastenfec279f2012-03-08 07:47:15 -08002957 mixerStatus = MIXER_TRACKS_ENABLED;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002958 }
2959 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08002960 }
2961 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002962
Glenn Kasten1465f0c2012-03-06 11:23:32 -08002963 // FIXME merge this with similar code for removing multiple tracks
Glenn Kasten952eeb22012-03-06 11:30:57 -08002964 // remove all the tracks that need to be...
2965 if (CC_UNLIKELY(trackToRemove != 0)) {
Glenn Kasten1465f0c2012-03-06 11:23:32 -08002966 tracksToRemove->add(trackToRemove);
Glenn Kasten952eeb22012-03-06 11:30:57 -08002967 mActiveTracks.remove(trackToRemove);
2968 if (!mEffectChains.isEmpty()) {
Glenn Kasten5798d4e2012-03-08 12:18:35 -08002969 ALOGV("stopping track on chain %p for session Id: %d", mEffectChains[0].get(),
Glenn Kasten952eeb22012-03-06 11:30:57 -08002970 trackToRemove->sessionId());
2971 mEffectChains[0]->decActiveTrackCnt();
2972 }
2973 if (trackToRemove->isTerminated()) {
2974 removeTrack_l(trackToRemove);
2975 }
2976 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002977
Glenn Kastenfec279f2012-03-08 07:47:15 -08002978 return mixerStatus;
Glenn Kasten000f0e32012-03-01 17:10:56 -08002979}
Mathias Agopian65ab4712010-07-14 17:59:35 -07002980
Glenn Kasten000f0e32012-03-01 17:10:56 -08002981void AudioFlinger::DirectOutputThread::threadLoop_mix()
2982{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002983 AudioBufferProvider::Buffer buffer;
2984 size_t frameCount = mFrameCount;
2985 int8_t *curBuf = (int8_t *)mMixBuffer;
2986 // output audio to hardware
2987 while (frameCount) {
2988 buffer.frameCount = frameCount;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08002989 mActiveTrack->getNextBuffer(&buffer);
Glenn Kasten952eeb22012-03-06 11:30:57 -08002990 if (CC_UNLIKELY(buffer.raw == NULL)) {
2991 memset(curBuf, 0, frameCount * mFrameSize);
2992 break;
2993 }
2994 memcpy(curBuf, buffer.raw, buffer.frameCount * mFrameSize);
2995 frameCount -= buffer.frameCount;
2996 curBuf += buffer.frameCount * mFrameSize;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08002997 mActiveTrack->releaseBuffer(&buffer);
Glenn Kasten952eeb22012-03-06 11:30:57 -08002998 }
2999 sleepTime = 0;
3000 standbyTime = systemTime() + standbyDelay;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08003001 mActiveTrack.clear();
Glenn Kasten73f4bc32012-03-09 12:08:48 -08003002
3003 // apply volume
3004
3005 // Do not apply volume on compressed audio
3006 if (!audio_is_linear_pcm(mFormat)) {
3007 return;
3008 }
3009
3010 // convert to signed 16 bit before volume calculation
3011 if (mFormat == AUDIO_FORMAT_PCM_8_BIT) {
3012 size_t count = mFrameCount * mChannelCount;
3013 uint8_t *src = (uint8_t *)mMixBuffer + count-1;
3014 int16_t *dst = mMixBuffer + count-1;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003015 while (count--) {
Glenn Kasten73f4bc32012-03-09 12:08:48 -08003016 *dst-- = (int16_t)(*src--^0x80) << 8;
3017 }
3018 }
3019
3020 frameCount = mFrameCount;
3021 int16_t *out = mMixBuffer;
3022 if (rampVolume) {
3023 if (mChannelCount == 1) {
3024 int32_t d = ((int32_t)leftVol - (int32_t)mLeftVolShort) << 16;
3025 int32_t vlInc = d / (int32_t)frameCount;
3026 int32_t vl = ((int32_t)mLeftVolShort << 16);
3027 do {
3028 out[0] = clamp16(mul(out[0], vl >> 16) >> 12);
3029 out++;
3030 vl += vlInc;
3031 } while (--frameCount);
3032
3033 } else {
3034 int32_t d = ((int32_t)leftVol - (int32_t)mLeftVolShort) << 16;
3035 int32_t vlInc = d / (int32_t)frameCount;
3036 d = ((int32_t)rightVol - (int32_t)mRightVolShort) << 16;
3037 int32_t vrInc = d / (int32_t)frameCount;
3038 int32_t vl = ((int32_t)mLeftVolShort << 16);
3039 int32_t vr = ((int32_t)mRightVolShort << 16);
3040 do {
3041 out[0] = clamp16(mul(out[0], vl >> 16) >> 12);
3042 out[1] = clamp16(mul(out[1], vr >> 16) >> 12);
3043 out += 2;
3044 vl += vlInc;
3045 vr += vrInc;
3046 } while (--frameCount);
3047 }
3048 } else {
3049 if (mChannelCount == 1) {
3050 do {
3051 out[0] = clamp16(mul(out[0], leftVol) >> 12);
3052 out++;
3053 } while (--frameCount);
3054 } else {
3055 do {
3056 out[0] = clamp16(mul(out[0], leftVol) >> 12);
3057 out[1] = clamp16(mul(out[1], rightVol) >> 12);
3058 out += 2;
3059 } while (--frameCount);
3060 }
3061 }
3062
3063 // convert back to unsigned 8 bit after volume calculation
3064 if (mFormat == AUDIO_FORMAT_PCM_8_BIT) {
3065 size_t count = mFrameCount * mChannelCount;
3066 int16_t *src = mMixBuffer;
3067 uint8_t *dst = (uint8_t *)mMixBuffer;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003068 while (count--) {
Glenn Kasten73f4bc32012-03-09 12:08:48 -08003069 *dst++ = (uint8_t)(((int32_t)*src++ + (1<<7)) >> 8)^0x80;
3070 }
3071 }
3072
3073 mLeftVolShort = leftVol;
3074 mRightVolShort = rightVol;
Glenn Kasten000f0e32012-03-01 17:10:56 -08003075}
3076
3077void AudioFlinger::DirectOutputThread::threadLoop_sleepTime()
3078{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003079 if (sleepTime == 0) {
Glenn Kastenfec279f2012-03-08 07:47:15 -08003080 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08003081 sleepTime = activeSleepTime;
3082 } else {
3083 sleepTime = idleSleepTime;
3084 }
3085 } else if (mBytesWritten != 0 && audio_is_linear_pcm(mFormat)) {
3086 memset (mMixBuffer, 0, mFrameCount * mFrameSize);
3087 sleepTime = 0;
3088 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003089}
3090
3091// getTrackName_l() must be called with ThreadBase::mLock held
Jean-Michel Trivi7d5b2622012-04-04 18:54:36 -07003092int AudioFlinger::DirectOutputThread::getTrackName_l(audio_channel_mask_t channelMask)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003093{
3094 return 0;
3095}
3096
3097// deleteTrackName_l() must be called with ThreadBase::mLock held
3098void AudioFlinger::DirectOutputThread::deleteTrackName_l(int name)
3099{
3100}
3101
3102// checkForNewParameters_l() must be called with ThreadBase::mLock held
3103bool AudioFlinger::DirectOutputThread::checkForNewParameters_l()
3104{
3105 bool reconfig = false;
3106
3107 while (!mNewParameters.isEmpty()) {
3108 status_t status = NO_ERROR;
3109 String8 keyValuePair = mNewParameters[0];
3110 AudioParameter param = AudioParameter(keyValuePair);
3111 int value;
3112
3113 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
3114 // do not accept frame count changes if tracks are open as the track buffer
3115 // size depends on frame count and correct behavior would not be garantied
3116 // if frame count is changed after track creation
3117 if (!mTracks.isEmpty()) {
3118 status = INVALID_OPERATION;
3119 } else {
3120 reconfig = true;
3121 }
3122 }
3123 if (status == NO_ERROR) {
Dima Zavin799a70e2011-04-18 16:57:27 -07003124 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07003125 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003126 if (!mStandby && status == INVALID_OPERATION) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003127 mOutput->stream->common.standby(&mOutput->stream->common);
3128 mStandby = true;
3129 mBytesWritten = 0;
3130 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07003131 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003132 }
3133 if (status == NO_ERROR && reconfig) {
3134 readOutputParameters();
3135 sendConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
3136 }
3137 }
3138
3139 mNewParameters.removeAt(0);
3140
3141 mParamStatus = status;
3142 mParamCond.signal();
Eric Laurent60cd0a02011-09-13 11:40:21 -07003143 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
3144 // already timed out waiting for the status and will never signal the condition.
Glenn Kasten7dede872011-12-13 11:04:14 -08003145 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003146 }
3147 return reconfig;
3148}
3149
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003150uint32_t AudioFlinger::DirectOutputThread::activeSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07003151{
3152 uint32_t time;
Dima Zavinfce7a472011-04-19 22:30:36 -07003153 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent162b40b2011-12-05 09:47:19 -08003154 time = PlaybackThread::activeSleepTimeUs();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003155 } else {
3156 time = 10000;
3157 }
3158 return time;
3159}
3160
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003161uint32_t AudioFlinger::DirectOutputThread::idleSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07003162{
3163 uint32_t time;
Dima Zavinfce7a472011-04-19 22:30:36 -07003164 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent60e18242010-07-29 06:50:24 -07003165 time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000) / 2;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003166 } else {
3167 time = 10000;
3168 }
3169 return time;
3170}
3171
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003172uint32_t AudioFlinger::DirectOutputThread::suspendSleepTimeUs() const
Eric Laurent25cbe0e2010-08-18 18:13:17 -07003173{
3174 uint32_t time;
Dima Zavinfce7a472011-04-19 22:30:36 -07003175 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent25cbe0e2010-08-18 18:13:17 -07003176 time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000);
3177 } else {
3178 time = 10000;
3179 }
3180 return time;
3181}
3182
Glenn Kasten66fcab92012-02-24 14:59:21 -08003183void AudioFlinger::DirectOutputThread::cacheParameters_l()
3184{
3185 PlaybackThread::cacheParameters_l();
3186
3187 // use shorter standby delay as on normal output to release
3188 // hardware resources as soon as possible
3189 standbyDelay = microseconds(activeSleepTime*2);
3190}
Eric Laurent25cbe0e2010-08-18 18:13:17 -07003191
Mathias Agopian65ab4712010-07-14 17:59:35 -07003192// ----------------------------------------------------------------------------
3193
Glenn Kasten23bb8be2012-01-26 10:38:26 -08003194AudioFlinger::DuplicatingThread::DuplicatingThread(const sp<AudioFlinger>& audioFlinger,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08003195 AudioFlinger::MixerThread* mainThread, audio_io_handle_t id)
Glenn Kasten23bb8be2012-01-26 10:38:26 -08003196 : MixerThread(audioFlinger, mainThread->getOutput(), id, mainThread->device(), DUPLICATING),
3197 mWaitTimeMs(UINT_MAX)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003198{
Mathias Agopian65ab4712010-07-14 17:59:35 -07003199 addOutputTrack(mainThread);
3200}
3201
3202AudioFlinger::DuplicatingThread::~DuplicatingThread()
3203{
3204 for (size_t i = 0; i < mOutputTracks.size(); i++) {
3205 mOutputTracks[i]->destroy();
3206 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003207}
3208
Glenn Kasten000f0e32012-03-01 17:10:56 -08003209void AudioFlinger::DuplicatingThread::threadLoop_mix()
Mathias Agopian65ab4712010-07-14 17:59:35 -07003210{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003211 // mix buffers...
3212 if (outputsReady(outputTracks)) {
3213 mAudioMixer->process(AudioBufferProvider::kInvalidPTS);
3214 } else {
3215 memset(mMixBuffer, 0, mixBufferSize);
3216 }
3217 sleepTime = 0;
3218 writeFrames = mFrameCount;
Glenn Kasten000f0e32012-03-01 17:10:56 -08003219}
3220
3221void AudioFlinger::DuplicatingThread::threadLoop_sleepTime()
3222{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003223 if (sleepTime == 0) {
Glenn Kastenfec279f2012-03-08 07:47:15 -08003224 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08003225 sleepTime = activeSleepTime;
3226 } else {
3227 sleepTime = idleSleepTime;
3228 }
3229 } else if (mBytesWritten != 0) {
3230 // flush remaining overflow buffers in output tracks
3231 for (size_t i = 0; i < outputTracks.size(); i++) {
3232 if (outputTracks[i]->isActive()) {
3233 sleepTime = 0;
3234 writeFrames = 0;
3235 memset(mMixBuffer, 0, mixBufferSize);
3236 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003237 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08003238 }
3239 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08003240}
Mathias Agopian65ab4712010-07-14 17:59:35 -07003241
Glenn Kasten000f0e32012-03-01 17:10:56 -08003242void AudioFlinger::DuplicatingThread::threadLoop_write()
3243{
Glenn Kasten66fcab92012-02-24 14:59:21 -08003244 standbyTime = systemTime() + standbyDelay;
Glenn Kasten952eeb22012-03-06 11:30:57 -08003245 for (size_t i = 0; i < outputTracks.size(); i++) {
3246 outputTracks[i]->write(mMixBuffer, writeFrames);
3247 }
3248 mBytesWritten += mixBufferSize;
Glenn Kasten000f0e32012-03-01 17:10:56 -08003249}
Glenn Kasten688a6402012-02-29 07:57:06 -08003250
Glenn Kasten000f0e32012-03-01 17:10:56 -08003251void AudioFlinger::DuplicatingThread::threadLoop_standby()
3252{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003253 // DuplicatingThread implements standby by stopping all tracks
3254 for (size_t i = 0; i < outputTracks.size(); i++) {
3255 outputTracks[i]->stop();
3256 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003257}
3258
Glenn Kastenfa26a852012-03-06 11:28:04 -08003259void AudioFlinger::DuplicatingThread::saveOutputTracks()
3260{
3261 outputTracks = mOutputTracks;
3262}
3263
3264void AudioFlinger::DuplicatingThread::clearOutputTracks()
3265{
3266 outputTracks.clear();
3267}
3268
Mathias Agopian65ab4712010-07-14 17:59:35 -07003269void AudioFlinger::DuplicatingThread::addOutputTrack(MixerThread *thread)
3270{
Glenn Kastenb6b74062012-02-24 14:12:20 -08003271 Mutex::Autolock _l(mLock);
Glenn Kasten99e53b82012-01-19 08:59:58 -08003272 // FIXME explain this formula
Mathias Agopian65ab4712010-07-14 17:59:35 -07003273 int frameCount = (3 * mFrameCount * mSampleRate) / thread->sampleRate();
Glenn Kasten9eaa5572012-01-20 13:32:16 -08003274 OutputTrack *outputTrack = new OutputTrack(thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003275 this,
3276 mSampleRate,
3277 mFormat,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07003278 mChannelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003279 frameCount);
3280 if (outputTrack->cblk() != NULL) {
Dima Zavinfce7a472011-04-19 22:30:36 -07003281 thread->setStreamVolume(AUDIO_STREAM_CNT, 1.0f);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003282 mOutputTracks.add(outputTrack);
Steve Block3856b092011-10-20 11:56:00 +01003283 ALOGV("addOutputTrack() track %p, on thread %p", outputTrack, thread);
Glenn Kasten438b0362012-03-06 11:24:48 -08003284 updateWaitTime_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003285 }
3286}
3287
3288void AudioFlinger::DuplicatingThread::removeOutputTrack(MixerThread *thread)
3289{
3290 Mutex::Autolock _l(mLock);
3291 for (size_t i = 0; i < mOutputTracks.size(); i++) {
Glenn Kastena1117922012-01-26 10:53:32 -08003292 if (mOutputTracks[i]->thread() == thread) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003293 mOutputTracks[i]->destroy();
3294 mOutputTracks.removeAt(i);
Glenn Kasten438b0362012-03-06 11:24:48 -08003295 updateWaitTime_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003296 return;
3297 }
3298 }
Steve Block3856b092011-10-20 11:56:00 +01003299 ALOGV("removeOutputTrack(): unkonwn thread: %p", thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003300}
3301
Glenn Kasten438b0362012-03-06 11:24:48 -08003302// caller must hold mLock
3303void AudioFlinger::DuplicatingThread::updateWaitTime_l()
Mathias Agopian65ab4712010-07-14 17:59:35 -07003304{
3305 mWaitTimeMs = UINT_MAX;
3306 for (size_t i = 0; i < mOutputTracks.size(); i++) {
3307 sp<ThreadBase> strong = mOutputTracks[i]->thread().promote();
Glenn Kasten7378ca52012-01-20 13:44:40 -08003308 if (strong != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003309 uint32_t waitTimeMs = (strong->frameCount() * 2 * 1000) / strong->sampleRate();
3310 if (waitTimeMs < mWaitTimeMs) {
3311 mWaitTimeMs = waitTimeMs;
3312 }
3313 }
3314 }
3315}
3316
3317
Glenn Kasten02fe1bf2012-02-24 15:42:17 -08003318bool AudioFlinger::DuplicatingThread::outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003319{
3320 for (size_t i = 0; i < outputTracks.size(); i++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003321 sp<ThreadBase> thread = outputTracks[i]->thread().promote();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003322 if (thread == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00003323 ALOGW("DuplicatingThread::outputsReady() could not promote thread on output track %p", outputTracks[i].get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003324 return false;
3325 }
3326 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3327 if (playbackThread->standby() && !playbackThread->isSuspended()) {
Steve Block3856b092011-10-20 11:56:00 +01003328 ALOGV("DuplicatingThread output track %p on thread %p Not Ready", outputTracks[i].get(), thread.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003329 return false;
3330 }
3331 }
3332 return true;
3333}
3334
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003335uint32_t AudioFlinger::DuplicatingThread::activeSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07003336{
3337 return (mWaitTimeMs * 1000) / 2;
3338}
3339
Glenn Kasten66fcab92012-02-24 14:59:21 -08003340void AudioFlinger::DuplicatingThread::cacheParameters_l()
3341{
3342 // updateWaitTime_l() sets mWaitTimeMs, which affects activeSleepTimeUs(), so call it first
3343 updateWaitTime_l();
3344
3345 MixerThread::cacheParameters_l();
3346}
3347
Mathias Agopian65ab4712010-07-14 17:59:35 -07003348// ----------------------------------------------------------------------------
3349
3350// TrackBase constructor must be called with AudioFlinger::mLock held
3351AudioFlinger::ThreadBase::TrackBase::TrackBase(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08003352 ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003353 const sp<Client>& client,
3354 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08003355 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07003356 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003357 int frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003358 const sp<IMemory>& sharedBuffer,
3359 int sessionId)
3360 : RefBase(),
3361 mThread(thread),
3362 mClient(client),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08003363 mCblk(NULL),
3364 // mBuffer
3365 // mBufferEnd
Mathias Agopian65ab4712010-07-14 17:59:35 -07003366 mFrameCount(0),
3367 mState(IDLE),
Mathias Agopian65ab4712010-07-14 17:59:35 -07003368 mFormat(format),
Glenn Kasten5cf034d2012-02-21 10:35:56 -08003369 mStepServerFailed(false),
Mathias Agopian65ab4712010-07-14 17:59:35 -07003370 mSessionId(sessionId)
Glenn Kasten84afa3b2012-01-25 15:28:08 -08003371 // mChannelCount
3372 // mChannelMask
Mathias Agopian65ab4712010-07-14 17:59:35 -07003373{
Steve Block3856b092011-10-20 11:56:00 +01003374 ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(), sharedBuffer->size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003375
Steve Blockb8a80522011-12-20 16:23:08 +00003376 // ALOGD("Creating track with %d buffers @ %d bytes", bufferCount, bufferSize);
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003377 size_t size = sizeof(audio_track_cblk_t);
3378 uint8_t channelCount = popcount(channelMask);
3379 size_t bufferSize = frameCount*channelCount*sizeof(int16_t);
3380 if (sharedBuffer == 0) {
3381 size += bufferSize;
3382 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003383
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003384 if (client != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003385 mCblkMemory = client->heap()->allocate(size);
3386 if (mCblkMemory != 0) {
3387 mCblk = static_cast<audio_track_cblk_t *>(mCblkMemory->pointer());
Glenn Kastena0d68332012-01-27 16:47:15 -08003388 if (mCblk != NULL) { // construct the shared structure in-place.
Mathias Agopian65ab4712010-07-14 17:59:35 -07003389 new(mCblk) audio_track_cblk_t();
3390 // clear all buffers
3391 mCblk->frameCount = frameCount;
3392 mCblk->sampleRate = sampleRate;
Marco Nelissena1472d92012-03-30 14:36:54 -07003393// uncomment the following lines to quickly test 32-bit wraparound
3394// mCblk->user = 0xffff0000;
3395// mCblk->server = 0xffff0000;
3396// mCblk->userBase = 0xffff0000;
3397// mCblk->serverBase = 0xffff0000;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07003398 mChannelCount = channelCount;
3399 mChannelMask = channelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003400 if (sharedBuffer == 0) {
3401 mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
3402 memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
3403 // Force underrun condition to avoid false underrun callback until first data is
Eric Laurent44d98482010-09-30 16:12:31 -07003404 // written to buffer (other flags are cleared)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003405 mCblk->flags = CBLK_UNDERRUN_ON;
3406 } else {
3407 mBuffer = sharedBuffer->pointer();
3408 }
3409 mBufferEnd = (uint8_t *)mBuffer + bufferSize;
3410 }
3411 } else {
Steve Block29357bc2012-01-06 19:20:56 +00003412 ALOGE("not enough memory for AudioTrack size=%u", size);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003413 client->heap()->dump("AudioTrack");
3414 return;
3415 }
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003416 } else {
3417 mCblk = (audio_track_cblk_t *)(new uint8_t[size]);
Glenn Kastenea7939a2012-03-14 12:56:26 -07003418 // construct the shared structure in-place.
3419 new(mCblk) audio_track_cblk_t();
3420 // clear all buffers
3421 mCblk->frameCount = frameCount;
3422 mCblk->sampleRate = sampleRate;
Marco Nelissena1472d92012-03-30 14:36:54 -07003423// uncomment the following lines to quickly test 32-bit wraparound
3424// mCblk->user = 0xffff0000;
3425// mCblk->server = 0xffff0000;
3426// mCblk->userBase = 0xffff0000;
3427// mCblk->serverBase = 0xffff0000;
Glenn Kastenea7939a2012-03-14 12:56:26 -07003428 mChannelCount = channelCount;
3429 mChannelMask = channelMask;
3430 mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
3431 memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
3432 // Force underrun condition to avoid false underrun callback until first data is
3433 // written to buffer (other flags are cleared)
3434 mCblk->flags = CBLK_UNDERRUN_ON;
3435 mBufferEnd = (uint8_t *)mBuffer + bufferSize;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003436 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003437}
3438
3439AudioFlinger::ThreadBase::TrackBase::~TrackBase()
3440{
Glenn Kastena0d68332012-01-27 16:47:15 -08003441 if (mCblk != NULL) {
Glenn Kasten1a0ae5b2012-02-03 10:24:48 -08003442 if (mClient == 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003443 delete mCblk;
Glenn Kasten1a0ae5b2012-02-03 10:24:48 -08003444 } else {
3445 mCblk->~audio_track_cblk_t(); // destroy our shared-structure.
Mathias Agopian65ab4712010-07-14 17:59:35 -07003446 }
3447 }
Glenn Kastendbfafaf2012-01-25 15:27:15 -08003448 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Glenn Kasten7378ca52012-01-20 13:44:40 -08003449 if (mClient != 0) {
Glenn Kasten84afa3b2012-01-25 15:28:08 -08003450 // Client destructor must run with AudioFlinger mutex locked
Mathias Agopian65ab4712010-07-14 17:59:35 -07003451 Mutex::Autolock _l(mClient->audioFlinger()->mLock);
Glenn Kasten7378ca52012-01-20 13:44:40 -08003452 // If the client's reference count drops to zero, the associated destructor
3453 // must run with AudioFlinger lock held. Thus the explicit clear() rather than
3454 // relying on the automatic clear() at end of scope.
Mathias Agopian65ab4712010-07-14 17:59:35 -07003455 mClient.clear();
3456 }
3457}
3458
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08003459// AudioBufferProvider interface
3460// getNextBuffer() = 0;
3461// This implementation of releaseBuffer() is used by Track and RecordTrack, but not TimedTrack
Mathias Agopian65ab4712010-07-14 17:59:35 -07003462void AudioFlinger::ThreadBase::TrackBase::releaseBuffer(AudioBufferProvider::Buffer* buffer)
3463{
Glenn Kastene0feee32011-12-13 11:53:26 -08003464 buffer->raw = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003465 mFrameCount = buffer->frameCount;
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08003466 (void) step(); // ignore return value of step()
Mathias Agopian65ab4712010-07-14 17:59:35 -07003467 buffer->frameCount = 0;
3468}
3469
3470bool AudioFlinger::ThreadBase::TrackBase::step() {
3471 bool result;
3472 audio_track_cblk_t* cblk = this->cblk();
3473
3474 result = cblk->stepServer(mFrameCount);
3475 if (!result) {
Steve Block3856b092011-10-20 11:56:00 +01003476 ALOGV("stepServer failed acquiring cblk mutex");
Glenn Kasten5cf034d2012-02-21 10:35:56 -08003477 mStepServerFailed = true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003478 }
3479 return result;
3480}
3481
3482void AudioFlinger::ThreadBase::TrackBase::reset() {
3483 audio_track_cblk_t* cblk = this->cblk();
3484
3485 cblk->user = 0;
3486 cblk->server = 0;
3487 cblk->userBase = 0;
3488 cblk->serverBase = 0;
Glenn Kasten5cf034d2012-02-21 10:35:56 -08003489 mStepServerFailed = false;
Steve Block3856b092011-10-20 11:56:00 +01003490 ALOGV("TrackBase::reset");
Mathias Agopian65ab4712010-07-14 17:59:35 -07003491}
3492
Mathias Agopian65ab4712010-07-14 17:59:35 -07003493int AudioFlinger::ThreadBase::TrackBase::sampleRate() const {
3494 return (int)mCblk->sampleRate;
3495}
3496
Mathias Agopian65ab4712010-07-14 17:59:35 -07003497void* AudioFlinger::ThreadBase::TrackBase::getBuffer(uint32_t offset, uint32_t frames) const {
3498 audio_track_cblk_t* cblk = this->cblk();
Glenn Kastenb9980652012-01-11 09:48:27 -08003499 size_t frameSize = cblk->frameSize;
3500 int8_t *bufferStart = (int8_t *)mBuffer + (offset-cblk->serverBase)*frameSize;
3501 int8_t *bufferEnd = bufferStart + frames * frameSize;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003502
3503 // Check validity of returned pointer in case the track control block would have been corrupted.
Jean-Michel Triviacb86cc2012-04-16 12:43:57 -07003504 ALOG_ASSERT(!(bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd),
3505 "TrackBase::getBuffer buffer out of range:\n"
3506 " start: %p, end %p , mBuffer %p mBufferEnd %p\n"
3507 " server %u, serverBase %u, user %u, userBase %u, frameSize %d",
Mathias Agopian65ab4712010-07-14 17:59:35 -07003508 bufferStart, bufferEnd, mBuffer, mBufferEnd,
Jean-Michel Triviacb86cc2012-04-16 12:43:57 -07003509 cblk->server, cblk->serverBase, cblk->user, cblk->userBase, frameSize);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003510
3511 return bufferStart;
3512}
3513
Eric Laurenta011e352012-03-29 15:51:43 -07003514status_t AudioFlinger::ThreadBase::TrackBase::setSyncEvent(const sp<SyncEvent>& event)
3515{
3516 mSyncEvents.add(event);
3517 return NO_ERROR;
3518}
3519
Mathias Agopian65ab4712010-07-14 17:59:35 -07003520// ----------------------------------------------------------------------------
3521
3522// Track constructor must be called with AudioFlinger::mLock and ThreadBase::mLock held
3523AudioFlinger::PlaybackThread::Track::Track(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08003524 PlaybackThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003525 const sp<Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -08003526 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003527 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08003528 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07003529 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003530 int frameCount,
3531 const sp<IMemory>& sharedBuffer,
Glenn Kasten73d22752012-03-19 13:38:30 -07003532 int sessionId,
3533 IAudioFlinger::track_flags_t flags)
Glenn Kasten5cf034d2012-02-21 10:35:56 -08003534 : TrackBase(thread, client, sampleRate, format, channelMask, frameCount, sharedBuffer, sessionId),
Glenn Kastenf9959012012-03-19 11:14:37 -07003535 mMute(false),
3536 // mFillingUpStatus ?
3537 // mRetryCount initialized later when needed
3538 mSharedBuffer(sharedBuffer),
3539 mStreamType(streamType),
3540 mName(-1), // see note below
3541 mMainBuffer(thread->mixBuffer()),
3542 mAuxBuffer(NULL),
Eric Laurenta011e352012-03-29 15:51:43 -07003543 mAuxEffectId(0), mHasVolumeController(false),
Glenn Kasten73d22752012-03-19 13:38:30 -07003544 mPresentationCompleteFrames(0),
3545 mFlags(flags)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003546{
3547 if (mCblk != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003548 // NOTE: audio_track_cblk_t::frameSize for 8 bit PCM data is based on a sample size of
3549 // 16 bit because data is converted to 16 bit before being stored in buffer by AudioTrack
Eric Laurentedc15ad2011-07-21 19:35:01 -07003550 mCblk->frameSize = audio_is_linear_pcm(format) ? mChannelCount * sizeof(int16_t) : sizeof(uint8_t);
Glenn Kastenf9959012012-03-19 11:14:37 -07003551 // to avoid leaking a track name, do not allocate one unless there is an mCblk
Jean-Michel Trivi7d5b2622012-04-04 18:54:36 -07003552 mName = thread->getTrackName_l((audio_channel_mask_t)channelMask);
Glenn Kastenf9959012012-03-19 11:14:37 -07003553 if (mName < 0) {
3554 ALOGE("no more track names available");
3555 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003556 }
Glenn Kastenf9959012012-03-19 11:14:37 -07003557 ALOGV("Track constructor name %d, calling pid %d", mName, IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003558}
3559
3560AudioFlinger::PlaybackThread::Track::~Track()
3561{
Steve Block3856b092011-10-20 11:56:00 +01003562 ALOGV("PlaybackThread::Track destructor");
Mathias Agopian65ab4712010-07-14 17:59:35 -07003563 sp<ThreadBase> thread = mThread.promote();
3564 if (thread != 0) {
3565 Mutex::Autolock _l(thread->mLock);
3566 mState = TERMINATED;
3567 }
3568}
3569
3570void AudioFlinger::PlaybackThread::Track::destroy()
3571{
3572 // NOTE: destroyTrack_l() can remove a strong reference to this Track
3573 // by removing it from mTracks vector, so there is a risk that this Tracks's
Glenn Kasten99e53b82012-01-19 08:59:58 -08003574 // destructor is called. As the destructor needs to lock mLock,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003575 // we must acquire a strong reference on this Track before locking mLock
3576 // here so that the destructor is called only when exiting this function.
3577 // On the other hand, as long as Track::destroy() is only called by
3578 // TrackHandle destructor, the TrackHandle still holds a strong ref on
3579 // this Track with its member mTrack.
3580 sp<Track> keep(this);
3581 { // scope for mLock
3582 sp<ThreadBase> thread = mThread.promote();
3583 if (thread != 0) {
3584 if (!isOutputTrack()) {
3585 if (mState == ACTIVE || mState == RESUMING) {
Glenn Kasten02bbd202012-02-08 12:35:35 -08003586 AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
Gloria Wang9ee159b2011-02-24 14:51:45 -08003587
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003588#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08003589 // to track the speaker usage
3590 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003591#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07003592 }
3593 AudioSystem::releaseOutput(thread->id());
3594 }
3595 Mutex::Autolock _l(thread->mLock);
3596 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3597 playbackThread->destroyTrack_l(this);
3598 }
3599 }
3600}
3601
3602void AudioFlinger::PlaybackThread::Track::dump(char* buffer, size_t size)
3603{
Glenn Kasten83d86532012-01-17 14:39:34 -08003604 uint32_t vlr = mCblk->getVolumeLR();
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07003605 snprintf(buffer, size, " %05d %05d %03u %03u 0x%08x %05u %04u %1d %1d %1d %05u %05u %05u 0x%08x 0x%08x 0x%08x 0x%08x\n",
Mathias Agopian65ab4712010-07-14 17:59:35 -07003606 mName - AudioMixer::TRACK0,
Glenn Kasten44deb052012-02-05 18:09:08 -08003607 (mClient == 0) ? getpid_cached : mClient->pid(),
Mathias Agopian65ab4712010-07-14 17:59:35 -07003608 mStreamType,
3609 mFormat,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07003610 mChannelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003611 mSessionId,
3612 mFrameCount,
3613 mState,
3614 mMute,
3615 mFillingUpStatus,
3616 mCblk->sampleRate,
Glenn Kastenb1cf75c2012-01-17 12:20:54 -08003617 vlr & 0xFFFF,
3618 vlr >> 16,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003619 mCblk->server,
3620 mCblk->user,
3621 (int)mMainBuffer,
3622 (int)mAuxBuffer);
3623}
3624
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08003625// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08003626status_t AudioFlinger::PlaybackThread::Track::getNextBuffer(
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003627 AudioBufferProvider::Buffer* buffer, int64_t pts)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003628{
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003629 audio_track_cblk_t* cblk = this->cblk();
3630 uint32_t framesReady;
3631 uint32_t framesReq = buffer->frameCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003632
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003633 // Check if last stepServer failed, try to step now
3634 if (mStepServerFailed) {
3635 if (!step()) goto getNextBuffer_exit;
3636 ALOGV("stepServer recovered");
3637 mStepServerFailed = false;
3638 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003639
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003640 framesReady = cblk->framesReady();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003641
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003642 if (CC_LIKELY(framesReady)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003643 uint32_t s = cblk->server;
3644 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
3645
3646 bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
3647 if (framesReq > framesReady) {
3648 framesReq = framesReady;
3649 }
Marco Nelissena1472d92012-03-30 14:36:54 -07003650 if (framesReq > bufferEnd - s) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003651 framesReq = bufferEnd - s;
3652 }
3653
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003654 buffer->raw = getBuffer(s, framesReq);
3655 if (buffer->raw == NULL) goto getNextBuffer_exit;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003656
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003657 buffer->frameCount = framesReq;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003658 return NO_ERROR;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003659 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003660
3661getNextBuffer_exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003662 buffer->raw = NULL;
3663 buffer->frameCount = 0;
3664 ALOGV("getNextBuffer() no more data for track %d on thread %p", mName, mThread.unsafe_get());
3665 return NOT_ENOUGH_DATA;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003666}
3667
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003668uint32_t AudioFlinger::PlaybackThread::Track::framesReady() const {
John Grossman4ff14ba2012-02-08 16:37:41 -08003669 return mCblk->framesReady();
3670}
3671
Mathias Agopian65ab4712010-07-14 17:59:35 -07003672bool AudioFlinger::PlaybackThread::Track::isReady() const {
Eric Laurentaf59ce22010-10-05 14:41:42 -07003673 if (mFillingUpStatus != FS_FILLING || isStopped() || isPausing()) return true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003674
John Grossman4ff14ba2012-02-08 16:37:41 -08003675 if (framesReady() >= mCblk->frameCount ||
Mathias Agopian65ab4712010-07-14 17:59:35 -07003676 (mCblk->flags & CBLK_FORCEREADY_MSK)) {
3677 mFillingUpStatus = FS_FILLED;
Eric Laurent38ccae22011-03-28 18:37:07 -07003678 android_atomic_and(~CBLK_FORCEREADY_MSK, &mCblk->flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003679 return true;
3680 }
3681 return false;
3682}
3683
Eric Laurenta011e352012-03-29 15:51:43 -07003684status_t AudioFlinger::PlaybackThread::Track::start(pid_t tid,
3685 AudioSystem::sync_event_t event,
3686 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003687{
3688 status_t status = NO_ERROR;
Glenn Kasten6dbc1352012-02-02 10:56:47 -08003689 ALOGV("start(%d), calling pid %d session %d tid %d",
3690 mName, IPCThreadState::self()->getCallingPid(), mSessionId, tid);
Glenn Kasten73d22752012-03-19 13:38:30 -07003691 // check for use case 2 with missing callback
3692 if (isFastTrack() && (mSharedBuffer == 0) && (tid == 0)) {
Eric Laurent0ca3cf92012-04-18 09:24:29 -07003693 ALOGW("AUDIO_OUTPUT_FLAG_FAST denied");
Glenn Kasten73d22752012-03-19 13:38:30 -07003694 mFlags &= ~IAudioFlinger::TRACK_FAST;
3695 // FIXME the track must be invalidated and moved to another thread or
3696 // attached directly to the normal mixer now
3697 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003698 sp<ThreadBase> thread = mThread.promote();
3699 if (thread != 0) {
3700 Mutex::Autolock _l(thread->mLock);
Glenn Kastenb853e982012-01-26 13:39:18 -08003701 track_state state = mState;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003702 // here the track could be either new, or restarted
3703 // in both cases "unstop" the track
3704 if (mState == PAUSED) {
3705 mState = TrackBase::RESUMING;
Steve Block3856b092011-10-20 11:56:00 +01003706 ALOGV("PAUSED => RESUMING (%d) on thread %p", mName, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003707 } else {
3708 mState = TrackBase::ACTIVE;
Steve Block3856b092011-10-20 11:56:00 +01003709 ALOGV("? => ACTIVE (%d) on thread %p", mName, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003710 }
3711
3712 if (!isOutputTrack() && state != ACTIVE && state != RESUMING) {
3713 thread->mLock.unlock();
Glenn Kasten02bbd202012-02-08 12:35:35 -08003714 status = AudioSystem::startOutput(thread->id(), mStreamType, mSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003715 thread->mLock.lock();
Gloria Wang9ee159b2011-02-24 14:51:45 -08003716
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003717#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08003718 // to track the speaker usage
3719 if (status == NO_ERROR) {
3720 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStart);
3721 }
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003722#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07003723 }
3724 if (status == NO_ERROR) {
3725 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3726 playbackThread->addTrack_l(this);
3727 } else {
3728 mState = state;
3729 }
3730 } else {
3731 status = BAD_VALUE;
3732 }
3733 return status;
3734}
3735
3736void AudioFlinger::PlaybackThread::Track::stop()
3737{
Glenn Kasten23d82a92012-02-03 11:10:00 -08003738 ALOGV("stop(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003739 sp<ThreadBase> thread = mThread.promote();
3740 if (thread != 0) {
3741 Mutex::Autolock _l(thread->mLock);
Glenn Kastenb853e982012-01-26 13:39:18 -08003742 track_state state = mState;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003743 if (mState > STOPPED) {
3744 mState = STOPPED;
3745 // If the track is not active (PAUSED and buffers full), flush buffers
3746 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3747 if (playbackThread->mActiveTracks.indexOf(this) < 0) {
3748 reset();
3749 }
Steve Block3856b092011-10-20 11:56:00 +01003750 ALOGV("(> STOPPED) => STOPPED (%d) on thread %p", mName, playbackThread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003751 }
3752 if (!isOutputTrack() && (state == ACTIVE || state == RESUMING)) {
3753 thread->mLock.unlock();
Glenn Kasten02bbd202012-02-08 12:35:35 -08003754 AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003755 thread->mLock.lock();
Gloria Wang9ee159b2011-02-24 14:51:45 -08003756
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003757#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08003758 // to track the speaker usage
3759 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003760#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07003761 }
3762 }
3763}
3764
3765void AudioFlinger::PlaybackThread::Track::pause()
3766{
Glenn Kasten23d82a92012-02-03 11:10:00 -08003767 ALOGV("pause(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003768 sp<ThreadBase> thread = mThread.promote();
3769 if (thread != 0) {
3770 Mutex::Autolock _l(thread->mLock);
3771 if (mState == ACTIVE || mState == RESUMING) {
3772 mState = PAUSING;
Steve Block3856b092011-10-20 11:56:00 +01003773 ALOGV("ACTIVE/RESUMING => PAUSING (%d) on thread %p", mName, thread.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003774 if (!isOutputTrack()) {
3775 thread->mLock.unlock();
Glenn Kasten02bbd202012-02-08 12:35:35 -08003776 AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003777 thread->mLock.lock();
Gloria Wang9ee159b2011-02-24 14:51:45 -08003778
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003779#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08003780 // to track the speaker usage
3781 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003782#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07003783 }
3784 }
3785 }
3786}
3787
3788void AudioFlinger::PlaybackThread::Track::flush()
3789{
Steve Block3856b092011-10-20 11:56:00 +01003790 ALOGV("flush(%d)", mName);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003791 sp<ThreadBase> thread = mThread.promote();
3792 if (thread != 0) {
3793 Mutex::Autolock _l(thread->mLock);
3794 if (mState != STOPPED && mState != PAUSED && mState != PAUSING) {
3795 return;
3796 }
3797 // No point remaining in PAUSED state after a flush => go to
3798 // STOPPED state
3799 mState = STOPPED;
3800
Eric Laurent38ccae22011-03-28 18:37:07 -07003801 // do not reset the track if it is still in the process of being stopped or paused.
3802 // this will be done by prepareTracks_l() when the track is stopped.
3803 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3804 if (playbackThread->mActiveTracks.indexOf(this) < 0) {
3805 reset();
3806 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003807 }
3808}
3809
3810void AudioFlinger::PlaybackThread::Track::reset()
3811{
3812 // Do not reset twice to avoid discarding data written just after a flush and before
3813 // the audioflinger thread detects the track is stopped.
3814 if (!mResetDone) {
3815 TrackBase::reset();
3816 // Force underrun condition to avoid false underrun callback until first data is
3817 // written to buffer
Eric Laurent38ccae22011-03-28 18:37:07 -07003818 android_atomic_and(~CBLK_FORCEREADY_MSK, &mCblk->flags);
3819 android_atomic_or(CBLK_UNDERRUN_ON, &mCblk->flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003820 mFillingUpStatus = FS_FILLING;
3821 mResetDone = true;
Eric Laurenta011e352012-03-29 15:51:43 -07003822 mPresentationCompleteFrames = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003823 }
3824}
3825
3826void AudioFlinger::PlaybackThread::Track::mute(bool muted)
3827{
3828 mMute = muted;
3829}
3830
Mathias Agopian65ab4712010-07-14 17:59:35 -07003831status_t AudioFlinger::PlaybackThread::Track::attachAuxEffect(int EffectId)
3832{
3833 status_t status = DEAD_OBJECT;
3834 sp<ThreadBase> thread = mThread.promote();
3835 if (thread != 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003836 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3837 status = playbackThread->attachAuxEffect(this, EffectId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003838 }
3839 return status;
3840}
3841
3842void AudioFlinger::PlaybackThread::Track::setAuxBuffer(int EffectId, int32_t *buffer)
3843{
3844 mAuxEffectId = EffectId;
3845 mAuxBuffer = buffer;
3846}
3847
Eric Laurenta011e352012-03-29 15:51:43 -07003848bool AudioFlinger::PlaybackThread::Track::presentationComplete(size_t framesWritten,
3849 size_t audioHalFrames)
3850{
3851 // a track is considered presented when the total number of frames written to audio HAL
3852 // corresponds to the number of frames written when presentationComplete() is called for the
3853 // first time (mPresentationCompleteFrames == 0) plus the buffer filling status at that time.
3854 if (mPresentationCompleteFrames == 0) {
3855 mPresentationCompleteFrames = framesWritten + audioHalFrames;
3856 ALOGV("presentationComplete() reset: mPresentationCompleteFrames %d audioHalFrames %d",
3857 mPresentationCompleteFrames, audioHalFrames);
3858 }
3859 if (framesWritten >= mPresentationCompleteFrames) {
3860 ALOGV("presentationComplete() session %d complete: framesWritten %d",
3861 mSessionId, framesWritten);
3862 triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
3863 mPresentationCompleteFrames = 0;
3864 return true;
3865 }
3866 return false;
3867}
3868
3869void AudioFlinger::PlaybackThread::Track::triggerEvents(AudioSystem::sync_event_t type)
3870{
3871 for (int i = 0; i < (int)mSyncEvents.size(); i++) {
3872 if (mSyncEvents[i]->type() == type) {
3873 mSyncEvents[i]->trigger();
3874 mSyncEvents.removeAt(i);
3875 i--;
3876 }
3877 }
3878}
3879
3880
John Grossman4ff14ba2012-02-08 16:37:41 -08003881// timed audio tracks
3882
3883sp<AudioFlinger::PlaybackThread::TimedTrack>
3884AudioFlinger::PlaybackThread::TimedTrack::create(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08003885 PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -08003886 const sp<Client>& client,
3887 audio_stream_type_t streamType,
3888 uint32_t sampleRate,
3889 audio_format_t format,
3890 uint32_t channelMask,
3891 int frameCount,
3892 const sp<IMemory>& sharedBuffer,
3893 int sessionId) {
3894 if (!client->reserveTimedTrack())
3895 return NULL;
3896
Glenn Kastena0356762012-03-19 10:38:51 -07003897 return new TimedTrack(
John Grossman4ff14ba2012-02-08 16:37:41 -08003898 thread, client, streamType, sampleRate, format, channelMask, frameCount,
3899 sharedBuffer, sessionId);
John Grossman4ff14ba2012-02-08 16:37:41 -08003900}
3901
3902AudioFlinger::PlaybackThread::TimedTrack::TimedTrack(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08003903 PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -08003904 const sp<Client>& client,
3905 audio_stream_type_t streamType,
3906 uint32_t sampleRate,
3907 audio_format_t format,
3908 uint32_t channelMask,
3909 int frameCount,
3910 const sp<IMemory>& sharedBuffer,
3911 int sessionId)
3912 : Track(thread, client, streamType, sampleRate, format, channelMask,
Glenn Kasten73d22752012-03-19 13:38:30 -07003913 frameCount, sharedBuffer, sessionId, IAudioFlinger::TRACK_TIMED),
John Grossman9fbdee12012-03-26 17:51:46 -07003914 mQueueHeadInFlight(false),
3915 mTrimQueueHeadOnRelease(false),
John Grossman1c345192012-03-27 14:00:17 -07003916 mFramesPendingInQueue(0),
John Grossman4ff14ba2012-02-08 16:37:41 -08003917 mTimedSilenceBuffer(NULL),
3918 mTimedSilenceBufferSize(0),
3919 mTimedAudioOutputOnTime(false),
3920 mMediaTimeTransformValid(false)
3921{
3922 LocalClock lc;
3923 mLocalTimeFreq = lc.getLocalFreq();
3924
3925 mLocalTimeToSampleTransform.a_zero = 0;
3926 mLocalTimeToSampleTransform.b_zero = 0;
3927 mLocalTimeToSampleTransform.a_to_b_numer = sampleRate;
3928 mLocalTimeToSampleTransform.a_to_b_denom = mLocalTimeFreq;
3929 LinearTransform::reduce(&mLocalTimeToSampleTransform.a_to_b_numer,
3930 &mLocalTimeToSampleTransform.a_to_b_denom);
John Grossman9fbdee12012-03-26 17:51:46 -07003931
3932 mMediaTimeToSampleTransform.a_zero = 0;
3933 mMediaTimeToSampleTransform.b_zero = 0;
3934 mMediaTimeToSampleTransform.a_to_b_numer = sampleRate;
3935 mMediaTimeToSampleTransform.a_to_b_denom = 1000000;
3936 LinearTransform::reduce(&mMediaTimeToSampleTransform.a_to_b_numer,
3937 &mMediaTimeToSampleTransform.a_to_b_denom);
John Grossman4ff14ba2012-02-08 16:37:41 -08003938}
3939
3940AudioFlinger::PlaybackThread::TimedTrack::~TimedTrack() {
3941 mClient->releaseTimedTrack();
3942 delete [] mTimedSilenceBuffer;
3943}
3944
3945status_t AudioFlinger::PlaybackThread::TimedTrack::allocateTimedBuffer(
3946 size_t size, sp<IMemory>* buffer) {
3947
3948 Mutex::Autolock _l(mTimedBufferQueueLock);
3949
3950 trimTimedBufferQueue_l();
3951
3952 // lazily initialize the shared memory heap for timed buffers
3953 if (mTimedMemoryDealer == NULL) {
3954 const int kTimedBufferHeapSize = 512 << 10;
3955
3956 mTimedMemoryDealer = new MemoryDealer(kTimedBufferHeapSize,
3957 "AudioFlingerTimed");
3958 if (mTimedMemoryDealer == NULL)
3959 return NO_MEMORY;
3960 }
3961
3962 sp<IMemory> newBuffer = mTimedMemoryDealer->allocate(size);
3963 if (newBuffer == NULL) {
3964 newBuffer = mTimedMemoryDealer->allocate(size);
3965 if (newBuffer == NULL)
3966 return NO_MEMORY;
3967 }
3968
3969 *buffer = newBuffer;
3970 return NO_ERROR;
3971}
3972
3973// caller must hold mTimedBufferQueueLock
3974void AudioFlinger::PlaybackThread::TimedTrack::trimTimedBufferQueue_l() {
3975 int64_t mediaTimeNow;
3976 {
3977 Mutex::Autolock mttLock(mMediaTimeTransformLock);
3978 if (!mMediaTimeTransformValid)
3979 return;
3980
3981 int64_t targetTimeNow;
3982 status_t res = (mMediaTimeTransformTarget == TimedAudioTrack::COMMON_TIME)
3983 ? mCCHelper.getCommonTime(&targetTimeNow)
3984 : mCCHelper.getLocalTime(&targetTimeNow);
3985
3986 if (OK != res)
3987 return;
3988
3989 if (!mMediaTimeTransform.doReverseTransform(targetTimeNow,
3990 &mediaTimeNow)) {
3991 return;
3992 }
3993 }
3994
John Grossman1c345192012-03-27 14:00:17 -07003995 size_t trimEnd;
3996 for (trimEnd = 0; trimEnd < mTimedBufferQueue.size(); trimEnd++) {
3997 int64_t frameCount = mTimedBufferQueue[trimEnd].buffer()->size()
John Grossman9fbdee12012-03-26 17:51:46 -07003998 / mCblk->frameSize;
3999 int64_t bufEnd;
4000
4001 if (!mMediaTimeToSampleTransform.doReverseTransform(frameCount,
4002 &bufEnd)) {
4003 ALOGE("Failed to convert frame count of %lld to media time duration"
4004 " (scale factor %d/%u) in %s", frameCount,
4005 mMediaTimeToSampleTransform.a_to_b_numer,
4006 mMediaTimeToSampleTransform.a_to_b_denom,
4007 __PRETTY_FUNCTION__);
John Grossman4ff14ba2012-02-08 16:37:41 -08004008 break;
John Grossman9fbdee12012-03-26 17:51:46 -07004009 }
John Grossman1c345192012-03-27 14:00:17 -07004010 bufEnd += mTimedBufferQueue[trimEnd].pts();
John Grossman9fbdee12012-03-26 17:51:46 -07004011
4012 if (bufEnd > mediaTimeNow)
4013 break;
4014
4015 // Is the buffer we want to use in the middle of a mix operation right
4016 // now? If so, don't actually trim it. Just wait for the releaseBuffer
4017 // from the mixer which should be coming back shortly.
John Grossman1c345192012-03-27 14:00:17 -07004018 if (!trimEnd && mQueueHeadInFlight) {
John Grossman9fbdee12012-03-26 17:51:46 -07004019 mTrimQueueHeadOnRelease = true;
4020 }
John Grossman4ff14ba2012-02-08 16:37:41 -08004021 }
4022
John Grossman9fbdee12012-03-26 17:51:46 -07004023 size_t trimStart = mTrimQueueHeadOnRelease ? 1 : 0;
John Grossman1c345192012-03-27 14:00:17 -07004024 if (trimStart < trimEnd) {
4025 // Update the bookkeeping for framesReady()
4026 for (size_t i = trimStart; i < trimEnd; ++i) {
4027 updateFramesPendingAfterTrim_l(mTimedBufferQueue[i], "trim");
4028 }
4029
4030 // Now actually remove the buffers from the queue.
4031 mTimedBufferQueue.removeItemsAt(trimStart, trimEnd);
John Grossman4ff14ba2012-02-08 16:37:41 -08004032 }
4033}
4034
John Grossman1c345192012-03-27 14:00:17 -07004035void AudioFlinger::PlaybackThread::TimedTrack::trimTimedBufferQueueHead_l(
4036 const char* logTag) {
John Grossmand3030da2012-04-12 11:56:36 -07004037 ALOG_ASSERT(mTimedBufferQueue.size() > 0,
4038 "%s called (reason \"%s\"), but timed buffer queue has no"
4039 " elements to trim.", __FUNCTION__, logTag);
John Grossman1c345192012-03-27 14:00:17 -07004040
4041 updateFramesPendingAfterTrim_l(mTimedBufferQueue[0], logTag);
4042 mTimedBufferQueue.removeAt(0);
4043}
4044
4045void AudioFlinger::PlaybackThread::TimedTrack::updateFramesPendingAfterTrim_l(
4046 const TimedBuffer& buf,
4047 const char* logTag) {
4048 uint32_t bufBytes = buf.buffer()->size();
4049 uint32_t consumedAlready = buf.position();
4050
Eric Laurentb388e532012-04-14 13:32:48 -07004051 ALOG_ASSERT(consumedAlready <= bufBytes,
John Grossmand3030da2012-04-12 11:56:36 -07004052 "Bad bookkeeping while updating frames pending. Timed buffer is"
4053 " only %u bytes long, but claims to have consumed %u"
4054 " bytes. (update reason: \"%s\")",
Eric Laurentb388e532012-04-14 13:32:48 -07004055 bufBytes, consumedAlready, logTag);
John Grossman1c345192012-03-27 14:00:17 -07004056
4057 uint32_t bufFrames = (bufBytes - consumedAlready) / mCblk->frameSize;
John Grossmand3030da2012-04-12 11:56:36 -07004058 ALOG_ASSERT(mFramesPendingInQueue >= bufFrames,
4059 "Bad bookkeeping while updating frames pending. Should have at"
4060 " least %u queued frames, but we think we have only %u. (update"
4061 " reason: \"%s\")",
4062 bufFrames, mFramesPendingInQueue, logTag);
John Grossman1c345192012-03-27 14:00:17 -07004063
4064 mFramesPendingInQueue -= bufFrames;
4065}
4066
John Grossman4ff14ba2012-02-08 16:37:41 -08004067status_t AudioFlinger::PlaybackThread::TimedTrack::queueTimedBuffer(
4068 const sp<IMemory>& buffer, int64_t pts) {
4069
4070 {
4071 Mutex::Autolock mttLock(mMediaTimeTransformLock);
4072 if (!mMediaTimeTransformValid)
4073 return INVALID_OPERATION;
4074 }
4075
4076 Mutex::Autolock _l(mTimedBufferQueueLock);
4077
John Grossman1c345192012-03-27 14:00:17 -07004078 uint32_t bufFrames = buffer->size() / mCblk->frameSize;
4079 mFramesPendingInQueue += bufFrames;
John Grossman4ff14ba2012-02-08 16:37:41 -08004080 mTimedBufferQueue.add(TimedBuffer(buffer, pts));
4081
4082 return NO_ERROR;
4083}
4084
4085status_t AudioFlinger::PlaybackThread::TimedTrack::setMediaTimeTransform(
4086 const LinearTransform& xform, TimedAudioTrack::TargetTimeline target) {
4087
John Grossman1c345192012-03-27 14:00:17 -07004088 ALOGVV("setMediaTimeTransform az=%lld bz=%lld n=%d d=%u tgt=%d",
4089 xform.a_zero, xform.b_zero, xform.a_to_b_numer, xform.a_to_b_denom,
4090 target);
John Grossman4ff14ba2012-02-08 16:37:41 -08004091
4092 if (!(target == TimedAudioTrack::LOCAL_TIME ||
4093 target == TimedAudioTrack::COMMON_TIME)) {
4094 return BAD_VALUE;
4095 }
4096
4097 Mutex::Autolock lock(mMediaTimeTransformLock);
4098 mMediaTimeTransform = xform;
4099 mMediaTimeTransformTarget = target;
4100 mMediaTimeTransformValid = true;
4101
4102 return NO_ERROR;
4103}
4104
4105#define min(a, b) ((a) < (b) ? (a) : (b))
4106
4107// implementation of getNextBuffer for tracks whose buffers have timestamps
4108status_t AudioFlinger::PlaybackThread::TimedTrack::getNextBuffer(
4109 AudioBufferProvider::Buffer* buffer, int64_t pts)
4110{
4111 if (pts == AudioBufferProvider::kInvalidPTS) {
4112 buffer->raw = 0;
4113 buffer->frameCount = 0;
4114 return INVALID_OPERATION;
4115 }
4116
John Grossman4ff14ba2012-02-08 16:37:41 -08004117 Mutex::Autolock _l(mTimedBufferQueueLock);
4118
John Grossman9fbdee12012-03-26 17:51:46 -07004119 ALOG_ASSERT(!mQueueHeadInFlight,
4120 "getNextBuffer called without releaseBuffer!");
4121
John Grossman4ff14ba2012-02-08 16:37:41 -08004122 while (true) {
4123
4124 // if we have no timed buffers, then fail
4125 if (mTimedBufferQueue.isEmpty()) {
4126 buffer->raw = 0;
4127 buffer->frameCount = 0;
4128 return NOT_ENOUGH_DATA;
4129 }
4130
4131 TimedBuffer& head = mTimedBufferQueue.editItemAt(0);
4132
4133 // calculate the PTS of the head of the timed buffer queue expressed in
4134 // local time
4135 int64_t headLocalPTS;
4136 {
4137 Mutex::Autolock mttLock(mMediaTimeTransformLock);
4138
Glenn Kasten5798d4e2012-03-08 12:18:35 -08004139 ALOG_ASSERT(mMediaTimeTransformValid, "media time transform invalid");
John Grossman4ff14ba2012-02-08 16:37:41 -08004140
4141 if (mMediaTimeTransform.a_to_b_denom == 0) {
4142 // the transform represents a pause, so yield silence
John Grossman9fbdee12012-03-26 17:51:46 -07004143 timedYieldSilence_l(buffer->frameCount, buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08004144 return NO_ERROR;
4145 }
4146
4147 int64_t transformedPTS;
4148 if (!mMediaTimeTransform.doForwardTransform(head.pts(),
4149 &transformedPTS)) {
4150 // the transform failed. this shouldn't happen, but if it does
4151 // then just drop this buffer
4152 ALOGW("timedGetNextBuffer transform failed");
4153 buffer->raw = 0;
4154 buffer->frameCount = 0;
John Grossman1c345192012-03-27 14:00:17 -07004155 trimTimedBufferQueueHead_l("getNextBuffer; no transform");
John Grossman4ff14ba2012-02-08 16:37:41 -08004156 return NO_ERROR;
4157 }
4158
4159 if (mMediaTimeTransformTarget == TimedAudioTrack::COMMON_TIME) {
4160 if (OK != mCCHelper.commonTimeToLocalTime(transformedPTS,
4161 &headLocalPTS)) {
4162 buffer->raw = 0;
4163 buffer->frameCount = 0;
4164 return INVALID_OPERATION;
4165 }
4166 } else {
4167 headLocalPTS = transformedPTS;
4168 }
4169 }
4170
4171 // adjust the head buffer's PTS to reflect the portion of the head buffer
4172 // that has already been consumed
4173 int64_t effectivePTS = headLocalPTS +
4174 ((head.position() / mCblk->frameSize) * mLocalTimeFreq / sampleRate());
4175
4176 // Calculate the delta in samples between the head of the input buffer
4177 // queue and the start of the next output buffer that will be written.
4178 // If the transformation fails because of over or underflow, it means
4179 // that the sample's position in the output stream is so far out of
4180 // whack that it should just be dropped.
4181 int64_t sampleDelta;
4182 if (llabs(effectivePTS - pts) >= (static_cast<int64_t>(1) << 31)) {
4183 ALOGV("*** head buffer is too far from PTS: dropped buffer");
John Grossman1c345192012-03-27 14:00:17 -07004184 trimTimedBufferQueueHead_l("getNextBuffer, buf pts too far from"
4185 " mix");
John Grossman4ff14ba2012-02-08 16:37:41 -08004186 continue;
4187 }
4188 if (!mLocalTimeToSampleTransform.doForwardTransform(
4189 (effectivePTS - pts) << 32, &sampleDelta)) {
John Grossmand3030da2012-04-12 11:56:36 -07004190 ALOGV("*** too late during sample rate transform: dropped buffer");
John Grossman1c345192012-03-27 14:00:17 -07004191 trimTimedBufferQueueHead_l("getNextBuffer, bad local to sample");
John Grossman4ff14ba2012-02-08 16:37:41 -08004192 continue;
4193 }
4194
John Grossman1c345192012-03-27 14:00:17 -07004195 ALOGVV("*** getNextBuffer head.pts=%lld head.pos=%d pts=%lld"
4196 " sampleDelta=[%d.%08x]",
4197 head.pts(), head.position(), pts,
4198 static_cast<int32_t>((sampleDelta >= 0 ? 0 : 1)
4199 + (sampleDelta >> 32)),
4200 static_cast<uint32_t>(sampleDelta & 0xFFFFFFFF));
John Grossman4ff14ba2012-02-08 16:37:41 -08004201
4202 // if the delta between the ideal placement for the next input sample and
4203 // the current output position is within this threshold, then we will
4204 // concatenate the next input samples to the previous output
4205 const int64_t kSampleContinuityThreshold =
4206 (static_cast<int64_t>(sampleRate()) << 32) / 10;
4207
4208 // if this is the first buffer of audio that we're emitting from this track
4209 // then it should be almost exactly on time.
4210 const int64_t kSampleStartupThreshold = 1LL << 32;
4211
4212 if ((mTimedAudioOutputOnTime && llabs(sampleDelta) <= kSampleContinuityThreshold) ||
4213 (!mTimedAudioOutputOnTime && llabs(sampleDelta) <= kSampleStartupThreshold)) {
4214 // the next input is close enough to being on time, so concatenate it
4215 // with the last output
John Grossman9fbdee12012-03-26 17:51:46 -07004216 timedYieldSamples_l(buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08004217
John Grossman1c345192012-03-27 14:00:17 -07004218 ALOGVV("*** on time: head.pos=%d frameCount=%u",
4219 head.position(), buffer->frameCount);
John Grossman4ff14ba2012-02-08 16:37:41 -08004220 return NO_ERROR;
4221 } else if (sampleDelta > 0) {
4222 // the gap between the current output position and the proper start of
4223 // the next input sample is too big, so fill it with silence
4224 uint32_t framesUntilNextInput = (sampleDelta + 0x80000000) >> 32;
4225
John Grossman9fbdee12012-03-26 17:51:46 -07004226 timedYieldSilence_l(framesUntilNextInput, buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08004227 ALOGV("*** silence: frameCount=%u", buffer->frameCount);
4228 return NO_ERROR;
4229 } else {
4230 // the next input sample is late
4231 uint32_t lateFrames = static_cast<uint32_t>(-((sampleDelta + 0x80000000) >> 32));
4232 size_t onTimeSamplePosition =
4233 head.position() + lateFrames * mCblk->frameSize;
4234
4235 if (onTimeSamplePosition > head.buffer()->size()) {
4236 // all the remaining samples in the head are too late, so
4237 // drop it and move on
4238 ALOGV("*** too late: dropped buffer");
John Grossman1c345192012-03-27 14:00:17 -07004239 trimTimedBufferQueueHead_l("getNextBuffer, dropped late buffer");
John Grossman4ff14ba2012-02-08 16:37:41 -08004240 continue;
4241 } else {
4242 // skip over the late samples
4243 head.setPosition(onTimeSamplePosition);
4244
4245 // yield the available samples
John Grossman9fbdee12012-03-26 17:51:46 -07004246 timedYieldSamples_l(buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08004247
4248 ALOGV("*** late: head.pos=%d frameCount=%u", head.position(), buffer->frameCount);
4249 return NO_ERROR;
4250 }
4251 }
4252 }
4253}
4254
4255// Yield samples from the timed buffer queue head up to the given output
4256// buffer's capacity.
4257//
4258// Caller must hold mTimedBufferQueueLock
John Grossman9fbdee12012-03-26 17:51:46 -07004259void AudioFlinger::PlaybackThread::TimedTrack::timedYieldSamples_l(
John Grossman4ff14ba2012-02-08 16:37:41 -08004260 AudioBufferProvider::Buffer* buffer) {
4261
4262 const TimedBuffer& head = mTimedBufferQueue[0];
4263
4264 buffer->raw = (static_cast<uint8_t*>(head.buffer()->pointer()) +
4265 head.position());
4266
4267 uint32_t framesLeftInHead = ((head.buffer()->size() - head.position()) /
4268 mCblk->frameSize);
4269 size_t framesRequested = buffer->frameCount;
4270 buffer->frameCount = min(framesLeftInHead, framesRequested);
4271
John Grossman9fbdee12012-03-26 17:51:46 -07004272 mQueueHeadInFlight = true;
John Grossman4ff14ba2012-02-08 16:37:41 -08004273 mTimedAudioOutputOnTime = true;
4274}
4275
4276// Yield samples of silence up to the given output buffer's capacity
4277//
4278// Caller must hold mTimedBufferQueueLock
John Grossman9fbdee12012-03-26 17:51:46 -07004279void AudioFlinger::PlaybackThread::TimedTrack::timedYieldSilence_l(
John Grossman4ff14ba2012-02-08 16:37:41 -08004280 uint32_t numFrames, AudioBufferProvider::Buffer* buffer) {
4281
4282 // lazily allocate a buffer filled with silence
4283 if (mTimedSilenceBufferSize < numFrames * mCblk->frameSize) {
4284 delete [] mTimedSilenceBuffer;
4285 mTimedSilenceBufferSize = numFrames * mCblk->frameSize;
4286 mTimedSilenceBuffer = new uint8_t[mTimedSilenceBufferSize];
4287 memset(mTimedSilenceBuffer, 0, mTimedSilenceBufferSize);
4288 }
4289
4290 buffer->raw = mTimedSilenceBuffer;
4291 size_t framesRequested = buffer->frameCount;
4292 buffer->frameCount = min(numFrames, framesRequested);
4293
4294 mTimedAudioOutputOnTime = false;
4295}
4296
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08004297// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08004298void AudioFlinger::PlaybackThread::TimedTrack::releaseBuffer(
4299 AudioBufferProvider::Buffer* buffer) {
4300
4301 Mutex::Autolock _l(mTimedBufferQueueLock);
4302
John Grossmanfe5b3ba2012-02-12 17:51:21 -08004303 // If the buffer which was just released is part of the buffer at the head
4304 // of the queue, be sure to update the amt of the buffer which has been
4305 // consumed. If the buffer being returned is not part of the head of the
4306 // queue, its either because the buffer is part of the silence buffer, or
4307 // because the head of the timed queue was trimmed after the mixer called
4308 // getNextBuffer but before the mixer called releaseBuffer.
John Grossman9fbdee12012-03-26 17:51:46 -07004309 if (buffer->raw == mTimedSilenceBuffer) {
4310 ALOG_ASSERT(!mQueueHeadInFlight,
4311 "Queue head in flight during release of silence buffer!");
4312 goto done;
4313 }
4314
4315 ALOG_ASSERT(mQueueHeadInFlight,
4316 "TimedTrack::releaseBuffer of non-silence buffer, but no queue"
4317 " head in flight.");
4318
4319 if (mTimedBufferQueue.size()) {
John Grossman4ff14ba2012-02-08 16:37:41 -08004320 TimedBuffer& head = mTimedBufferQueue.editItemAt(0);
John Grossmanfe5b3ba2012-02-12 17:51:21 -08004321
4322 void* start = head.buffer()->pointer();
John Grossman9fbdee12012-03-26 17:51:46 -07004323 void* end = reinterpret_cast<void*>(
4324 reinterpret_cast<uint8_t*>(head.buffer()->pointer())
4325 + head.buffer()->size());
John Grossmanfe5b3ba2012-02-12 17:51:21 -08004326
John Grossman9fbdee12012-03-26 17:51:46 -07004327 ALOG_ASSERT((buffer->raw >= start) && (buffer->raw < end),
4328 "released buffer not within the head of the timed buffer"
4329 " queue; qHead = [%p, %p], released buffer = %p",
4330 start, end, buffer->raw);
4331
4332 head.setPosition(head.position() +
4333 (buffer->frameCount * mCblk->frameSize));
4334 mQueueHeadInFlight = false;
4335
John Grossman1c345192012-03-27 14:00:17 -07004336 ALOG_ASSERT(mFramesPendingInQueue >= buffer->frameCount,
4337 "Bad bookkeeping during releaseBuffer! Should have at"
4338 " least %u queued frames, but we think we have only %u",
4339 buffer->frameCount, mFramesPendingInQueue);
4340
4341 mFramesPendingInQueue -= buffer->frameCount;
4342
John Grossman9fbdee12012-03-26 17:51:46 -07004343 if ((static_cast<size_t>(head.position()) >= head.buffer()->size())
4344 || mTrimQueueHeadOnRelease) {
John Grossman1c345192012-03-27 14:00:17 -07004345 trimTimedBufferQueueHead_l("releaseBuffer");
John Grossman9fbdee12012-03-26 17:51:46 -07004346 mTrimQueueHeadOnRelease = false;
John Grossman4ff14ba2012-02-08 16:37:41 -08004347 }
John Grossman9fbdee12012-03-26 17:51:46 -07004348 } else {
4349 LOG_FATAL("TimedTrack::releaseBuffer of non-silence buffer with no"
4350 " buffers in the timed buffer queue");
John Grossman4ff14ba2012-02-08 16:37:41 -08004351 }
4352
John Grossman9fbdee12012-03-26 17:51:46 -07004353done:
John Grossman4ff14ba2012-02-08 16:37:41 -08004354 buffer->raw = 0;
4355 buffer->frameCount = 0;
4356}
4357
4358uint32_t AudioFlinger::PlaybackThread::TimedTrack::framesReady() const {
4359 Mutex::Autolock _l(mTimedBufferQueueLock);
John Grossman1c345192012-03-27 14:00:17 -07004360 return mFramesPendingInQueue;
John Grossman4ff14ba2012-02-08 16:37:41 -08004361}
4362
4363AudioFlinger::PlaybackThread::TimedTrack::TimedBuffer::TimedBuffer()
4364 : mPTS(0), mPosition(0) {}
4365
4366AudioFlinger::PlaybackThread::TimedTrack::TimedBuffer::TimedBuffer(
4367 const sp<IMemory>& buffer, int64_t pts)
4368 : mBuffer(buffer), mPTS(pts), mPosition(0) {}
4369
Mathias Agopian65ab4712010-07-14 17:59:35 -07004370// ----------------------------------------------------------------------------
4371
4372// RecordTrack constructor must be called with AudioFlinger::mLock held
4373AudioFlinger::RecordThread::RecordTrack::RecordTrack(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004374 RecordThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004375 const sp<Client>& client,
4376 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08004377 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004378 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004379 int frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004380 int sessionId)
4381 : TrackBase(thread, client, sampleRate, format,
Glenn Kasten5cf034d2012-02-21 10:35:56 -08004382 channelMask, frameCount, 0 /*sharedBuffer*/, sessionId),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004383 mOverflow(false)
4384{
4385 if (mCblk != NULL) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004386 ALOGV("RecordTrack constructor, size %d", (int)mBufferEnd - (int)mBuffer);
4387 if (format == AUDIO_FORMAT_PCM_16_BIT) {
4388 mCblk->frameSize = mChannelCount * sizeof(int16_t);
4389 } else if (format == AUDIO_FORMAT_PCM_8_BIT) {
4390 mCblk->frameSize = mChannelCount * sizeof(int8_t);
4391 } else {
4392 mCblk->frameSize = sizeof(int8_t);
4393 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004394 }
4395}
4396
4397AudioFlinger::RecordThread::RecordTrack::~RecordTrack()
4398{
4399 sp<ThreadBase> thread = mThread.promote();
4400 if (thread != 0) {
4401 AudioSystem::releaseInput(thread->id());
4402 }
4403}
4404
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08004405// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08004406status_t AudioFlinger::RecordThread::RecordTrack::getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004407{
4408 audio_track_cblk_t* cblk = this->cblk();
4409 uint32_t framesAvail;
4410 uint32_t framesReq = buffer->frameCount;
4411
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004412 // Check if last stepServer failed, try to step now
Glenn Kasten5cf034d2012-02-21 10:35:56 -08004413 if (mStepServerFailed) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004414 if (!step()) goto getNextBuffer_exit;
Steve Block3856b092011-10-20 11:56:00 +01004415 ALOGV("stepServer recovered");
Glenn Kasten5cf034d2012-02-21 10:35:56 -08004416 mStepServerFailed = false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004417 }
4418
4419 framesAvail = cblk->framesAvailable_l();
4420
Glenn Kastenf6b16782011-12-15 09:51:17 -08004421 if (CC_LIKELY(framesAvail)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004422 uint32_t s = cblk->server;
4423 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
4424
4425 if (framesReq > framesAvail) {
4426 framesReq = framesAvail;
4427 }
Marco Nelissena1472d92012-03-30 14:36:54 -07004428 if (framesReq > bufferEnd - s) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004429 framesReq = bufferEnd - s;
4430 }
4431
4432 buffer->raw = getBuffer(s, framesReq);
Glenn Kastene0feee32011-12-13 11:53:26 -08004433 if (buffer->raw == NULL) goto getNextBuffer_exit;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004434
4435 buffer->frameCount = framesReq;
4436 return NO_ERROR;
4437 }
4438
4439getNextBuffer_exit:
Glenn Kastene0feee32011-12-13 11:53:26 -08004440 buffer->raw = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004441 buffer->frameCount = 0;
4442 return NOT_ENOUGH_DATA;
4443}
4444
Eric Laurenta011e352012-03-29 15:51:43 -07004445status_t AudioFlinger::RecordThread::RecordTrack::start(pid_t tid,
4446 AudioSystem::sync_event_t event,
4447 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004448{
4449 sp<ThreadBase> thread = mThread.promote();
4450 if (thread != 0) {
4451 RecordThread *recordThread = (RecordThread *)thread.get();
Eric Laurenta011e352012-03-29 15:51:43 -07004452 return recordThread->start(this, tid, event, triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004453 } else {
4454 return BAD_VALUE;
4455 }
4456}
4457
4458void AudioFlinger::RecordThread::RecordTrack::stop()
4459{
4460 sp<ThreadBase> thread = mThread.promote();
4461 if (thread != 0) {
4462 RecordThread *recordThread = (RecordThread *)thread.get();
4463 recordThread->stop(this);
Eric Laurent38ccae22011-03-28 18:37:07 -07004464 TrackBase::reset();
Glenn Kasten17a736c2012-02-14 08:52:15 -08004465 // Force overrun condition to avoid false overrun callback until first data is
Eric Laurent38ccae22011-03-28 18:37:07 -07004466 // read from buffer
4467 android_atomic_or(CBLK_UNDERRUN_ON, &mCblk->flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004468 }
4469}
4470
4471void AudioFlinger::RecordThread::RecordTrack::dump(char* buffer, size_t size)
4472{
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004473 snprintf(buffer, size, " %05d %03u 0x%08x %05d %04u %01d %05u %08x %08x\n",
Glenn Kasten44deb052012-02-05 18:09:08 -08004474 (mClient == 0) ? getpid_cached : mClient->pid(),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004475 mFormat,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004476 mChannelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004477 mSessionId,
4478 mFrameCount,
4479 mState,
4480 mCblk->sampleRate,
4481 mCblk->server,
4482 mCblk->user);
4483}
4484
4485
4486// ----------------------------------------------------------------------------
4487
4488AudioFlinger::PlaybackThread::OutputTrack::OutputTrack(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004489 PlaybackThread *playbackThread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004490 DuplicatingThread *sourceThread,
4491 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08004492 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004493 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004494 int frameCount)
Glenn Kasten73d22752012-03-19 13:38:30 -07004495 : Track(playbackThread, NULL, AUDIO_STREAM_CNT, sampleRate, format, channelMask, frameCount,
4496 NULL, 0, IAudioFlinger::TRACK_DEFAULT),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004497 mActive(false), mSourceThread(sourceThread)
4498{
4499
Mathias Agopian65ab4712010-07-14 17:59:35 -07004500 if (mCblk != NULL) {
4501 mCblk->flags |= CBLK_DIRECTION_OUT;
4502 mCblk->buffers = (char*)mCblk + sizeof(audio_track_cblk_t);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004503 mOutBuffer.frameCount = 0;
4504 playbackThread->mTracks.add(this);
Steve Block3856b092011-10-20 11:56:00 +01004505 ALOGV("OutputTrack constructor mCblk %p, mBuffer %p, mCblk->buffers %p, " \
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004506 "mCblk->frameCount %d, mCblk->sampleRate %d, mChannelMask 0x%08x mBufferEnd %p",
4507 mCblk, mBuffer, mCblk->buffers,
4508 mCblk->frameCount, mCblk->sampleRate, mChannelMask, mBufferEnd);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004509 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00004510 ALOGW("Error creating output track on thread %p", playbackThread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004511 }
4512}
4513
4514AudioFlinger::PlaybackThread::OutputTrack::~OutputTrack()
4515{
4516 clearBufferQueue();
4517}
4518
Eric Laurenta011e352012-03-29 15:51:43 -07004519status_t AudioFlinger::PlaybackThread::OutputTrack::start(pid_t tid,
4520 AudioSystem::sync_event_t event,
4521 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004522{
Eric Laurenta011e352012-03-29 15:51:43 -07004523 status_t status = Track::start(tid, event, triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004524 if (status != NO_ERROR) {
4525 return status;
4526 }
4527
4528 mActive = true;
4529 mRetryCount = 127;
4530 return status;
4531}
4532
4533void AudioFlinger::PlaybackThread::OutputTrack::stop()
4534{
4535 Track::stop();
4536 clearBufferQueue();
4537 mOutBuffer.frameCount = 0;
4538 mActive = false;
4539}
4540
4541bool AudioFlinger::PlaybackThread::OutputTrack::write(int16_t* data, uint32_t frames)
4542{
4543 Buffer *pInBuffer;
4544 Buffer inBuffer;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004545 uint32_t channelCount = mChannelCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004546 bool outputBufferFull = false;
4547 inBuffer.frameCount = frames;
4548 inBuffer.i16 = data;
4549
4550 uint32_t waitTimeLeftMs = mSourceThread->waitTimeMs();
4551
4552 if (!mActive && frames != 0) {
Glenn Kasten6dbc1352012-02-02 10:56:47 -08004553 start(0);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004554 sp<ThreadBase> thread = mThread.promote();
4555 if (thread != 0) {
4556 MixerThread *mixerThread = (MixerThread *)thread.get();
4557 if (mCblk->frameCount > frames){
4558 if (mBufferQueue.size() < kMaxOverFlowBuffers) {
4559 uint32_t startFrames = (mCblk->frameCount - frames);
4560 pInBuffer = new Buffer;
4561 pInBuffer->mBuffer = new int16_t[startFrames * channelCount];
4562 pInBuffer->frameCount = startFrames;
4563 pInBuffer->i16 = pInBuffer->mBuffer;
4564 memset(pInBuffer->raw, 0, startFrames * channelCount * sizeof(int16_t));
4565 mBufferQueue.add(pInBuffer);
4566 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00004567 ALOGW ("OutputTrack::write() %p no more buffers in queue", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004568 }
4569 }
4570 }
4571 }
4572
4573 while (waitTimeLeftMs) {
4574 // First write pending buffers, then new data
4575 if (mBufferQueue.size()) {
4576 pInBuffer = mBufferQueue.itemAt(0);
4577 } else {
4578 pInBuffer = &inBuffer;
4579 }
4580
4581 if (pInBuffer->frameCount == 0) {
4582 break;
4583 }
4584
4585 if (mOutBuffer.frameCount == 0) {
4586 mOutBuffer.frameCount = pInBuffer->frameCount;
4587 nsecs_t startTime = systemTime();
Glenn Kasten335787f2012-01-20 17:00:00 -08004588 if (obtainBuffer(&mOutBuffer, waitTimeLeftMs) == (status_t)NO_MORE_BUFFERS) {
Steve Block3856b092011-10-20 11:56:00 +01004589 ALOGV ("OutputTrack::write() %p thread %p no more output buffers", this, mThread.unsafe_get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004590 outputBufferFull = true;
4591 break;
4592 }
4593 uint32_t waitTimeMs = (uint32_t)ns2ms(systemTime() - startTime);
4594 if (waitTimeLeftMs >= waitTimeMs) {
4595 waitTimeLeftMs -= waitTimeMs;
4596 } else {
4597 waitTimeLeftMs = 0;
4598 }
4599 }
4600
4601 uint32_t outFrames = pInBuffer->frameCount > mOutBuffer.frameCount ? mOutBuffer.frameCount : pInBuffer->frameCount;
4602 memcpy(mOutBuffer.raw, pInBuffer->raw, outFrames * channelCount * sizeof(int16_t));
4603 mCblk->stepUser(outFrames);
4604 pInBuffer->frameCount -= outFrames;
4605 pInBuffer->i16 += outFrames * channelCount;
4606 mOutBuffer.frameCount -= outFrames;
4607 mOutBuffer.i16 += outFrames * channelCount;
4608
4609 if (pInBuffer->frameCount == 0) {
4610 if (mBufferQueue.size()) {
4611 mBufferQueue.removeAt(0);
4612 delete [] pInBuffer->mBuffer;
4613 delete pInBuffer;
Steve Block3856b092011-10-20 11:56:00 +01004614 ALOGV("OutputTrack::write() %p thread %p released overflow buffer %d", this, mThread.unsafe_get(), mBufferQueue.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004615 } else {
4616 break;
4617 }
4618 }
4619 }
4620
4621 // If we could not write all frames, allocate a buffer and queue it for next time.
4622 if (inBuffer.frameCount) {
4623 sp<ThreadBase> thread = mThread.promote();
4624 if (thread != 0 && !thread->standby()) {
4625 if (mBufferQueue.size() < kMaxOverFlowBuffers) {
4626 pInBuffer = new Buffer;
4627 pInBuffer->mBuffer = new int16_t[inBuffer.frameCount * channelCount];
4628 pInBuffer->frameCount = inBuffer.frameCount;
4629 pInBuffer->i16 = pInBuffer->mBuffer;
4630 memcpy(pInBuffer->raw, inBuffer.raw, inBuffer.frameCount * channelCount * sizeof(int16_t));
4631 mBufferQueue.add(pInBuffer);
Steve Block3856b092011-10-20 11:56:00 +01004632 ALOGV("OutputTrack::write() %p thread %p adding overflow buffer %d", this, mThread.unsafe_get(), mBufferQueue.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004633 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00004634 ALOGW("OutputTrack::write() %p thread %p no more overflow buffers", mThread.unsafe_get(), this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004635 }
4636 }
4637 }
4638
4639 // Calling write() with a 0 length buffer, means that no more data will be written:
4640 // If no more buffers are pending, fill output track buffer to make sure it is started
4641 // by output mixer.
4642 if (frames == 0 && mBufferQueue.size() == 0) {
4643 if (mCblk->user < mCblk->frameCount) {
4644 frames = mCblk->frameCount - mCblk->user;
4645 pInBuffer = new Buffer;
4646 pInBuffer->mBuffer = new int16_t[frames * channelCount];
4647 pInBuffer->frameCount = frames;
4648 pInBuffer->i16 = pInBuffer->mBuffer;
4649 memset(pInBuffer->raw, 0, frames * channelCount * sizeof(int16_t));
4650 mBufferQueue.add(pInBuffer);
4651 } else if (mActive) {
4652 stop();
4653 }
4654 }
4655
4656 return outputBufferFull;
4657}
4658
4659status_t AudioFlinger::PlaybackThread::OutputTrack::obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs)
4660{
4661 int active;
4662 status_t result;
4663 audio_track_cblk_t* cblk = mCblk;
4664 uint32_t framesReq = buffer->frameCount;
4665
Steve Block3856b092011-10-20 11:56:00 +01004666// ALOGV("OutputTrack::obtainBuffer user %d, server %d", cblk->user, cblk->server);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004667 buffer->frameCount = 0;
4668
4669 uint32_t framesAvail = cblk->framesAvailable();
4670
4671
4672 if (framesAvail == 0) {
4673 Mutex::Autolock _l(cblk->lock);
4674 goto start_loop_here;
4675 while (framesAvail == 0) {
4676 active = mActive;
Glenn Kastenf6b16782011-12-15 09:51:17 -08004677 if (CC_UNLIKELY(!active)) {
Steve Block3856b092011-10-20 11:56:00 +01004678 ALOGV("Not active and NO_MORE_BUFFERS");
Glenn Kasten335787f2012-01-20 17:00:00 -08004679 return NO_MORE_BUFFERS;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004680 }
4681 result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs));
4682 if (result != NO_ERROR) {
Glenn Kasten335787f2012-01-20 17:00:00 -08004683 return NO_MORE_BUFFERS;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004684 }
4685 // read the server count again
4686 start_loop_here:
4687 framesAvail = cblk->framesAvailable_l();
4688 }
4689 }
4690
4691// if (framesAvail < framesReq) {
Glenn Kasten335787f2012-01-20 17:00:00 -08004692// return NO_MORE_BUFFERS;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004693// }
4694
4695 if (framesReq > framesAvail) {
4696 framesReq = framesAvail;
4697 }
4698
4699 uint32_t u = cblk->user;
4700 uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
4701
Marco Nelissena1472d92012-03-30 14:36:54 -07004702 if (framesReq > bufferEnd - u) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004703 framesReq = bufferEnd - u;
4704 }
4705
4706 buffer->frameCount = framesReq;
4707 buffer->raw = (void *)cblk->buffer(u);
4708 return NO_ERROR;
4709}
4710
4711
4712void AudioFlinger::PlaybackThread::OutputTrack::clearBufferQueue()
4713{
4714 size_t size = mBufferQueue.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07004715
4716 for (size_t i = 0; i < size; i++) {
Glenn Kastena1117922012-01-26 10:53:32 -08004717 Buffer *pBuffer = mBufferQueue.itemAt(i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004718 delete [] pBuffer->mBuffer;
4719 delete pBuffer;
4720 }
4721 mBufferQueue.clear();
4722}
4723
4724// ----------------------------------------------------------------------------
4725
4726AudioFlinger::Client::Client(const sp<AudioFlinger>& audioFlinger, pid_t pid)
4727 : RefBase(),
4728 mAudioFlinger(audioFlinger),
Glenn Kasten99e53b82012-01-19 08:59:58 -08004729 // FIXME should be a "k" constant not hard-coded, in .h or ro. property, see 4 lines below
Mathias Agopian65ab4712010-07-14 17:59:35 -07004730 mMemoryDealer(new MemoryDealer(1024*1024, "AudioFlinger::Client")),
John Grossman4ff14ba2012-02-08 16:37:41 -08004731 mPid(pid),
4732 mTimedTrackCount(0)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004733{
4734 // 1 MB of address space is good for 32 tracks, 8 buffers each, 4 KB/buffer
4735}
4736
4737// Client destructor must be called with AudioFlinger::mLock held
4738AudioFlinger::Client::~Client()
4739{
4740 mAudioFlinger->removeClient_l(mPid);
4741}
4742
Glenn Kasten435dbe62012-01-30 10:15:48 -08004743sp<MemoryDealer> AudioFlinger::Client::heap() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07004744{
4745 return mMemoryDealer;
4746}
4747
John Grossman4ff14ba2012-02-08 16:37:41 -08004748// Reserve one of the limited slots for a timed audio track associated
4749// with this client
4750bool AudioFlinger::Client::reserveTimedTrack()
4751{
4752 const int kMaxTimedTracksPerClient = 4;
4753
4754 Mutex::Autolock _l(mTimedTrackLock);
4755
4756 if (mTimedTrackCount >= kMaxTimedTracksPerClient) {
4757 ALOGW("can not create timed track - pid %d has exceeded the limit",
4758 mPid);
4759 return false;
4760 }
4761
4762 mTimedTrackCount++;
4763 return true;
4764}
4765
4766// Release a slot for a timed audio track
4767void AudioFlinger::Client::releaseTimedTrack()
4768{
4769 Mutex::Autolock _l(mTimedTrackLock);
4770 mTimedTrackCount--;
4771}
4772
Mathias Agopian65ab4712010-07-14 17:59:35 -07004773// ----------------------------------------------------------------------------
4774
4775AudioFlinger::NotificationClient::NotificationClient(const sp<AudioFlinger>& audioFlinger,
4776 const sp<IAudioFlingerClient>& client,
4777 pid_t pid)
Glenn Kasten84afa3b2012-01-25 15:28:08 -08004778 : mAudioFlinger(audioFlinger), mPid(pid), mAudioFlingerClient(client)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004779{
4780}
4781
4782AudioFlinger::NotificationClient::~NotificationClient()
4783{
Mathias Agopian65ab4712010-07-14 17:59:35 -07004784}
4785
4786void AudioFlinger::NotificationClient::binderDied(const wp<IBinder>& who)
4787{
4788 sp<NotificationClient> keep(this);
Glenn Kastena1117922012-01-26 10:53:32 -08004789 mAudioFlinger->removeNotificationClient(mPid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004790}
4791
4792// ----------------------------------------------------------------------------
4793
4794AudioFlinger::TrackHandle::TrackHandle(const sp<AudioFlinger::PlaybackThread::Track>& track)
4795 : BnAudioTrack(),
4796 mTrack(track)
4797{
4798}
4799
4800AudioFlinger::TrackHandle::~TrackHandle() {
4801 // just stop the track on deletion, associated resources
4802 // will be freed from the main thread once all pending buffers have
4803 // been played. Unless it's not in the active track list, in which
4804 // case we free everything now...
4805 mTrack->destroy();
4806}
4807
Glenn Kasten90716c52012-01-26 13:40:12 -08004808sp<IMemory> AudioFlinger::TrackHandle::getCblk() const {
4809 return mTrack->getCblk();
4810}
4811
Glenn Kasten6dbc1352012-02-02 10:56:47 -08004812status_t AudioFlinger::TrackHandle::start(pid_t tid) {
4813 return mTrack->start(tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004814}
4815
4816void AudioFlinger::TrackHandle::stop() {
4817 mTrack->stop();
4818}
4819
4820void AudioFlinger::TrackHandle::flush() {
4821 mTrack->flush();
4822}
4823
4824void AudioFlinger::TrackHandle::mute(bool e) {
4825 mTrack->mute(e);
4826}
4827
4828void AudioFlinger::TrackHandle::pause() {
4829 mTrack->pause();
4830}
4831
Mathias Agopian65ab4712010-07-14 17:59:35 -07004832status_t AudioFlinger::TrackHandle::attachAuxEffect(int EffectId)
4833{
4834 return mTrack->attachAuxEffect(EffectId);
4835}
4836
John Grossman4ff14ba2012-02-08 16:37:41 -08004837status_t AudioFlinger::TrackHandle::allocateTimedBuffer(size_t size,
4838 sp<IMemory>* buffer) {
4839 if (!mTrack->isTimedTrack())
4840 return INVALID_OPERATION;
4841
4842 PlaybackThread::TimedTrack* tt =
4843 reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
4844 return tt->allocateTimedBuffer(size, buffer);
4845}
4846
4847status_t AudioFlinger::TrackHandle::queueTimedBuffer(const sp<IMemory>& buffer,
4848 int64_t pts) {
4849 if (!mTrack->isTimedTrack())
4850 return INVALID_OPERATION;
4851
4852 PlaybackThread::TimedTrack* tt =
4853 reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
4854 return tt->queueTimedBuffer(buffer, pts);
4855}
4856
4857status_t AudioFlinger::TrackHandle::setMediaTimeTransform(
4858 const LinearTransform& xform, int target) {
4859
4860 if (!mTrack->isTimedTrack())
4861 return INVALID_OPERATION;
4862
4863 PlaybackThread::TimedTrack* tt =
4864 reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
4865 return tt->setMediaTimeTransform(
4866 xform, static_cast<TimedAudioTrack::TargetTimeline>(target));
4867}
4868
Mathias Agopian65ab4712010-07-14 17:59:35 -07004869status_t AudioFlinger::TrackHandle::onTransact(
4870 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
4871{
4872 return BnAudioTrack::onTransact(code, data, reply, flags);
4873}
4874
4875// ----------------------------------------------------------------------------
4876
4877sp<IAudioRecord> AudioFlinger::openRecord(
4878 pid_t pid,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08004879 audio_io_handle_t input,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004880 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08004881 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004882 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004883 int frameCount,
Glenn Kastena075db42012-03-06 11:22:44 -08004884 IAudioFlinger::track_flags_t flags,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004885 int *sessionId,
4886 status_t *status)
4887{
4888 sp<RecordThread::RecordTrack> recordTrack;
4889 sp<RecordHandle> recordHandle;
4890 sp<Client> client;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004891 status_t lStatus;
4892 RecordThread *thread;
4893 size_t inFrameCount;
4894 int lSessionId;
4895
4896 // check calling permissions
4897 if (!recordingAllowed()) {
4898 lStatus = PERMISSION_DENIED;
4899 goto Exit;
4900 }
4901
4902 // add client to list
4903 { // scope for mLock
4904 Mutex::Autolock _l(mLock);
4905 thread = checkRecordThread_l(input);
4906 if (thread == NULL) {
4907 lStatus = BAD_VALUE;
4908 goto Exit;
4909 }
4910
Glenn Kasten98ec94c2012-01-25 14:28:29 -08004911 client = registerPid_l(pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004912
4913 // If no audio session id is provided, create one here
Dima Zavinfce7a472011-04-19 22:30:36 -07004914 if (sessionId != NULL && *sessionId != AUDIO_SESSION_OUTPUT_MIX) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004915 lSessionId = *sessionId;
4916 } else {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07004917 lSessionId = nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07004918 if (sessionId != NULL) {
4919 *sessionId = lSessionId;
4920 }
4921 }
4922 // create new record track. The record track uses one track in mHardwareMixerThread by convention.
Eric Laurent7c7f10b2011-06-17 21:29:58 -07004923 recordTrack = thread->createRecordTrack_l(client,
4924 sampleRate,
4925 format,
4926 channelMask,
4927 frameCount,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07004928 lSessionId,
4929 &lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004930 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07004931 if (lStatus != NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004932 // remove local strong reference to Client before deleting the RecordTrack so that the Client
4933 // destructor is called by the TrackBase destructor with mLock held
4934 client.clear();
4935 recordTrack.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07004936 goto Exit;
4937 }
4938
4939 // return to handle to client
4940 recordHandle = new RecordHandle(recordTrack);
4941 lStatus = NO_ERROR;
4942
4943Exit:
4944 if (status) {
4945 *status = lStatus;
4946 }
4947 return recordHandle;
4948}
4949
4950// ----------------------------------------------------------------------------
4951
4952AudioFlinger::RecordHandle::RecordHandle(const sp<AudioFlinger::RecordThread::RecordTrack>& recordTrack)
4953 : BnAudioRecord(),
4954 mRecordTrack(recordTrack)
4955{
4956}
4957
4958AudioFlinger::RecordHandle::~RecordHandle() {
4959 stop();
4960}
4961
Glenn Kasten90716c52012-01-26 13:40:12 -08004962sp<IMemory> AudioFlinger::RecordHandle::getCblk() const {
4963 return mRecordTrack->getCblk();
4964}
4965
Eric Laurenta011e352012-03-29 15:51:43 -07004966status_t AudioFlinger::RecordHandle::start(pid_t tid, int event, int triggerSession) {
Steve Block3856b092011-10-20 11:56:00 +01004967 ALOGV("RecordHandle::start()");
Eric Laurenta011e352012-03-29 15:51:43 -07004968 return mRecordTrack->start(tid, (AudioSystem::sync_event_t)event, triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004969}
4970
4971void AudioFlinger::RecordHandle::stop() {
Steve Block3856b092011-10-20 11:56:00 +01004972 ALOGV("RecordHandle::stop()");
Mathias Agopian65ab4712010-07-14 17:59:35 -07004973 mRecordTrack->stop();
4974}
4975
Mathias Agopian65ab4712010-07-14 17:59:35 -07004976status_t AudioFlinger::RecordHandle::onTransact(
4977 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
4978{
4979 return BnAudioRecord::onTransact(code, data, reply, flags);
4980}
4981
4982// ----------------------------------------------------------------------------
4983
Eric Laurent7c7f10b2011-06-17 21:29:58 -07004984AudioFlinger::RecordThread::RecordThread(const sp<AudioFlinger>& audioFlinger,
4985 AudioStreamIn *input,
4986 uint32_t sampleRate,
4987 uint32_t channels,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08004988 audio_io_handle_t id,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07004989 uint32_t device) :
Glenn Kasten23bb8be2012-01-26 10:38:26 -08004990 ThreadBase(audioFlinger, id, device, RECORD),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08004991 mInput(input), mTrack(NULL), mResampler(NULL), mRsmpOutBuffer(NULL), mRsmpInBuffer(NULL),
4992 // mRsmpInIndex and mInputBytes set by readInputParameters()
4993 mReqChannelCount(popcount(channels)),
4994 mReqSampleRate(sampleRate)
4995 // mBytesRead is only meaningful while active, and so is cleared in start()
4996 // (but might be better to also clear here for dump?)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004997{
Glenn Kasten480b4682012-02-28 12:30:08 -08004998 snprintf(mName, kNameLength, "AudioIn_%X", id);
Eric Laurentfeb0db62011-07-22 09:04:31 -07004999
Mathias Agopian65ab4712010-07-14 17:59:35 -07005000 readInputParameters();
5001}
5002
5003
5004AudioFlinger::RecordThread::~RecordThread()
5005{
5006 delete[] mRsmpInBuffer;
Glenn Kastene9dd0172012-01-27 18:08:45 -08005007 delete mResampler;
5008 delete[] mRsmpOutBuffer;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005009}
5010
5011void AudioFlinger::RecordThread::onFirstRef()
5012{
Eric Laurentfeb0db62011-07-22 09:04:31 -07005013 run(mName, PRIORITY_URGENT_AUDIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005014}
5015
Eric Laurentb8ba0a92011-08-07 16:32:26 -07005016status_t AudioFlinger::RecordThread::readyToRun()
5017{
5018 status_t status = initCheck();
Steve Block5ff1dd52012-01-05 23:22:43 +00005019 ALOGW_IF(status != NO_ERROR,"RecordThread %p could not initialize", this);
Eric Laurentb8ba0a92011-08-07 16:32:26 -07005020 return status;
5021}
5022
Mathias Agopian65ab4712010-07-14 17:59:35 -07005023bool AudioFlinger::RecordThread::threadLoop()
5024{
5025 AudioBufferProvider::Buffer buffer;
5026 sp<RecordTrack> activeTrack;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005027 Vector< sp<EffectChain> > effectChains;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005028
Eric Laurent44d98482010-09-30 16:12:31 -07005029 nsecs_t lastWarning = 0;
5030
Eric Laurentfeb0db62011-07-22 09:04:31 -07005031 acquireWakeLock();
5032
Mathias Agopian65ab4712010-07-14 17:59:35 -07005033 // start recording
5034 while (!exitPending()) {
5035
5036 processConfigEvents();
5037
5038 { // scope for mLock
5039 Mutex::Autolock _l(mLock);
5040 checkForNewParameters_l();
5041 if (mActiveTrack == 0 && mConfigEvents.isEmpty()) {
5042 if (!mStandby) {
Dima Zavin799a70e2011-04-18 16:57:27 -07005043 mInput->stream->common.standby(&mInput->stream->common);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005044 mStandby = true;
5045 }
5046
5047 if (exitPending()) break;
5048
Eric Laurentfeb0db62011-07-22 09:04:31 -07005049 releaseWakeLock_l();
Steve Block3856b092011-10-20 11:56:00 +01005050 ALOGV("RecordThread: loop stopping");
Mathias Agopian65ab4712010-07-14 17:59:35 -07005051 // go to sleep
5052 mWaitWorkCV.wait(mLock);
Steve Block3856b092011-10-20 11:56:00 +01005053 ALOGV("RecordThread: loop starting");
Eric Laurentfeb0db62011-07-22 09:04:31 -07005054 acquireWakeLock_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005055 continue;
5056 }
5057 if (mActiveTrack != 0) {
5058 if (mActiveTrack->mState == TrackBase::PAUSING) {
5059 if (!mStandby) {
Dima Zavin799a70e2011-04-18 16:57:27 -07005060 mInput->stream->common.standby(&mInput->stream->common);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005061 mStandby = true;
5062 }
5063 mActiveTrack.clear();
5064 mStartStopCond.broadcast();
5065 } else if (mActiveTrack->mState == TrackBase::RESUMING) {
5066 if (mReqChannelCount != mActiveTrack->channelCount()) {
5067 mActiveTrack.clear();
5068 mStartStopCond.broadcast();
5069 } else if (mBytesRead != 0) {
5070 // record start succeeds only if first read from audio input
5071 // succeeds
5072 if (mBytesRead > 0) {
5073 mActiveTrack->mState = TrackBase::ACTIVE;
5074 } else {
5075 mActiveTrack.clear();
5076 }
5077 mStartStopCond.broadcast();
5078 }
5079 mStandby = false;
5080 }
5081 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005082 lockEffectChains_l(effectChains);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005083 }
5084
5085 if (mActiveTrack != 0) {
5086 if (mActiveTrack->mState != TrackBase::ACTIVE &&
5087 mActiveTrack->mState != TrackBase::RESUMING) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005088 unlockEffectChains(effectChains);
5089 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005090 continue;
5091 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005092 for (size_t i = 0; i < effectChains.size(); i ++) {
5093 effectChains[i]->process_l();
5094 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005095
Mathias Agopian65ab4712010-07-14 17:59:35 -07005096 buffer.frameCount = mFrameCount;
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08005097 if (CC_LIKELY(mActiveTrack->getNextBuffer(&buffer) == NO_ERROR)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005098 size_t framesOut = buffer.frameCount;
Glenn Kastene0feee32011-12-13 11:53:26 -08005099 if (mResampler == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005100 // no resampling
5101 while (framesOut) {
5102 size_t framesIn = mFrameCount - mRsmpInIndex;
5103 if (framesIn) {
5104 int8_t *src = (int8_t *)mRsmpInBuffer + mRsmpInIndex * mFrameSize;
5105 int8_t *dst = buffer.i8 + (buffer.frameCount - framesOut) * mActiveTrack->mCblk->frameSize;
5106 if (framesIn > framesOut)
5107 framesIn = framesOut;
5108 mRsmpInIndex += framesIn;
5109 framesOut -= framesIn;
5110 if ((int)mChannelCount == mReqChannelCount ||
Dima Zavinfce7a472011-04-19 22:30:36 -07005111 mFormat != AUDIO_FORMAT_PCM_16_BIT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005112 memcpy(dst, src, framesIn * mFrameSize);
5113 } else {
5114 int16_t *src16 = (int16_t *)src;
5115 int16_t *dst16 = (int16_t *)dst;
5116 if (mChannelCount == 1) {
5117 while (framesIn--) {
5118 *dst16++ = *src16;
5119 *dst16++ = *src16++;
5120 }
5121 } else {
5122 while (framesIn--) {
5123 *dst16++ = (int16_t)(((int32_t)*src16 + (int32_t)*(src16 + 1)) >> 1);
5124 src16 += 2;
5125 }
5126 }
5127 }
5128 }
5129 if (framesOut && mFrameCount == mRsmpInIndex) {
5130 if (framesOut == mFrameCount &&
Dima Zavinfce7a472011-04-19 22:30:36 -07005131 ((int)mChannelCount == mReqChannelCount || mFormat != AUDIO_FORMAT_PCM_16_BIT)) {
Dima Zavin799a70e2011-04-18 16:57:27 -07005132 mBytesRead = mInput->stream->read(mInput->stream, buffer.raw, mInputBytes);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005133 framesOut = 0;
5134 } else {
Dima Zavin799a70e2011-04-18 16:57:27 -07005135 mBytesRead = mInput->stream->read(mInput->stream, mRsmpInBuffer, mInputBytes);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005136 mRsmpInIndex = 0;
5137 }
5138 if (mBytesRead < 0) {
Steve Block29357bc2012-01-06 19:20:56 +00005139 ALOGE("Error reading audio input");
Mathias Agopian65ab4712010-07-14 17:59:35 -07005140 if (mActiveTrack->mState == TrackBase::ACTIVE) {
5141 // Force input into standby so that it tries to
5142 // recover at next read attempt
Dima Zavin799a70e2011-04-18 16:57:27 -07005143 mInput->stream->common.standby(&mInput->stream->common);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005144 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005145 }
5146 mRsmpInIndex = mFrameCount;
5147 framesOut = 0;
5148 buffer.frameCount = 0;
5149 }
5150 }
5151 }
5152 } else {
5153 // resampling
5154
5155 memset(mRsmpOutBuffer, 0, framesOut * 2 * sizeof(int32_t));
5156 // alter output frame count as if we were expecting stereo samples
5157 if (mChannelCount == 1 && mReqChannelCount == 1) {
5158 framesOut >>= 1;
5159 }
5160 mResampler->resample(mRsmpOutBuffer, framesOut, this);
5161 // ditherAndClamp() works as long as all buffers returned by mActiveTrack->getNextBuffer()
5162 // are 32 bit aligned which should be always true.
5163 if (mChannelCount == 2 && mReqChannelCount == 1) {
Glenn Kasten3b21c502011-12-15 09:52:39 -08005164 ditherAndClamp(mRsmpOutBuffer, mRsmpOutBuffer, framesOut);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005165 // the resampler always outputs stereo samples: do post stereo to mono conversion
5166 int16_t *src = (int16_t *)mRsmpOutBuffer;
5167 int16_t *dst = buffer.i16;
5168 while (framesOut--) {
5169 *dst++ = (int16_t)(((int32_t)*src + (int32_t)*(src + 1)) >> 1);
5170 src += 2;
5171 }
5172 } else {
Glenn Kasten3b21c502011-12-15 09:52:39 -08005173 ditherAndClamp((int32_t *)buffer.raw, mRsmpOutBuffer, framesOut);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005174 }
5175
5176 }
Eric Laurenta011e352012-03-29 15:51:43 -07005177 if (mFramestoDrop == 0) {
5178 mActiveTrack->releaseBuffer(&buffer);
5179 } else {
5180 if (mFramestoDrop > 0) {
5181 mFramestoDrop -= buffer.frameCount;
5182 if (mFramestoDrop < 0) {
5183 mFramestoDrop = 0;
5184 }
5185 }
5186 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07005187 mActiveTrack->overflow();
5188 }
5189 // client isn't retrieving buffers fast enough
5190 else {
Eric Laurent44d98482010-09-30 16:12:31 -07005191 if (!mActiveTrack->setOverflow()) {
5192 nsecs_t now = systemTime();
Glenn Kasten7dede872011-12-13 11:04:14 -08005193 if ((now - lastWarning) > kWarningThrottleNs) {
Steve Block5ff1dd52012-01-05 23:22:43 +00005194 ALOGW("RecordThread: buffer overflow");
Eric Laurent44d98482010-09-30 16:12:31 -07005195 lastWarning = now;
5196 }
5197 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07005198 // Release the processor for a while before asking for a new buffer.
5199 // This will give the application more chance to read from the buffer and
5200 // clear the overflow.
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005201 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005202 }
5203 }
Eric Laurentec437d82011-07-26 20:54:46 -07005204 // enable changes in effect chain
5205 unlockEffectChains(effectChains);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005206 effectChains.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005207 }
5208
5209 if (!mStandby) {
Dima Zavin799a70e2011-04-18 16:57:27 -07005210 mInput->stream->common.standby(&mInput->stream->common);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005211 }
5212 mActiveTrack.clear();
5213
5214 mStartStopCond.broadcast();
5215
Eric Laurentfeb0db62011-07-22 09:04:31 -07005216 releaseWakeLock();
5217
Steve Block3856b092011-10-20 11:56:00 +01005218 ALOGV("RecordThread %p exiting", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005219 return false;
5220}
5221
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005222
5223sp<AudioFlinger::RecordThread::RecordTrack> AudioFlinger::RecordThread::createRecordTrack_l(
5224 const sp<AudioFlinger::Client>& client,
5225 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08005226 audio_format_t format,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005227 int channelMask,
5228 int frameCount,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005229 int sessionId,
5230 status_t *status)
5231{
5232 sp<RecordTrack> track;
5233 status_t lStatus;
5234
5235 lStatus = initCheck();
5236 if (lStatus != NO_ERROR) {
Steve Block29357bc2012-01-06 19:20:56 +00005237 ALOGE("Audio driver not initialized.");
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005238 goto Exit;
5239 }
5240
5241 { // scope for mLock
5242 Mutex::Autolock _l(mLock);
5243
5244 track = new RecordTrack(this, client, sampleRate,
Glenn Kasten5cf034d2012-02-21 10:35:56 -08005245 format, channelMask, frameCount, sessionId);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005246
Glenn Kasten7378ca52012-01-20 13:44:40 -08005247 if (track->getCblk() == 0) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005248 lStatus = NO_MEMORY;
5249 goto Exit;
5250 }
5251
5252 mTrack = track.get();
Eric Laurent59bd0da2011-08-01 09:52:20 -07005253 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
5254 bool suspend = audio_is_bluetooth_sco_device(
Eric Laurentbee53372011-08-29 12:42:48 -07005255 (audio_devices_t)(mDevice & AUDIO_DEVICE_IN_ALL)) && mAudioFlinger->btNrecIsOff();
Eric Laurent59bd0da2011-08-01 09:52:20 -07005256 setEffectSuspended_l(FX_IID_AEC, suspend, sessionId);
5257 setEffectSuspended_l(FX_IID_NS, suspend, sessionId);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005258 }
5259 lStatus = NO_ERROR;
5260
5261Exit:
5262 if (status) {
5263 *status = lStatus;
5264 }
5265 return track;
5266}
5267
Eric Laurenta011e352012-03-29 15:51:43 -07005268status_t AudioFlinger::RecordThread::start(RecordThread::RecordTrack* recordTrack,
5269 pid_t tid, AudioSystem::sync_event_t event,
5270 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005271{
Eric Laurenta011e352012-03-29 15:51:43 -07005272 ALOGV("RecordThread::start tid=%d, event %d, triggerSession %d", tid, event, triggerSession);
Glenn Kastene53b9ea2012-03-12 16:29:55 -07005273 sp<ThreadBase> strongMe = this;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005274 status_t status = NO_ERROR;
Eric Laurenta011e352012-03-29 15:51:43 -07005275
5276 if (event == AudioSystem::SYNC_EVENT_NONE) {
5277 mSyncStartEvent.clear();
5278 mFramestoDrop = 0;
5279 } else if (event != AudioSystem::SYNC_EVENT_SAME) {
5280 mSyncStartEvent = mAudioFlinger->createSyncEvent(event,
5281 triggerSession,
5282 recordTrack->sessionId(),
5283 syncStartEventCallback,
5284 this);
5285 mFramestoDrop = -1;
5286 }
5287
Mathias Agopian65ab4712010-07-14 17:59:35 -07005288 {
Glenn Kastena7d8d6f2012-01-05 15:41:56 -08005289 AutoMutex lock(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005290 if (mActiveTrack != 0) {
5291 if (recordTrack != mActiveTrack.get()) {
5292 status = -EBUSY;
5293 } else if (mActiveTrack->mState == TrackBase::PAUSING) {
5294 mActiveTrack->mState = TrackBase::ACTIVE;
5295 }
5296 return status;
5297 }
5298
5299 recordTrack->mState = TrackBase::IDLE;
5300 mActiveTrack = recordTrack;
5301 mLock.unlock();
5302 status_t status = AudioSystem::startInput(mId);
5303 mLock.lock();
5304 if (status != NO_ERROR) {
5305 mActiveTrack.clear();
Eric Laurenta011e352012-03-29 15:51:43 -07005306 clearSyncStartEvent();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005307 return status;
5308 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07005309 mRsmpInIndex = mFrameCount;
5310 mBytesRead = 0;
Eric Laurent243f5f92011-02-28 16:52:51 -08005311 if (mResampler != NULL) {
5312 mResampler->reset();
5313 }
5314 mActiveTrack->mState = TrackBase::RESUMING;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005315 // signal thread to start
Steve Block3856b092011-10-20 11:56:00 +01005316 ALOGV("Signal record thread");
Mathias Agopian65ab4712010-07-14 17:59:35 -07005317 mWaitWorkCV.signal();
5318 // do not wait for mStartStopCond if exiting
Glenn Kastenb28686f2012-01-06 08:39:38 -08005319 if (exitPending()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005320 mActiveTrack.clear();
5321 status = INVALID_OPERATION;
5322 goto startError;
5323 }
5324 mStartStopCond.wait(mLock);
5325 if (mActiveTrack == 0) {
Steve Block3856b092011-10-20 11:56:00 +01005326 ALOGV("Record failed to start");
Mathias Agopian65ab4712010-07-14 17:59:35 -07005327 status = BAD_VALUE;
5328 goto startError;
5329 }
Steve Block3856b092011-10-20 11:56:00 +01005330 ALOGV("Record started OK");
Mathias Agopian65ab4712010-07-14 17:59:35 -07005331 return status;
5332 }
5333startError:
5334 AudioSystem::stopInput(mId);
Eric Laurenta011e352012-03-29 15:51:43 -07005335 clearSyncStartEvent();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005336 return status;
5337}
5338
Eric Laurenta011e352012-03-29 15:51:43 -07005339void AudioFlinger::RecordThread::clearSyncStartEvent()
5340{
5341 if (mSyncStartEvent != 0) {
5342 mSyncStartEvent->cancel();
5343 }
5344 mSyncStartEvent.clear();
5345}
5346
5347void AudioFlinger::RecordThread::syncStartEventCallback(const wp<SyncEvent>& event)
5348{
5349 sp<SyncEvent> strongEvent = event.promote();
5350
5351 if (strongEvent != 0) {
5352 RecordThread *me = (RecordThread *)strongEvent->cookie();
5353 me->handleSyncStartEvent(strongEvent);
5354 }
5355}
5356
5357void AudioFlinger::RecordThread::handleSyncStartEvent(const sp<SyncEvent>& event)
5358{
5359 ALOGV("handleSyncStartEvent() mActiveTrack %p session %d event->listenerSession() %d",
5360 mActiveTrack.get(),
5361 mActiveTrack.get() ? mActiveTrack->sessionId() : 0,
5362 event->listenerSession());
5363
5364 if (mActiveTrack != 0 &&
5365 event == mSyncStartEvent) {
5366 // TODO: use actual buffer filling status instead of 2 buffers when info is available
5367 // from audio HAL
5368 mFramestoDrop = mFrameCount * 2;
5369 mSyncStartEvent.clear();
5370 }
5371}
5372
Mathias Agopian65ab4712010-07-14 17:59:35 -07005373void AudioFlinger::RecordThread::stop(RecordThread::RecordTrack* recordTrack) {
Steve Block3856b092011-10-20 11:56:00 +01005374 ALOGV("RecordThread::stop");
Glenn Kastene53b9ea2012-03-12 16:29:55 -07005375 sp<ThreadBase> strongMe = this;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005376 {
Glenn Kastena7d8d6f2012-01-05 15:41:56 -08005377 AutoMutex lock(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005378 if (mActiveTrack != 0 && recordTrack == mActiveTrack.get()) {
5379 mActiveTrack->mState = TrackBase::PAUSING;
5380 // do not wait for mStartStopCond if exiting
Glenn Kastenb28686f2012-01-06 08:39:38 -08005381 if (exitPending()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005382 return;
5383 }
5384 mStartStopCond.wait(mLock);
5385 // if we have been restarted, recordTrack == mActiveTrack.get() here
5386 if (mActiveTrack == 0 || recordTrack != mActiveTrack.get()) {
5387 mLock.unlock();
5388 AudioSystem::stopInput(mId);
5389 mLock.lock();
Steve Block3856b092011-10-20 11:56:00 +01005390 ALOGV("Record stopped OK");
Mathias Agopian65ab4712010-07-14 17:59:35 -07005391 }
5392 }
5393 }
5394}
5395
Eric Laurenta011e352012-03-29 15:51:43 -07005396bool AudioFlinger::RecordThread::isValidSyncEvent(const sp<SyncEvent>& event)
5397{
5398 return false;
5399}
5400
5401status_t AudioFlinger::RecordThread::setSyncEvent(const sp<SyncEvent>& event)
5402{
5403 if (!isValidSyncEvent(event)) {
5404 return BAD_VALUE;
5405 }
5406
5407 Mutex::Autolock _l(mLock);
5408
5409 if (mTrack != NULL && event->triggerSession() == mTrack->sessionId()) {
5410 mTrack->setSyncEvent(event);
5411 return NO_ERROR;
5412 }
5413 return NAME_NOT_FOUND;
5414}
5415
Mathias Agopian65ab4712010-07-14 17:59:35 -07005416status_t AudioFlinger::RecordThread::dump(int fd, const Vector<String16>& args)
5417{
5418 const size_t SIZE = 256;
5419 char buffer[SIZE];
5420 String8 result;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005421
5422 snprintf(buffer, SIZE, "\nInput thread %p internals\n", this);
5423 result.append(buffer);
5424
5425 if (mActiveTrack != 0) {
5426 result.append("Active Track:\n");
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07005427 result.append(" Clien Fmt Chn mask Session Buf S SRate Serv User\n");
Mathias Agopian65ab4712010-07-14 17:59:35 -07005428 mActiveTrack->dump(buffer, SIZE);
5429 result.append(buffer);
5430
5431 snprintf(buffer, SIZE, "In index: %d\n", mRsmpInIndex);
5432 result.append(buffer);
5433 snprintf(buffer, SIZE, "In size: %d\n", mInputBytes);
5434 result.append(buffer);
Glenn Kastene0feee32011-12-13 11:53:26 -08005435 snprintf(buffer, SIZE, "Resampling: %d\n", (mResampler != NULL));
Mathias Agopian65ab4712010-07-14 17:59:35 -07005436 result.append(buffer);
5437 snprintf(buffer, SIZE, "Out channel count: %d\n", mReqChannelCount);
5438 result.append(buffer);
5439 snprintf(buffer, SIZE, "Out sample rate: %d\n", mReqSampleRate);
5440 result.append(buffer);
5441
5442
5443 } else {
5444 result.append("No record client\n");
5445 }
5446 write(fd, result.string(), result.size());
5447
5448 dumpBase(fd, args);
Eric Laurent1d2bff02011-07-24 17:49:51 -07005449 dumpEffectChains(fd, args);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005450
5451 return NO_ERROR;
5452}
5453
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08005454// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08005455status_t AudioFlinger::RecordThread::getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005456{
5457 size_t framesReq = buffer->frameCount;
5458 size_t framesReady = mFrameCount - mRsmpInIndex;
5459 int channelCount;
5460
5461 if (framesReady == 0) {
Dima Zavin799a70e2011-04-18 16:57:27 -07005462 mBytesRead = mInput->stream->read(mInput->stream, mRsmpInBuffer, mInputBytes);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005463 if (mBytesRead < 0) {
Steve Block29357bc2012-01-06 19:20:56 +00005464 ALOGE("RecordThread::getNextBuffer() Error reading audio input");
Mathias Agopian65ab4712010-07-14 17:59:35 -07005465 if (mActiveTrack->mState == TrackBase::ACTIVE) {
5466 // Force input into standby so that it tries to
5467 // recover at next read attempt
Dima Zavin799a70e2011-04-18 16:57:27 -07005468 mInput->stream->common.standby(&mInput->stream->common);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005469 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005470 }
Glenn Kastene0feee32011-12-13 11:53:26 -08005471 buffer->raw = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005472 buffer->frameCount = 0;
5473 return NOT_ENOUGH_DATA;
5474 }
5475 mRsmpInIndex = 0;
5476 framesReady = mFrameCount;
5477 }
5478
5479 if (framesReq > framesReady) {
5480 framesReq = framesReady;
5481 }
5482
5483 if (mChannelCount == 1 && mReqChannelCount == 2) {
5484 channelCount = 1;
5485 } else {
5486 channelCount = 2;
5487 }
5488 buffer->raw = mRsmpInBuffer + mRsmpInIndex * channelCount;
5489 buffer->frameCount = framesReq;
5490 return NO_ERROR;
5491}
5492
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08005493// AudioBufferProvider interface
Mathias Agopian65ab4712010-07-14 17:59:35 -07005494void AudioFlinger::RecordThread::releaseBuffer(AudioBufferProvider::Buffer* buffer)
5495{
5496 mRsmpInIndex += buffer->frameCount;
5497 buffer->frameCount = 0;
5498}
5499
5500bool AudioFlinger::RecordThread::checkForNewParameters_l()
5501{
5502 bool reconfig = false;
5503
5504 while (!mNewParameters.isEmpty()) {
5505 status_t status = NO_ERROR;
5506 String8 keyValuePair = mNewParameters[0];
5507 AudioParameter param = AudioParameter(keyValuePair);
5508 int value;
Glenn Kasten58f30212012-01-12 12:27:51 -08005509 audio_format_t reqFormat = mFormat;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005510 int reqSamplingRate = mReqSampleRate;
5511 int reqChannelCount = mReqChannelCount;
5512
5513 if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
5514 reqSamplingRate = value;
5515 reconfig = true;
5516 }
5517 if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
Glenn Kasten58f30212012-01-12 12:27:51 -08005518 reqFormat = (audio_format_t) value;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005519 reconfig = true;
5520 }
5521 if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
Dima Zavinfce7a472011-04-19 22:30:36 -07005522 reqChannelCount = popcount(value);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005523 reconfig = true;
5524 }
5525 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
5526 // do not accept frame count changes if tracks are open as the track buffer
Glenn Kasten99e53b82012-01-19 08:59:58 -08005527 // size depends on frame count and correct behavior would not be guaranteed
Mathias Agopian65ab4712010-07-14 17:59:35 -07005528 // if frame count is changed after track creation
5529 if (mActiveTrack != 0) {
5530 status = INVALID_OPERATION;
5531 } else {
5532 reconfig = true;
5533 }
5534 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005535 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
5536 // forward device change to effects that have requested to be
5537 // aware of attached audio device.
5538 for (size_t i = 0; i < mEffectChains.size(); i++) {
5539 mEffectChains[i]->setDevice_l(value);
5540 }
5541 // store input device and output device but do not forward output device to audio HAL.
5542 // Note that status is ignored by the caller for output device
5543 // (see AudioFlinger::setParameters()
5544 if (value & AUDIO_DEVICE_OUT_ALL) {
5545 mDevice &= (uint32_t)~(value & AUDIO_DEVICE_OUT_ALL);
5546 status = BAD_VALUE;
5547 } else {
5548 mDevice &= (uint32_t)~(value & AUDIO_DEVICE_IN_ALL);
Eric Laurent59bd0da2011-08-01 09:52:20 -07005549 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
5550 if (mTrack != NULL) {
5551 bool suspend = audio_is_bluetooth_sco_device(
Eric Laurentbee53372011-08-29 12:42:48 -07005552 (audio_devices_t)value) && mAudioFlinger->btNrecIsOff();
Eric Laurent59bd0da2011-08-01 09:52:20 -07005553 setEffectSuspended_l(FX_IID_AEC, suspend, mTrack->sessionId());
5554 setEffectSuspended_l(FX_IID_NS, suspend, mTrack->sessionId());
5555 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005556 }
5557 mDevice |= (uint32_t)value;
5558 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07005559 if (status == NO_ERROR) {
Dima Zavin799a70e2011-04-18 16:57:27 -07005560 status = mInput->stream->common.set_parameters(&mInput->stream->common, keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07005561 if (status == INVALID_OPERATION) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07005562 mInput->stream->common.standby(&mInput->stream->common);
5563 status = mInput->stream->common.set_parameters(&mInput->stream->common,
5564 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07005565 }
5566 if (reconfig) {
5567 if (status == BAD_VALUE &&
Dima Zavin799a70e2011-04-18 16:57:27 -07005568 reqFormat == mInput->stream->common.get_format(&mInput->stream->common) &&
Dima Zavinfce7a472011-04-19 22:30:36 -07005569 reqFormat == AUDIO_FORMAT_PCM_16_BIT &&
Dima Zavin799a70e2011-04-18 16:57:27 -07005570 ((int)mInput->stream->common.get_sample_rate(&mInput->stream->common) <= (2 * reqSamplingRate)) &&
Glenn Kasten53d76db2012-03-08 12:32:47 -08005571 popcount(mInput->stream->common.get_channels(&mInput->stream->common)) <= FCC_2 &&
5572 (reqChannelCount <= FCC_2)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005573 status = NO_ERROR;
5574 }
5575 if (status == NO_ERROR) {
5576 readInputParameters();
5577 sendConfigEvent_l(AudioSystem::INPUT_CONFIG_CHANGED);
5578 }
5579 }
5580 }
5581
5582 mNewParameters.removeAt(0);
5583
5584 mParamStatus = status;
5585 mParamCond.signal();
Eric Laurent60cd0a02011-09-13 11:40:21 -07005586 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
5587 // already timed out waiting for the status and will never signal the condition.
Glenn Kasten7dede872011-12-13 11:04:14 -08005588 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005589 }
5590 return reconfig;
5591}
5592
5593String8 AudioFlinger::RecordThread::getParameters(const String8& keys)
5594{
Dima Zavinfce7a472011-04-19 22:30:36 -07005595 char *s;
Eric Laurentb8ba0a92011-08-07 16:32:26 -07005596 String8 out_s8 = String8();
5597
5598 Mutex::Autolock _l(mLock);
5599 if (initCheck() != NO_ERROR) {
5600 return out_s8;
5601 }
Dima Zavinfce7a472011-04-19 22:30:36 -07005602
Dima Zavin799a70e2011-04-18 16:57:27 -07005603 s = mInput->stream->common.get_parameters(&mInput->stream->common, keys.string());
Dima Zavinfce7a472011-04-19 22:30:36 -07005604 out_s8 = String8(s);
5605 free(s);
5606 return out_s8;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005607}
5608
5609void AudioFlinger::RecordThread::audioConfigChanged_l(int event, int param) {
5610 AudioSystem::OutputDescriptor desc;
Glenn Kastena0d68332012-01-27 16:47:15 -08005611 void *param2 = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005612
5613 switch (event) {
5614 case AudioSystem::INPUT_OPENED:
5615 case AudioSystem::INPUT_CONFIG_CHANGED:
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07005616 desc.channels = mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005617 desc.samplingRate = mSampleRate;
5618 desc.format = mFormat;
5619 desc.frameCount = mFrameCount;
5620 desc.latency = 0;
5621 param2 = &desc;
5622 break;
5623
5624 case AudioSystem::INPUT_CLOSED:
5625 default:
5626 break;
5627 }
5628 mAudioFlinger->audioConfigChanged_l(event, mId, param2);
5629}
5630
5631void AudioFlinger::RecordThread::readInputParameters()
5632{
Glenn Kastene9dd0172012-01-27 18:08:45 -08005633 delete mRsmpInBuffer;
5634 // mRsmpInBuffer is always assigned a new[] below
5635 delete mRsmpOutBuffer;
5636 mRsmpOutBuffer = NULL;
5637 delete mResampler;
Glenn Kastene0feee32011-12-13 11:53:26 -08005638 mResampler = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005639
Dima Zavin799a70e2011-04-18 16:57:27 -07005640 mSampleRate = mInput->stream->common.get_sample_rate(&mInput->stream->common);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07005641 mChannelMask = mInput->stream->common.get_channels(&mInput->stream->common);
5642 mChannelCount = (uint16_t)popcount(mChannelMask);
Dima Zavin799a70e2011-04-18 16:57:27 -07005643 mFormat = mInput->stream->common.get_format(&mInput->stream->common);
Glenn Kastenb9980652012-01-11 09:48:27 -08005644 mFrameSize = audio_stream_frame_size(&mInput->stream->common);
Dima Zavin799a70e2011-04-18 16:57:27 -07005645 mInputBytes = mInput->stream->common.get_buffer_size(&mInput->stream->common);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005646 mFrameCount = mInputBytes / mFrameSize;
5647 mRsmpInBuffer = new int16_t[mFrameCount * mChannelCount];
5648
Glenn Kasten53d76db2012-03-08 12:32:47 -08005649 if (mSampleRate != mReqSampleRate && mChannelCount <= FCC_2 && mReqChannelCount <= FCC_2)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005650 {
5651 int channelCount;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07005652 // optimization: if mono to mono, use the resampler in stereo to stereo mode to avoid
5653 // stereo to mono post process as the resampler always outputs stereo.
Mathias Agopian65ab4712010-07-14 17:59:35 -07005654 if (mChannelCount == 1 && mReqChannelCount == 2) {
5655 channelCount = 1;
5656 } else {
5657 channelCount = 2;
5658 }
5659 mResampler = AudioResampler::create(16, channelCount, mReqSampleRate);
5660 mResampler->setSampleRate(mSampleRate);
5661 mResampler->setVolume(AudioMixer::UNITY_GAIN, AudioMixer::UNITY_GAIN);
5662 mRsmpOutBuffer = new int32_t[mFrameCount * 2];
5663
5664 // optmization: if mono to mono, alter input frame count as if we were inputing stereo samples
5665 if (mChannelCount == 1 && mReqChannelCount == 1) {
5666 mFrameCount >>= 1;
5667 }
5668
5669 }
5670 mRsmpInIndex = mFrameCount;
5671}
5672
5673unsigned int AudioFlinger::RecordThread::getInputFramesLost()
5674{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07005675 Mutex::Autolock _l(mLock);
5676 if (initCheck() != NO_ERROR) {
5677 return 0;
5678 }
5679
Dima Zavin799a70e2011-04-18 16:57:27 -07005680 return mInput->stream->get_input_frames_lost(mInput->stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005681}
5682
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005683uint32_t AudioFlinger::RecordThread::hasAudioSession(int sessionId)
5684{
5685 Mutex::Autolock _l(mLock);
5686 uint32_t result = 0;
5687 if (getEffectChain_l(sessionId) != 0) {
5688 result = EFFECT_SESSION;
5689 }
5690
5691 if (mTrack != NULL && sessionId == mTrack->sessionId()) {
5692 result |= TRACK_SESSION;
5693 }
5694
5695 return result;
5696}
5697
Eric Laurent59bd0da2011-08-01 09:52:20 -07005698AudioFlinger::RecordThread::RecordTrack* AudioFlinger::RecordThread::track()
5699{
5700 Mutex::Autolock _l(mLock);
5701 return mTrack;
5702}
5703
Glenn Kastenaed850d2012-01-26 09:46:34 -08005704AudioFlinger::AudioStreamIn* AudioFlinger::RecordThread::getInput() const
Eric Laurentb8ba0a92011-08-07 16:32:26 -07005705{
5706 Mutex::Autolock _l(mLock);
5707 return mInput;
5708}
5709
5710AudioFlinger::AudioStreamIn* AudioFlinger::RecordThread::clearInput()
5711{
5712 Mutex::Autolock _l(mLock);
5713 AudioStreamIn *input = mInput;
5714 mInput = NULL;
5715 return input;
5716}
5717
5718// this method must always be called either with ThreadBase mLock held or inside the thread loop
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08005719audio_stream_t* AudioFlinger::RecordThread::stream() const
Eric Laurentb8ba0a92011-08-07 16:32:26 -07005720{
5721 if (mInput == NULL) {
5722 return NULL;
5723 }
5724 return &mInput->stream->common;
5725}
5726
5727
Mathias Agopian65ab4712010-07-14 17:59:35 -07005728// ----------------------------------------------------------------------------
5729
Eric Laurenta4c5a552012-03-29 10:12:40 -07005730audio_module_handle_t AudioFlinger::loadHwModule(const char *name)
5731{
5732 if (!settingsAllowed()) {
5733 return 0;
5734 }
5735 Mutex::Autolock _l(mLock);
5736 return loadHwModule_l(name);
5737}
5738
5739// loadHwModule_l() must be called with AudioFlinger::mLock held
5740audio_module_handle_t AudioFlinger::loadHwModule_l(const char *name)
5741{
5742 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
5743 if (strncmp(mAudioHwDevs.valueAt(i)->moduleName(), name, strlen(name)) == 0) {
5744 ALOGW("loadHwModule() module %s already loaded", name);
5745 return mAudioHwDevs.keyAt(i);
5746 }
5747 }
5748
Eric Laurenta4c5a552012-03-29 10:12:40 -07005749 audio_hw_device_t *dev;
5750
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07005751 int rc = load_audio_interface(name, &dev);
Eric Laurenta4c5a552012-03-29 10:12:40 -07005752 if (rc) {
5753 ALOGI("loadHwModule() error %d loading module %s ", rc, name);
5754 return 0;
5755 }
5756
5757 mHardwareStatus = AUDIO_HW_INIT;
5758 rc = dev->init_check(dev);
5759 mHardwareStatus = AUDIO_HW_IDLE;
5760 if (rc) {
5761 ALOGI("loadHwModule() init check error %d for module %s ", rc, name);
5762 return 0;
5763 }
5764
5765 if ((mMasterVolumeSupportLvl != MVS_NONE) &&
5766 (NULL != dev->set_master_volume)) {
5767 AutoMutex lock(mHardwareLock);
5768 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
5769 dev->set_master_volume(dev, mMasterVolume);
5770 mHardwareStatus = AUDIO_HW_IDLE;
5771 }
5772
5773 audio_module_handle_t handle = nextUniqueId();
5774 mAudioHwDevs.add(handle, new AudioHwDevice(name, dev));
5775
5776 ALOGI("loadHwModule() Loaded %s audio interface from %s (%s) handle %d",
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07005777 name, dev->common.module->name, dev->common.module->id, handle);
Eric Laurenta4c5a552012-03-29 10:12:40 -07005778
5779 return handle;
5780
5781}
5782
5783audio_io_handle_t AudioFlinger::openOutput(audio_module_handle_t module,
5784 audio_devices_t *pDevices,
5785 uint32_t *pSamplingRate,
5786 audio_format_t *pFormat,
5787 audio_channel_mask_t *pChannelMask,
5788 uint32_t *pLatencyMs,
Eric Laurent0ca3cf92012-04-18 09:24:29 -07005789 audio_output_flags_t flags)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005790{
5791 status_t status;
5792 PlaybackThread *thread = NULL;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07005793 struct audio_config config = {
5794 sample_rate: pSamplingRate ? *pSamplingRate : 0,
5795 channel_mask: pChannelMask ? *pChannelMask : 0,
5796 format: pFormat ? *pFormat : AUDIO_FORMAT_DEFAULT,
5797 };
5798 audio_stream_out_t *outStream = NULL;
Dima Zavin799a70e2011-04-18 16:57:27 -07005799 audio_hw_device_t *outHwDev;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005800
Eric Laurenta4c5a552012-03-29 10:12:40 -07005801 ALOGV("openOutput(), module %d Device %x, SamplingRate %d, Format %d, Channels %x, flags %x",
5802 module,
Eric Laurent3f9c84c2012-04-03 15:36:53 -07005803 (pDevices != NULL) ? (int)*pDevices : 0,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07005804 config.sample_rate,
5805 config.format,
5806 config.channel_mask,
Eric Laurenta4c5a552012-03-29 10:12:40 -07005807 flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005808
5809 if (pDevices == NULL || *pDevices == 0) {
5810 return 0;
5811 }
Dima Zavin799a70e2011-04-18 16:57:27 -07005812
Mathias Agopian65ab4712010-07-14 17:59:35 -07005813 Mutex::Autolock _l(mLock);
5814
Eric Laurenta4c5a552012-03-29 10:12:40 -07005815 outHwDev = findSuitableHwDev_l(module, *pDevices);
Dima Zavin799a70e2011-04-18 16:57:27 -07005816 if (outHwDev == NULL)
5817 return 0;
5818
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07005819 audio_io_handle_t id = nextUniqueId();
5820
Glenn Kasten8abf44d2012-02-02 14:16:03 -08005821 mHardwareStatus = AUDIO_HW_OUTPUT_OPEN;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07005822
5823 status = outHwDev->open_output_stream(outHwDev,
5824 id,
5825 *pDevices,
5826 (audio_output_flags_t)flags,
5827 &config,
5828 &outStream);
5829
Glenn Kasten8abf44d2012-02-02 14:16:03 -08005830 mHardwareStatus = AUDIO_HW_IDLE;
Steve Block3856b092011-10-20 11:56:00 +01005831 ALOGV("openOutput() openOutputStream returned output %p, SamplingRate %d, Format %d, Channels %x, status %d",
Dima Zavin799a70e2011-04-18 16:57:27 -07005832 outStream,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07005833 config.sample_rate,
5834 config.format,
5835 config.channel_mask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005836 status);
5837
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07005838 if (status == NO_ERROR && outStream != NULL) {
Dima Zavin799a70e2011-04-18 16:57:27 -07005839 AudioStreamOut *output = new AudioStreamOut(outHwDev, outStream);
Dima Zavin799a70e2011-04-18 16:57:27 -07005840
Eric Laurent0ca3cf92012-04-18 09:24:29 -07005841 if ((flags & AUDIO_OUTPUT_FLAG_DIRECT) ||
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07005842 (config.format != AUDIO_FORMAT_PCM_16_BIT) ||
5843 (config.channel_mask != AUDIO_CHANNEL_OUT_STEREO)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005844 thread = new DirectOutputThread(this, output, id, *pDevices);
Steve Block3856b092011-10-20 11:56:00 +01005845 ALOGV("openOutput() created direct output: ID %d thread %p", id, thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005846 } else {
5847 thread = new MixerThread(this, output, id, *pDevices);
Steve Block3856b092011-10-20 11:56:00 +01005848 ALOGV("openOutput() created mixer output: ID %d thread %p", id, thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005849 }
5850 mPlaybackThreads.add(id, thread);
5851
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07005852 if (pSamplingRate != NULL) *pSamplingRate = config.sample_rate;
5853 if (pFormat != NULL) *pFormat = config.format;
5854 if (pChannelMask != NULL) *pChannelMask = config.channel_mask;
Glenn Kastena0d68332012-01-27 16:47:15 -08005855 if (pLatencyMs != NULL) *pLatencyMs = thread->latency();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005856
5857 // notify client processes of the new output creation
5858 thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
Eric Laurenta4c5a552012-03-29 10:12:40 -07005859
5860 // the first primary output opened designates the primary hw device
Eric Laurent0ca3cf92012-04-18 09:24:29 -07005861 if ((mPrimaryHardwareDev == NULL) && (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
Eric Laurenta4c5a552012-03-29 10:12:40 -07005862 ALOGI("Using module %d has the primary audio interface", module);
5863 mPrimaryHardwareDev = outHwDev;
5864
5865 AutoMutex lock(mHardwareLock);
5866 mHardwareStatus = AUDIO_HW_SET_MODE;
5867 outHwDev->set_mode(outHwDev, mMode);
5868
5869 // Determine the level of master volume support the primary audio HAL has,
5870 // and set the initial master volume at the same time.
5871 float initialVolume = 1.0;
5872 mMasterVolumeSupportLvl = MVS_NONE;
5873
5874 mHardwareStatus = AUDIO_HW_GET_MASTER_VOLUME;
5875 if ((NULL != outHwDev->get_master_volume) &&
5876 (NO_ERROR == outHwDev->get_master_volume(outHwDev, &initialVolume))) {
5877 mMasterVolumeSupportLvl = MVS_FULL;
5878 } else {
5879 mMasterVolumeSupportLvl = MVS_SETONLY;
5880 initialVolume = 1.0;
5881 }
5882
5883 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
5884 if ((NULL == outHwDev->set_master_volume) ||
5885 (NO_ERROR != outHwDev->set_master_volume(outHwDev, initialVolume))) {
5886 mMasterVolumeSupportLvl = MVS_NONE;
5887 }
5888 // now that we have a primary device, initialize master volume on other devices
5889 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
5890 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
5891
5892 if ((dev != mPrimaryHardwareDev) &&
5893 (NULL != dev->set_master_volume)) {
5894 dev->set_master_volume(dev, initialVolume);
5895 }
5896 }
5897 mHardwareStatus = AUDIO_HW_IDLE;
5898 mMasterVolumeSW = (MVS_NONE == mMasterVolumeSupportLvl)
5899 ? initialVolume
5900 : 1.0;
5901 mMasterVolume = initialVolume;
5902 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07005903 return id;
5904 }
5905
5906 return 0;
5907}
5908
Glenn Kasten72ef00d2012-01-17 11:09:42 -08005909audio_io_handle_t AudioFlinger::openDuplicateOutput(audio_io_handle_t output1,
5910 audio_io_handle_t output2)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005911{
5912 Mutex::Autolock _l(mLock);
5913 MixerThread *thread1 = checkMixerThread_l(output1);
5914 MixerThread *thread2 = checkMixerThread_l(output2);
5915
5916 if (thread1 == NULL || thread2 == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00005917 ALOGW("openDuplicateOutput() wrong output mixer type for output %d or %d", output1, output2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005918 return 0;
5919 }
5920
Glenn Kasten72ef00d2012-01-17 11:09:42 -08005921 audio_io_handle_t id = nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005922 DuplicatingThread *thread = new DuplicatingThread(this, thread1, id);
5923 thread->addOutputTrack(thread2);
5924 mPlaybackThreads.add(id, thread);
5925 // notify client processes of the new output creation
5926 thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
5927 return id;
5928}
5929
Glenn Kasten72ef00d2012-01-17 11:09:42 -08005930status_t AudioFlinger::closeOutput(audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005931{
5932 // keep strong reference on the playback thread so that
5933 // it is not destroyed while exit() is executed
Glenn Kastene53b9ea2012-03-12 16:29:55 -07005934 sp<PlaybackThread> thread;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005935 {
5936 Mutex::Autolock _l(mLock);
5937 thread = checkPlaybackThread_l(output);
5938 if (thread == NULL) {
5939 return BAD_VALUE;
5940 }
5941
Steve Block3856b092011-10-20 11:56:00 +01005942 ALOGV("closeOutput() %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005943
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005944 if (thread->type() == ThreadBase::MIXER) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005945 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005946 if (mPlaybackThreads.valueAt(i)->type() == ThreadBase::DUPLICATING) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005947 DuplicatingThread *dupThread = (DuplicatingThread *)mPlaybackThreads.valueAt(i).get();
5948 dupThread->removeOutputTrack((MixerThread *)thread.get());
5949 }
5950 }
5951 }
Glenn Kastena1117922012-01-26 10:53:32 -08005952 audioConfigChanged_l(AudioSystem::OUTPUT_CLOSED, output, NULL);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005953 mPlaybackThreads.removeItem(output);
5954 }
5955 thread->exit();
Glenn Kastenb28686f2012-01-06 08:39:38 -08005956 // The thread entity (active unit of execution) is no longer running here,
5957 // but the ThreadBase container still exists.
Mathias Agopian65ab4712010-07-14 17:59:35 -07005958
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005959 if (thread->type() != ThreadBase::DUPLICATING) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07005960 AudioStreamOut *out = thread->clearOutput();
Glenn Kasten5798d4e2012-03-08 12:18:35 -08005961 ALOG_ASSERT(out != NULL, "out shouldn't be NULL");
Eric Laurentb8ba0a92011-08-07 16:32:26 -07005962 // from now on thread->mOutput is NULL
Dima Zavin799a70e2011-04-18 16:57:27 -07005963 out->hwDev->close_output_stream(out->hwDev, out->stream);
5964 delete out;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005965 }
5966 return NO_ERROR;
5967}
5968
Glenn Kasten72ef00d2012-01-17 11:09:42 -08005969status_t AudioFlinger::suspendOutput(audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005970{
5971 Mutex::Autolock _l(mLock);
5972 PlaybackThread *thread = checkPlaybackThread_l(output);
5973
5974 if (thread == NULL) {
5975 return BAD_VALUE;
5976 }
5977
Steve Block3856b092011-10-20 11:56:00 +01005978 ALOGV("suspendOutput() %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005979 thread->suspend();
5980
5981 return NO_ERROR;
5982}
5983
Glenn Kasten72ef00d2012-01-17 11:09:42 -08005984status_t AudioFlinger::restoreOutput(audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005985{
5986 Mutex::Autolock _l(mLock);
5987 PlaybackThread *thread = checkPlaybackThread_l(output);
5988
5989 if (thread == NULL) {
5990 return BAD_VALUE;
5991 }
5992
Steve Block3856b092011-10-20 11:56:00 +01005993 ALOGV("restoreOutput() %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005994
5995 thread->restore();
5996
5997 return NO_ERROR;
5998}
5999
Eric Laurenta4c5a552012-03-29 10:12:40 -07006000audio_io_handle_t AudioFlinger::openInput(audio_module_handle_t module,
6001 audio_devices_t *pDevices,
6002 uint32_t *pSamplingRate,
6003 audio_format_t *pFormat,
6004 uint32_t *pChannelMask)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006005{
6006 status_t status;
6007 RecordThread *thread = NULL;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006008 struct audio_config config = {
6009 sample_rate: pSamplingRate ? *pSamplingRate : 0,
6010 channel_mask: pChannelMask ? *pChannelMask : 0,
6011 format: pFormat ? *pFormat : AUDIO_FORMAT_DEFAULT,
6012 };
6013 uint32_t reqSamplingRate = config.sample_rate;
6014 audio_format_t reqFormat = config.format;
6015 audio_channel_mask_t reqChannels = config.channel_mask;
6016 audio_stream_in_t *inStream = NULL;
Dima Zavin799a70e2011-04-18 16:57:27 -07006017 audio_hw_device_t *inHwDev;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006018
6019 if (pDevices == NULL || *pDevices == 0) {
6020 return 0;
6021 }
Dima Zavin799a70e2011-04-18 16:57:27 -07006022
Mathias Agopian65ab4712010-07-14 17:59:35 -07006023 Mutex::Autolock _l(mLock);
6024
Eric Laurenta4c5a552012-03-29 10:12:40 -07006025 inHwDev = findSuitableHwDev_l(module, *pDevices);
Dima Zavin799a70e2011-04-18 16:57:27 -07006026 if (inHwDev == NULL)
6027 return 0;
6028
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006029 audio_io_handle_t id = nextUniqueId();
6030
6031 status = inHwDev->open_input_stream(inHwDev, id, *pDevices, &config,
Dima Zavin799a70e2011-04-18 16:57:27 -07006032 &inStream);
Eric Laurenta4c5a552012-03-29 10:12:40 -07006033 ALOGV("openInput() openInputStream returned input %p, SamplingRate %d, Format %d, Channels %x, status %d",
Dima Zavin799a70e2011-04-18 16:57:27 -07006034 inStream,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006035 config.sample_rate,
6036 config.format,
6037 config.channel_mask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07006038 status);
6039
6040 // If the input could not be opened with the requested parameters and we can handle the conversion internally,
6041 // try to open again with the proposed parameters. The AudioFlinger can resample the input and do mono to stereo
6042 // or stereo to mono conversions on 16 bit PCM inputs.
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006043 if (status == BAD_VALUE &&
6044 reqFormat == config.format && config.format == AUDIO_FORMAT_PCM_16_BIT &&
6045 (config.sample_rate <= 2 * reqSamplingRate) &&
6046 (popcount(config.channel_mask) <= FCC_2) && (popcount(reqChannels) <= FCC_2)) {
Steve Block3856b092011-10-20 11:56:00 +01006047 ALOGV("openInput() reopening with proposed sampling rate and channels");
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006048 inStream = NULL;
6049 status = inHwDev->open_input_stream(inHwDev, id, *pDevices, &config, &inStream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006050 }
6051
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006052 if (status == NO_ERROR && inStream != NULL) {
Dima Zavin799a70e2011-04-18 16:57:27 -07006053 AudioStreamIn *input = new AudioStreamIn(inHwDev, inStream);
6054
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006055 // Start record thread
6056 // RecorThread require both input and output device indication to forward to audio
6057 // pre processing modules
6058 uint32_t device = (*pDevices) | primaryOutputDevice_l();
6059 thread = new RecordThread(this,
6060 input,
6061 reqSamplingRate,
6062 reqChannels,
6063 id,
6064 device);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006065 mRecordThreads.add(id, thread);
Steve Block3856b092011-10-20 11:56:00 +01006066 ALOGV("openInput() created record thread: ID %d thread %p", id, thread);
Glenn Kastena0d68332012-01-27 16:47:15 -08006067 if (pSamplingRate != NULL) *pSamplingRate = reqSamplingRate;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006068 if (pFormat != NULL) *pFormat = config.format;
Eric Laurenta4c5a552012-03-29 10:12:40 -07006069 if (pChannelMask != NULL) *pChannelMask = reqChannels;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006070
Dima Zavin799a70e2011-04-18 16:57:27 -07006071 input->stream->common.standby(&input->stream->common);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006072
6073 // notify client processes of the new input creation
6074 thread->audioConfigChanged_l(AudioSystem::INPUT_OPENED);
6075 return id;
6076 }
6077
6078 return 0;
6079}
6080
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006081status_t AudioFlinger::closeInput(audio_io_handle_t input)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006082{
6083 // keep strong reference on the record thread so that
6084 // it is not destroyed while exit() is executed
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006085 sp<RecordThread> thread;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006086 {
6087 Mutex::Autolock _l(mLock);
6088 thread = checkRecordThread_l(input);
6089 if (thread == NULL) {
6090 return BAD_VALUE;
6091 }
6092
Steve Block3856b092011-10-20 11:56:00 +01006093 ALOGV("closeInput() %d", input);
Glenn Kastena1117922012-01-26 10:53:32 -08006094 audioConfigChanged_l(AudioSystem::INPUT_CLOSED, input, NULL);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006095 mRecordThreads.removeItem(input);
6096 }
6097 thread->exit();
Glenn Kastenb28686f2012-01-06 08:39:38 -08006098 // The thread entity (active unit of execution) is no longer running here,
6099 // but the ThreadBase container still exists.
Mathias Agopian65ab4712010-07-14 17:59:35 -07006100
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006101 AudioStreamIn *in = thread->clearInput();
Glenn Kasten5798d4e2012-03-08 12:18:35 -08006102 ALOG_ASSERT(in != NULL, "in shouldn't be NULL");
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006103 // from now on thread->mInput is NULL
Dima Zavin799a70e2011-04-18 16:57:27 -07006104 in->hwDev->close_input_stream(in->hwDev, in->stream);
6105 delete in;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006106
6107 return NO_ERROR;
6108}
6109
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006110status_t AudioFlinger::setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006111{
6112 Mutex::Autolock _l(mLock);
6113 MixerThread *dstThread = checkMixerThread_l(output);
6114 if (dstThread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006115 ALOGW("setStreamOutput() bad output id %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006116 return BAD_VALUE;
6117 }
6118
Steve Block3856b092011-10-20 11:56:00 +01006119 ALOGV("setStreamOutput() stream %d to output %d", stream, output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006120 audioConfigChanged_l(AudioSystem::STREAM_CONFIG_CHANGED, output, &stream);
6121
6122 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
6123 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
Glenn Kastena1117922012-01-26 10:53:32 -08006124 if (thread != dstThread && thread->type() != ThreadBase::DIRECT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006125 MixerThread *srcThread = (MixerThread *)thread;
6126 srcThread->invalidateTracks(stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006127 }
Eric Laurentde070132010-07-13 04:45:46 -07006128 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006129
6130 return NO_ERROR;
6131}
6132
6133
6134int AudioFlinger::newAudioSessionId()
6135{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006136 return nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006137}
6138
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006139void AudioFlinger::acquireAudioSessionId(int audioSession)
6140{
6141 Mutex::Autolock _l(mLock);
Glenn Kastenbb001922012-02-03 11:10:26 -08006142 pid_t caller = IPCThreadState::self()->getCallingPid();
Steve Block3856b092011-10-20 11:56:00 +01006143 ALOGV("acquiring %d from %d", audioSession, caller);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08006144 size_t num = mAudioSessionRefs.size();
6145 for (size_t i = 0; i< num; i++) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006146 AudioSessionRef *ref = mAudioSessionRefs.editItemAt(i);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08006147 if (ref->mSessionid == audioSession && ref->mPid == caller) {
6148 ref->mCnt++;
6149 ALOGV(" incremented refcount to %d", ref->mCnt);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006150 return;
6151 }
6152 }
Glenn Kasten84afa3b2012-01-25 15:28:08 -08006153 mAudioSessionRefs.push(new AudioSessionRef(audioSession, caller));
6154 ALOGV(" added new entry for %d", audioSession);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006155}
6156
6157void AudioFlinger::releaseAudioSessionId(int audioSession)
6158{
6159 Mutex::Autolock _l(mLock);
Glenn Kastenbb001922012-02-03 11:10:26 -08006160 pid_t caller = IPCThreadState::self()->getCallingPid();
Steve Block3856b092011-10-20 11:56:00 +01006161 ALOGV("releasing %d from %d", audioSession, caller);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08006162 size_t num = mAudioSessionRefs.size();
6163 for (size_t i = 0; i< num; i++) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006164 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08006165 if (ref->mSessionid == audioSession && ref->mPid == caller) {
6166 ref->mCnt--;
6167 ALOGV(" decremented refcount to %d", ref->mCnt);
6168 if (ref->mCnt == 0) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006169 mAudioSessionRefs.removeAt(i);
6170 delete ref;
6171 purgeStaleEffects_l();
6172 }
6173 return;
6174 }
6175 }
Steve Block5ff1dd52012-01-05 23:22:43 +00006176 ALOGW("session id %d not found for pid %d", audioSession, caller);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006177}
6178
6179void AudioFlinger::purgeStaleEffects_l() {
6180
Steve Block3856b092011-10-20 11:56:00 +01006181 ALOGV("purging stale effects");
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006182
6183 Vector< sp<EffectChain> > chains;
6184
6185 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
6186 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
6187 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
6188 sp<EffectChain> ec = t->mEffectChains[j];
Marco Nelissen0270b182011-08-12 14:14:39 -07006189 if (ec->sessionId() > AUDIO_SESSION_OUTPUT_MIX) {
6190 chains.push(ec);
6191 }
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006192 }
6193 }
6194 for (size_t i = 0; i < mRecordThreads.size(); i++) {
6195 sp<RecordThread> t = mRecordThreads.valueAt(i);
6196 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
6197 sp<EffectChain> ec = t->mEffectChains[j];
6198 chains.push(ec);
6199 }
6200 }
6201
6202 for (size_t i = 0; i < chains.size(); i++) {
6203 sp<EffectChain> ec = chains[i];
6204 int sessionid = ec->sessionId();
6205 sp<ThreadBase> t = ec->mThread.promote();
6206 if (t == 0) {
6207 continue;
6208 }
6209 size_t numsessionrefs = mAudioSessionRefs.size();
6210 bool found = false;
6211 for (size_t k = 0; k < numsessionrefs; k++) {
6212 AudioSessionRef *ref = mAudioSessionRefs.itemAt(k);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08006213 if (ref->mSessionid == sessionid) {
Steve Block3856b092011-10-20 11:56:00 +01006214 ALOGV(" session %d still exists for %d with %d refs",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006215 sessionid, ref->mPid, ref->mCnt);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006216 found = true;
6217 break;
6218 }
6219 }
6220 if (!found) {
6221 // remove all effects from the chain
6222 while (ec->mEffects.size()) {
6223 sp<EffectModule> effect = ec->mEffects[0];
6224 effect->unPin();
6225 Mutex::Autolock _l (t->mLock);
6226 t->removeEffect_l(effect);
6227 for (size_t j = 0; j < effect->mHandles.size(); j++) {
6228 sp<EffectHandle> handle = effect->mHandles[j].promote();
6229 if (handle != 0) {
6230 handle->mEffect.clear();
Eric Laurenta85a74a2011-10-19 11:44:54 -07006231 if (handle->mHasControl && handle->mEnabled) {
6232 t->checkSuspendOnEffectEnabled_l(effect, false, effect->sessionId());
6233 }
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006234 }
6235 }
6236 AudioSystem::unregisterEffect(effect->id());
6237 }
6238 }
6239 }
6240 return;
6241}
6242
Mathias Agopian65ab4712010-07-14 17:59:35 -07006243// checkPlaybackThread_l() must be called with AudioFlinger::mLock held
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006244AudioFlinger::PlaybackThread *AudioFlinger::checkPlaybackThread_l(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07006245{
Glenn Kastena1117922012-01-26 10:53:32 -08006246 return mPlaybackThreads.valueFor(output).get();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006247}
6248
6249// checkMixerThread_l() must be called with AudioFlinger::mLock held
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006250AudioFlinger::MixerThread *AudioFlinger::checkMixerThread_l(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07006251{
6252 PlaybackThread *thread = checkPlaybackThread_l(output);
Glenn Kastena1117922012-01-26 10:53:32 -08006253 return thread != NULL && thread->type() != ThreadBase::DIRECT ? (MixerThread *) thread : NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006254}
6255
6256// checkRecordThread_l() must be called with AudioFlinger::mLock held
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006257AudioFlinger::RecordThread *AudioFlinger::checkRecordThread_l(audio_io_handle_t input) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07006258{
Glenn Kastena1117922012-01-26 10:53:32 -08006259 return mRecordThreads.valueFor(input).get();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006260}
6261
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006262uint32_t AudioFlinger::nextUniqueId()
Mathias Agopian65ab4712010-07-14 17:59:35 -07006263{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006264 return android_atomic_inc(&mNextUniqueId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006265}
6266
Glenn Kasten02fe1bf2012-02-24 15:42:17 -08006267AudioFlinger::PlaybackThread *AudioFlinger::primaryPlaybackThread_l() const
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006268{
6269 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
6270 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006271 AudioStreamOut *output = thread->getOutput();
6272 if (output != NULL && output->hwDev == mPrimaryHardwareDev) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006273 return thread;
6274 }
6275 }
6276 return NULL;
6277}
6278
Glenn Kasten02fe1bf2012-02-24 15:42:17 -08006279uint32_t AudioFlinger::primaryOutputDevice_l() const
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006280{
6281 PlaybackThread *thread = primaryPlaybackThread_l();
6282
6283 if (thread == NULL) {
6284 return 0;
6285 }
6286
6287 return thread->device();
6288}
6289
Eric Laurenta011e352012-03-29 15:51:43 -07006290sp<AudioFlinger::SyncEvent> AudioFlinger::createSyncEvent(AudioSystem::sync_event_t type,
6291 int triggerSession,
6292 int listenerSession,
6293 sync_event_callback_t callBack,
6294 void *cookie)
6295{
6296 Mutex::Autolock _l(mLock);
6297
6298 sp<SyncEvent> event = new SyncEvent(type, triggerSession, listenerSession, callBack, cookie);
6299 status_t playStatus = NAME_NOT_FOUND;
6300 status_t recStatus = NAME_NOT_FOUND;
6301 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
6302 playStatus = mPlaybackThreads.valueAt(i)->setSyncEvent(event);
6303 if (playStatus == NO_ERROR) {
6304 return event;
6305 }
6306 }
6307 for (size_t i = 0; i < mRecordThreads.size(); i++) {
6308 recStatus = mRecordThreads.valueAt(i)->setSyncEvent(event);
6309 if (recStatus == NO_ERROR) {
6310 return event;
6311 }
6312 }
6313 if (playStatus == NAME_NOT_FOUND || recStatus == NAME_NOT_FOUND) {
6314 mPendingSyncEvents.add(event);
6315 } else {
6316 ALOGV("createSyncEvent() invalid event %d", event->type());
6317 event.clear();
6318 }
6319 return event;
6320}
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006321
Mathias Agopian65ab4712010-07-14 17:59:35 -07006322// ----------------------------------------------------------------------------
6323// Effect management
6324// ----------------------------------------------------------------------------
6325
6326
Glenn Kastenf587ba52012-01-26 16:25:10 -08006327status_t AudioFlinger::queryNumberEffects(uint32_t *numEffects) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07006328{
6329 Mutex::Autolock _l(mLock);
6330 return EffectQueryNumberEffects(numEffects);
6331}
6332
Glenn Kastenf587ba52012-01-26 16:25:10 -08006333status_t AudioFlinger::queryEffect(uint32_t index, effect_descriptor_t *descriptor) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07006334{
6335 Mutex::Autolock _l(mLock);
6336 return EffectQueryEffect(index, descriptor);
6337}
6338
Glenn Kasten5e92a782012-01-30 07:40:52 -08006339status_t AudioFlinger::getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kastenf587ba52012-01-26 16:25:10 -08006340 effect_descriptor_t *descriptor) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07006341{
6342 Mutex::Autolock _l(mLock);
6343 return EffectGetDescriptor(pUuid, descriptor);
6344}
6345
6346
Mathias Agopian65ab4712010-07-14 17:59:35 -07006347sp<IEffect> AudioFlinger::createEffect(pid_t pid,
6348 effect_descriptor_t *pDesc,
6349 const sp<IEffectClient>& effectClient,
6350 int32_t priority,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006351 audio_io_handle_t io,
Mathias Agopian65ab4712010-07-14 17:59:35 -07006352 int sessionId,
6353 status_t *status,
6354 int *id,
6355 int *enabled)
6356{
6357 status_t lStatus = NO_ERROR;
6358 sp<EffectHandle> handle;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006359 effect_descriptor_t desc;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006360
Glenn Kasten98ec94c2012-01-25 14:28:29 -08006361 ALOGV("createEffect pid %d, effectClient %p, priority %d, sessionId %d, io %d",
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006362 pid, effectClient.get(), priority, sessionId, io);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006363
6364 if (pDesc == NULL) {
6365 lStatus = BAD_VALUE;
6366 goto Exit;
6367 }
6368
Eric Laurent84e9a102010-09-23 16:10:16 -07006369 // check audio settings permission for global effects
Dima Zavinfce7a472011-04-19 22:30:36 -07006370 if (sessionId == AUDIO_SESSION_OUTPUT_MIX && !settingsAllowed()) {
Eric Laurent84e9a102010-09-23 16:10:16 -07006371 lStatus = PERMISSION_DENIED;
6372 goto Exit;
6373 }
6374
Dima Zavinfce7a472011-04-19 22:30:36 -07006375 // Session AUDIO_SESSION_OUTPUT_STAGE is reserved for output stage effects
Eric Laurent84e9a102010-09-23 16:10:16 -07006376 // that can only be created by audio policy manager (running in same process)
Glenn Kasten44deb052012-02-05 18:09:08 -08006377 if (sessionId == AUDIO_SESSION_OUTPUT_STAGE && getpid_cached != pid) {
Eric Laurent84e9a102010-09-23 16:10:16 -07006378 lStatus = PERMISSION_DENIED;
6379 goto Exit;
6380 }
6381
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006382 if (io == 0) {
Dima Zavinfce7a472011-04-19 22:30:36 -07006383 if (sessionId == AUDIO_SESSION_OUTPUT_STAGE) {
Eric Laurent84e9a102010-09-23 16:10:16 -07006384 // output must be specified by AudioPolicyManager when using session
Dima Zavinfce7a472011-04-19 22:30:36 -07006385 // AUDIO_SESSION_OUTPUT_STAGE
Eric Laurent84e9a102010-09-23 16:10:16 -07006386 lStatus = BAD_VALUE;
6387 goto Exit;
Dima Zavinfce7a472011-04-19 22:30:36 -07006388 } else if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
Eric Laurent84e9a102010-09-23 16:10:16 -07006389 // if the output returned by getOutputForEffect() is removed before we lock the
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006390 // mutex below, the call to checkPlaybackThread_l(io) below will detect it
Eric Laurent84e9a102010-09-23 16:10:16 -07006391 // and we will exit safely
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006392 io = AudioSystem::getOutputForEffect(&desc);
Eric Laurent84e9a102010-09-23 16:10:16 -07006393 }
6394 }
6395
Mathias Agopian65ab4712010-07-14 17:59:35 -07006396 {
6397 Mutex::Autolock _l(mLock);
6398
Mathias Agopian65ab4712010-07-14 17:59:35 -07006399
6400 if (!EffectIsNullUuid(&pDesc->uuid)) {
6401 // if uuid is specified, request effect descriptor
6402 lStatus = EffectGetDescriptor(&pDesc->uuid, &desc);
6403 if (lStatus < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006404 ALOGW("createEffect() error %d from EffectGetDescriptor", lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006405 goto Exit;
6406 }
6407 } else {
6408 // if uuid is not specified, look for an available implementation
6409 // of the required type in effect factory
6410 if (EffectIsNullUuid(&pDesc->type)) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006411 ALOGW("createEffect() no effect type");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006412 lStatus = BAD_VALUE;
6413 goto Exit;
6414 }
6415 uint32_t numEffects = 0;
6416 effect_descriptor_t d;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006417 d.flags = 0; // prevent compiler warning
Mathias Agopian65ab4712010-07-14 17:59:35 -07006418 bool found = false;
6419
6420 lStatus = EffectQueryNumberEffects(&numEffects);
6421 if (lStatus < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006422 ALOGW("createEffect() error %d from EffectQueryNumberEffects", lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006423 goto Exit;
6424 }
6425 for (uint32_t i = 0; i < numEffects; i++) {
6426 lStatus = EffectQueryEffect(i, &desc);
6427 if (lStatus < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006428 ALOGW("createEffect() error %d from EffectQueryEffect", lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006429 continue;
6430 }
6431 if (memcmp(&desc.type, &pDesc->type, sizeof(effect_uuid_t)) == 0) {
6432 // If matching type found save effect descriptor. If the session is
6433 // 0 and the effect is not auxiliary, continue enumeration in case
6434 // an auxiliary version of this effect type is available
6435 found = true;
6436 memcpy(&d, &desc, sizeof(effect_descriptor_t));
Dima Zavinfce7a472011-04-19 22:30:36 -07006437 if (sessionId != AUDIO_SESSION_OUTPUT_MIX ||
Mathias Agopian65ab4712010-07-14 17:59:35 -07006438 (desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6439 break;
6440 }
6441 }
6442 }
6443 if (!found) {
6444 lStatus = BAD_VALUE;
Steve Block5ff1dd52012-01-05 23:22:43 +00006445 ALOGW("createEffect() effect not found");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006446 goto Exit;
6447 }
6448 // For same effect type, chose auxiliary version over insert version if
6449 // connect to output mix (Compliance to OpenSL ES)
Dima Zavinfce7a472011-04-19 22:30:36 -07006450 if (sessionId == AUDIO_SESSION_OUTPUT_MIX &&
Mathias Agopian65ab4712010-07-14 17:59:35 -07006451 (d.flags & EFFECT_FLAG_TYPE_MASK) != EFFECT_FLAG_TYPE_AUXILIARY) {
6452 memcpy(&desc, &d, sizeof(effect_descriptor_t));
6453 }
6454 }
6455
6456 // Do not allow auxiliary effects on a session different from 0 (output mix)
Dima Zavinfce7a472011-04-19 22:30:36 -07006457 if (sessionId != AUDIO_SESSION_OUTPUT_MIX &&
Mathias Agopian65ab4712010-07-14 17:59:35 -07006458 (desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6459 lStatus = INVALID_OPERATION;
6460 goto Exit;
6461 }
6462
Eric Laurent59255e42011-07-27 19:49:51 -07006463 // check recording permission for visualizer
6464 if ((memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) &&
6465 !recordingAllowed()) {
6466 lStatus = PERMISSION_DENIED;
6467 goto Exit;
6468 }
6469
Mathias Agopian65ab4712010-07-14 17:59:35 -07006470 // return effect descriptor
6471 memcpy(pDesc, &desc, sizeof(effect_descriptor_t));
6472
6473 // If output is not specified try to find a matching audio session ID in one of the
6474 // output threads.
Eric Laurent84e9a102010-09-23 16:10:16 -07006475 // If output is 0 here, sessionId is neither SESSION_OUTPUT_STAGE nor SESSION_OUTPUT_MIX
6476 // because of code checking output when entering the function.
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006477 // Note: io is never 0 when creating an effect on an input
6478 if (io == 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006479 // look for the thread where the specified audio session is present
Eric Laurent84e9a102010-09-23 16:10:16 -07006480 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
6481 if (mPlaybackThreads.valueAt(i)->hasAudioSession(sessionId) != 0) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006482 io = mPlaybackThreads.keyAt(i);
Eric Laurent84e9a102010-09-23 16:10:16 -07006483 break;
Eric Laurent39e94f82010-07-28 01:32:47 -07006484 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006485 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006486 if (io == 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006487 for (size_t i = 0; i < mRecordThreads.size(); i++) {
6488 if (mRecordThreads.valueAt(i)->hasAudioSession(sessionId) != 0) {
6489 io = mRecordThreads.keyAt(i);
6490 break;
6491 }
6492 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006493 }
Eric Laurent84e9a102010-09-23 16:10:16 -07006494 // If no output thread contains the requested session ID, default to
6495 // first output. The effect chain will be moved to the correct output
6496 // thread when a track with the same session ID is created
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006497 if (io == 0 && mPlaybackThreads.size()) {
6498 io = mPlaybackThreads.keyAt(0);
6499 }
Steve Block3856b092011-10-20 11:56:00 +01006500 ALOGV("createEffect() got io %d for effect %s", io, desc.name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006501 }
6502 ThreadBase *thread = checkRecordThread_l(io);
6503 if (thread == NULL) {
6504 thread = checkPlaybackThread_l(io);
6505 if (thread == NULL) {
Steve Block29357bc2012-01-06 19:20:56 +00006506 ALOGE("createEffect() unknown output thread");
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006507 lStatus = BAD_VALUE;
6508 goto Exit;
Eric Laurent84e9a102010-09-23 16:10:16 -07006509 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006510 }
Eric Laurent84e9a102010-09-23 16:10:16 -07006511
Glenn Kasten98ec94c2012-01-25 14:28:29 -08006512 sp<Client> client = registerPid_l(pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006513
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006514 // create effect on selected output thread
Eric Laurentde070132010-07-13 04:45:46 -07006515 handle = thread->createEffect_l(client, effectClient, priority, sessionId,
6516 &desc, enabled, &lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006517 if (handle != 0 && id != NULL) {
6518 *id = handle->id();
6519 }
6520 }
6521
6522Exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006523 if (status != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006524 *status = lStatus;
6525 }
6526 return handle;
6527}
6528
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006529status_t AudioFlinger::moveEffects(int sessionId, audio_io_handle_t srcOutput,
6530 audio_io_handle_t dstOutput)
Eric Laurentde070132010-07-13 04:45:46 -07006531{
Steve Block3856b092011-10-20 11:56:00 +01006532 ALOGV("moveEffects() session %d, srcOutput %d, dstOutput %d",
Eric Laurent59255e42011-07-27 19:49:51 -07006533 sessionId, srcOutput, dstOutput);
Eric Laurentde070132010-07-13 04:45:46 -07006534 Mutex::Autolock _l(mLock);
6535 if (srcOutput == dstOutput) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006536 ALOGW("moveEffects() same dst and src outputs %d", dstOutput);
Eric Laurentde070132010-07-13 04:45:46 -07006537 return NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006538 }
Eric Laurentde070132010-07-13 04:45:46 -07006539 PlaybackThread *srcThread = checkPlaybackThread_l(srcOutput);
6540 if (srcThread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006541 ALOGW("moveEffects() bad srcOutput %d", srcOutput);
Eric Laurentde070132010-07-13 04:45:46 -07006542 return BAD_VALUE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006543 }
Eric Laurentde070132010-07-13 04:45:46 -07006544 PlaybackThread *dstThread = checkPlaybackThread_l(dstOutput);
6545 if (dstThread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006546 ALOGW("moveEffects() bad dstOutput %d", dstOutput);
Eric Laurentde070132010-07-13 04:45:46 -07006547 return BAD_VALUE;
6548 }
6549
6550 Mutex::Autolock _dl(dstThread->mLock);
6551 Mutex::Autolock _sl(srcThread->mLock);
Eric Laurent59255e42011-07-27 19:49:51 -07006552 moveEffectChain_l(sessionId, srcThread, dstThread, false);
Eric Laurentde070132010-07-13 04:45:46 -07006553
Mathias Agopian65ab4712010-07-14 17:59:35 -07006554 return NO_ERROR;
6555}
6556
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006557// moveEffectChain_l must be called with both srcThread and dstThread mLocks held
Eric Laurent59255e42011-07-27 19:49:51 -07006558status_t AudioFlinger::moveEffectChain_l(int sessionId,
Eric Laurentde070132010-07-13 04:45:46 -07006559 AudioFlinger::PlaybackThread *srcThread,
Eric Laurent39e94f82010-07-28 01:32:47 -07006560 AudioFlinger::PlaybackThread *dstThread,
6561 bool reRegister)
Eric Laurentde070132010-07-13 04:45:46 -07006562{
Steve Block3856b092011-10-20 11:56:00 +01006563 ALOGV("moveEffectChain_l() session %d from thread %p to thread %p",
Eric Laurent59255e42011-07-27 19:49:51 -07006564 sessionId, srcThread, dstThread);
Eric Laurentde070132010-07-13 04:45:46 -07006565
Eric Laurent59255e42011-07-27 19:49:51 -07006566 sp<EffectChain> chain = srcThread->getEffectChain_l(sessionId);
Eric Laurentde070132010-07-13 04:45:46 -07006567 if (chain == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006568 ALOGW("moveEffectChain_l() effect chain for session %d not on source thread %p",
Eric Laurent59255e42011-07-27 19:49:51 -07006569 sessionId, srcThread);
Eric Laurentde070132010-07-13 04:45:46 -07006570 return INVALID_OPERATION;
6571 }
6572
Eric Laurent39e94f82010-07-28 01:32:47 -07006573 // remove chain first. This is useful only if reconfiguring effect chain on same output thread,
Eric Laurentde070132010-07-13 04:45:46 -07006574 // so that a new chain is created with correct parameters when first effect is added. This is
Eric Laurentec35a142011-10-05 17:42:25 -07006575 // otherwise unnecessary as removeEffect_l() will remove the chain when last effect is
Eric Laurentde070132010-07-13 04:45:46 -07006576 // removed.
6577 srcThread->removeEffectChain_l(chain);
6578
6579 // transfer all effects one by one so that new effect chain is created on new thread with
6580 // correct buffer sizes and audio parameters and effect engines reconfigured accordingly
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006581 audio_io_handle_t dstOutput = dstThread->id();
Eric Laurent39e94f82010-07-28 01:32:47 -07006582 sp<EffectChain> dstChain;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006583 uint32_t strategy = 0; // prevent compiler warning
Eric Laurentde070132010-07-13 04:45:46 -07006584 sp<EffectModule> effect = chain->getEffectFromId_l(0);
6585 while (effect != 0) {
6586 srcThread->removeEffect_l(effect);
6587 dstThread->addEffect_l(effect);
Eric Laurentec35a142011-10-05 17:42:25 -07006588 // removeEffect_l() has stopped the effect if it was active so it must be restarted
6589 if (effect->state() == EffectModule::ACTIVE ||
6590 effect->state() == EffectModule::STOPPING) {
6591 effect->start();
6592 }
Eric Laurent39e94f82010-07-28 01:32:47 -07006593 // if the move request is not received from audio policy manager, the effect must be
6594 // re-registered with the new strategy and output
6595 if (dstChain == 0) {
6596 dstChain = effect->chain().promote();
6597 if (dstChain == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006598 ALOGW("moveEffectChain_l() cannot get chain from effect %p", effect.get());
Eric Laurent39e94f82010-07-28 01:32:47 -07006599 srcThread->addEffect_l(effect);
6600 return NO_INIT;
6601 }
6602 strategy = dstChain->strategy();
6603 }
6604 if (reRegister) {
6605 AudioSystem::unregisterEffect(effect->id());
6606 AudioSystem::registerEffect(&effect->desc(),
6607 dstOutput,
6608 strategy,
Eric Laurent59255e42011-07-27 19:49:51 -07006609 sessionId,
Eric Laurent39e94f82010-07-28 01:32:47 -07006610 effect->id());
6611 }
Eric Laurentde070132010-07-13 04:45:46 -07006612 effect = chain->getEffectFromId_l(0);
6613 }
6614
6615 return NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006616}
6617
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006618
Mathias Agopian65ab4712010-07-14 17:59:35 -07006619// PlaybackThread::createEffect_l() must be called with AudioFlinger::mLock held
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006620sp<AudioFlinger::EffectHandle> AudioFlinger::ThreadBase::createEffect_l(
Mathias Agopian65ab4712010-07-14 17:59:35 -07006621 const sp<AudioFlinger::Client>& client,
6622 const sp<IEffectClient>& effectClient,
6623 int32_t priority,
6624 int sessionId,
6625 effect_descriptor_t *desc,
6626 int *enabled,
6627 status_t *status
6628 )
6629{
6630 sp<EffectModule> effect;
6631 sp<EffectHandle> handle;
6632 status_t lStatus;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006633 sp<EffectChain> chain;
Eric Laurentde070132010-07-13 04:45:46 -07006634 bool chainCreated = false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006635 bool effectCreated = false;
6636 bool effectRegistered = false;
6637
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006638 lStatus = initCheck();
6639 if (lStatus != NO_ERROR) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006640 ALOGW("createEffect_l() Audio driver not initialized.");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006641 goto Exit;
6642 }
6643
6644 // Do not allow effects with session ID 0 on direct output or duplicating threads
6645 // TODO: add rule for hw accelerated effects on direct outputs with non PCM format
Dima Zavinfce7a472011-04-19 22:30:36 -07006646 if (sessionId == AUDIO_SESSION_OUTPUT_MIX && mType != MIXER) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006647 ALOGW("createEffect_l() Cannot add auxiliary effect %s to session %d",
Eric Laurentde070132010-07-13 04:45:46 -07006648 desc->name, sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006649 lStatus = BAD_VALUE;
6650 goto Exit;
6651 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006652 // Only Pre processor effects are allowed on input threads and only on input threads
Glenn Kastena1117922012-01-26 10:53:32 -08006653 if ((mType == RECORD) != ((desc->flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC)) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006654 ALOGW("createEffect_l() effect %s (flags %08x) created on wrong thread type %d",
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006655 desc->name, desc->flags, mType);
6656 lStatus = BAD_VALUE;
6657 goto Exit;
6658 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006659
Steve Block3856b092011-10-20 11:56:00 +01006660 ALOGV("createEffect_l() thread %p effect %s on session %d", this, desc->name, sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006661
6662 { // scope for mLock
6663 Mutex::Autolock _l(mLock);
6664
6665 // check for existing effect chain with the requested audio session
6666 chain = getEffectChain_l(sessionId);
6667 if (chain == 0) {
6668 // create a new chain for this session
Steve Block3856b092011-10-20 11:56:00 +01006669 ALOGV("createEffect_l() new effect chain for session %d", sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006670 chain = new EffectChain(this, sessionId);
6671 addEffectChain_l(chain);
Eric Laurentde070132010-07-13 04:45:46 -07006672 chain->setStrategy(getStrategyForSession_l(sessionId));
6673 chainCreated = true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006674 } else {
Eric Laurentcab11242010-07-15 12:50:15 -07006675 effect = chain->getEffectFromDesc_l(desc);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006676 }
6677
Glenn Kasten7fc9a6f2012-01-10 10:46:34 -08006678 ALOGV("createEffect_l() got effect %p on chain %p", effect.get(), chain.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07006679
6680 if (effect == 0) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006681 int id = mAudioFlinger->nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006682 // Check CPU and memory usage
Eric Laurentde070132010-07-13 04:45:46 -07006683 lStatus = AudioSystem::registerEffect(desc, mId, chain->strategy(), sessionId, id);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006684 if (lStatus != NO_ERROR) {
6685 goto Exit;
6686 }
6687 effectRegistered = true;
6688 // create a new effect module if none present in the chain
Eric Laurentde070132010-07-13 04:45:46 -07006689 effect = new EffectModule(this, chain, desc, id, sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006690 lStatus = effect->status();
6691 if (lStatus != NO_ERROR) {
6692 goto Exit;
6693 }
Eric Laurentcab11242010-07-15 12:50:15 -07006694 lStatus = chain->addEffect_l(effect);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006695 if (lStatus != NO_ERROR) {
6696 goto Exit;
6697 }
6698 effectCreated = true;
6699
6700 effect->setDevice(mDevice);
6701 effect->setMode(mAudioFlinger->getMode());
6702 }
6703 // create effect handle and connect it to effect module
6704 handle = new EffectHandle(effect, client, effectClient, priority);
6705 lStatus = effect->addHandle(handle);
Glenn Kastena0d68332012-01-27 16:47:15 -08006706 if (enabled != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006707 *enabled = (int)effect->isEnabled();
6708 }
6709 }
6710
6711Exit:
6712 if (lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) {
Eric Laurentde070132010-07-13 04:45:46 -07006713 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006714 if (effectCreated) {
Eric Laurentde070132010-07-13 04:45:46 -07006715 chain->removeEffect_l(effect);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006716 }
6717 if (effectRegistered) {
Eric Laurentde070132010-07-13 04:45:46 -07006718 AudioSystem::unregisterEffect(effect->id());
6719 }
6720 if (chainCreated) {
6721 removeEffectChain_l(chain);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006722 }
6723 handle.clear();
6724 }
6725
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006726 if (status != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006727 *status = lStatus;
6728 }
6729 return handle;
6730}
6731
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006732sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId)
6733{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006734 sp<EffectChain> chain = getEffectChain_l(sessionId);
Glenn Kasten090f0192012-01-30 13:00:02 -08006735 return chain != 0 ? chain->getEffectFromId_l(effectId) : 0;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006736}
6737
Eric Laurentde070132010-07-13 04:45:46 -07006738// PlaybackThread::addEffect_l() must be called with AudioFlinger::mLock and
6739// PlaybackThread::mLock held
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006740status_t AudioFlinger::ThreadBase::addEffect_l(const sp<EffectModule>& effect)
Eric Laurentde070132010-07-13 04:45:46 -07006741{
6742 // check for existing effect chain with the requested audio session
6743 int sessionId = effect->sessionId();
6744 sp<EffectChain> chain = getEffectChain_l(sessionId);
6745 bool chainCreated = false;
6746
6747 if (chain == 0) {
6748 // create a new chain for this session
Steve Block3856b092011-10-20 11:56:00 +01006749 ALOGV("addEffect_l() new effect chain for session %d", sessionId);
Eric Laurentde070132010-07-13 04:45:46 -07006750 chain = new EffectChain(this, sessionId);
6751 addEffectChain_l(chain);
6752 chain->setStrategy(getStrategyForSession_l(sessionId));
6753 chainCreated = true;
6754 }
Steve Block3856b092011-10-20 11:56:00 +01006755 ALOGV("addEffect_l() %p chain %p effect %p", this, chain.get(), effect.get());
Eric Laurentde070132010-07-13 04:45:46 -07006756
6757 if (chain->getEffectFromId_l(effect->id()) != 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006758 ALOGW("addEffect_l() %p effect %s already present in chain %p",
Eric Laurentde070132010-07-13 04:45:46 -07006759 this, effect->desc().name, chain.get());
6760 return BAD_VALUE;
6761 }
6762
6763 status_t status = chain->addEffect_l(effect);
6764 if (status != NO_ERROR) {
6765 if (chainCreated) {
6766 removeEffectChain_l(chain);
6767 }
6768 return status;
6769 }
6770
6771 effect->setDevice(mDevice);
6772 effect->setMode(mAudioFlinger->getMode());
6773 return NO_ERROR;
6774}
6775
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006776void AudioFlinger::ThreadBase::removeEffect_l(const sp<EffectModule>& effect) {
Eric Laurentde070132010-07-13 04:45:46 -07006777
Steve Block3856b092011-10-20 11:56:00 +01006778 ALOGV("removeEffect_l() %p effect %p", this, effect.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07006779 effect_descriptor_t desc = effect->desc();
Eric Laurentde070132010-07-13 04:45:46 -07006780 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6781 detachAuxEffect_l(effect->id());
6782 }
6783
6784 sp<EffectChain> chain = effect->chain().promote();
6785 if (chain != 0) {
6786 // remove effect chain if removing last effect
6787 if (chain->removeEffect_l(effect) == 0) {
6788 removeEffectChain_l(chain);
6789 }
6790 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00006791 ALOGW("removeEffect_l() %p cannot promote chain for effect %p", this, effect.get());
Eric Laurentde070132010-07-13 04:45:46 -07006792 }
6793}
6794
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006795void AudioFlinger::ThreadBase::lockEffectChains_l(
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006796 Vector< sp<AudioFlinger::EffectChain> >& effectChains)
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006797{
6798 effectChains = mEffectChains;
6799 for (size_t i = 0; i < mEffectChains.size(); i++) {
6800 mEffectChains[i]->lock();
6801 }
6802}
6803
6804void AudioFlinger::ThreadBase::unlockEffectChains(
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006805 const Vector< sp<AudioFlinger::EffectChain> >& effectChains)
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006806{
6807 for (size_t i = 0; i < effectChains.size(); i++) {
6808 effectChains[i]->unlock();
6809 }
6810}
6811
6812sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain(int sessionId)
6813{
6814 Mutex::Autolock _l(mLock);
6815 return getEffectChain_l(sessionId);
6816}
6817
6818sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain_l(int sessionId)
6819{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006820 size_t size = mEffectChains.size();
6821 for (size_t i = 0; i < size; i++) {
6822 if (mEffectChains[i]->sessionId() == sessionId) {
Glenn Kasten090f0192012-01-30 13:00:02 -08006823 return mEffectChains[i];
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006824 }
6825 }
Glenn Kasten090f0192012-01-30 13:00:02 -08006826 return 0;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006827}
6828
Glenn Kastenf78aee72012-01-04 11:00:47 -08006829void AudioFlinger::ThreadBase::setMode(audio_mode_t mode)
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006830{
6831 Mutex::Autolock _l(mLock);
6832 size_t size = mEffectChains.size();
6833 for (size_t i = 0; i < size; i++) {
6834 mEffectChains[i]->setMode_l(mode);
6835 }
6836}
6837
6838void AudioFlinger::ThreadBase::disconnectEffect(const sp<EffectModule>& effect,
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006839 const wp<EffectHandle>& handle,
Glenn Kasten58123c32012-02-03 10:32:24 -08006840 bool unpinIfLast) {
Eric Laurent59255e42011-07-27 19:49:51 -07006841
Mathias Agopian65ab4712010-07-14 17:59:35 -07006842 Mutex::Autolock _l(mLock);
Steve Block3856b092011-10-20 11:56:00 +01006843 ALOGV("disconnectEffect() %p effect %p", this, effect.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07006844 // delete the effect module if removing last handle on it
6845 if (effect->removeHandle(handle) == 0) {
Glenn Kasten58123c32012-02-03 10:32:24 -08006846 if (!effect->isPinned() || unpinIfLast) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07006847 removeEffect_l(effect);
6848 AudioSystem::unregisterEffect(effect->id());
6849 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006850 }
6851}
6852
6853status_t AudioFlinger::PlaybackThread::addEffectChain_l(const sp<EffectChain>& chain)
6854{
6855 int session = chain->sessionId();
6856 int16_t *buffer = mMixBuffer;
6857 bool ownsBuffer = false;
6858
Steve Block3856b092011-10-20 11:56:00 +01006859 ALOGV("addEffectChain_l() %p on thread %p for session %d", chain.get(), this, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006860 if (session > 0) {
6861 // Only one effect chain can be present in direct output thread and it uses
6862 // the mix buffer as input
6863 if (mType != DIRECT) {
6864 size_t numSamples = mFrameCount * mChannelCount;
6865 buffer = new int16_t[numSamples];
6866 memset(buffer, 0, numSamples * sizeof(int16_t));
Steve Block3856b092011-10-20 11:56:00 +01006867 ALOGV("addEffectChain_l() creating new input buffer %p session %d", buffer, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006868 ownsBuffer = true;
6869 }
6870
6871 // Attach all tracks with same session ID to this chain.
6872 for (size_t i = 0; i < mTracks.size(); ++i) {
6873 sp<Track> track = mTracks[i];
6874 if (session == track->sessionId()) {
Steve Block3856b092011-10-20 11:56:00 +01006875 ALOGV("addEffectChain_l() track->setMainBuffer track %p buffer %p", track.get(), buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006876 track->setMainBuffer(buffer);
Eric Laurentb469b942011-05-09 12:09:06 -07006877 chain->incTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006878 }
6879 }
6880
6881 // indicate all active tracks in the chain
6882 for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
6883 sp<Track> track = mActiveTracks[i].promote();
6884 if (track == 0) continue;
6885 if (session == track->sessionId()) {
Steve Block3856b092011-10-20 11:56:00 +01006886 ALOGV("addEffectChain_l() activating track %p on session %d", track.get(), session);
Eric Laurentb469b942011-05-09 12:09:06 -07006887 chain->incActiveTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006888 }
6889 }
6890 }
6891
6892 chain->setInBuffer(buffer, ownsBuffer);
6893 chain->setOutBuffer(mMixBuffer);
Dima Zavinfce7a472011-04-19 22:30:36 -07006894 // Effect chain for session AUDIO_SESSION_OUTPUT_STAGE is inserted at end of effect
Eric Laurentde070132010-07-13 04:45:46 -07006895 // chains list in order to be processed last as it contains output stage effects
Dima Zavinfce7a472011-04-19 22:30:36 -07006896 // Effect chain for session AUDIO_SESSION_OUTPUT_MIX is inserted before
6897 // session AUDIO_SESSION_OUTPUT_STAGE to be processed
Mathias Agopian65ab4712010-07-14 17:59:35 -07006898 // after track specific effects and before output stage
Dima Zavinfce7a472011-04-19 22:30:36 -07006899 // It is therefore mandatory that AUDIO_SESSION_OUTPUT_MIX == 0 and
6900 // that AUDIO_SESSION_OUTPUT_STAGE < AUDIO_SESSION_OUTPUT_MIX
Eric Laurentde070132010-07-13 04:45:46 -07006901 // Effect chain for other sessions are inserted at beginning of effect
6902 // chains list to be processed before output mix effects. Relative order between other
6903 // sessions is not important
Mathias Agopian65ab4712010-07-14 17:59:35 -07006904 size_t size = mEffectChains.size();
6905 size_t i = 0;
6906 for (i = 0; i < size; i++) {
6907 if (mEffectChains[i]->sessionId() < session) break;
6908 }
6909 mEffectChains.insertAt(chain, i);
Eric Laurent59255e42011-07-27 19:49:51 -07006910 checkSuspendOnAddEffectChain_l(chain);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006911
6912 return NO_ERROR;
6913}
6914
6915size_t AudioFlinger::PlaybackThread::removeEffectChain_l(const sp<EffectChain>& chain)
6916{
6917 int session = chain->sessionId();
6918
Steve Block3856b092011-10-20 11:56:00 +01006919 ALOGV("removeEffectChain_l() %p from thread %p for session %d", chain.get(), this, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006920
6921 for (size_t i = 0; i < mEffectChains.size(); i++) {
6922 if (chain == mEffectChains[i]) {
6923 mEffectChains.removeAt(i);
Eric Laurentb469b942011-05-09 12:09:06 -07006924 // detach all active tracks from the chain
6925 for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
6926 sp<Track> track = mActiveTracks[i].promote();
6927 if (track == 0) continue;
6928 if (session == track->sessionId()) {
Steve Block3856b092011-10-20 11:56:00 +01006929 ALOGV("removeEffectChain_l(): stopping track on chain %p for session Id: %d",
Eric Laurentb469b942011-05-09 12:09:06 -07006930 chain.get(), session);
6931 chain->decActiveTrackCnt();
6932 }
6933 }
6934
Mathias Agopian65ab4712010-07-14 17:59:35 -07006935 // detach all tracks with same session ID from this chain
6936 for (size_t i = 0; i < mTracks.size(); ++i) {
6937 sp<Track> track = mTracks[i];
6938 if (session == track->sessionId()) {
6939 track->setMainBuffer(mMixBuffer);
Eric Laurentb469b942011-05-09 12:09:06 -07006940 chain->decTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006941 }
6942 }
Eric Laurentde070132010-07-13 04:45:46 -07006943 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006944 }
6945 }
6946 return mEffectChains.size();
6947}
6948
Eric Laurentde070132010-07-13 04:45:46 -07006949status_t AudioFlinger::PlaybackThread::attachAuxEffect(
6950 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006951{
6952 Mutex::Autolock _l(mLock);
6953 return attachAuxEffect_l(track, EffectId);
6954}
6955
Eric Laurentde070132010-07-13 04:45:46 -07006956status_t AudioFlinger::PlaybackThread::attachAuxEffect_l(
6957 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006958{
6959 status_t status = NO_ERROR;
6960
6961 if (EffectId == 0) {
6962 track->setAuxBuffer(0, NULL);
6963 } else {
Dima Zavinfce7a472011-04-19 22:30:36 -07006964 // Auxiliary effects are always in audio session AUDIO_SESSION_OUTPUT_MIX
6965 sp<EffectModule> effect = getEffect_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006966 if (effect != 0) {
6967 if ((effect->desc().flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6968 track->setAuxBuffer(EffectId, (int32_t *)effect->inBuffer());
6969 } else {
6970 status = INVALID_OPERATION;
6971 }
6972 } else {
6973 status = BAD_VALUE;
6974 }
6975 }
6976 return status;
6977}
6978
6979void AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId)
6980{
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006981 for (size_t i = 0; i < mTracks.size(); ++i) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006982 sp<Track> track = mTracks[i];
6983 if (track->auxEffectId() == effectId) {
6984 attachAuxEffect_l(track, 0);
6985 }
6986 }
6987}
6988
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006989status_t AudioFlinger::RecordThread::addEffectChain_l(const sp<EffectChain>& chain)
6990{
6991 // only one chain per input thread
6992 if (mEffectChains.size() != 0) {
6993 return INVALID_OPERATION;
6994 }
Steve Block3856b092011-10-20 11:56:00 +01006995 ALOGV("addEffectChain_l() %p on thread %p", chain.get(), this);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006996
6997 chain->setInBuffer(NULL);
6998 chain->setOutBuffer(NULL);
6999
Eric Laurent59255e42011-07-27 19:49:51 -07007000 checkSuspendOnAddEffectChain_l(chain);
7001
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007002 mEffectChains.add(chain);
7003
7004 return NO_ERROR;
7005}
7006
7007size_t AudioFlinger::RecordThread::removeEffectChain_l(const sp<EffectChain>& chain)
7008{
Steve Block3856b092011-10-20 11:56:00 +01007009 ALOGV("removeEffectChain_l() %p from thread %p", chain.get(), this);
Steve Block5ff1dd52012-01-05 23:22:43 +00007010 ALOGW_IF(mEffectChains.size() != 1,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007011 "removeEffectChain_l() %p invalid chain size %d on thread %p",
7012 chain.get(), mEffectChains.size(), this);
7013 if (mEffectChains.size() == 1) {
7014 mEffectChains.removeAt(0);
7015 }
7016 return 0;
7017}
7018
Mathias Agopian65ab4712010-07-14 17:59:35 -07007019// ----------------------------------------------------------------------------
7020// EffectModule implementation
7021// ----------------------------------------------------------------------------
7022
7023#undef LOG_TAG
7024#define LOG_TAG "AudioFlinger::EffectModule"
7025
Glenn Kasten9eaa5572012-01-20 13:32:16 -08007026AudioFlinger::EffectModule::EffectModule(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07007027 const wp<AudioFlinger::EffectChain>& chain,
7028 effect_descriptor_t *desc,
7029 int id,
7030 int sessionId)
Glenn Kasten9eaa5572012-01-20 13:32:16 -08007031 : mThread(thread), mChain(chain), mId(id), mSessionId(sessionId), mEffectInterface(NULL),
Eric Laurent59255e42011-07-27 19:49:51 -07007032 mStatus(NO_INIT), mState(IDLE), mSuspended(false)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007033{
Steve Block3856b092011-10-20 11:56:00 +01007034 ALOGV("Constructor %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007035 int lStatus;
Glenn Kasten9eaa5572012-01-20 13:32:16 -08007036 if (thread == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007037 return;
7038 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007039
7040 memcpy(&mDescriptor, desc, sizeof(effect_descriptor_t));
7041
7042 // create effect engine from effect factory
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007043 mStatus = EffectCreate(&desc->uuid, sessionId, thread->id(), &mEffectInterface);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007044
7045 if (mStatus != NO_ERROR) {
7046 return;
7047 }
7048 lStatus = init();
7049 if (lStatus < 0) {
7050 mStatus = lStatus;
7051 goto Error;
7052 }
7053
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007054 if (mSessionId > AUDIO_SESSION_OUTPUT_MIX) {
7055 mPinned = true;
7056 }
Steve Block3856b092011-10-20 11:56:00 +01007057 ALOGV("Constructor success name %s, Interface %p", mDescriptor.name, mEffectInterface);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007058 return;
7059Error:
7060 EffectRelease(mEffectInterface);
7061 mEffectInterface = NULL;
Steve Block3856b092011-10-20 11:56:00 +01007062 ALOGV("Constructor Error %d", mStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007063}
7064
7065AudioFlinger::EffectModule::~EffectModule()
7066{
Steve Block3856b092011-10-20 11:56:00 +01007067 ALOGV("Destructor %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007068 if (mEffectInterface != NULL) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007069 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
7070 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
7071 sp<ThreadBase> thread = mThread.promote();
7072 if (thread != 0) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007073 audio_stream_t *stream = thread->stream();
7074 if (stream != NULL) {
7075 stream->remove_audio_effect(stream, mEffectInterface);
7076 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007077 }
7078 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007079 // release effect engine
7080 EffectRelease(mEffectInterface);
7081 }
7082}
7083
Glenn Kasten435dbe62012-01-30 10:15:48 -08007084status_t AudioFlinger::EffectModule::addHandle(const sp<EffectHandle>& handle)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007085{
7086 status_t status;
7087
7088 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007089 int priority = handle->priority();
7090 size_t size = mHandles.size();
7091 sp<EffectHandle> h;
7092 size_t i;
7093 for (i = 0; i < size; i++) {
7094 h = mHandles[i].promote();
7095 if (h == 0) continue;
7096 if (h->priority() <= priority) break;
7097 }
7098 // if inserted in first place, move effect control from previous owner to this handle
7099 if (i == 0) {
Eric Laurent59255e42011-07-27 19:49:51 -07007100 bool enabled = false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007101 if (h != 0) {
Eric Laurent59255e42011-07-27 19:49:51 -07007102 enabled = h->enabled();
7103 h->setControl(false/*hasControl*/, true /*signal*/, enabled /*enabled*/);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007104 }
Eric Laurent59255e42011-07-27 19:49:51 -07007105 handle->setControl(true /*hasControl*/, false /*signal*/, enabled /*enabled*/);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007106 status = NO_ERROR;
7107 } else {
7108 status = ALREADY_EXISTS;
7109 }
Steve Block3856b092011-10-20 11:56:00 +01007110 ALOGV("addHandle() %p added handle %p in position %d", this, handle.get(), i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007111 mHandles.insertAt(handle, i);
7112 return status;
7113}
7114
7115size_t AudioFlinger::EffectModule::removeHandle(const wp<EffectHandle>& handle)
7116{
7117 Mutex::Autolock _l(mLock);
7118 size_t size = mHandles.size();
7119 size_t i;
7120 for (i = 0; i < size; i++) {
7121 if (mHandles[i] == handle) break;
7122 }
7123 if (i == size) {
7124 return size;
7125 }
Steve Block3856b092011-10-20 11:56:00 +01007126 ALOGV("removeHandle() %p removed handle %p in position %d", this, handle.unsafe_get(), i);
Eric Laurent59255e42011-07-27 19:49:51 -07007127
7128 bool enabled = false;
7129 EffectHandle *hdl = handle.unsafe_get();
Glenn Kastena0d68332012-01-27 16:47:15 -08007130 if (hdl != NULL) {
Steve Block3856b092011-10-20 11:56:00 +01007131 ALOGV("removeHandle() unsafe_get OK");
Eric Laurent59255e42011-07-27 19:49:51 -07007132 enabled = hdl->enabled();
7133 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007134 mHandles.removeAt(i);
7135 size = mHandles.size();
7136 // if removed from first place, move effect control from this handle to next in line
7137 if (i == 0 && size != 0) {
7138 sp<EffectHandle> h = mHandles[0].promote();
7139 if (h != 0) {
Eric Laurent59255e42011-07-27 19:49:51 -07007140 h->setControl(true /*hasControl*/, true /*signal*/ , enabled /*enabled*/);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007141 }
7142 }
7143
Eric Laurentec437d82011-07-26 20:54:46 -07007144 // Prevent calls to process() and other functions on effect interface from now on.
7145 // The effect engine will be released by the destructor when the last strong reference on
7146 // this object is released which can happen after next process is called.
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007147 if (size == 0 && !mPinned) {
Eric Laurentec437d82011-07-26 20:54:46 -07007148 mState = DESTROYED;
Eric Laurentdac69112010-09-28 14:09:57 -07007149 }
7150
Mathias Agopian65ab4712010-07-14 17:59:35 -07007151 return size;
7152}
7153
Eric Laurent59255e42011-07-27 19:49:51 -07007154sp<AudioFlinger::EffectHandle> AudioFlinger::EffectModule::controlHandle()
7155{
7156 Mutex::Autolock _l(mLock);
Glenn Kasten090f0192012-01-30 13:00:02 -08007157 return mHandles.size() != 0 ? mHandles[0].promote() : 0;
Eric Laurent59255e42011-07-27 19:49:51 -07007158}
7159
Glenn Kasten58123c32012-02-03 10:32:24 -08007160void AudioFlinger::EffectModule::disconnect(const wp<EffectHandle>& handle, bool unpinIfLast)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007161{
Glenn Kasten90bebef2012-01-27 15:24:38 -08007162 ALOGV("disconnect() %p handle %p", this, handle.unsafe_get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07007163 // keep a strong reference on this EffectModule to avoid calling the
7164 // destructor before we exit
7165 sp<EffectModule> keep(this);
7166 {
7167 sp<ThreadBase> thread = mThread.promote();
7168 if (thread != 0) {
Glenn Kasten58123c32012-02-03 10:32:24 -08007169 thread->disconnectEffect(keep, handle, unpinIfLast);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007170 }
7171 }
7172}
7173
7174void AudioFlinger::EffectModule::updateState() {
7175 Mutex::Autolock _l(mLock);
7176
7177 switch (mState) {
7178 case RESTART:
7179 reset_l();
7180 // FALL THROUGH
7181
7182 case STARTING:
7183 // clear auxiliary effect input buffer for next accumulation
7184 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
7185 memset(mConfig.inputCfg.buffer.raw,
7186 0,
7187 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
7188 }
7189 start_l();
7190 mState = ACTIVE;
7191 break;
7192 case STOPPING:
7193 stop_l();
7194 mDisableWaitCnt = mMaxDisableWaitCnt;
7195 mState = STOPPED;
7196 break;
7197 case STOPPED:
7198 // mDisableWaitCnt is forced to 1 by process() when the engine indicates the end of the
7199 // turn off sequence.
7200 if (--mDisableWaitCnt == 0) {
7201 reset_l();
7202 mState = IDLE;
7203 }
7204 break;
Eric Laurentec437d82011-07-26 20:54:46 -07007205 default: //IDLE , ACTIVE, DESTROYED
Mathias Agopian65ab4712010-07-14 17:59:35 -07007206 break;
7207 }
7208}
7209
7210void AudioFlinger::EffectModule::process()
7211{
7212 Mutex::Autolock _l(mLock);
7213
Eric Laurentec437d82011-07-26 20:54:46 -07007214 if (mState == DESTROYED || mEffectInterface == NULL ||
Mathias Agopian65ab4712010-07-14 17:59:35 -07007215 mConfig.inputCfg.buffer.raw == NULL ||
7216 mConfig.outputCfg.buffer.raw == NULL) {
7217 return;
7218 }
7219
Eric Laurent8f45bd72010-08-31 13:50:07 -07007220 if (isProcessEnabled()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007221 // do 32 bit to 16 bit conversion for auxiliary effect input buffer
7222 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Glenn Kasten3b21c502011-12-15 09:52:39 -08007223 ditherAndClamp(mConfig.inputCfg.buffer.s32,
Mathias Agopian65ab4712010-07-14 17:59:35 -07007224 mConfig.inputCfg.buffer.s32,
Eric Laurentde070132010-07-13 04:45:46 -07007225 mConfig.inputCfg.buffer.frameCount/2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007226 }
7227
7228 // do the actual processing in the effect engine
7229 int ret = (*mEffectInterface)->process(mEffectInterface,
7230 &mConfig.inputCfg.buffer,
7231 &mConfig.outputCfg.buffer);
7232
7233 // force transition to IDLE state when engine is ready
7234 if (mState == STOPPED && ret == -ENODATA) {
7235 mDisableWaitCnt = 1;
7236 }
7237
7238 // clear auxiliary effect input buffer for next accumulation
7239 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Eric Laurent73337482011-01-19 18:36:13 -08007240 memset(mConfig.inputCfg.buffer.raw, 0,
7241 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07007242 }
7243 } else if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_INSERT &&
Eric Laurent73337482011-01-19 18:36:13 -08007244 mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
7245 // If an insert effect is idle and input buffer is different from output buffer,
7246 // accumulate input onto output
Mathias Agopian65ab4712010-07-14 17:59:35 -07007247 sp<EffectChain> chain = mChain.promote();
Eric Laurentb469b942011-05-09 12:09:06 -07007248 if (chain != 0 && chain->activeTrackCnt() != 0) {
Eric Laurent73337482011-01-19 18:36:13 -08007249 size_t frameCnt = mConfig.inputCfg.buffer.frameCount * 2; //always stereo here
7250 int16_t *in = mConfig.inputCfg.buffer.s16;
7251 int16_t *out = mConfig.outputCfg.buffer.s16;
7252 for (size_t i = 0; i < frameCnt; i++) {
7253 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007254 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007255 }
7256 }
7257}
7258
7259void AudioFlinger::EffectModule::reset_l()
7260{
7261 if (mEffectInterface == NULL) {
7262 return;
7263 }
7264 (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_RESET, 0, NULL, 0, NULL);
7265}
7266
7267status_t AudioFlinger::EffectModule::configure()
7268{
7269 uint32_t channels;
7270 if (mEffectInterface == NULL) {
7271 return NO_INIT;
7272 }
7273
7274 sp<ThreadBase> thread = mThread.promote();
7275 if (thread == 0) {
7276 return DEAD_OBJECT;
7277 }
7278
7279 // TODO: handle configuration of effects replacing track process
7280 if (thread->channelCount() == 1) {
Eric Laurente1315cf2011-05-17 19:16:02 -07007281 channels = AUDIO_CHANNEL_OUT_MONO;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007282 } else {
Eric Laurente1315cf2011-05-17 19:16:02 -07007283 channels = AUDIO_CHANNEL_OUT_STEREO;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007284 }
7285
7286 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Eric Laurente1315cf2011-05-17 19:16:02 -07007287 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_MONO;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007288 } else {
7289 mConfig.inputCfg.channels = channels;
7290 }
7291 mConfig.outputCfg.channels = channels;
Eric Laurente1315cf2011-05-17 19:16:02 -07007292 mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
7293 mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007294 mConfig.inputCfg.samplingRate = thread->sampleRate();
7295 mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
7296 mConfig.inputCfg.bufferProvider.cookie = NULL;
7297 mConfig.inputCfg.bufferProvider.getBuffer = NULL;
7298 mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
7299 mConfig.outputCfg.bufferProvider.cookie = NULL;
7300 mConfig.outputCfg.bufferProvider.getBuffer = NULL;
7301 mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
7302 mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
7303 // Insert effect:
Dima Zavinfce7a472011-04-19 22:30:36 -07007304 // - in session AUDIO_SESSION_OUTPUT_MIX or AUDIO_SESSION_OUTPUT_STAGE,
Eric Laurentde070132010-07-13 04:45:46 -07007305 // always overwrites output buffer: input buffer == output buffer
Mathias Agopian65ab4712010-07-14 17:59:35 -07007306 // - in other sessions:
7307 // last effect in the chain accumulates in output buffer: input buffer != output buffer
7308 // other effect: overwrites output buffer: input buffer == output buffer
7309 // Auxiliary effect:
7310 // accumulates in output buffer: input buffer != output buffer
7311 // Therefore: accumulate <=> input buffer != output buffer
7312 if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
7313 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
7314 } else {
7315 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
7316 }
7317 mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
7318 mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
7319 mConfig.inputCfg.buffer.frameCount = thread->frameCount();
7320 mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
7321
Steve Block3856b092011-10-20 11:56:00 +01007322 ALOGV("configure() %p thread %p buffer %p framecount %d",
Eric Laurentde070132010-07-13 04:45:46 -07007323 this, thread.get(), mConfig.inputCfg.buffer.raw, mConfig.inputCfg.buffer.frameCount);
7324
Mathias Agopian65ab4712010-07-14 17:59:35 -07007325 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07007326 uint32_t size = sizeof(int);
7327 status_t status = (*mEffectInterface)->command(mEffectInterface,
Eric Laurent3d5188b2011-12-16 15:30:36 -08007328 EFFECT_CMD_SET_CONFIG,
Eric Laurent25f43952010-07-28 05:40:18 -07007329 sizeof(effect_config_t),
7330 &mConfig,
7331 &size,
7332 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007333 if (status == 0) {
7334 status = cmdStatus;
7335 }
7336
7337 mMaxDisableWaitCnt = (MAX_DISABLE_TIME_MS * mConfig.outputCfg.samplingRate) /
7338 (1000 * mConfig.outputCfg.buffer.frameCount);
7339
7340 return status;
7341}
7342
7343status_t AudioFlinger::EffectModule::init()
7344{
7345 Mutex::Autolock _l(mLock);
7346 if (mEffectInterface == NULL) {
7347 return NO_INIT;
7348 }
7349 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07007350 uint32_t size = sizeof(status_t);
7351 status_t status = (*mEffectInterface)->command(mEffectInterface,
7352 EFFECT_CMD_INIT,
7353 0,
7354 NULL,
7355 &size,
7356 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007357 if (status == 0) {
7358 status = cmdStatus;
7359 }
7360 return status;
7361}
7362
Eric Laurentec35a142011-10-05 17:42:25 -07007363status_t AudioFlinger::EffectModule::start()
7364{
7365 Mutex::Autolock _l(mLock);
7366 return start_l();
7367}
7368
Mathias Agopian65ab4712010-07-14 17:59:35 -07007369status_t AudioFlinger::EffectModule::start_l()
7370{
7371 if (mEffectInterface == NULL) {
7372 return NO_INIT;
7373 }
7374 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07007375 uint32_t size = sizeof(status_t);
7376 status_t status = (*mEffectInterface)->command(mEffectInterface,
7377 EFFECT_CMD_ENABLE,
7378 0,
7379 NULL,
7380 &size,
7381 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007382 if (status == 0) {
7383 status = cmdStatus;
7384 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007385 if (status == 0 &&
7386 ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
7387 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
7388 sp<ThreadBase> thread = mThread.promote();
7389 if (thread != 0) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007390 audio_stream_t *stream = thread->stream();
7391 if (stream != NULL) {
7392 stream->add_audio_effect(stream, mEffectInterface);
7393 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007394 }
7395 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007396 return status;
7397}
7398
Eric Laurentec437d82011-07-26 20:54:46 -07007399status_t AudioFlinger::EffectModule::stop()
7400{
7401 Mutex::Autolock _l(mLock);
7402 return stop_l();
7403}
7404
Mathias Agopian65ab4712010-07-14 17:59:35 -07007405status_t AudioFlinger::EffectModule::stop_l()
7406{
7407 if (mEffectInterface == NULL) {
7408 return NO_INIT;
7409 }
7410 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07007411 uint32_t size = sizeof(status_t);
7412 status_t status = (*mEffectInterface)->command(mEffectInterface,
7413 EFFECT_CMD_DISABLE,
7414 0,
7415 NULL,
7416 &size,
7417 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007418 if (status == 0) {
7419 status = cmdStatus;
7420 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007421 if (status == 0 &&
7422 ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
7423 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
7424 sp<ThreadBase> thread = mThread.promote();
7425 if (thread != 0) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007426 audio_stream_t *stream = thread->stream();
7427 if (stream != NULL) {
7428 stream->remove_audio_effect(stream, mEffectInterface);
7429 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007430 }
7431 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007432 return status;
7433}
7434
Eric Laurent25f43952010-07-28 05:40:18 -07007435status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
7436 uint32_t cmdSize,
7437 void *pCmdData,
7438 uint32_t *replySize,
7439 void *pReplyData)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007440{
7441 Mutex::Autolock _l(mLock);
Steve Block3856b092011-10-20 11:56:00 +01007442// ALOGV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007443
Eric Laurentec437d82011-07-26 20:54:46 -07007444 if (mState == DESTROYED || mEffectInterface == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007445 return NO_INIT;
7446 }
Eric Laurent25f43952010-07-28 05:40:18 -07007447 status_t status = (*mEffectInterface)->command(mEffectInterface,
7448 cmdCode,
7449 cmdSize,
7450 pCmdData,
7451 replySize,
7452 pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007453 if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
Eric Laurent25f43952010-07-28 05:40:18 -07007454 uint32_t size = (replySize == NULL) ? 0 : *replySize;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007455 for (size_t i = 1; i < mHandles.size(); i++) {
7456 sp<EffectHandle> h = mHandles[i].promote();
7457 if (h != 0) {
7458 h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
7459 }
7460 }
7461 }
7462 return status;
7463}
7464
7465status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
7466{
Eric Laurentdb7c0792011-08-10 10:37:50 -07007467
Mathias Agopian65ab4712010-07-14 17:59:35 -07007468 Mutex::Autolock _l(mLock);
Steve Block3856b092011-10-20 11:56:00 +01007469 ALOGV("setEnabled %p enabled %d", this, enabled);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007470
7471 if (enabled != isEnabled()) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07007472 status_t status = AudioSystem::setEffectEnabled(mId, enabled);
7473 if (enabled && status != NO_ERROR) {
7474 return status;
7475 }
7476
Mathias Agopian65ab4712010-07-14 17:59:35 -07007477 switch (mState) {
7478 // going from disabled to enabled
7479 case IDLE:
7480 mState = STARTING;
7481 break;
7482 case STOPPED:
7483 mState = RESTART;
7484 break;
7485 case STOPPING:
7486 mState = ACTIVE;
7487 break;
7488
7489 // going from enabled to disabled
7490 case RESTART:
Eric Laurent8f45bd72010-08-31 13:50:07 -07007491 mState = STOPPED;
7492 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007493 case STARTING:
7494 mState = IDLE;
7495 break;
7496 case ACTIVE:
7497 mState = STOPPING;
7498 break;
Eric Laurentec437d82011-07-26 20:54:46 -07007499 case DESTROYED:
7500 return NO_ERROR; // simply ignore as we are being destroyed
Mathias Agopian65ab4712010-07-14 17:59:35 -07007501 }
7502 for (size_t i = 1; i < mHandles.size(); i++) {
7503 sp<EffectHandle> h = mHandles[i].promote();
7504 if (h != 0) {
7505 h->setEnabled(enabled);
7506 }
7507 }
7508 }
7509 return NO_ERROR;
7510}
7511
Glenn Kastenc59c0042012-02-02 14:06:11 -08007512bool AudioFlinger::EffectModule::isEnabled() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007513{
7514 switch (mState) {
7515 case RESTART:
7516 case STARTING:
7517 case ACTIVE:
7518 return true;
7519 case IDLE:
7520 case STOPPING:
7521 case STOPPED:
Eric Laurentec437d82011-07-26 20:54:46 -07007522 case DESTROYED:
Mathias Agopian65ab4712010-07-14 17:59:35 -07007523 default:
7524 return false;
7525 }
7526}
7527
Glenn Kastenc59c0042012-02-02 14:06:11 -08007528bool AudioFlinger::EffectModule::isProcessEnabled() const
Eric Laurent8f45bd72010-08-31 13:50:07 -07007529{
7530 switch (mState) {
7531 case RESTART:
7532 case ACTIVE:
7533 case STOPPING:
7534 case STOPPED:
7535 return true;
7536 case IDLE:
7537 case STARTING:
Eric Laurentec437d82011-07-26 20:54:46 -07007538 case DESTROYED:
Eric Laurent8f45bd72010-08-31 13:50:07 -07007539 default:
7540 return false;
7541 }
7542}
7543
Mathias Agopian65ab4712010-07-14 17:59:35 -07007544status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
7545{
7546 Mutex::Autolock _l(mLock);
7547 status_t status = NO_ERROR;
7548
7549 // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
7550 // if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
Eric Laurent8f45bd72010-08-31 13:50:07 -07007551 if (isProcessEnabled() &&
Eric Laurentf997cab2010-07-19 06:24:46 -07007552 ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL ||
7553 (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_IND)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007554 status_t cmdStatus;
7555 uint32_t volume[2];
7556 uint32_t *pVolume = NULL;
Eric Laurent25f43952010-07-28 05:40:18 -07007557 uint32_t size = sizeof(volume);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007558 volume[0] = *left;
7559 volume[1] = *right;
7560 if (controller) {
7561 pVolume = volume;
7562 }
Eric Laurent25f43952010-07-28 05:40:18 -07007563 status = (*mEffectInterface)->command(mEffectInterface,
7564 EFFECT_CMD_SET_VOLUME,
7565 size,
7566 volume,
7567 &size,
7568 pVolume);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007569 if (controller && status == NO_ERROR && size == sizeof(volume)) {
7570 *left = volume[0];
7571 *right = volume[1];
7572 }
7573 }
7574 return status;
7575}
7576
7577status_t AudioFlinger::EffectModule::setDevice(uint32_t device)
7578{
7579 Mutex::Autolock _l(mLock);
7580 status_t status = NO_ERROR;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007581 if (device && (mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
7582 // audio pre processing modules on RecordThread can receive both output and
7583 // input device indication in the same call
7584 uint32_t dev = device & AUDIO_DEVICE_OUT_ALL;
7585 if (dev) {
7586 status_t cmdStatus;
7587 uint32_t size = sizeof(status_t);
7588
7589 status = (*mEffectInterface)->command(mEffectInterface,
7590 EFFECT_CMD_SET_DEVICE,
7591 sizeof(uint32_t),
7592 &dev,
7593 &size,
7594 &cmdStatus);
7595 if (status == NO_ERROR) {
7596 status = cmdStatus;
7597 }
7598 }
7599 dev = device & AUDIO_DEVICE_IN_ALL;
7600 if (dev) {
7601 status_t cmdStatus;
7602 uint32_t size = sizeof(status_t);
7603
7604 status_t status2 = (*mEffectInterface)->command(mEffectInterface,
7605 EFFECT_CMD_SET_INPUT_DEVICE,
7606 sizeof(uint32_t),
7607 &dev,
7608 &size,
7609 &cmdStatus);
7610 if (status2 == NO_ERROR) {
7611 status2 = cmdStatus;
7612 }
7613 if (status == NO_ERROR) {
7614 status = status2;
7615 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007616 }
7617 }
7618 return status;
7619}
7620
Glenn Kastenf78aee72012-01-04 11:00:47 -08007621status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007622{
7623 Mutex::Autolock _l(mLock);
7624 status_t status = NO_ERROR;
7625 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007626 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07007627 uint32_t size = sizeof(status_t);
7628 status = (*mEffectInterface)->command(mEffectInterface,
7629 EFFECT_CMD_SET_AUDIO_MODE,
Glenn Kastenf78aee72012-01-04 11:00:47 -08007630 sizeof(audio_mode_t),
Eric Laurente1315cf2011-05-17 19:16:02 -07007631 &mode,
Eric Laurent25f43952010-07-28 05:40:18 -07007632 &size,
7633 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007634 if (status == NO_ERROR) {
7635 status = cmdStatus;
7636 }
7637 }
7638 return status;
7639}
7640
Eric Laurent59255e42011-07-27 19:49:51 -07007641void AudioFlinger::EffectModule::setSuspended(bool suspended)
7642{
7643 Mutex::Autolock _l(mLock);
7644 mSuspended = suspended;
7645}
Glenn Kastena3a85482012-01-04 11:01:11 -08007646
7647bool AudioFlinger::EffectModule::suspended() const
Eric Laurent59255e42011-07-27 19:49:51 -07007648{
7649 Mutex::Autolock _l(mLock);
7650 return mSuspended;
7651}
7652
Mathias Agopian65ab4712010-07-14 17:59:35 -07007653status_t AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args)
7654{
7655 const size_t SIZE = 256;
7656 char buffer[SIZE];
7657 String8 result;
7658
7659 snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
7660 result.append(buffer);
7661
7662 bool locked = tryLock(mLock);
7663 // failed to lock - AudioFlinger is probably deadlocked
7664 if (!locked) {
7665 result.append("\t\tCould not lock Fx mutex:\n");
7666 }
7667
7668 result.append("\t\tSession Status State Engine:\n");
7669 snprintf(buffer, SIZE, "\t\t%05d %03d %03d 0x%08x\n",
7670 mSessionId, mStatus, mState, (uint32_t)mEffectInterface);
7671 result.append(buffer);
7672
7673 result.append("\t\tDescriptor:\n");
7674 snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
7675 mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
7676 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],mDescriptor.uuid.node[2],
7677 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
7678 result.append(buffer);
7679 snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
7680 mDescriptor.type.timeLow, mDescriptor.type.timeMid, mDescriptor.type.timeHiAndVersion,
7681 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],mDescriptor.type.node[2],
7682 mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
7683 result.append(buffer);
Eric Laurente1315cf2011-05-17 19:16:02 -07007684 snprintf(buffer, SIZE, "\t\t- apiVersion: %08X\n\t\t- flags: %08X\n",
Mathias Agopian65ab4712010-07-14 17:59:35 -07007685 mDescriptor.apiVersion,
7686 mDescriptor.flags);
7687 result.append(buffer);
7688 snprintf(buffer, SIZE, "\t\t- name: %s\n",
7689 mDescriptor.name);
7690 result.append(buffer);
7691 snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
7692 mDescriptor.implementor);
7693 result.append(buffer);
7694
7695 result.append("\t\t- Input configuration:\n");
7696 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
7697 snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
7698 (uint32_t)mConfig.inputCfg.buffer.raw,
7699 mConfig.inputCfg.buffer.frameCount,
7700 mConfig.inputCfg.samplingRate,
7701 mConfig.inputCfg.channels,
7702 mConfig.inputCfg.format);
7703 result.append(buffer);
7704
7705 result.append("\t\t- Output configuration:\n");
7706 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
7707 snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
7708 (uint32_t)mConfig.outputCfg.buffer.raw,
7709 mConfig.outputCfg.buffer.frameCount,
7710 mConfig.outputCfg.samplingRate,
7711 mConfig.outputCfg.channels,
7712 mConfig.outputCfg.format);
7713 result.append(buffer);
7714
7715 snprintf(buffer, SIZE, "\t\t%d Clients:\n", mHandles.size());
7716 result.append(buffer);
7717 result.append("\t\t\tPid Priority Ctrl Locked client server\n");
7718 for (size_t i = 0; i < mHandles.size(); ++i) {
7719 sp<EffectHandle> handle = mHandles[i].promote();
7720 if (handle != 0) {
7721 handle->dump(buffer, SIZE);
7722 result.append(buffer);
7723 }
7724 }
7725
7726 result.append("\n");
7727
7728 write(fd, result.string(), result.length());
7729
7730 if (locked) {
7731 mLock.unlock();
7732 }
7733
7734 return NO_ERROR;
7735}
7736
7737// ----------------------------------------------------------------------------
7738// EffectHandle implementation
7739// ----------------------------------------------------------------------------
7740
7741#undef LOG_TAG
7742#define LOG_TAG "AudioFlinger::EffectHandle"
7743
7744AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
7745 const sp<AudioFlinger::Client>& client,
7746 const sp<IEffectClient>& effectClient,
7747 int32_t priority)
7748 : BnEffect(),
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007749 mEffect(effect), mEffectClient(effectClient), mClient(client), mCblk(NULL),
Eric Laurent59255e42011-07-27 19:49:51 -07007750 mPriority(priority), mHasControl(false), mEnabled(false)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007751{
Steve Block3856b092011-10-20 11:56:00 +01007752 ALOGV("constructor %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007753
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007754 if (client == 0) {
7755 return;
7756 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007757 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
7758 mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
7759 if (mCblkMemory != 0) {
7760 mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer());
7761
Glenn Kastena0d68332012-01-27 16:47:15 -08007762 if (mCblk != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007763 new(mCblk) effect_param_cblk_t();
7764 mBuffer = (uint8_t *)mCblk + bufOffset;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007765 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007766 } else {
Steve Block29357bc2012-01-06 19:20:56 +00007767 ALOGE("not enough memory for Effect size=%u", EFFECT_PARAM_BUFFER_SIZE + sizeof(effect_param_cblk_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07007768 return;
7769 }
7770}
7771
7772AudioFlinger::EffectHandle::~EffectHandle()
7773{
Steve Block3856b092011-10-20 11:56:00 +01007774 ALOGV("Destructor %p", this);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007775 disconnect(false);
Steve Block3856b092011-10-20 11:56:00 +01007776 ALOGV("Destructor DONE %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007777}
7778
7779status_t AudioFlinger::EffectHandle::enable()
7780{
Steve Block3856b092011-10-20 11:56:00 +01007781 ALOGV("enable %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007782 if (!mHasControl) return INVALID_OPERATION;
7783 if (mEffect == 0) return DEAD_OBJECT;
7784
Eric Laurentdb7c0792011-08-10 10:37:50 -07007785 if (mEnabled) {
7786 return NO_ERROR;
7787 }
7788
Eric Laurent59255e42011-07-27 19:49:51 -07007789 mEnabled = true;
7790
7791 sp<ThreadBase> thread = mEffect->thread().promote();
7792 if (thread != 0) {
7793 thread->checkSuspendOnEffectEnabled(mEffect, true, mEffect->sessionId());
7794 }
7795
7796 // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
7797 if (mEffect->suspended()) {
7798 return NO_ERROR;
7799 }
7800
Eric Laurentdb7c0792011-08-10 10:37:50 -07007801 status_t status = mEffect->setEnabled(true);
7802 if (status != NO_ERROR) {
7803 if (thread != 0) {
7804 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
7805 }
7806 mEnabled = false;
7807 }
7808 return status;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007809}
7810
7811status_t AudioFlinger::EffectHandle::disable()
7812{
Steve Block3856b092011-10-20 11:56:00 +01007813 ALOGV("disable %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007814 if (!mHasControl) return INVALID_OPERATION;
Eric Laurent59255e42011-07-27 19:49:51 -07007815 if (mEffect == 0) return DEAD_OBJECT;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007816
Eric Laurentdb7c0792011-08-10 10:37:50 -07007817 if (!mEnabled) {
7818 return NO_ERROR;
7819 }
Eric Laurent59255e42011-07-27 19:49:51 -07007820 mEnabled = false;
7821
7822 if (mEffect->suspended()) {
7823 return NO_ERROR;
7824 }
7825
7826 status_t status = mEffect->setEnabled(false);
7827
7828 sp<ThreadBase> thread = mEffect->thread().promote();
7829 if (thread != 0) {
7830 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
7831 }
7832
7833 return status;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007834}
7835
7836void AudioFlinger::EffectHandle::disconnect()
7837{
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007838 disconnect(true);
7839}
7840
Glenn Kasten58123c32012-02-03 10:32:24 -08007841void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast)
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007842{
Glenn Kasten58123c32012-02-03 10:32:24 -08007843 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
Mathias Agopian65ab4712010-07-14 17:59:35 -07007844 if (mEffect == 0) {
7845 return;
7846 }
Glenn Kasten58123c32012-02-03 10:32:24 -08007847 mEffect->disconnect(this, unpinIfLast);
Eric Laurent59255e42011-07-27 19:49:51 -07007848
Eric Laurenta85a74a2011-10-19 11:44:54 -07007849 if (mHasControl && mEnabled) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07007850 sp<ThreadBase> thread = mEffect->thread().promote();
7851 if (thread != 0) {
7852 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
7853 }
Eric Laurent59255e42011-07-27 19:49:51 -07007854 }
7855
Mathias Agopian65ab4712010-07-14 17:59:35 -07007856 // release sp on module => module destructor can be called now
7857 mEffect.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007858 if (mClient != 0) {
Glenn Kastena0d68332012-01-27 16:47:15 -08007859 if (mCblk != NULL) {
Glenn Kasten1a0ae5b2012-02-03 10:24:48 -08007860 // unlike ~TrackBase(), mCblk is never a local new, so don't delete
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007861 mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
7862 }
Glenn Kastendbfafaf2012-01-25 15:27:15 -08007863 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Glenn Kasten98ec94c2012-01-25 14:28:29 -08007864 // Client destructor must run with AudioFlinger mutex locked
Mathias Agopian65ab4712010-07-14 17:59:35 -07007865 Mutex::Autolock _l(mClient->audioFlinger()->mLock);
7866 mClient.clear();
7867 }
7868}
7869
Eric Laurent25f43952010-07-28 05:40:18 -07007870status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
7871 uint32_t cmdSize,
7872 void *pCmdData,
7873 uint32_t *replySize,
7874 void *pReplyData)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007875{
Steve Block3856b092011-10-20 11:56:00 +01007876// ALOGV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
Eric Laurent25f43952010-07-28 05:40:18 -07007877// cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07007878
7879 // only get parameter command is permitted for applications not controlling the effect
7880 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
7881 return INVALID_OPERATION;
7882 }
7883 if (mEffect == 0) return DEAD_OBJECT;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007884 if (mClient == 0) return INVALID_OPERATION;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007885
7886 // handle commands that are not forwarded transparently to effect engine
7887 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
7888 // No need to trylock() here as this function is executed in the binder thread serving a particular client process:
7889 // no risk to block the whole media server process or mixer threads is we are stuck here
7890 Mutex::Autolock _l(mCblk->lock);
7891 if (mCblk->clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
7892 mCblk->serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
7893 mCblk->serverIndex = 0;
7894 mCblk->clientIndex = 0;
7895 return BAD_VALUE;
7896 }
7897 status_t status = NO_ERROR;
7898 while (mCblk->serverIndex < mCblk->clientIndex) {
7899 int reply;
Eric Laurent25f43952010-07-28 05:40:18 -07007900 uint32_t rsize = sizeof(int);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007901 int *p = (int *)(mBuffer + mCblk->serverIndex);
7902 int size = *p++;
7903 if (((uint8_t *)p + size) > mBuffer + mCblk->clientIndex) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007904 ALOGW("command(): invalid parameter block size");
Mathias Agopian65ab4712010-07-14 17:59:35 -07007905 break;
7906 }
7907 effect_param_t *param = (effect_param_t *)p;
7908 if (param->psize == 0 || param->vsize == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007909 ALOGW("command(): null parameter or value size");
Mathias Agopian65ab4712010-07-14 17:59:35 -07007910 mCblk->serverIndex += size;
7911 continue;
7912 }
Eric Laurent25f43952010-07-28 05:40:18 -07007913 uint32_t psize = sizeof(effect_param_t) +
7914 ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) +
7915 param->vsize;
7916 status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM,
7917 psize,
7918 p,
7919 &rsize,
7920 &reply);
Eric Laurentaeae3de2010-09-02 11:56:55 -07007921 // stop at first error encountered
7922 if (ret != NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007923 status = ret;
Eric Laurentaeae3de2010-09-02 11:56:55 -07007924 *(int *)pReplyData = reply;
7925 break;
7926 } else if (reply != NO_ERROR) {
7927 *(int *)pReplyData = reply;
7928 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007929 }
7930 mCblk->serverIndex += size;
7931 }
7932 mCblk->serverIndex = 0;
7933 mCblk->clientIndex = 0;
7934 return status;
7935 } else if (cmdCode == EFFECT_CMD_ENABLE) {
Eric Laurentaeae3de2010-09-02 11:56:55 -07007936 *(int *)pReplyData = NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007937 return enable();
7938 } else if (cmdCode == EFFECT_CMD_DISABLE) {
Eric Laurentaeae3de2010-09-02 11:56:55 -07007939 *(int *)pReplyData = NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007940 return disable();
7941 }
7942
7943 return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
7944}
7945
Eric Laurent59255e42011-07-27 19:49:51 -07007946void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007947{
Steve Block3856b092011-10-20 11:56:00 +01007948 ALOGV("setControl %p control %d", this, hasControl);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007949
7950 mHasControl = hasControl;
Eric Laurent59255e42011-07-27 19:49:51 -07007951 mEnabled = enabled;
7952
Mathias Agopian65ab4712010-07-14 17:59:35 -07007953 if (signal && mEffectClient != 0) {
7954 mEffectClient->controlStatusChanged(hasControl);
7955 }
7956}
7957
Eric Laurent25f43952010-07-28 05:40:18 -07007958void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
7959 uint32_t cmdSize,
7960 void *pCmdData,
7961 uint32_t replySize,
7962 void *pReplyData)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007963{
7964 if (mEffectClient != 0) {
7965 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
7966 }
7967}
7968
7969
7970
7971void AudioFlinger::EffectHandle::setEnabled(bool enabled)
7972{
7973 if (mEffectClient != 0) {
7974 mEffectClient->enableStatusChanged(enabled);
7975 }
7976}
7977
7978status_t AudioFlinger::EffectHandle::onTransact(
7979 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
7980{
7981 return BnEffect::onTransact(code, data, reply, flags);
7982}
7983
7984
7985void AudioFlinger::EffectHandle::dump(char* buffer, size_t size)
7986{
Glenn Kastena0d68332012-01-27 16:47:15 -08007987 bool locked = mCblk != NULL && tryLock(mCblk->lock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007988
7989 snprintf(buffer, size, "\t\t\t%05d %05d %01u %01u %05u %05u\n",
Glenn Kasten44deb052012-02-05 18:09:08 -08007990 (mClient == 0) ? getpid_cached : mClient->pid(),
Mathias Agopian65ab4712010-07-14 17:59:35 -07007991 mPriority,
7992 mHasControl,
7993 !locked,
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007994 mCblk ? mCblk->clientIndex : 0,
7995 mCblk ? mCblk->serverIndex : 0
Mathias Agopian65ab4712010-07-14 17:59:35 -07007996 );
7997
7998 if (locked) {
7999 mCblk->lock.unlock();
8000 }
8001}
8002
8003#undef LOG_TAG
8004#define LOG_TAG "AudioFlinger::EffectChain"
8005
Glenn Kasten9eaa5572012-01-20 13:32:16 -08008006AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07008007 int sessionId)
Glenn Kasten9eaa5572012-01-20 13:32:16 -08008008 : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
Eric Laurentb469b942011-05-09 12:09:06 -07008009 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
8010 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008011{
Dima Zavinfce7a472011-04-19 22:30:36 -07008012 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Glenn Kasten9eaa5572012-01-20 13:32:16 -08008013 if (thread == NULL) {
Eric Laurent544fe9b2011-11-11 15:42:52 -08008014 return;
8015 }
8016 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
8017 thread->frameCount();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008018}
8019
8020AudioFlinger::EffectChain::~EffectChain()
8021{
8022 if (mOwnInBuffer) {
8023 delete mInBuffer;
8024 }
8025
8026}
8027
Eric Laurent59255e42011-07-27 19:49:51 -07008028// getEffectFromDesc_l() must be called with ThreadBase::mLock held
Eric Laurentcab11242010-07-15 12:50:15 -07008029sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(effect_descriptor_t *descriptor)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008030{
Mathias Agopian65ab4712010-07-14 17:59:35 -07008031 size_t size = mEffects.size();
8032
8033 for (size_t i = 0; i < size; i++) {
8034 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
Glenn Kasten090f0192012-01-30 13:00:02 -08008035 return mEffects[i];
Mathias Agopian65ab4712010-07-14 17:59:35 -07008036 }
8037 }
Glenn Kasten090f0192012-01-30 13:00:02 -08008038 return 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008039}
8040
Eric Laurent59255e42011-07-27 19:49:51 -07008041// getEffectFromId_l() must be called with ThreadBase::mLock held
Eric Laurentcab11242010-07-15 12:50:15 -07008042sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008043{
Mathias Agopian65ab4712010-07-14 17:59:35 -07008044 size_t size = mEffects.size();
8045
8046 for (size_t i = 0; i < size; i++) {
Eric Laurentde070132010-07-13 04:45:46 -07008047 // by convention, return first effect if id provided is 0 (0 is never a valid id)
8048 if (id == 0 || mEffects[i]->id() == id) {
Glenn Kasten090f0192012-01-30 13:00:02 -08008049 return mEffects[i];
Mathias Agopian65ab4712010-07-14 17:59:35 -07008050 }
8051 }
Glenn Kasten090f0192012-01-30 13:00:02 -08008052 return 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008053}
8054
Eric Laurent59255e42011-07-27 19:49:51 -07008055// getEffectFromType_l() must be called with ThreadBase::mLock held
8056sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
8057 const effect_uuid_t *type)
8058{
Eric Laurent59255e42011-07-27 19:49:51 -07008059 size_t size = mEffects.size();
8060
8061 for (size_t i = 0; i < size; i++) {
8062 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
Glenn Kasten090f0192012-01-30 13:00:02 -08008063 return mEffects[i];
Eric Laurent59255e42011-07-27 19:49:51 -07008064 }
8065 }
Glenn Kasten090f0192012-01-30 13:00:02 -08008066 return 0;
Eric Laurent59255e42011-07-27 19:49:51 -07008067}
8068
Mathias Agopian65ab4712010-07-14 17:59:35 -07008069// Must be called with EffectChain::mLock locked
8070void AudioFlinger::EffectChain::process_l()
8071{
Eric Laurentdac69112010-09-28 14:09:57 -07008072 sp<ThreadBase> thread = mThread.promote();
8073 if (thread == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00008074 ALOGW("process_l(): cannot promote mixer thread");
Eric Laurentdac69112010-09-28 14:09:57 -07008075 return;
8076 }
Dima Zavinfce7a472011-04-19 22:30:36 -07008077 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
8078 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Eric Laurent544fe9b2011-11-11 15:42:52 -08008079 // always process effects unless no more tracks are on the session and the effect tail
8080 // has been rendered
8081 bool doProcess = true;
Eric Laurentdac69112010-09-28 14:09:57 -07008082 if (!isGlobalSession) {
Eric Laurent544fe9b2011-11-11 15:42:52 -08008083 bool tracksOnSession = (trackCnt() != 0);
Eric Laurentb469b942011-05-09 12:09:06 -07008084
Eric Laurent544fe9b2011-11-11 15:42:52 -08008085 if (!tracksOnSession && mTailBufferCount == 0) {
8086 doProcess = false;
8087 }
8088
8089 if (activeTrackCnt() == 0) {
8090 // if no track is active and the effect tail has not been rendered,
8091 // the input buffer must be cleared here as the mixer process will not do it
8092 if (tracksOnSession || mTailBufferCount > 0) {
8093 size_t numSamples = thread->frameCount() * thread->channelCount();
8094 memset(mInBuffer, 0, numSamples * sizeof(int16_t));
8095 if (mTailBufferCount > 0) {
8096 mTailBufferCount--;
8097 }
8098 }
8099 }
Eric Laurentdac69112010-09-28 14:09:57 -07008100 }
8101
Mathias Agopian65ab4712010-07-14 17:59:35 -07008102 size_t size = mEffects.size();
Eric Laurent544fe9b2011-11-11 15:42:52 -08008103 if (doProcess) {
Eric Laurentdac69112010-09-28 14:09:57 -07008104 for (size_t i = 0; i < size; i++) {
8105 mEffects[i]->process();
8106 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008107 }
8108 for (size_t i = 0; i < size; i++) {
8109 mEffects[i]->updateState();
8110 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008111}
8112
Eric Laurentcab11242010-07-15 12:50:15 -07008113// addEffect_l() must be called with PlaybackThread::mLock held
Eric Laurentde070132010-07-13 04:45:46 -07008114status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008115{
8116 effect_descriptor_t desc = effect->desc();
8117 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
8118
8119 Mutex::Autolock _l(mLock);
Eric Laurentde070132010-07-13 04:45:46 -07008120 effect->setChain(this);
8121 sp<ThreadBase> thread = mThread.promote();
8122 if (thread == 0) {
8123 return NO_INIT;
8124 }
8125 effect->setThread(thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008126
8127 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
8128 // Auxiliary effects are inserted at the beginning of mEffects vector as
8129 // they are processed first and accumulated in chain input buffer
8130 mEffects.insertAt(effect, 0);
Eric Laurentde070132010-07-13 04:45:46 -07008131
Mathias Agopian65ab4712010-07-14 17:59:35 -07008132 // the input buffer for auxiliary effect contains mono samples in
8133 // 32 bit format. This is to avoid saturation in AudoMixer
8134 // accumulation stage. Saturation is done in EffectModule::process() before
8135 // calling the process in effect engine
8136 size_t numSamples = thread->frameCount();
8137 int32_t *buffer = new int32_t[numSamples];
8138 memset(buffer, 0, numSamples * sizeof(int32_t));
8139 effect->setInBuffer((int16_t *)buffer);
8140 // auxiliary effects output samples to chain input buffer for further processing
8141 // by insert effects
8142 effect->setOutBuffer(mInBuffer);
8143 } else {
8144 // Insert effects are inserted at the end of mEffects vector as they are processed
8145 // after track and auxiliary effects.
8146 // Insert effect order as a function of indicated preference:
8147 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
8148 // another effect is present
8149 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
8150 // last effect claiming first position
8151 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
8152 // first effect claiming last position
8153 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
8154 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
8155 // already present
8156
Glenn Kasten8d6a2442012-02-08 14:04:28 -08008157 size_t size = mEffects.size();
8158 size_t idx_insert = size;
8159 ssize_t idx_insert_first = -1;
8160 ssize_t idx_insert_last = -1;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008161
Glenn Kasten8d6a2442012-02-08 14:04:28 -08008162 for (size_t i = 0; i < size; i++) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008163 effect_descriptor_t d = mEffects[i]->desc();
8164 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
8165 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
8166 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
8167 // check invalid effect chaining combinations
8168 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
8169 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
Steve Block5ff1dd52012-01-05 23:22:43 +00008170 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s", desc.name, d.name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008171 return INVALID_OPERATION;
8172 }
8173 // remember position of first insert effect and by default
8174 // select this as insert position for new effect
8175 if (idx_insert == size) {
8176 idx_insert = i;
8177 }
8178 // remember position of last insert effect claiming
8179 // first position
8180 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
8181 idx_insert_first = i;
8182 }
8183 // remember position of first insert effect claiming
8184 // last position
8185 if (iPref == EFFECT_FLAG_INSERT_LAST &&
8186 idx_insert_last == -1) {
8187 idx_insert_last = i;
8188 }
8189 }
8190 }
8191
8192 // modify idx_insert from first position if needed
8193 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
8194 if (idx_insert_last != -1) {
8195 idx_insert = idx_insert_last;
8196 } else {
8197 idx_insert = size;
8198 }
8199 } else {
8200 if (idx_insert_first != -1) {
8201 idx_insert = idx_insert_first + 1;
8202 }
8203 }
8204
8205 // always read samples from chain input buffer
8206 effect->setInBuffer(mInBuffer);
8207
8208 // if last effect in the chain, output samples to chain
8209 // output buffer, otherwise to chain input buffer
8210 if (idx_insert == size) {
8211 if (idx_insert != 0) {
8212 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
8213 mEffects[idx_insert-1]->configure();
8214 }
8215 effect->setOutBuffer(mOutBuffer);
8216 } else {
8217 effect->setOutBuffer(mInBuffer);
8218 }
8219 mEffects.insertAt(effect, idx_insert);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008220
Steve Block3856b092011-10-20 11:56:00 +01008221 ALOGV("addEffect_l() effect %p, added in chain %p at rank %d", effect.get(), this, idx_insert);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008222 }
8223 effect->configure();
8224 return NO_ERROR;
8225}
8226
Eric Laurentcab11242010-07-15 12:50:15 -07008227// removeEffect_l() must be called with PlaybackThread::mLock held
8228size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008229{
8230 Mutex::Autolock _l(mLock);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08008231 size_t size = mEffects.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008232 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
8233
Glenn Kasten8d6a2442012-02-08 14:04:28 -08008234 for (size_t i = 0; i < size; i++) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008235 if (effect == mEffects[i]) {
Eric Laurentec437d82011-07-26 20:54:46 -07008236 // calling stop here will remove pre-processing effect from the audio HAL.
8237 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
8238 // the middle of a read from audio HAL
Eric Laurentec35a142011-10-05 17:42:25 -07008239 if (mEffects[i]->state() == EffectModule::ACTIVE ||
8240 mEffects[i]->state() == EffectModule::STOPPING) {
8241 mEffects[i]->stop();
8242 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008243 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
8244 delete[] effect->inBuffer();
8245 } else {
8246 if (i == size - 1 && i != 0) {
8247 mEffects[i - 1]->setOutBuffer(mOutBuffer);
8248 mEffects[i - 1]->configure();
8249 }
8250 }
8251 mEffects.removeAt(i);
Steve Block3856b092011-10-20 11:56:00 +01008252 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %d", effect.get(), this, i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008253 break;
8254 }
8255 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008256
8257 return mEffects.size();
8258}
8259
Eric Laurentcab11242010-07-15 12:50:15 -07008260// setDevice_l() must be called with PlaybackThread::mLock held
8261void AudioFlinger::EffectChain::setDevice_l(uint32_t device)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008262{
8263 size_t size = mEffects.size();
8264 for (size_t i = 0; i < size; i++) {
8265 mEffects[i]->setDevice(device);
8266 }
8267}
8268
Eric Laurentcab11242010-07-15 12:50:15 -07008269// setMode_l() must be called with PlaybackThread::mLock held
Glenn Kastenf78aee72012-01-04 11:00:47 -08008270void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008271{
8272 size_t size = mEffects.size();
8273 for (size_t i = 0; i < size; i++) {
8274 mEffects[i]->setMode(mode);
8275 }
8276}
8277
Eric Laurentcab11242010-07-15 12:50:15 -07008278// setVolume_l() must be called with PlaybackThread::mLock held
8279bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008280{
8281 uint32_t newLeft = *left;
8282 uint32_t newRight = *right;
8283 bool hasControl = false;
Eric Laurentcab11242010-07-15 12:50:15 -07008284 int ctrlIdx = -1;
8285 size_t size = mEffects.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008286
Eric Laurentcab11242010-07-15 12:50:15 -07008287 // first update volume controller
8288 for (size_t i = size; i > 0; i--) {
Eric Laurent8f45bd72010-08-31 13:50:07 -07008289 if (mEffects[i - 1]->isProcessEnabled() &&
Eric Laurentcab11242010-07-15 12:50:15 -07008290 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
8291 ctrlIdx = i - 1;
Eric Laurentf997cab2010-07-19 06:24:46 -07008292 hasControl = true;
Eric Laurentcab11242010-07-15 12:50:15 -07008293 break;
8294 }
8295 }
8296
8297 if (ctrlIdx == mVolumeCtrlIdx && *left == mLeftVolume && *right == mRightVolume) {
Eric Laurentf997cab2010-07-19 06:24:46 -07008298 if (hasControl) {
8299 *left = mNewLeftVolume;
8300 *right = mNewRightVolume;
8301 }
8302 return hasControl;
Eric Laurentcab11242010-07-15 12:50:15 -07008303 }
8304
8305 mVolumeCtrlIdx = ctrlIdx;
Eric Laurentf997cab2010-07-19 06:24:46 -07008306 mLeftVolume = newLeft;
8307 mRightVolume = newRight;
Eric Laurentcab11242010-07-15 12:50:15 -07008308
8309 // second get volume update from volume controller
8310 if (ctrlIdx >= 0) {
8311 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
Eric Laurentf997cab2010-07-19 06:24:46 -07008312 mNewLeftVolume = newLeft;
8313 mNewRightVolume = newRight;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008314 }
8315 // then indicate volume to all other effects in chain.
8316 // Pass altered volume to effects before volume controller
8317 // and requested volume to effects after controller
8318 uint32_t lVol = newLeft;
8319 uint32_t rVol = newRight;
Eric Laurentcab11242010-07-15 12:50:15 -07008320
Mathias Agopian65ab4712010-07-14 17:59:35 -07008321 for (size_t i = 0; i < size; i++) {
Eric Laurentcab11242010-07-15 12:50:15 -07008322 if ((int)i == ctrlIdx) continue;
8323 // this also works for ctrlIdx == -1 when there is no volume controller
8324 if ((int)i > ctrlIdx) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008325 lVol = *left;
8326 rVol = *right;
8327 }
8328 mEffects[i]->setVolume(&lVol, &rVol, false);
8329 }
8330 *left = newLeft;
8331 *right = newRight;
8332
8333 return hasControl;
8334}
8335
Mathias Agopian65ab4712010-07-14 17:59:35 -07008336status_t AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
8337{
8338 const size_t SIZE = 256;
8339 char buffer[SIZE];
8340 String8 result;
8341
8342 snprintf(buffer, SIZE, "Effects for session %d:\n", mSessionId);
8343 result.append(buffer);
8344
8345 bool locked = tryLock(mLock);
8346 // failed to lock - AudioFlinger is probably deadlocked
8347 if (!locked) {
8348 result.append("\tCould not lock mutex:\n");
8349 }
8350
Eric Laurentcab11242010-07-15 12:50:15 -07008351 result.append("\tNum fx In buffer Out buffer Active tracks:\n");
8352 snprintf(buffer, SIZE, "\t%02d 0x%08x 0x%08x %d\n",
Mathias Agopian65ab4712010-07-14 17:59:35 -07008353 mEffects.size(),
8354 (uint32_t)mInBuffer,
8355 (uint32_t)mOutBuffer,
Mathias Agopian65ab4712010-07-14 17:59:35 -07008356 mActiveTrackCnt);
8357 result.append(buffer);
8358 write(fd, result.string(), result.size());
8359
8360 for (size_t i = 0; i < mEffects.size(); ++i) {
8361 sp<EffectModule> effect = mEffects[i];
8362 if (effect != 0) {
8363 effect->dump(fd, args);
8364 }
8365 }
8366
8367 if (locked) {
8368 mLock.unlock();
8369 }
8370
8371 return NO_ERROR;
8372}
8373
Eric Laurent59255e42011-07-27 19:49:51 -07008374// must be called with ThreadBase::mLock held
8375void AudioFlinger::EffectChain::setEffectSuspended_l(
8376 const effect_uuid_t *type, bool suspend)
8377{
8378 sp<SuspendedEffectDesc> desc;
8379 // use effect type UUID timelow as key as there is no real risk of identical
8380 // timeLow fields among effect type UUIDs.
Glenn Kasten8d6a2442012-02-08 14:04:28 -08008381 ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07008382 if (suspend) {
8383 if (index >= 0) {
8384 desc = mSuspendedEffects.valueAt(index);
8385 } else {
8386 desc = new SuspendedEffectDesc();
8387 memcpy(&desc->mType, type, sizeof(effect_uuid_t));
8388 mSuspendedEffects.add(type->timeLow, desc);
Steve Block3856b092011-10-20 11:56:00 +01008389 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07008390 }
8391 if (desc->mRefCount++ == 0) {
8392 sp<EffectModule> effect = getEffectIfEnabled(type);
8393 if (effect != 0) {
8394 desc->mEffect = effect;
8395 effect->setSuspended(true);
8396 effect->setEnabled(false);
8397 }
8398 }
8399 } else {
8400 if (index < 0) {
8401 return;
8402 }
8403 desc = mSuspendedEffects.valueAt(index);
8404 if (desc->mRefCount <= 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00008405 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
Eric Laurent59255e42011-07-27 19:49:51 -07008406 desc->mRefCount = 1;
8407 }
8408 if (--desc->mRefCount == 0) {
Steve Block3856b092011-10-20 11:56:00 +01008409 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
Eric Laurent59255e42011-07-27 19:49:51 -07008410 if (desc->mEffect != 0) {
8411 sp<EffectModule> effect = desc->mEffect.promote();
8412 if (effect != 0) {
8413 effect->setSuspended(false);
8414 sp<EffectHandle> handle = effect->controlHandle();
8415 if (handle != 0) {
8416 effect->setEnabled(handle->enabled());
8417 }
8418 }
8419 desc->mEffect.clear();
8420 }
8421 mSuspendedEffects.removeItemsAt(index);
8422 }
8423 }
8424}
8425
8426// must be called with ThreadBase::mLock held
8427void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
8428{
8429 sp<SuspendedEffectDesc> desc;
8430
Glenn Kasten8d6a2442012-02-08 14:04:28 -08008431 ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
Eric Laurent59255e42011-07-27 19:49:51 -07008432 if (suspend) {
8433 if (index >= 0) {
8434 desc = mSuspendedEffects.valueAt(index);
8435 } else {
8436 desc = new SuspendedEffectDesc();
8437 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
Steve Block3856b092011-10-20 11:56:00 +01008438 ALOGV("setEffectSuspendedAll_l() add entry for 0");
Eric Laurent59255e42011-07-27 19:49:51 -07008439 }
8440 if (desc->mRefCount++ == 0) {
Glenn Kastend0539712012-01-30 12:56:03 -08008441 Vector< sp<EffectModule> > effects;
8442 getSuspendEligibleEffects(effects);
Eric Laurent59255e42011-07-27 19:49:51 -07008443 for (size_t i = 0; i < effects.size(); i++) {
8444 setEffectSuspended_l(&effects[i]->desc().type, true);
8445 }
8446 }
8447 } else {
8448 if (index < 0) {
8449 return;
8450 }
8451 desc = mSuspendedEffects.valueAt(index);
8452 if (desc->mRefCount <= 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00008453 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
Eric Laurent59255e42011-07-27 19:49:51 -07008454 desc->mRefCount = 1;
8455 }
8456 if (--desc->mRefCount == 0) {
8457 Vector<const effect_uuid_t *> types;
8458 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
8459 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
8460 continue;
8461 }
8462 types.add(&mSuspendedEffects.valueAt(i)->mType);
8463 }
8464 for (size_t i = 0; i < types.size(); i++) {
8465 setEffectSuspended_l(types[i], false);
8466 }
Steve Block3856b092011-10-20 11:56:00 +01008467 ALOGV("setEffectSuspendedAll_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
Eric Laurent59255e42011-07-27 19:49:51 -07008468 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
8469 }
8470 }
8471}
8472
Eric Laurent6bffdb82011-09-23 08:40:41 -07008473
8474// The volume effect is used for automated tests only
8475#ifndef OPENSL_ES_H_
8476static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
8477 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
8478const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
8479#endif //OPENSL_ES_H_
8480
Eric Laurentdb7c0792011-08-10 10:37:50 -07008481bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
8482{
8483 // auxiliary effects and visualizer are never suspended on output mix
8484 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
8485 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
Eric Laurent6bffdb82011-09-23 08:40:41 -07008486 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
8487 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07008488 return false;
8489 }
8490 return true;
8491}
8492
Glenn Kastend0539712012-01-30 12:56:03 -08008493void AudioFlinger::EffectChain::getSuspendEligibleEffects(Vector< sp<AudioFlinger::EffectModule> > &effects)
Eric Laurent59255e42011-07-27 19:49:51 -07008494{
Glenn Kastend0539712012-01-30 12:56:03 -08008495 effects.clear();
Eric Laurent59255e42011-07-27 19:49:51 -07008496 for (size_t i = 0; i < mEffects.size(); i++) {
Glenn Kastend0539712012-01-30 12:56:03 -08008497 if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
8498 effects.add(mEffects[i]);
Eric Laurent59255e42011-07-27 19:49:51 -07008499 }
Eric Laurent59255e42011-07-27 19:49:51 -07008500 }
Eric Laurent59255e42011-07-27 19:49:51 -07008501}
8502
8503sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
8504 const effect_uuid_t *type)
8505{
Glenn Kasten090f0192012-01-30 13:00:02 -08008506 sp<EffectModule> effect = getEffectFromType_l(type);
8507 return effect != 0 && effect->isEnabled() ? effect : 0;
Eric Laurent59255e42011-07-27 19:49:51 -07008508}
8509
8510void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
8511 bool enabled)
8512{
Glenn Kasten8d6a2442012-02-08 14:04:28 -08008513 ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07008514 if (enabled) {
8515 if (index < 0) {
8516 // if the effect is not suspend check if all effects are suspended
8517 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
8518 if (index < 0) {
8519 return;
8520 }
Eric Laurentdb7c0792011-08-10 10:37:50 -07008521 if (!isEffectEligibleForSuspend(effect->desc())) {
8522 return;
8523 }
Eric Laurent59255e42011-07-27 19:49:51 -07008524 setEffectSuspended_l(&effect->desc().type, enabled);
8525 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
Eric Laurentdb7c0792011-08-10 10:37:50 -07008526 if (index < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00008527 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
Eric Laurentdb7c0792011-08-10 10:37:50 -07008528 return;
8529 }
Eric Laurent59255e42011-07-27 19:49:51 -07008530 }
Steve Block3856b092011-10-20 11:56:00 +01008531 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07008532 effect->desc().type.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07008533 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
8534 // if effect is requested to suspended but was not yet enabled, supend it now.
8535 if (desc->mEffect == 0) {
8536 desc->mEffect = effect;
8537 effect->setEnabled(false);
8538 effect->setSuspended(true);
8539 }
8540 } else {
8541 if (index < 0) {
8542 return;
8543 }
Steve Block3856b092011-10-20 11:56:00 +01008544 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07008545 effect->desc().type.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07008546 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
8547 desc->mEffect.clear();
8548 effect->setSuspended(false);
8549 }
8550}
8551
Mathias Agopian65ab4712010-07-14 17:59:35 -07008552#undef LOG_TAG
8553#define LOG_TAG "AudioFlinger"
8554
8555// ----------------------------------------------------------------------------
8556
8557status_t AudioFlinger::onTransact(
8558 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
8559{
8560 return BnAudioFlinger::onTransact(code, data, reply, flags);
8561}
8562
Mathias Agopian65ab4712010-07-14 17:59:35 -07008563}; // namespace android