blob: c6a9c7770fc43b3a4acc6cb883d2070e2024d0e8 [file] [log] [blame]
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001/* //device/include/server/AudioFlinger/AudioFlinger.cpp
2**
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"
Eric Laurent7d850f22010-07-09 13:34:17 -070020//#define LOG_NDEBUG 0
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070021
22#include <math.h>
23#include <signal.h>
24#include <sys/time.h>
25#include <sys/resource.h>
26
Gloria Wang9b3f1522011-02-24 14:51:45 -080027#include <binder/IPCThreadState.h>
Mathias Agopian07952722009-05-19 19:08:10 -070028#include <binder/IServiceManager.h>
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070029#include <utils/Log.h>
Mathias Agopian07952722009-05-19 19:08:10 -070030#include <binder/Parcel.h>
31#include <binder/IPCThreadState.h>
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070032#include <utils/String16.h>
33#include <utils/threads.h>
Eric Laurentae29b762011-03-28 18:37:07 -070034#include <utils/Atomic.h>
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070035
Dima Zavin24fc2fb2011-04-19 22:30:36 -070036#include <cutils/bitops.h>
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -080037#include <cutils/properties.h>
Glenn Kastene80a4cc2011-12-15 09:51:17 -080038#include <cutils/compiler.h>
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -080039
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070040#include <media/AudioTrack.h>
41#include <media/AudioRecord.h>
Gloria Wang9b3f1522011-02-24 14:51:45 -080042#include <media/IMediaPlayerService.h>
Glenn Kasten26f260a2012-01-03 15:28:29 -080043#include <media/IMediaDeathNotifier.h>
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070044
45#include <private/media/AudioTrackShared.h>
Eric Laurent65b65452010-06-01 23:49:17 -070046#include <private/media/AudioEffectShared.h>
Dima Zavin24fc2fb2011-04-19 22:30:36 -070047
Dima Zavin34bb4192011-05-11 14:15:23 -070048#include <system/audio.h>
Dima Zavin290029d2011-06-13 18:16:26 -070049#include <hardware/audio.h>
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070050
51#include "AudioMixer.h"
52#include "AudioFlinger.h"
53
Eric Laurent53334cd2010-06-23 17:38:20 -070054#include <media/EffectsFactoryApi.h>
Eric Laurent5cc05262011-06-24 07:01:31 -070055#include <audio_effects/effect_visualizer.h>
Eric Laurent6639b552011-08-01 09:52:20 -070056#include <audio_effects/effect_ns.h>
57#include <audio_effects/effect_aec.h>
Eric Laurent65b65452010-06-01 23:49:17 -070058
Glenn Kasten490909d2011-12-15 09:52:39 -080059#include <audio_utils/primitives.h>
60
Glenn Kastenda494f92011-07-08 15:26:12 -070061#include <cpustats/ThreadCpuUsage.h>
Eric Laurent6dbdc402011-07-22 09:04:31 -070062#include <powermanager/PowerManager.h>
Glenn Kastenda494f92011-07-08 15:26:12 -070063// #define DEBUG_CPU_USAGE 10 // log statistics every n wall clock seconds
64
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065// ----------------------------------------------------------------------------
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066
Eric Laurent8ed6ed02010-07-13 04:45:46 -070067
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070068namespace android {
69
Glenn Kasten62de3db2011-12-12 09:04:45 -080070static const char kDeadlockedString[] = "AudioFlinger may be deadlocked\n";
71static const char kHardwareLockedString[] = "Hardware lock is taken\n";
The Android Open Source Project10592532009-03-18 17:39:46 -070072
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -080073//static const nsecs_t kStandbyTimeInNsecs = seconds(3);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070074static const float MAX_GAIN = 4096.0f;
Glenn Kasten0632bad2012-01-17 12:20:54 -080075static const uint32_t MAX_GAIN_INT = 0x1000;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070076
77// retry counts for buffer fill timeout
78// 50 * ~20msecs = 1 second
79static const int8_t kMaxTrackRetries = 50;
80static const int8_t kMaxTrackStartupRetries = 50;
Eric Laurentef9500f2010-03-11 14:47:00 -080081// allow less retry attempts on direct output thread.
82// direct outputs can be a scarce resource in audio hardware and should
83// be released as quickly as possible.
84static const int8_t kMaxTrackRetriesDirect = 2;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -070085
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -070086static const int kDumpLockRetries = 50;
Glenn Kastencbfe2e12011-12-13 11:04:14 -080087static const int kDumpLockSleepUs = 20000;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -070088
Glenn Kastencbfe2e12011-12-13 11:04:14 -080089// don't warn about blocked writes or record buffer overflows more often than this
90static const nsecs_t kWarningThrottleNs = seconds(5);
Dave Sparksd0ac8c02009-09-30 03:09:03 -070091
Eric Laurent464d5b32011-06-17 21:29:58 -070092// RecordThread loop sleep time upon application overrun or audio HAL read error
93static const int kRecordThreadSleepUs = 5000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094
Glenn Kastencbfe2e12011-12-13 11:04:14 -080095// maximum time to wait for setParameters to complete
96static const nsecs_t kSetParametersTimeoutNs = seconds(2);
Eric Laurent5f37be32011-09-13 11:40:21 -070097
Eric Laurentf1f5fc82011-11-22 18:50:29 -080098// minimum sleep time for the mixer thread loop when tracks are active but in underrun
99static const uint32_t kMinThreadSleepTimeUs = 5000;
100// maximum divider applied to the active sleep time in the mixer thread loop
101static const uint32_t kMaxThreadSleepTimeShift = 2;
102
103
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700104// ----------------------------------------------------------------------------
105
106static bool recordingAllowed() {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700107 if (getpid() == IPCThreadState::self()->getCallingPid()) return true;
108 bool ok = checkCallingPermission(String16("android.permission.RECORD_AUDIO"));
Steve Block3762c312012-01-06 19:20:56 +0000109 if (!ok) ALOGE("Request requires android.permission.RECORD_AUDIO");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700110 return ok;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700111}
112
113static bool settingsAllowed() {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700114 if (getpid() == IPCThreadState::self()->getCallingPid()) return true;
115 bool ok = checkCallingPermission(String16("android.permission.MODIFY_AUDIO_SETTINGS"));
Steve Block3762c312012-01-06 19:20:56 +0000116 if (!ok) ALOGE("Request requires android.permission.MODIFY_AUDIO_SETTINGS");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700117 return ok;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700118}
119
Gloria Wang9b3f1522011-02-24 14:51:45 -0800120// To collect the amplifier usage
121static void addBatteryData(uint32_t params) {
Glenn Kasten26f260a2012-01-03 15:28:29 -0800122 sp<IMediaPlayerService> service = IMediaDeathNotifier::getMediaPlayerService();
123 if (service == NULL) {
124 // it already logged
Gloria Wang9b3f1522011-02-24 14:51:45 -0800125 return;
126 }
127
128 service->addBatteryData(params);
129}
130
Dima Zavin31f188892011-04-18 16:57:27 -0700131static int load_audio_interface(const char *if_name, const hw_module_t **mod,
132 audio_hw_device_t **dev)
133{
134 int rc;
135
136 rc = hw_get_module_by_class(AUDIO_HARDWARE_MODULE_ID, if_name, mod);
137 if (rc)
138 goto out;
139
140 rc = audio_hw_device_open(*mod, dev);
Steve Block3762c312012-01-06 19:20:56 +0000141 ALOGE_IF(rc, "couldn't open audio hw device in %s.%s (%s)",
Dima Zavin31f188892011-04-18 16:57:27 -0700142 AUDIO_HARDWARE_MODULE_ID, if_name, strerror(-rc));
143 if (rc)
144 goto out;
145
146 return 0;
147
148out:
149 *mod = NULL;
150 *dev = NULL;
151 return rc;
152}
153
Glenn Kasten62de3db2011-12-12 09:04:45 -0800154static const char * const audio_interfaces[] = {
Dima Zavin31f188892011-04-18 16:57:27 -0700155 "primary",
156 "a2dp",
157 "usb",
158};
159#define ARRAY_SIZE(x) (sizeof((x))/sizeof(((x)[0])))
160
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700161// ----------------------------------------------------------------------------
162
163AudioFlinger::AudioFlinger()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164 : BnAudioFlinger(),
Glenn Kastenc434c902011-12-13 11:53:26 -0800165 mPrimaryHardwareDev(NULL), mMasterVolume(1.0f), mMasterMute(false), mNextUniqueId(1),
Eric Laurent2d95dfb2011-08-29 12:42:48 -0700166 mBtNrecIsOff(false)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700167{
Dima Zavin2986f5b2011-04-19 19:04:32 -0700168}
169
170void AudioFlinger::onFirstRef()
171{
Dima Zavin31f188892011-04-18 16:57:27 -0700172 int rc = 0;
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700173
Eric Laurent01635942011-01-18 18:39:02 -0800174 Mutex::Autolock _l(mLock);
175
Dima Zavin31f188892011-04-18 16:57:27 -0700176 /* TODO: move all this work into an Init() function */
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700177 mHardwareStatus = AUDIO_HW_IDLE;
Eric Laurenta553c252009-07-17 12:17:14 -0700178
Dima Zavin31f188892011-04-18 16:57:27 -0700179 for (size_t i = 0; i < ARRAY_SIZE(audio_interfaces); i++) {
180 const hw_module_t *mod;
181 audio_hw_device_t *dev;
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700182
Dima Zavin31f188892011-04-18 16:57:27 -0700183 rc = load_audio_interface(audio_interfaces[i], &mod, &dev);
184 if (rc)
185 continue;
186
Steve Block6215d3f2012-01-04 20:05:49 +0000187 ALOGI("Loaded %s audio interface from %s (%s)", audio_interfaces[i],
Dima Zavin31f188892011-04-18 16:57:27 -0700188 mod->name, mod->id);
189 mAudioHwDevs.push(dev);
190
191 if (!mPrimaryHardwareDev) {
192 mPrimaryHardwareDev = dev;
Steve Block6215d3f2012-01-04 20:05:49 +0000193 ALOGI("Using '%s' (%s.%s) as the primary audio interface",
Dima Zavin2986f5b2011-04-19 19:04:32 -0700194 mod->name, mod->id, audio_interfaces[i]);
Dima Zavin31f188892011-04-18 16:57:27 -0700195 }
196 }
Eric Laurenta553c252009-07-17 12:17:14 -0700197
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700198 mHardwareStatus = AUDIO_HW_INIT;
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700199
Dima Zavin31f188892011-04-18 16:57:27 -0700200 if (!mPrimaryHardwareDev || mAudioHwDevs.size() == 0) {
Steve Block3762c312012-01-06 19:20:56 +0000201 ALOGE("Primary audio interface not found");
Dima Zavin31f188892011-04-18 16:57:27 -0700202 return;
203 }
204
205 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
206 audio_hw_device_t *dev = mAudioHwDevs[i];
207
208 mHardwareStatus = AUDIO_HW_INIT;
209 rc = dev->init_check(dev);
210 if (rc == 0) {
211 AutoMutex lock(mHardwareLock);
212
213 mMode = AUDIO_MODE_NORMAL;
214 mHardwareStatus = AUDIO_HW_SET_MODE;
215 dev->set_mode(dev, mMode);
216 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
217 dev->set_master_volume(dev, 1.0f);
218 mHardwareStatus = AUDIO_HW_IDLE;
219 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700220 }
221}
222
Dima Zavin2986f5b2011-04-19 19:04:32 -0700223status_t AudioFlinger::initCheck() const
224{
225 Mutex::Autolock _l(mLock);
226 if (mPrimaryHardwareDev == NULL || mAudioHwDevs.size() == 0)
227 return NO_INIT;
228 return NO_ERROR;
229}
230
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700231AudioFlinger::~AudioFlinger()
232{
Dima Zavin31f188892011-04-18 16:57:27 -0700233 int num_devs = mAudioHwDevs.size();
234
Eric Laurent7954c462009-08-28 10:39:03 -0700235 while (!mRecordThreads.isEmpty()) {
236 // closeInput() will remove first entry from mRecordThreads
237 closeInput(mRecordThreads.keyAt(0));
238 }
239 while (!mPlaybackThreads.isEmpty()) {
240 // closeOutput() will remove first entry from mPlaybackThreads
241 closeOutput(mPlaybackThreads.keyAt(0));
242 }
Dima Zavin31f188892011-04-18 16:57:27 -0700243
244 for (int i = 0; i < num_devs; i++) {
245 audio_hw_device_t *dev = mAudioHwDevs[i];
246 audio_hw_device_close(dev);
Eric Laurent7954c462009-08-28 10:39:03 -0700247 }
Dima Zavin31f188892011-04-18 16:57:27 -0700248 mAudioHwDevs.clear();
The Android Open Source Projectb7986892009-01-09 17:51:23 -0800249}
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800250
Dima Zavin31f188892011-04-18 16:57:27 -0700251audio_hw_device_t* AudioFlinger::findSuitableHwDev_l(uint32_t devices)
252{
253 /* first matching HW device is returned */
254 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
255 audio_hw_device_t *dev = mAudioHwDevs[i];
256 if ((dev->get_supported_devices(dev) & devices) == devices)
257 return dev;
258 }
259 return NULL;
260}
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700261
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700262status_t AudioFlinger::dumpClients(int fd, const Vector<String16>& args)
263{
264 const size_t SIZE = 256;
265 char buffer[SIZE];
266 String8 result;
267
268 result.append("Clients:\n");
269 for (size_t i = 0; i < mClients.size(); ++i) {
270 wp<Client> wClient = mClients.valueAt(i);
271 if (wClient != 0) {
272 sp<Client> client = wClient.promote();
273 if (client != 0) {
274 snprintf(buffer, SIZE, " pid: %d\n", client->pid());
275 result.append(buffer);
276 }
277 }
278 }
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700279
280 result.append("Global session refs:\n");
281 result.append(" session pid cnt\n");
282 for (size_t i = 0; i < mAudioSessionRefs.size(); i++) {
283 AudioSessionRef *r = mAudioSessionRefs[i];
284 snprintf(buffer, SIZE, " %7d %3d %3d\n", r->sessionid, r->pid, r->cnt);
285 result.append(buffer);
286 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700287 write(fd, result.string(), result.size());
288 return NO_ERROR;
289}
290
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700291
292status_t AudioFlinger::dumpInternals(int fd, const Vector<String16>& args)
293{
294 const size_t SIZE = 256;
295 char buffer[SIZE];
296 String8 result;
Glenn Kastena934c2c2012-01-04 11:02:33 -0800297 hardware_call_state hardwareStatus = mHardwareStatus;
Eric Laurenta553c252009-07-17 12:17:14 -0700298
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700299 snprintf(buffer, SIZE, "Hardware status: %d\n", hardwareStatus);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700300 result.append(buffer);
301 write(fd, result.string(), result.size());
302 return NO_ERROR;
303}
304
305status_t AudioFlinger::dumpPermissionDenial(int fd, const Vector<String16>& args)
306{
307 const size_t SIZE = 256;
308 char buffer[SIZE];
309 String8 result;
310 snprintf(buffer, SIZE, "Permission Denial: "
311 "can't dump AudioFlinger from pid=%d, uid=%d\n",
312 IPCThreadState::self()->getCallingPid(),
313 IPCThreadState::self()->getCallingUid());
314 result.append(buffer);
315 write(fd, result.string(), result.size());
316 return NO_ERROR;
317}
318
The Android Open Source Project10592532009-03-18 17:39:46 -0700319static bool tryLock(Mutex& mutex)
320{
321 bool locked = false;
322 for (int i = 0; i < kDumpLockRetries; ++i) {
323 if (mutex.tryLock() == NO_ERROR) {
324 locked = true;
325 break;
326 }
Glenn Kastencbfe2e12011-12-13 11:04:14 -0800327 usleep(kDumpLockSleepUs);
The Android Open Source Project10592532009-03-18 17:39:46 -0700328 }
329 return locked;
330}
331
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700332status_t AudioFlinger::dump(int fd, const Vector<String16>& args)
333{
Glenn Kastenb737dbb2012-01-13 15:54:24 -0800334 if (!checkCallingPermission(String16("android.permission.DUMP"))) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700335 dumpPermissionDenial(fd, args);
336 } else {
The Android Open Source Project10592532009-03-18 17:39:46 -0700337 // get state of hardware lock
338 bool hardwareLocked = tryLock(mHardwareLock);
339 if (!hardwareLocked) {
340 String8 result(kHardwareLockedString);
341 write(fd, result.string(), result.size());
342 } else {
343 mHardwareLock.unlock();
344 }
345
346 bool locked = tryLock(mLock);
347
348 // failed to lock - AudioFlinger is probably deadlocked
349 if (!locked) {
350 String8 result(kDeadlockedString);
351 write(fd, result.string(), result.size());
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700352 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700353
354 dumpClients(fd, args);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700355 dumpInternals(fd, args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800356
Eric Laurenta553c252009-07-17 12:17:14 -0700357 // dump playback threads
358 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurentddb78e72009-07-28 08:44:33 -0700359 mPlaybackThreads.valueAt(i)->dump(fd, args);
Eric Laurenta553c252009-07-17 12:17:14 -0700360 }
361
362 // dump record threads
Eric Laurent102313a2009-07-23 13:35:01 -0700363 for (size_t i = 0; i < mRecordThreads.size(); i++) {
Eric Laurentddb78e72009-07-28 08:44:33 -0700364 mRecordThreads.valueAt(i)->dump(fd, args);
Eric Laurenta553c252009-07-17 12:17:14 -0700365 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800366
Dima Zavin31f188892011-04-18 16:57:27 -0700367 // dump all hardware devs
368 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
369 audio_hw_device_t *dev = mAudioHwDevs[i];
370 dev->dump(dev, fd);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700371 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700372 if (locked) mLock.unlock();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700373 }
374 return NO_ERROR;
375}
376
Eric Laurenta553c252009-07-17 12:17:14 -0700377
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700378// IAudioFlinger interface
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800379
380
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700381sp<IAudioTrack> AudioFlinger::createTrack(
382 pid_t pid,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800383 audio_stream_type_t streamType,
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700384 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800385 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700386 uint32_t channelMask,
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800387 int frameCount,
388 uint32_t flags,
389 const sp<IMemory>& sharedBuffer,
Eric Laurentddb78e72009-07-28 08:44:33 -0700390 int output,
Eric Laurent65b65452010-06-01 23:49:17 -0700391 int *sessionId,
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800392 status_t *status)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700393{
Eric Laurenta553c252009-07-17 12:17:14 -0700394 sp<PlaybackThread::Track> track;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700395 sp<TrackHandle> trackHandle;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700396 sp<Client> client;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800397 wp<Client> wclient;
398 status_t lStatus;
Eric Laurent65b65452010-06-01 23:49:17 -0700399 int lSessionId;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700400
Glenn Kasten6e987a42012-01-06 08:40:01 -0800401 // client AudioTrack::set already implements AUDIO_STREAM_DEFAULT => AUDIO_STREAM_MUSIC,
402 // but if someone uses binder directly they could bypass that and cause us to crash
403 if (uint32_t(streamType) >= AUDIO_STREAM_CNT) {
Steve Block3762c312012-01-06 19:20:56 +0000404 ALOGE("createTrack() invalid stream type %d", streamType);
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800405 lStatus = BAD_VALUE;
406 goto Exit;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700407 }
408
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800409 {
410 Mutex::Autolock _l(mLock);
Eric Laurenta553c252009-07-17 12:17:14 -0700411 PlaybackThread *thread = checkPlaybackThread_l(output);
Eric Laurent493941b2010-07-28 01:32:47 -0700412 PlaybackThread *effectThread = NULL;
Eric Laurenta553c252009-07-17 12:17:14 -0700413 if (thread == NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000414 ALOGE("unknown output thread");
Eric Laurenta553c252009-07-17 12:17:14 -0700415 lStatus = BAD_VALUE;
416 goto Exit;
417 }
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800418
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800419 wclient = mClients.valueFor(pid);
420
421 if (wclient != NULL) {
422 client = wclient.promote();
423 } else {
424 client = new Client(this, pid);
425 mClients.add(pid, client);
426 }
Eric Laurent65b65452010-06-01 23:49:17 -0700427
Steve Block71f2cf12011-10-20 11:56:00 +0100428 ALOGV("createTrack() sessionId: %d", (sessionId == NULL) ? -2 : *sessionId);
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700429 if (sessionId != NULL && *sessionId != AUDIO_SESSION_OUTPUT_MIX) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700430 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurent493941b2010-07-28 01:32:47 -0700431 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
432 if (mPlaybackThreads.keyAt(i) != output) {
433 // prevent same audio session on different output threads
434 uint32_t sessions = t->hasAudioSession(*sessionId);
435 if (sessions & PlaybackThread::TRACK_SESSION) {
Steve Block3762c312012-01-06 19:20:56 +0000436 ALOGE("createTrack() session ID %d already in use", *sessionId);
Eric Laurent493941b2010-07-28 01:32:47 -0700437 lStatus = BAD_VALUE;
438 goto Exit;
439 }
440 // check if an effect with same session ID is waiting for a track to be created
441 if (sessions & PlaybackThread::EFFECT_SESSION) {
442 effectThread = t.get();
443 }
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700444 }
445 }
Eric Laurent65b65452010-06-01 23:49:17 -0700446 lSessionId = *sessionId;
447 } else {
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700448 // if no audio session id is provided, create one here
Eric Laurent464d5b32011-06-17 21:29:58 -0700449 lSessionId = nextUniqueId();
Eric Laurent65b65452010-06-01 23:49:17 -0700450 if (sessionId != NULL) {
451 *sessionId = lSessionId;
452 }
453 }
Steve Block71f2cf12011-10-20 11:56:00 +0100454 ALOGV("createTrack() lSessionId: %d", lSessionId);
Eric Laurent65b65452010-06-01 23:49:17 -0700455
Eric Laurenta553c252009-07-17 12:17:14 -0700456 track = thread->createTrack_l(client, streamType, sampleRate, format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700457 channelMask, frameCount, sharedBuffer, lSessionId, &lStatus);
Eric Laurent493941b2010-07-28 01:32:47 -0700458
459 // move effect chain to this output thread if an effect on same session was waiting
460 // for a track to be created
461 if (lStatus == NO_ERROR && effectThread != NULL) {
462 Mutex::Autolock _dl(thread->mLock);
463 Mutex::Autolock _sl(effectThread->mLock);
464 moveEffectChain_l(lSessionId, effectThread, thread, true);
465 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700466 }
467 if (lStatus == NO_ERROR) {
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800468 trackHandle = new TrackHandle(track);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700469 } else {
Eric Laurentb9481d82009-09-17 05:12:56 -0700470 // remove local strong reference to Client before deleting the Track so that the Client
471 // destructor is called by the TrackBase destructor with mLock held
472 client.clear();
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700473 track.clear();
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800474 }
475
476Exit:
477 if(status) {
478 *status = lStatus;
479 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700480 return trackHandle;
481}
482
Eric Laurentddb78e72009-07-28 08:44:33 -0700483uint32_t AudioFlinger::sampleRate(int output) const
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700484{
Eric Laurenta553c252009-07-17 12:17:14 -0700485 Mutex::Autolock _l(mLock);
486 PlaybackThread *thread = checkPlaybackThread_l(output);
487 if (thread == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +0000488 ALOGW("sampleRate() unknown thread %d", output);
Eric Laurenta553c252009-07-17 12:17:14 -0700489 return 0;
490 }
491 return thread->sampleRate();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700492}
493
Eric Laurentddb78e72009-07-28 08:44:33 -0700494int AudioFlinger::channelCount(int output) const
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700495{
Eric Laurenta553c252009-07-17 12:17:14 -0700496 Mutex::Autolock _l(mLock);
497 PlaybackThread *thread = checkPlaybackThread_l(output);
498 if (thread == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +0000499 ALOGW("channelCount() unknown thread %d", output);
Eric Laurenta553c252009-07-17 12:17:14 -0700500 return 0;
501 }
502 return thread->channelCount();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700503}
504
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800505audio_format_t AudioFlinger::format(int output) const
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700506{
Eric Laurenta553c252009-07-17 12:17:14 -0700507 Mutex::Autolock _l(mLock);
508 PlaybackThread *thread = checkPlaybackThread_l(output);
509 if (thread == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +0000510 ALOGW("format() unknown thread %d", output);
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800511 return AUDIO_FORMAT_INVALID;
Eric Laurenta553c252009-07-17 12:17:14 -0700512 }
513 return thread->format();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700514}
515
Eric Laurentddb78e72009-07-28 08:44:33 -0700516size_t AudioFlinger::frameCount(int output) const
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700517{
Eric Laurenta553c252009-07-17 12:17:14 -0700518 Mutex::Autolock _l(mLock);
519 PlaybackThread *thread = checkPlaybackThread_l(output);
520 if (thread == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +0000521 ALOGW("frameCount() unknown thread %d", output);
Eric Laurenta553c252009-07-17 12:17:14 -0700522 return 0;
523 }
524 return thread->frameCount();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700525}
526
Eric Laurentddb78e72009-07-28 08:44:33 -0700527uint32_t AudioFlinger::latency(int output) const
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800528{
Eric Laurenta553c252009-07-17 12:17:14 -0700529 Mutex::Autolock _l(mLock);
530 PlaybackThread *thread = checkPlaybackThread_l(output);
531 if (thread == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +0000532 ALOGW("latency() unknown thread %d", output);
Eric Laurenta553c252009-07-17 12:17:14 -0700533 return 0;
534 }
535 return thread->latency();
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800536}
537
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700538status_t AudioFlinger::setMasterVolume(float value)
539{
Eric Laurent8b4dbf72011-08-23 08:25:03 -0700540 status_t ret = initCheck();
541 if (ret != NO_ERROR) {
542 return ret;
543 }
544
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700545 // check calling permissions
546 if (!settingsAllowed()) {
547 return PERMISSION_DENIED;
548 }
549
550 // when hw supports master volume, don't scale in sw mixer
Eric Laurent01635942011-01-18 18:39:02 -0800551 { // scope for the lock
552 AutoMutex lock(mHardwareLock);
553 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
Dima Zavin31f188892011-04-18 16:57:27 -0700554 if (mPrimaryHardwareDev->set_master_volume(mPrimaryHardwareDev, value) == NO_ERROR) {
Eric Laurent01635942011-01-18 18:39:02 -0800555 value = 1.0f;
556 }
557 mHardwareStatus = AUDIO_HW_IDLE;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700558 }
Eric Laurenta553c252009-07-17 12:17:14 -0700559
Eric Laurent01635942011-01-18 18:39:02 -0800560 Mutex::Autolock _l(mLock);
Eric Laurenta553c252009-07-17 12:17:14 -0700561 mMasterVolume = value;
562 for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
Eric Laurentddb78e72009-07-28 08:44:33 -0700563 mPlaybackThreads.valueAt(i)->setMasterVolume(value);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700564
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700565 return NO_ERROR;
566}
567
Glenn Kastenaccb1142012-01-04 11:00:47 -0800568status_t AudioFlinger::setMode(audio_mode_t mode)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700569{
Eric Laurent8b4dbf72011-08-23 08:25:03 -0700570 status_t ret = initCheck();
571 if (ret != NO_ERROR) {
572 return ret;
573 }
Eric Laurent53334cd2010-06-23 17:38:20 -0700574
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700575 // check calling permissions
576 if (!settingsAllowed()) {
577 return PERMISSION_DENIED;
578 }
Glenn Kasten01aaf2c2012-01-06 16:47:31 -0800579 if (uint32_t(mode) >= AUDIO_MODE_CNT) {
Steve Block8564c8d2012-01-05 23:22:43 +0000580 ALOGW("Illegal value: setMode(%d)", mode);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700581 return BAD_VALUE;
582 }
583
Eric Laurent53334cd2010-06-23 17:38:20 -0700584 { // scope for the lock
585 AutoMutex lock(mHardwareLock);
586 mHardwareStatus = AUDIO_HW_SET_MODE;
Dima Zavin31f188892011-04-18 16:57:27 -0700587 ret = mPrimaryHardwareDev->set_mode(mPrimaryHardwareDev, mode);
Eric Laurent53334cd2010-06-23 17:38:20 -0700588 mHardwareStatus = AUDIO_HW_IDLE;
Glenn Kasten871c16c2010-03-05 12:18:01 -0800589 }
Eric Laurent53334cd2010-06-23 17:38:20 -0700590
591 if (NO_ERROR == ret) {
592 Mutex::Autolock _l(mLock);
593 mMode = mode;
594 for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
595 mPlaybackThreads.valueAt(i)->setMode(mode);
Eric Laurent53334cd2010-06-23 17:38:20 -0700596 }
597
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700598 return ret;
599}
600
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700601status_t AudioFlinger::setMicMute(bool state)
602{
Eric Laurent8b4dbf72011-08-23 08:25:03 -0700603 status_t ret = initCheck();
604 if (ret != NO_ERROR) {
605 return ret;
606 }
607
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700608 // check calling permissions
609 if (!settingsAllowed()) {
610 return PERMISSION_DENIED;
611 }
612
613 AutoMutex lock(mHardwareLock);
614 mHardwareStatus = AUDIO_HW_SET_MIC_MUTE;
Eric Laurent8b4dbf72011-08-23 08:25:03 -0700615 ret = mPrimaryHardwareDev->set_mic_mute(mPrimaryHardwareDev, state);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700616 mHardwareStatus = AUDIO_HW_IDLE;
617 return ret;
618}
619
620bool AudioFlinger::getMicMute() const
621{
Eric Laurent8b4dbf72011-08-23 08:25:03 -0700622 status_t ret = initCheck();
623 if (ret != NO_ERROR) {
624 return false;
625 }
626
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700627 bool state = AUDIO_MODE_INVALID;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700628 mHardwareStatus = AUDIO_HW_GET_MIC_MUTE;
Dima Zavin31f188892011-04-18 16:57:27 -0700629 mPrimaryHardwareDev->get_mic_mute(mPrimaryHardwareDev, &state);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700630 mHardwareStatus = AUDIO_HW_IDLE;
631 return state;
632}
633
634status_t AudioFlinger::setMasterMute(bool muted)
635{
636 // check calling permissions
637 if (!settingsAllowed()) {
638 return PERMISSION_DENIED;
639 }
Eric Laurenta553c252009-07-17 12:17:14 -0700640
Eric Laurent01635942011-01-18 18:39:02 -0800641 Mutex::Autolock _l(mLock);
Eric Laurenta553c252009-07-17 12:17:14 -0700642 mMasterMute = muted;
643 for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
Eric Laurentddb78e72009-07-28 08:44:33 -0700644 mPlaybackThreads.valueAt(i)->setMasterMute(muted);
Eric Laurenta553c252009-07-17 12:17:14 -0700645
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700646 return NO_ERROR;
647}
648
649float AudioFlinger::masterVolume() const
650{
Glenn Kastene6f8a422011-12-13 11:47:54 -0800651 Mutex::Autolock _l(mLock);
652 return masterVolume_l();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700653}
654
655bool AudioFlinger::masterMute() const
656{
Glenn Kastene6f8a422011-12-13 11:47:54 -0800657 Mutex::Autolock _l(mLock);
658 return masterMute_l();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700659}
660
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800661status_t AudioFlinger::setStreamVolume(audio_stream_type_t stream, float value, int output)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700662{
663 // check calling permissions
664 if (!settingsAllowed()) {
665 return PERMISSION_DENIED;
666 }
667
Glenn Kasten6e987a42012-01-06 08:40:01 -0800668 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Steve Block3762c312012-01-06 19:20:56 +0000669 ALOGE("setStreamVolume() invalid stream %d", stream);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700670 return BAD_VALUE;
671 }
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -0800672
Eric Laurenta553c252009-07-17 12:17:14 -0700673 AutoMutex lock(mLock);
674 PlaybackThread *thread = NULL;
675 if (output) {
676 thread = checkPlaybackThread_l(output);
677 if (thread == NULL) {
678 return BAD_VALUE;
679 }
680 }
681
Eric Laurenta553c252009-07-17 12:17:14 -0700682 mStreamTypes[stream].volume = value;
683
684 if (thread == NULL) {
Eric Laurent415f3e22009-10-21 08:14:22 -0700685 for (uint32_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurentddb78e72009-07-28 08:44:33 -0700686 mPlaybackThreads.valueAt(i)->setStreamVolume(stream, value);
Eric Laurent415f3e22009-10-21 08:14:22 -0700687 }
Eric Laurenta553c252009-07-17 12:17:14 -0700688 } else {
689 thread->setStreamVolume(stream, value);
690 }
Eric Laurentef028272009-04-21 07:56:33 -0700691
Eric Laurent415f3e22009-10-21 08:14:22 -0700692 return NO_ERROR;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700693}
694
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800695status_t AudioFlinger::setStreamMute(audio_stream_type_t stream, bool muted)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700696{
697 // check calling permissions
698 if (!settingsAllowed()) {
699 return PERMISSION_DENIED;
700 }
701
Glenn Kasten6e987a42012-01-06 08:40:01 -0800702 if (uint32_t(stream) >= AUDIO_STREAM_CNT ||
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700703 uint32_t(stream) == AUDIO_STREAM_ENFORCED_AUDIBLE) {
Steve Block3762c312012-01-06 19:20:56 +0000704 ALOGE("setStreamMute() invalid stream %d", stream);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700705 return BAD_VALUE;
706 }
The Android Open Source Project10592532009-03-18 17:39:46 -0700707
Eric Laurent01635942011-01-18 18:39:02 -0800708 AutoMutex lock(mLock);
Eric Laurenta553c252009-07-17 12:17:14 -0700709 mStreamTypes[stream].mute = muted;
710 for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
Eric Laurentddb78e72009-07-28 08:44:33 -0700711 mPlaybackThreads.valueAt(i)->setStreamMute(stream, muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800712
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700713 return NO_ERROR;
714}
715
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800716float AudioFlinger::streamVolume(audio_stream_type_t stream, int output) const
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700717{
Glenn Kasten6e987a42012-01-06 08:40:01 -0800718 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700719 return 0.0f;
720 }
Eric Laurenta553c252009-07-17 12:17:14 -0700721
722 AutoMutex lock(mLock);
723 float volume;
724 if (output) {
725 PlaybackThread *thread = checkPlaybackThread_l(output);
726 if (thread == NULL) {
727 return 0.0f;
728 }
729 volume = thread->streamVolume(stream);
730 } else {
731 volume = mStreamTypes[stream].volume;
732 }
733
Eric Laurentef028272009-04-21 07:56:33 -0700734 return volume;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700735}
736
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800737bool AudioFlinger::streamMute(audio_stream_type_t stream) const
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700738{
Glenn Kasten6e987a42012-01-06 08:40:01 -0800739 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700740 return true;
741 }
Eric Laurenta553c252009-07-17 12:17:14 -0700742
743 return mStreamTypes[stream].mute;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700744}
745
Eric Laurentddb78e72009-07-28 08:44:33 -0700746status_t AudioFlinger::setParameters(int ioHandle, const String8& keyValuePairs)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700747{
Eric Laurenta553c252009-07-17 12:17:14 -0700748 status_t result;
749
Steve Block71f2cf12011-10-20 11:56:00 +0100750 ALOGV("setParameters(): io %d, keyvalue %s, tid %d, calling tid %d",
Eric Laurenta553c252009-07-17 12:17:14 -0700751 ioHandle, keyValuePairs.string(), gettid(), IPCThreadState::self()->getCallingPid());
752 // check calling permissions
753 if (!settingsAllowed()) {
754 return PERMISSION_DENIED;
The Android Open Source Project9266c552009-01-15 16:12:10 -0800755 }
Eric Laurenta553c252009-07-17 12:17:14 -0700756
757 // ioHandle == 0 means the parameters are global to the audio hardware interface
758 if (ioHandle == 0) {
759 AutoMutex lock(mHardwareLock);
760 mHardwareStatus = AUDIO_SET_PARAMETER;
Dima Zavin31f188892011-04-18 16:57:27 -0700761 status_t final_result = NO_ERROR;
762 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
763 audio_hw_device_t *dev = mAudioHwDevs[i];
764 result = dev->set_parameters(dev, keyValuePairs.string());
765 final_result = result ?: final_result;
766 }
Eric Laurenta553c252009-07-17 12:17:14 -0700767 mHardwareStatus = AUDIO_HW_IDLE;
Eric Laurent6639b552011-08-01 09:52:20 -0700768 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
769 AudioParameter param = AudioParameter(keyValuePairs);
770 String8 value;
771 if (param.get(String8(AUDIO_PARAMETER_KEY_BT_NREC), value) == NO_ERROR) {
772 Mutex::Autolock _l(mLock);
Eric Laurent2d95dfb2011-08-29 12:42:48 -0700773 bool btNrecIsOff = (value == AUDIO_PARAMETER_VALUE_OFF);
774 if (mBtNrecIsOff != btNrecIsOff) {
Eric Laurent6639b552011-08-01 09:52:20 -0700775 for (size_t i = 0; i < mRecordThreads.size(); i++) {
776 sp<RecordThread> thread = mRecordThreads.valueAt(i);
777 RecordThread::RecordTrack *track = thread->track();
778 if (track != NULL) {
779 audio_devices_t device = (audio_devices_t)(
780 thread->device() & AUDIO_DEVICE_IN_ALL);
Eric Laurent2d95dfb2011-08-29 12:42:48 -0700781 bool suspend = audio_is_bluetooth_sco_device(device) && btNrecIsOff;
Eric Laurent6639b552011-08-01 09:52:20 -0700782 thread->setEffectSuspended(FX_IID_AEC,
783 suspend,
784 track->sessionId());
785 thread->setEffectSuspended(FX_IID_NS,
786 suspend,
787 track->sessionId());
788 }
789 }
Eric Laurent2d95dfb2011-08-29 12:42:48 -0700790 mBtNrecIsOff = btNrecIsOff;
Eric Laurent6639b552011-08-01 09:52:20 -0700791 }
792 }
Dima Zavin31f188892011-04-18 16:57:27 -0700793 return final_result;
Eric Laurenta553c252009-07-17 12:17:14 -0700794 }
795
Eric Laurentb7d94602009-09-29 11:12:57 -0700796 // hold a strong ref on thread in case closeOutput() or closeInput() is called
797 // and the thread is exited once the lock is released
798 sp<ThreadBase> thread;
799 {
800 Mutex::Autolock _l(mLock);
801 thread = checkPlaybackThread_l(ioHandle);
802 if (thread == NULL) {
803 thread = checkRecordThread_l(ioHandle);
Glenn Kasten70ed6b72012-01-10 10:46:34 -0800804 } else if (thread == primaryPlaybackThread_l()) {
Eric Laurent464d5b32011-06-17 21:29:58 -0700805 // indicate output device change to all input threads for pre processing
806 AudioParameter param = AudioParameter(keyValuePairs);
807 int value;
808 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
809 for (size_t i = 0; i < mRecordThreads.size(); i++) {
810 mRecordThreads.valueAt(i)->setParameters(keyValuePairs);
811 }
812 }
Eric Laurentb7d94602009-09-29 11:12:57 -0700813 }
Eric Laurenta553c252009-07-17 12:17:14 -0700814 }
Eric Laurentb7d94602009-09-29 11:12:57 -0700815 if (thread != NULL) {
Glenn Kasten871c16c2010-03-05 12:18:01 -0800816 result = thread->setParameters(keyValuePairs);
Glenn Kasten871c16c2010-03-05 12:18:01 -0800817 return result;
Eric Laurenta553c252009-07-17 12:17:14 -0700818 }
Eric Laurenta553c252009-07-17 12:17:14 -0700819 return BAD_VALUE;
820}
821
Eric Laurentddb78e72009-07-28 08:44:33 -0700822String8 AudioFlinger::getParameters(int ioHandle, const String8& keys)
Eric Laurenta553c252009-07-17 12:17:14 -0700823{
Steve Block71f2cf12011-10-20 11:56:00 +0100824// ALOGV("getParameters() io %d, keys %s, tid %d, calling tid %d",
Eric Laurenta553c252009-07-17 12:17:14 -0700825// ioHandle, keys.string(), gettid(), IPCThreadState::self()->getCallingPid());
826
827 if (ioHandle == 0) {
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700828 String8 out_s8;
829
Dima Zavin31f188892011-04-18 16:57:27 -0700830 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
831 audio_hw_device_t *dev = mAudioHwDevs[i];
832 char *s = dev->get_parameters(dev, keys.string());
833 out_s8 += String8(s);
834 free(s);
835 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700836 return out_s8;
Eric Laurenta553c252009-07-17 12:17:14 -0700837 }
Eric Laurentb7d94602009-09-29 11:12:57 -0700838
839 Mutex::Autolock _l(mLock);
840
Eric Laurenta553c252009-07-17 12:17:14 -0700841 PlaybackThread *playbackThread = checkPlaybackThread_l(ioHandle);
842 if (playbackThread != NULL) {
843 return playbackThread->getParameters(keys);
844 }
845 RecordThread *recordThread = checkRecordThread_l(ioHandle);
846 if (recordThread != NULL) {
847 return recordThread->getParameters(keys);
848 }
849 return String8("");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700850}
851
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800852size_t AudioFlinger::getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853{
Eric Laurent8b4dbf72011-08-23 08:25:03 -0700854 status_t ret = initCheck();
855 if (ret != NO_ERROR) {
856 return 0;
857 }
858
Dima Zavin31f188892011-04-18 16:57:27 -0700859 return mPrimaryHardwareDev->get_input_buffer_size(mPrimaryHardwareDev, sampleRate, format, channelCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800860}
861
Eric Laurent47d0a922010-02-26 02:47:27 -0800862unsigned int AudioFlinger::getInputFramesLost(int ioHandle)
863{
864 if (ioHandle == 0) {
865 return 0;
866 }
867
868 Mutex::Autolock _l(mLock);
869
870 RecordThread *recordThread = checkRecordThread_l(ioHandle);
871 if (recordThread != NULL) {
872 return recordThread->getInputFramesLost();
873 }
874 return 0;
875}
876
Eric Laurent415f3e22009-10-21 08:14:22 -0700877status_t AudioFlinger::setVoiceVolume(float value)
878{
Eric Laurent8b4dbf72011-08-23 08:25:03 -0700879 status_t ret = initCheck();
880 if (ret != NO_ERROR) {
881 return ret;
882 }
883
Eric Laurent415f3e22009-10-21 08:14:22 -0700884 // check calling permissions
885 if (!settingsAllowed()) {
886 return PERMISSION_DENIED;
887 }
888
889 AutoMutex lock(mHardwareLock);
890 mHardwareStatus = AUDIO_SET_VOICE_VOLUME;
Eric Laurent8b4dbf72011-08-23 08:25:03 -0700891 ret = mPrimaryHardwareDev->set_voice_volume(mPrimaryHardwareDev, value);
Eric Laurent415f3e22009-10-21 08:14:22 -0700892 mHardwareStatus = AUDIO_HW_IDLE;
893
894 return ret;
895}
896
Eric Laurent0986e792010-01-19 17:37:09 -0800897status_t AudioFlinger::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames, int output)
898{
899 status_t status;
900
901 Mutex::Autolock _l(mLock);
902
903 PlaybackThread *playbackThread = checkPlaybackThread_l(output);
904 if (playbackThread != NULL) {
905 return playbackThread->getRenderPosition(halFrames, dspFrames);
906 }
907
908 return BAD_VALUE;
909}
910
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800911void AudioFlinger::registerClient(const sp<IAudioFlingerClient>& client)
912{
Eric Laurenta553c252009-07-17 12:17:14 -0700913
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800914 Mutex::Autolock _l(mLock);
915
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700916 int pid = IPCThreadState::self()->getCallingPid();
917 if (mNotificationClients.indexOfKey(pid) < 0) {
918 sp<NotificationClient> notificationClient = new NotificationClient(this,
919 client,
920 pid);
Steve Block71f2cf12011-10-20 11:56:00 +0100921 ALOGV("registerClient() client %p, pid %d", notificationClient.get(), pid);
Eric Laurenta553c252009-07-17 12:17:14 -0700922
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700923 mNotificationClients.add(pid, notificationClient);
Eric Laurenta553c252009-07-17 12:17:14 -0700924
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700925 sp<IBinder> binder = client->asBinder();
926 binder->linkToDeath(notificationClient);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800927
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700928 // the config change is always sent from playback or record threads to avoid deadlock
929 // with AudioSystem::gLock
930 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
931 mPlaybackThreads.valueAt(i)->sendConfigEvent(AudioSystem::OUTPUT_OPENED);
932 }
Eric Laurenta553c252009-07-17 12:17:14 -0700933
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700934 for (size_t i = 0; i < mRecordThreads.size(); i++) {
935 mRecordThreads.valueAt(i)->sendConfigEvent(AudioSystem::INPUT_OPENED);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800936 }
937 }
938}
939
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700940void AudioFlinger::removeNotificationClient(pid_t pid)
941{
942 Mutex::Autolock _l(mLock);
943
944 int index = mNotificationClients.indexOfKey(pid);
945 if (index >= 0) {
946 sp <NotificationClient> client = mNotificationClients.valueFor(pid);
Steve Block71f2cf12011-10-20 11:56:00 +0100947 ALOGV("removeNotificationClient() %p, pid %d", client.get(), pid);
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700948 mNotificationClients.removeItem(pid);
949 }
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700950
Steve Block71f2cf12011-10-20 11:56:00 +0100951 ALOGV("%d died, releasing its sessions", pid);
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700952 int num = mAudioSessionRefs.size();
953 bool removed = false;
954 for (int i = 0; i< num; i++) {
955 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
Steve Block71f2cf12011-10-20 11:56:00 +0100956 ALOGV(" pid %d @ %d", ref->pid, i);
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700957 if (ref->pid == pid) {
Steve Block71f2cf12011-10-20 11:56:00 +0100958 ALOGV(" removing entry for pid %d session %d", pid, ref->sessionid);
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700959 mAudioSessionRefs.removeAt(i);
960 delete ref;
961 removed = true;
962 i--;
963 num--;
964 }
965 }
966 if (removed) {
967 purgeStaleEffects_l();
968 }
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700969}
970
Eric Laurent296a0ec2009-09-15 07:10:12 -0700971// audioConfigChanged_l() must be called with AudioFlinger::mLock held
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700972void AudioFlinger::audioConfigChanged_l(int event, int ioHandle, void *param2)
973{
Eric Laurent49f02be2009-11-19 09:00:56 -0800974 size_t size = mNotificationClients.size();
975 for (size_t i = 0; i < size; i++) {
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700976 mNotificationClients.valueAt(i)->client()->ioConfigChanged(event, ioHandle, param2);
Eric Laurenta553c252009-07-17 12:17:14 -0700977 }
978}
979
Eric Laurentb9481d82009-09-17 05:12:56 -0700980// removeClient_l() must be called with AudioFlinger::mLock held
981void AudioFlinger::removeClient_l(pid_t pid)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700982{
Steve Block71f2cf12011-10-20 11:56:00 +0100983 ALOGV("removeClient_l() pid %d, tid %d, calling tid %d", pid, gettid(), IPCThreadState::self()->getCallingPid());
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700984 mClients.removeItem(pid);
985}
986
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700987
Eric Laurenta553c252009-07-17 12:17:14 -0700988// ----------------------------------------------------------------------------
989
Eric Laurent464d5b32011-06-17 21:29:58 -0700990AudioFlinger::ThreadBase::ThreadBase(const sp<AudioFlinger>& audioFlinger, int id, uint32_t device)
Eric Laurenta553c252009-07-17 12:17:14 -0700991 : Thread(false),
992 mAudioFlinger(audioFlinger), mSampleRate(0), mFrameCount(0), mChannelCount(0),
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800993 mFrameSize(1), mFormat(AUDIO_FORMAT_INVALID), mStandby(false), mId(id), mExiting(false),
Eric Laurent6dbdc402011-07-22 09:04:31 -0700994 mDevice(device)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -0700995{
Eric Laurent6dbdc402011-07-22 09:04:31 -0700996 mDeathRecipient = new PMDeathRecipient(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800997}
998
Eric Laurenta553c252009-07-17 12:17:14 -0700999AudioFlinger::ThreadBase::~ThreadBase()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001000{
Eric Laurent8fce46a2009-08-04 09:45:33 -07001001 mParamCond.broadcast();
Eric Laurent6dbdc402011-07-22 09:04:31 -07001002 // do not lock the mutex in destructor
1003 releaseWakeLock_l();
Eric Laurent4a64a6e2011-09-27 12:07:15 -07001004 if (mPowerManager != 0) {
1005 sp<IBinder> binder = mPowerManager->asBinder();
1006 binder->unlinkToDeath(mDeathRecipient);
1007 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001008}
1009
Eric Laurenta553c252009-07-17 12:17:14 -07001010void AudioFlinger::ThreadBase::exit()
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001011{
Glenn Kastene5fb2632011-12-14 10:28:06 -08001012 // keep a strong ref on ourself so that we won't get
Eric Laurenta553c252009-07-17 12:17:14 -07001013 // destroyed in the middle of requestExitAndWait()
1014 sp <ThreadBase> strongMe = this;
1015
Steve Block71f2cf12011-10-20 11:56:00 +01001016 ALOGV("ThreadBase::exit");
Eric Laurenta553c252009-07-17 12:17:14 -07001017 {
Glenn Kasten325ee1c2012-01-05 15:41:56 -08001018 AutoMutex lock(mLock);
Eric Laurent49f02be2009-11-19 09:00:56 -08001019 mExiting = true;
Eric Laurenta553c252009-07-17 12:17:14 -07001020 requestExit();
1021 mWaitWorkCV.signal();
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001022 }
Eric Laurenta553c252009-07-17 12:17:14 -07001023 requestExitAndWait();
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001024}
Eric Laurenta553c252009-07-17 12:17:14 -07001025
1026uint32_t AudioFlinger::ThreadBase::sampleRate() const
1027{
1028 return mSampleRate;
1029}
1030
1031int AudioFlinger::ThreadBase::channelCount() const
1032{
Eric Laurentb0a01472010-05-14 05:45:46 -07001033 return (int)mChannelCount;
Eric Laurenta553c252009-07-17 12:17:14 -07001034}
1035
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001036audio_format_t AudioFlinger::ThreadBase::format() const
Eric Laurenta553c252009-07-17 12:17:14 -07001037{
1038 return mFormat;
1039}
1040
1041size_t AudioFlinger::ThreadBase::frameCount() const
1042{
1043 return mFrameCount;
1044}
1045
1046status_t AudioFlinger::ThreadBase::setParameters(const String8& keyValuePairs)
1047{
Eric Laurent8fce46a2009-08-04 09:45:33 -07001048 status_t status;
Eric Laurenta553c252009-07-17 12:17:14 -07001049
Steve Block71f2cf12011-10-20 11:56:00 +01001050 ALOGV("ThreadBase::setParameters() %s", keyValuePairs.string());
Eric Laurenta553c252009-07-17 12:17:14 -07001051 Mutex::Autolock _l(mLock);
Eric Laurenta553c252009-07-17 12:17:14 -07001052
Eric Laurent8fce46a2009-08-04 09:45:33 -07001053 mNewParameters.add(keyValuePairs);
Eric Laurenta553c252009-07-17 12:17:14 -07001054 mWaitWorkCV.signal();
Eric Laurentb7d94602009-09-29 11:12:57 -07001055 // wait condition with timeout in case the thread loop has exited
1056 // before the request could be processed
Glenn Kastencbfe2e12011-12-13 11:04:14 -08001057 if (mParamCond.waitRelative(mLock, kSetParametersTimeoutNs) == NO_ERROR) {
Eric Laurentb7d94602009-09-29 11:12:57 -07001058 status = mParamStatus;
1059 mWaitWorkCV.signal();
1060 } else {
1061 status = TIMED_OUT;
1062 }
Eric Laurent8fce46a2009-08-04 09:45:33 -07001063 return status;
Eric Laurenta553c252009-07-17 12:17:14 -07001064}
1065
1066void AudioFlinger::ThreadBase::sendConfigEvent(int event, int param)
1067{
1068 Mutex::Autolock _l(mLock);
Eric Laurent8fce46a2009-08-04 09:45:33 -07001069 sendConfigEvent_l(event, param);
1070}
1071
1072// sendConfigEvent_l() must be called with ThreadBase::mLock held
1073void AudioFlinger::ThreadBase::sendConfigEvent_l(int event, int param)
1074{
Glenn Kasten4b220f02011-12-13 11:50:00 -08001075 ConfigEvent configEvent;
1076 configEvent.mEvent = event;
1077 configEvent.mParam = param;
Eric Laurenta553c252009-07-17 12:17:14 -07001078 mConfigEvents.add(configEvent);
Steve Block71f2cf12011-10-20 11:56:00 +01001079 ALOGV("sendConfigEvent() num events %d event %d, param %d", mConfigEvents.size(), event, param);
Eric Laurenta553c252009-07-17 12:17:14 -07001080 mWaitWorkCV.signal();
1081}
1082
1083void AudioFlinger::ThreadBase::processConfigEvents()
1084{
1085 mLock.lock();
1086 while(!mConfigEvents.isEmpty()) {
Steve Block71f2cf12011-10-20 11:56:00 +01001087 ALOGV("processConfigEvents() remaining events %d", mConfigEvents.size());
Glenn Kasten4b220f02011-12-13 11:50:00 -08001088 ConfigEvent configEvent = mConfigEvents[0];
Eric Laurenta553c252009-07-17 12:17:14 -07001089 mConfigEvents.removeAt(0);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001090 // release mLock before locking AudioFlinger mLock: lock order is always
1091 // AudioFlinger then ThreadBase to avoid cross deadlock
Eric Laurenta553c252009-07-17 12:17:14 -07001092 mLock.unlock();
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001093 mAudioFlinger->mLock.lock();
Glenn Kasten4b220f02011-12-13 11:50:00 -08001094 audioConfigChanged_l(configEvent.mEvent, configEvent.mParam);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001095 mAudioFlinger->mLock.unlock();
Eric Laurenta553c252009-07-17 12:17:14 -07001096 mLock.lock();
1097 }
1098 mLock.unlock();
1099}
1100
Eric Laurent3fdb1262009-11-07 00:01:32 -08001101status_t AudioFlinger::ThreadBase::dumpBase(int fd, const Vector<String16>& args)
1102{
1103 const size_t SIZE = 256;
1104 char buffer[SIZE];
1105 String8 result;
1106
1107 bool locked = tryLock(mLock);
1108 if (!locked) {
1109 snprintf(buffer, SIZE, "thread %p maybe dead locked\n", this);
1110 write(fd, buffer, strlen(buffer));
1111 }
1112
1113 snprintf(buffer, SIZE, "standby: %d\n", mStandby);
1114 result.append(buffer);
1115 snprintf(buffer, SIZE, "Sample rate: %d\n", mSampleRate);
1116 result.append(buffer);
1117 snprintf(buffer, SIZE, "Frame count: %d\n", mFrameCount);
1118 result.append(buffer);
1119 snprintf(buffer, SIZE, "Channel Count: %d\n", mChannelCount);
1120 result.append(buffer);
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001121 snprintf(buffer, SIZE, "Channel Mask: 0x%08x\n", mChannelMask);
1122 result.append(buffer);
Eric Laurent3fdb1262009-11-07 00:01:32 -08001123 snprintf(buffer, SIZE, "Format: %d\n", mFormat);
1124 result.append(buffer);
Glenn Kastenfaf354d2012-01-11 09:48:27 -08001125 snprintf(buffer, SIZE, "Frame size: %u\n", mFrameSize);
Eric Laurent3fdb1262009-11-07 00:01:32 -08001126 result.append(buffer);
1127
1128 snprintf(buffer, SIZE, "\nPending setParameters commands: \n");
1129 result.append(buffer);
1130 result.append(" Index Command");
1131 for (size_t i = 0; i < mNewParameters.size(); ++i) {
1132 snprintf(buffer, SIZE, "\n %02d ", i);
1133 result.append(buffer);
1134 result.append(mNewParameters[i]);
1135 }
1136
1137 snprintf(buffer, SIZE, "\n\nPending config events: \n");
1138 result.append(buffer);
1139 snprintf(buffer, SIZE, " Index event param\n");
1140 result.append(buffer);
1141 for (size_t i = 0; i < mConfigEvents.size(); i++) {
Glenn Kasten4b220f02011-12-13 11:50:00 -08001142 snprintf(buffer, SIZE, " %02d %02d %d\n", i, mConfigEvents[i].mEvent, mConfigEvents[i].mParam);
Eric Laurent3fdb1262009-11-07 00:01:32 -08001143 result.append(buffer);
1144 }
1145 result.append("\n");
1146
1147 write(fd, result.string(), result.size());
1148
1149 if (locked) {
1150 mLock.unlock();
1151 }
1152 return NO_ERROR;
1153}
1154
Eric Laurent1345d332011-07-24 17:49:51 -07001155status_t AudioFlinger::ThreadBase::dumpEffectChains(int fd, const Vector<String16>& args)
1156{
1157 const size_t SIZE = 256;
1158 char buffer[SIZE];
1159 String8 result;
1160
1161 snprintf(buffer, SIZE, "\n- %d Effect Chains:\n", mEffectChains.size());
1162 write(fd, buffer, strlen(buffer));
1163
1164 for (size_t i = 0; i < mEffectChains.size(); ++i) {
1165 sp<EffectChain> chain = mEffectChains[i];
1166 if (chain != 0) {
1167 chain->dump(fd, args);
1168 }
1169 }
1170 return NO_ERROR;
1171}
1172
Eric Laurent6dbdc402011-07-22 09:04:31 -07001173void AudioFlinger::ThreadBase::acquireWakeLock()
1174{
1175 Mutex::Autolock _l(mLock);
1176 acquireWakeLock_l();
1177}
1178
1179void AudioFlinger::ThreadBase::acquireWakeLock_l()
1180{
1181 if (mPowerManager == 0) {
1182 // use checkService() to avoid blocking if power service is not up yet
1183 sp<IBinder> binder =
1184 defaultServiceManager()->checkService(String16("power"));
1185 if (binder == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00001186 ALOGW("Thread %s cannot connect to the power manager service", mName);
Eric Laurent6dbdc402011-07-22 09:04:31 -07001187 } else {
1188 mPowerManager = interface_cast<IPowerManager>(binder);
1189 binder->linkToDeath(mDeathRecipient);
1190 }
1191 }
1192 if (mPowerManager != 0) {
1193 sp<IBinder> binder = new BBinder();
1194 status_t status = mPowerManager->acquireWakeLock(POWERMANAGER_PARTIAL_WAKE_LOCK,
1195 binder,
1196 String16(mName));
1197 if (status == NO_ERROR) {
1198 mWakeLockToken = binder;
1199 }
Steve Block71f2cf12011-10-20 11:56:00 +01001200 ALOGV("acquireWakeLock_l() %s status %d", mName, status);
Eric Laurent6dbdc402011-07-22 09:04:31 -07001201 }
1202}
1203
1204void AudioFlinger::ThreadBase::releaseWakeLock()
1205{
1206 Mutex::Autolock _l(mLock);
Eric Laurentd49ead62011-07-28 13:59:02 -07001207 releaseWakeLock_l();
Eric Laurent6dbdc402011-07-22 09:04:31 -07001208}
1209
1210void AudioFlinger::ThreadBase::releaseWakeLock_l()
1211{
1212 if (mWakeLockToken != 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01001213 ALOGV("releaseWakeLock_l() %s", mName);
Eric Laurent6dbdc402011-07-22 09:04:31 -07001214 if (mPowerManager != 0) {
1215 mPowerManager->releaseWakeLock(mWakeLockToken, 0);
1216 }
1217 mWakeLockToken.clear();
1218 }
1219}
1220
1221void AudioFlinger::ThreadBase::clearPowerManager()
1222{
1223 Mutex::Autolock _l(mLock);
1224 releaseWakeLock_l();
1225 mPowerManager.clear();
1226}
1227
1228void AudioFlinger::ThreadBase::PMDeathRecipient::binderDied(const wp<IBinder>& who)
1229{
1230 sp<ThreadBase> thread = mThread.promote();
1231 if (thread != 0) {
1232 thread->clearPowerManager();
1233 }
Steve Block8564c8d2012-01-05 23:22:43 +00001234 ALOGW("power manager service died !!!");
Eric Laurent6dbdc402011-07-22 09:04:31 -07001235}
Eric Laurent1345d332011-07-24 17:49:51 -07001236
Eric Laurentf82fccd2011-07-27 19:49:51 -07001237void AudioFlinger::ThreadBase::setEffectSuspended(
1238 const effect_uuid_t *type, bool suspend, int sessionId)
1239{
1240 Mutex::Autolock _l(mLock);
1241 setEffectSuspended_l(type, suspend, sessionId);
1242}
1243
1244void AudioFlinger::ThreadBase::setEffectSuspended_l(
1245 const effect_uuid_t *type, bool suspend, int sessionId)
1246{
1247 sp<EffectChain> chain;
1248 chain = getEffectChain_l(sessionId);
1249 if (chain != 0) {
1250 if (type != NULL) {
1251 chain->setEffectSuspended_l(type, suspend);
1252 } else {
1253 chain->setEffectSuspendedAll_l(suspend);
1254 }
1255 }
1256
1257 updateSuspendedSessions_l(type, suspend, sessionId);
1258}
1259
1260void AudioFlinger::ThreadBase::checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain)
1261{
1262 int index = mSuspendedSessions.indexOfKey(chain->sessionId());
1263 if (index < 0) {
1264 return;
1265 }
1266
1267 KeyedVector <int, sp<SuspendedSessionDesc> > sessionEffects =
1268 mSuspendedSessions.editValueAt(index);
1269
1270 for (size_t i = 0; i < sessionEffects.size(); i++) {
1271 sp <SuspendedSessionDesc> desc = sessionEffects.valueAt(i);
1272 for (int j = 0; j < desc->mRefCount; j++) {
1273 if (sessionEffects.keyAt(i) == EffectChain::kKeyForSuspendAll) {
1274 chain->setEffectSuspendedAll_l(true);
1275 } else {
Steve Block71f2cf12011-10-20 11:56:00 +01001276 ALOGV("checkSuspendOnAddEffectChain_l() suspending effects %08x",
Eric Laurentf82fccd2011-07-27 19:49:51 -07001277 desc->mType.timeLow);
1278 chain->setEffectSuspended_l(&desc->mType, true);
1279 }
1280 }
1281 }
1282}
1283
Eric Laurentf82fccd2011-07-27 19:49:51 -07001284void AudioFlinger::ThreadBase::updateSuspendedSessions_l(const effect_uuid_t *type,
1285 bool suspend,
1286 int sessionId)
1287{
1288 int index = mSuspendedSessions.indexOfKey(sessionId);
1289
1290 KeyedVector <int, sp<SuspendedSessionDesc> > sessionEffects;
1291
1292 if (suspend) {
1293 if (index >= 0) {
1294 sessionEffects = mSuspendedSessions.editValueAt(index);
1295 } else {
1296 mSuspendedSessions.add(sessionId, sessionEffects);
1297 }
1298 } else {
1299 if (index < 0) {
1300 return;
1301 }
1302 sessionEffects = mSuspendedSessions.editValueAt(index);
1303 }
1304
1305
1306 int key = EffectChain::kKeyForSuspendAll;
1307 if (type != NULL) {
1308 key = type->timeLow;
1309 }
1310 index = sessionEffects.indexOfKey(key);
1311
1312 sp <SuspendedSessionDesc> desc;
1313 if (suspend) {
1314 if (index >= 0) {
1315 desc = sessionEffects.valueAt(index);
1316 } else {
1317 desc = new SuspendedSessionDesc();
1318 if (type != NULL) {
1319 memcpy(&desc->mType, type, sizeof(effect_uuid_t));
1320 }
1321 sessionEffects.add(key, desc);
Steve Block71f2cf12011-10-20 11:56:00 +01001322 ALOGV("updateSuspendedSessions_l() suspend adding effect %08x", key);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001323 }
1324 desc->mRefCount++;
1325 } else {
1326 if (index < 0) {
1327 return;
1328 }
1329 desc = sessionEffects.valueAt(index);
1330 if (--desc->mRefCount == 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01001331 ALOGV("updateSuspendedSessions_l() restore removing effect %08x", key);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001332 sessionEffects.removeItemsAt(index);
1333 if (sessionEffects.isEmpty()) {
Steve Block71f2cf12011-10-20 11:56:00 +01001334 ALOGV("updateSuspendedSessions_l() restore removing session %d",
Eric Laurentf82fccd2011-07-27 19:49:51 -07001335 sessionId);
1336 mSuspendedSessions.removeItem(sessionId);
1337 }
1338 }
1339 }
1340 if (!sessionEffects.isEmpty()) {
1341 mSuspendedSessions.replaceValueFor(sessionId, sessionEffects);
1342 }
1343}
1344
1345void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1346 bool enabled,
1347 int sessionId)
1348{
1349 Mutex::Autolock _l(mLock);
Eric Laurent7fa1cee2011-10-19 11:44:54 -07001350 checkSuspendOnEffectEnabled_l(effect, enabled, sessionId);
1351}
Eric Laurentf82fccd2011-07-27 19:49:51 -07001352
Eric Laurent7fa1cee2011-10-19 11:44:54 -07001353void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
1354 bool enabled,
1355 int sessionId)
1356{
Eric Laurent6752ec82011-08-10 10:37:50 -07001357 if (mType != RECORD) {
1358 // suspend all effects in AUDIO_SESSION_OUTPUT_MIX when enabling any effect on
1359 // another session. This gives the priority to well behaved effect control panels
1360 // and applications not using global effects.
1361 if (sessionId != AUDIO_SESSION_OUTPUT_MIX) {
1362 setEffectSuspended_l(NULL, enabled, AUDIO_SESSION_OUTPUT_MIX);
1363 }
1364 }
Eric Laurentf82fccd2011-07-27 19:49:51 -07001365
1366 sp<EffectChain> chain = getEffectChain_l(sessionId);
1367 if (chain != 0) {
1368 chain->checkSuspendOnEffectEnabled(effect, enabled);
1369 }
1370}
1371
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001372// ----------------------------------------------------------------------------
1373
Eric Laurent464d5b32011-06-17 21:29:58 -07001374AudioFlinger::PlaybackThread::PlaybackThread(const sp<AudioFlinger>& audioFlinger,
1375 AudioStreamOut* output,
1376 int id,
1377 uint32_t device)
1378 : ThreadBase(audioFlinger, id, device),
Glenn Kastenc434c902011-12-13 11:53:26 -08001379 mMixBuffer(NULL), mSuspended(0), mBytesWritten(0), mOutput(output),
Eric Laurent464d5b32011-06-17 21:29:58 -07001380 mLastWriteTime(0), mNumWrites(0), mNumDelayedWrites(0), mInWrite(false)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001381{
Eric Laurent6dbdc402011-07-22 09:04:31 -07001382 snprintf(mName, kNameLength, "AudioOut_%d", id);
1383
Eric Laurenta553c252009-07-17 12:17:14 -07001384 readOutputParameters();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001385
Glenn Kastene6f8a422011-12-13 11:47:54 -08001386 // Assumes constructor is called by AudioFlinger with it's mLock held,
1387 // but it would be safer to explicitly pass these as parameters
1388 mMasterVolume = mAudioFlinger->masterVolume_l();
1389 mMasterMute = mAudioFlinger->masterMute_l();
Eric Laurenta553c252009-07-17 12:17:14 -07001390
Glenn Kasten6e987a42012-01-06 08:40:01 -08001391 // mStreamTypes[AUDIO_STREAM_CNT] is initialized by stream_type_t default constructor
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08001392 // There is no AUDIO_STREAM_MIN, and ++ operator does not compile
1393 for (audio_stream_type_t stream = (audio_stream_type_t) 0; stream < AUDIO_STREAM_CNT;
1394 stream = (audio_stream_type_t) (stream + 1)) {
Eric Laurenta553c252009-07-17 12:17:14 -07001395 mStreamTypes[stream].volume = mAudioFlinger->streamVolumeInternal(stream);
1396 mStreamTypes[stream].mute = mAudioFlinger->streamMute(stream);
Glenn Kasten6e987a42012-01-06 08:40:01 -08001397 // initialized by stream_type_t default constructor
1398 // mStreamTypes[stream].valid = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001399 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001400}
1401
Eric Laurenta553c252009-07-17 12:17:14 -07001402AudioFlinger::PlaybackThread::~PlaybackThread()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001403{
1404 delete [] mMixBuffer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001405}
1406
Eric Laurenta553c252009-07-17 12:17:14 -07001407status_t AudioFlinger::PlaybackThread::dump(int fd, const Vector<String16>& args)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001408{
1409 dumpInternals(fd, args);
1410 dumpTracks(fd, args);
Eric Laurent65b65452010-06-01 23:49:17 -07001411 dumpEffectChains(fd, args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001412 return NO_ERROR;
1413}
1414
Eric Laurenta553c252009-07-17 12:17:14 -07001415status_t AudioFlinger::PlaybackThread::dumpTracks(int fd, const Vector<String16>& args)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001416{
1417 const size_t SIZE = 256;
1418 char buffer[SIZE];
1419 String8 result;
1420
Eric Laurenta553c252009-07-17 12:17:14 -07001421 snprintf(buffer, SIZE, "Output thread %p tracks\n", this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001422 result.append(buffer);
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001423 result.append(" Name Clien Typ Fmt Chn mask Session Buf S M F SRate LeftV RighV Serv User Main buf Aux Buf\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001424 for (size_t i = 0; i < mTracks.size(); ++i) {
Eric Laurentd3b4d0c2009-03-31 14:34:35 -07001425 sp<Track> track = mTracks[i];
1426 if (track != 0) {
1427 track->dump(buffer, SIZE);
1428 result.append(buffer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001429 }
1430 }
1431
Eric Laurenta553c252009-07-17 12:17:14 -07001432 snprintf(buffer, SIZE, "Output thread %p active tracks\n", this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001433 result.append(buffer);
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001434 result.append(" Name Clien Typ Fmt Chn mask Session Buf S M F SRate LeftV RighV Serv User Main buf Aux Buf\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001435 for (size_t i = 0; i < mActiveTracks.size(); ++i) {
Eric Laurentd3b4d0c2009-03-31 14:34:35 -07001436 wp<Track> wTrack = mActiveTracks[i];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001437 if (wTrack != 0) {
1438 sp<Track> track = wTrack.promote();
1439 if (track != 0) {
1440 track->dump(buffer, SIZE);
1441 result.append(buffer);
1442 }
1443 }
1444 }
1445 write(fd, result.string(), result.size());
1446 return NO_ERROR;
1447}
1448
Eric Laurenta553c252009-07-17 12:17:14 -07001449status_t AudioFlinger::PlaybackThread::dumpInternals(int fd, const Vector<String16>& args)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001450{
1451 const size_t SIZE = 256;
1452 char buffer[SIZE];
1453 String8 result;
1454
Eric Laurent3fdb1262009-11-07 00:01:32 -08001455 snprintf(buffer, SIZE, "\nOutput thread %p internals\n", this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001456 result.append(buffer);
1457 snprintf(buffer, SIZE, "last write occurred (msecs): %llu\n", ns2ms(systemTime() - mLastWriteTime));
1458 result.append(buffer);
1459 snprintf(buffer, SIZE, "total writes: %d\n", mNumWrites);
1460 result.append(buffer);
1461 snprintf(buffer, SIZE, "delayed writes: %d\n", mNumDelayedWrites);
1462 result.append(buffer);
1463 snprintf(buffer, SIZE, "blocked in write: %d\n", mInWrite);
1464 result.append(buffer);
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08001465 snprintf(buffer, SIZE, "suspend count: %d\n", mSuspended);
1466 result.append(buffer);
Eric Laurent65b65452010-06-01 23:49:17 -07001467 snprintf(buffer, SIZE, "mix buffer : %p\n", mMixBuffer);
1468 result.append(buffer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001469 write(fd, result.string(), result.size());
Eric Laurent3fdb1262009-11-07 00:01:32 -08001470
1471 dumpBase(fd, args);
1472
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001473 return NO_ERROR;
1474}
1475
1476// Thread virtuals
Eric Laurenta553c252009-07-17 12:17:14 -07001477status_t AudioFlinger::PlaybackThread::readyToRun()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001478{
Eric Laurent828b9772011-08-07 16:32:26 -07001479 status_t status = initCheck();
1480 if (status == NO_ERROR) {
Steve Block6215d3f2012-01-04 20:05:49 +00001481 ALOGI("AudioFlinger's thread %p ready to run", this);
Eric Laurent828b9772011-08-07 16:32:26 -07001482 } else {
Steve Block3762c312012-01-06 19:20:56 +00001483 ALOGE("No working audio driver found.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001484 }
Eric Laurent828b9772011-08-07 16:32:26 -07001485 return status;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001486}
1487
Eric Laurenta553c252009-07-17 12:17:14 -07001488void AudioFlinger::PlaybackThread::onFirstRef()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001489{
Eric Laurent6dbdc402011-07-22 09:04:31 -07001490 run(mName, ANDROID_PRIORITY_URGENT_AUDIO);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001491}
1492
Eric Laurenta553c252009-07-17 12:17:14 -07001493// PlaybackThread::createTrack_l() must be called with AudioFlinger::mLock held
1494sp<AudioFlinger::PlaybackThread::Track> AudioFlinger::PlaybackThread::createTrack_l(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001495 const sp<AudioFlinger::Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08001496 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001497 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001498 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001499 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001500 int frameCount,
1501 const sp<IMemory>& sharedBuffer,
Eric Laurent65b65452010-06-01 23:49:17 -07001502 int sessionId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001503 status_t *status)
1504{
1505 sp<Track> track;
1506 status_t lStatus;
Eric Laurenta553c252009-07-17 12:17:14 -07001507
1508 if (mType == DIRECT) {
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001509 if ((format & AUDIO_FORMAT_MAIN_MASK) == AUDIO_FORMAT_PCM) {
1510 if (sampleRate != mSampleRate || format != mFormat || channelMask != mChannelMask) {
Steve Block3762c312012-01-06 19:20:56 +00001511 ALOGE("createTrack_l() Bad parameter: sampleRate %d format %d, channelMask 0x%08x \""
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001512 "for output %p with format %d",
1513 sampleRate, format, channelMask, mOutput, mFormat);
1514 lStatus = BAD_VALUE;
1515 goto Exit;
1516 }
Eric Laurenta553c252009-07-17 12:17:14 -07001517 }
1518 } else {
1519 // Resampler implementation limits input sampling rate to 2 x output sampling rate.
1520 if (sampleRate > mSampleRate*2) {
Steve Block3762c312012-01-06 19:20:56 +00001521 ALOGE("Sample rate out of range: %d mSampleRate %d", sampleRate, mSampleRate);
Eric Laurenta553c252009-07-17 12:17:14 -07001522 lStatus = BAD_VALUE;
1523 goto Exit;
1524 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001525 }
1526
Eric Laurent464d5b32011-06-17 21:29:58 -07001527 lStatus = initCheck();
1528 if (lStatus != NO_ERROR) {
Steve Block3762c312012-01-06 19:20:56 +00001529 ALOGE("Audio driver not initialized.");
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001530 goto Exit;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001531 }
1532
Eric Laurenta553c252009-07-17 12:17:14 -07001533 { // scope for mLock
1534 Mutex::Autolock _l(mLock);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001535
1536 // all tracks in same audio session must share the same routing strategy otherwise
1537 // conflicts will happen when tracks are moved from one output to another by audio policy
1538 // manager
1539 uint32_t strategy =
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001540 AudioSystem::getStrategyForStream((audio_stream_type_t)streamType);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001541 for (size_t i = 0; i < mTracks.size(); ++i) {
1542 sp<Track> t = mTracks[i];
1543 if (t != 0) {
Glenn Kasten9818a9d2011-10-28 10:31:42 -07001544 uint32_t actual = AudioSystem::getStrategyForStream((audio_stream_type_t)t->type());
1545 if (sessionId == t->sessionId() && strategy != actual) {
Steve Block3762c312012-01-06 19:20:56 +00001546 ALOGE("createTrack_l() mismatched strategy; expected %u but found %u",
Glenn Kasten9818a9d2011-10-28 10:31:42 -07001547 strategy, actual);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001548 lStatus = BAD_VALUE;
1549 goto Exit;
1550 }
1551 }
1552 }
1553
Eric Laurenta553c252009-07-17 12:17:14 -07001554 track = new Track(this, client, streamType, sampleRate, format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001555 channelMask, frameCount, sharedBuffer, sessionId);
Eric Laurent73b60352009-11-09 04:45:39 -08001556 if (track->getCblk() == NULL || track->name() < 0) {
Eric Laurenta553c252009-07-17 12:17:14 -07001557 lStatus = NO_MEMORY;
1558 goto Exit;
1559 }
1560 mTracks.add(track);
Eric Laurent65b65452010-06-01 23:49:17 -07001561
1562 sp<EffectChain> chain = getEffectChain_l(sessionId);
1563 if (chain != 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01001564 ALOGV("createTrack_l() setting main buffer %p", chain->inBuffer());
Eric Laurent65b65452010-06-01 23:49:17 -07001565 track->setMainBuffer(chain->inBuffer());
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001566 chain->setStrategy(AudioSystem::getStrategyForStream((audio_stream_type_t)track->type()));
Eric Laurent90681d62011-05-09 12:09:06 -07001567 chain->incTrackCnt();
Eric Laurent65b65452010-06-01 23:49:17 -07001568 }
Eric Laurent05ce0942011-08-30 10:18:54 -07001569
1570 // invalidate track immediately if the stream type was moved to another thread since
1571 // createTrack() was called by the client process.
1572 if (!mStreamTypes[streamType].valid) {
Steve Block8564c8d2012-01-05 23:22:43 +00001573 ALOGW("createTrack_l() on thread %p: invalidating track on stream %d",
Eric Laurent05ce0942011-08-30 10:18:54 -07001574 this, streamType);
1575 android_atomic_or(CBLK_INVALID_ON, &track->mCblk->flags);
1576 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001577 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001578 lStatus = NO_ERROR;
1579
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001580Exit:
1581 if(status) {
1582 *status = lStatus;
1583 }
1584 return track;
1585}
1586
Eric Laurenta553c252009-07-17 12:17:14 -07001587uint32_t AudioFlinger::PlaybackThread::latency() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001588{
Eric Laurent828b9772011-08-07 16:32:26 -07001589 Mutex::Autolock _l(mLock);
1590 if (initCheck() == NO_ERROR) {
Dima Zavin31f188892011-04-18 16:57:27 -07001591 return mOutput->stream->get_latency(mOutput->stream);
Eric Laurent828b9772011-08-07 16:32:26 -07001592 } else {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001593 return 0;
1594 }
1595}
1596
Eric Laurenta553c252009-07-17 12:17:14 -07001597status_t AudioFlinger::PlaybackThread::setMasterVolume(float value)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001598{
1599 mMasterVolume = value;
1600 return NO_ERROR;
1601}
1602
Eric Laurenta553c252009-07-17 12:17:14 -07001603status_t AudioFlinger::PlaybackThread::setMasterMute(bool muted)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001604{
1605 mMasterMute = muted;
1606 return NO_ERROR;
1607}
1608
Eric Laurenta553c252009-07-17 12:17:14 -07001609float AudioFlinger::PlaybackThread::masterVolume() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001610{
1611 return mMasterVolume;
1612}
1613
Eric Laurenta553c252009-07-17 12:17:14 -07001614bool AudioFlinger::PlaybackThread::masterMute() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001615{
1616 return mMasterMute;
1617}
1618
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08001619status_t AudioFlinger::PlaybackThread::setStreamVolume(audio_stream_type_t stream, float value)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001620{
1621 mStreamTypes[stream].volume = value;
1622 return NO_ERROR;
1623}
1624
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08001625status_t AudioFlinger::PlaybackThread::setStreamMute(audio_stream_type_t stream, bool muted)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001626{
1627 mStreamTypes[stream].mute = muted;
1628 return NO_ERROR;
1629}
1630
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08001631float AudioFlinger::PlaybackThread::streamVolume(audio_stream_type_t stream) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001632{
1633 return mStreamTypes[stream].volume;
1634}
1635
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08001636bool AudioFlinger::PlaybackThread::streamMute(audio_stream_type_t stream) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001637{
1638 return mStreamTypes[stream].mute;
1639}
1640
Eric Laurenta553c252009-07-17 12:17:14 -07001641// addTrack_l() must be called with ThreadBase::mLock held
1642status_t AudioFlinger::PlaybackThread::addTrack_l(const sp<Track>& track)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001643{
1644 status_t status = ALREADY_EXISTS;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001645
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001646 // set retry count for buffer fill
1647 track->mRetryCount = kMaxTrackStartupRetries;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001648 if (mActiveTracks.indexOf(track) < 0) {
1649 // the track is newly added, make sure it fills up all its
1650 // buffers before playing. This is to ensure the client will
1651 // effectively get the latency it requested.
1652 track->mFillingUpStatus = Track::FS_FILLING;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08001653 track->mResetDone = false;
Eric Laurenta553c252009-07-17 12:17:14 -07001654 mActiveTracks.add(track);
Eric Laurent65b65452010-06-01 23:49:17 -07001655 if (track->mainBuffer() != mMixBuffer) {
1656 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1657 if (chain != 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01001658 ALOGV("addTrack_l() starting track on chain %p for session %d", chain.get(), track->sessionId());
Eric Laurent90681d62011-05-09 12:09:06 -07001659 chain->incActiveTrackCnt();
Eric Laurent65b65452010-06-01 23:49:17 -07001660 }
1661 }
1662
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001663 status = NO_ERROR;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001664 }
Eric Laurenta553c252009-07-17 12:17:14 -07001665
Steve Block71f2cf12011-10-20 11:56:00 +01001666 ALOGV("mWaitWorkCV.broadcast");
Eric Laurenta553c252009-07-17 12:17:14 -07001667 mWaitWorkCV.broadcast();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001668
1669 return status;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001670}
1671
Eric Laurenta553c252009-07-17 12:17:14 -07001672// destroyTrack_l() must be called with ThreadBase::mLock held
1673void AudioFlinger::PlaybackThread::destroyTrack_l(const sp<Track>& track)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001674{
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001675 track->mState = TrackBase::TERMINATED;
1676 if (mActiveTracks.indexOf(track) < 0) {
Eric Laurent90681d62011-05-09 12:09:06 -07001677 removeTrack_l(track);
1678 }
1679}
1680
1681void AudioFlinger::PlaybackThread::removeTrack_l(const sp<Track>& track)
1682{
1683 mTracks.remove(track);
1684 deleteTrackName_l(track->name());
1685 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1686 if (chain != 0) {
1687 chain->decTrackCnt();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07001688 }
1689}
1690
Eric Laurenta553c252009-07-17 12:17:14 -07001691String8 AudioFlinger::PlaybackThread::getParameters(const String8& keys)
The Android Open Source Projectf1e484a2009-01-22 00:13:42 -08001692{
Eric Laurent828b9772011-08-07 16:32:26 -07001693 String8 out_s8 = String8("");
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001694 char *s;
1695
Eric Laurent828b9772011-08-07 16:32:26 -07001696 Mutex::Autolock _l(mLock);
1697 if (initCheck() != NO_ERROR) {
1698 return out_s8;
1699 }
1700
Dima Zavin31f188892011-04-18 16:57:27 -07001701 s = mOutput->stream->common.get_parameters(&mOutput->stream->common, keys.string());
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001702 out_s8 = String8(s);
1703 free(s);
1704 return out_s8;
Eric Laurenta553c252009-07-17 12:17:14 -07001705}
The Android Open Source Projectf1e484a2009-01-22 00:13:42 -08001706
Eric Laurent828b9772011-08-07 16:32:26 -07001707// audioConfigChanged_l() must be called with AudioFlinger::mLock held
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001708void AudioFlinger::PlaybackThread::audioConfigChanged_l(int event, int param) {
Eric Laurenta553c252009-07-17 12:17:14 -07001709 AudioSystem::OutputDescriptor desc;
1710 void *param2 = 0;
1711
Steve Block71f2cf12011-10-20 11:56:00 +01001712 ALOGV("PlaybackThread::audioConfigChanged_l, thread %p, event %d, param %d", this, event, param);
Eric Laurenta553c252009-07-17 12:17:14 -07001713
1714 switch (event) {
1715 case AudioSystem::OUTPUT_OPENED:
1716 case AudioSystem::OUTPUT_CONFIG_CHANGED:
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001717 desc.channels = mChannelMask;
Eric Laurenta553c252009-07-17 12:17:14 -07001718 desc.samplingRate = mSampleRate;
1719 desc.format = mFormat;
1720 desc.frameCount = mFrameCount;
1721 desc.latency = latency();
1722 param2 = &desc;
1723 break;
1724
1725 case AudioSystem::STREAM_CONFIG_CHANGED:
1726 param2 = &param;
1727 case AudioSystem::OUTPUT_CLOSED:
1728 default:
1729 break;
1730 }
Eric Laurent49f02be2009-11-19 09:00:56 -08001731 mAudioFlinger->audioConfigChanged_l(event, mId, param2);
Eric Laurenta553c252009-07-17 12:17:14 -07001732}
1733
1734void AudioFlinger::PlaybackThread::readOutputParameters()
1735{
Dima Zavin31f188892011-04-18 16:57:27 -07001736 mSampleRate = mOutput->stream->common.get_sample_rate(&mOutput->stream->common);
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001737 mChannelMask = mOutput->stream->common.get_channels(&mOutput->stream->common);
1738 mChannelCount = (uint16_t)popcount(mChannelMask);
Dima Zavin31f188892011-04-18 16:57:27 -07001739 mFormat = mOutput->stream->common.get_format(&mOutput->stream->common);
Glenn Kastenfaf354d2012-01-11 09:48:27 -08001740 mFrameSize = audio_stream_frame_size(&mOutput->stream->common);
Dima Zavin31f188892011-04-18 16:57:27 -07001741 mFrameCount = mOutput->stream->common.get_buffer_size(&mOutput->stream->common) / mFrameSize;
Eric Laurenta553c252009-07-17 12:17:14 -07001742
Eric Laurenta553c252009-07-17 12:17:14 -07001743 // FIXME - Current mixer implementation only supports stereo output: Always
1744 // Allocate a stereo buffer even if HW output is mono.
Eric Laurent65b65452010-06-01 23:49:17 -07001745 if (mMixBuffer != NULL) delete[] mMixBuffer;
Eric Laurenta553c252009-07-17 12:17:14 -07001746 mMixBuffer = new int16_t[mFrameCount * 2];
1747 memset(mMixBuffer, 0, mFrameCount * 2 * sizeof(int16_t));
Eric Laurent65b65452010-06-01 23:49:17 -07001748
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001749 // force reconfiguration of effect chains and engines to take new buffer size and audio
1750 // parameters into account
1751 // Note that mLock is not held when readOutputParameters() is called from the constructor
1752 // but in this case nothing is done below as no audio sessions have effect yet so it doesn't
1753 // matter.
1754 // create a copy of mEffectChains as calling moveEffectChain_l() can reorder some effect chains
1755 Vector< sp<EffectChain> > effectChains = mEffectChains;
1756 for (size_t i = 0; i < effectChains.size(); i ++) {
Eric Laurent493941b2010-07-28 01:32:47 -07001757 mAudioFlinger->moveEffectChain_l(effectChains[i]->sessionId(), this, this, false);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001758 }
Eric Laurenta553c252009-07-17 12:17:14 -07001759}
1760
Eric Laurent0986e792010-01-19 17:37:09 -08001761status_t AudioFlinger::PlaybackThread::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames)
1762{
1763 if (halFrames == 0 || dspFrames == 0) {
1764 return BAD_VALUE;
1765 }
Eric Laurent828b9772011-08-07 16:32:26 -07001766 Mutex::Autolock _l(mLock);
Eric Laurent464d5b32011-06-17 21:29:58 -07001767 if (initCheck() != NO_ERROR) {
Eric Laurent0986e792010-01-19 17:37:09 -08001768 return INVALID_OPERATION;
1769 }
Dima Zavin31f188892011-04-18 16:57:27 -07001770 *halFrames = mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
Eric Laurent0986e792010-01-19 17:37:09 -08001771
Dima Zavin31f188892011-04-18 16:57:27 -07001772 return mOutput->stream->get_render_position(mOutput->stream, dspFrames);
Eric Laurent0986e792010-01-19 17:37:09 -08001773}
1774
Eric Laurent493941b2010-07-28 01:32:47 -07001775uint32_t AudioFlinger::PlaybackThread::hasAudioSession(int sessionId)
Eric Laurent65b65452010-06-01 23:49:17 -07001776{
1777 Mutex::Autolock _l(mLock);
Eric Laurent493941b2010-07-28 01:32:47 -07001778 uint32_t result = 0;
Eric Laurent65b65452010-06-01 23:49:17 -07001779 if (getEffectChain_l(sessionId) != 0) {
Eric Laurent493941b2010-07-28 01:32:47 -07001780 result = EFFECT_SESSION;
Eric Laurent65b65452010-06-01 23:49:17 -07001781 }
1782
1783 for (size_t i = 0; i < mTracks.size(); ++i) {
1784 sp<Track> track = mTracks[i];
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001785 if (sessionId == track->sessionId() &&
1786 !(track->mCblk->flags & CBLK_INVALID_MSK)) {
Eric Laurent493941b2010-07-28 01:32:47 -07001787 result |= TRACK_SESSION;
1788 break;
Eric Laurent65b65452010-06-01 23:49:17 -07001789 }
1790 }
1791
Eric Laurent493941b2010-07-28 01:32:47 -07001792 return result;
Eric Laurent65b65452010-06-01 23:49:17 -07001793}
1794
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001795uint32_t AudioFlinger::PlaybackThread::getStrategyForSession_l(int sessionId)
1796{
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001797 // session AUDIO_SESSION_OUTPUT_MIX is placed in same strategy as MUSIC stream so that
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001798 // it is moved to correct output by audio policy manager when A2DP is connected or disconnected
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001799 if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
1800 return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001801 }
1802 for (size_t i = 0; i < mTracks.size(); i++) {
1803 sp<Track> track = mTracks[i];
1804 if (sessionId == track->sessionId() &&
1805 !(track->mCblk->flags & CBLK_INVALID_MSK)) {
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001806 return AudioSystem::getStrategyForStream((audio_stream_type_t) track->type());
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001807 }
1808 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001809 return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001810}
1811
Eric Laurent53334cd2010-06-23 17:38:20 -07001812
Eric Laurent828b9772011-08-07 16:32:26 -07001813AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::getOutput()
1814{
1815 Mutex::Autolock _l(mLock);
1816 return mOutput;
1817}
1818
1819AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::clearOutput()
1820{
1821 Mutex::Autolock _l(mLock);
1822 AudioStreamOut *output = mOutput;
1823 mOutput = NULL;
1824 return output;
1825}
1826
1827// this method must always be called either with ThreadBase mLock held or inside the thread loop
1828audio_stream_t* AudioFlinger::PlaybackThread::stream()
1829{
1830 if (mOutput == NULL) {
1831 return NULL;
1832 }
1833 return &mOutput->stream->common;
1834}
1835
Eric Laurent44331692011-12-05 09:47:19 -08001836uint32_t AudioFlinger::PlaybackThread::activeSleepTimeUs()
1837{
1838 // A2DP output latency is not due only to buffering capacity. It also reflects encoding,
1839 // decoding and transfer time. So sleeping for half of the latency would likely cause
1840 // underruns
1841 if (audio_is_a2dp_device((audio_devices_t)mDevice)) {
1842 return (uint32_t)((uint32_t)((mFrameCount * 1000) / mSampleRate) * 1000);
1843 } else {
1844 return (uint32_t)(mOutput->stream->get_latency(mOutput->stream) * 1000) / 2;
1845 }
1846}
1847
Eric Laurenta553c252009-07-17 12:17:14 -07001848// ----------------------------------------------------------------------------
1849
Dima Zavin31f188892011-04-18 16:57:27 -07001850AudioFlinger::MixerThread::MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, int id, uint32_t device)
Eric Laurent65b65452010-06-01 23:49:17 -07001851 : PlaybackThread(audioFlinger, output, id, device),
Eric Laurent35629312012-01-19 10:00:02 -08001852 mAudioMixer(NULL), mPrevMixerStatus(MIXER_IDLE)
Eric Laurenta553c252009-07-17 12:17:14 -07001853{
Eric Laurent464d5b32011-06-17 21:29:58 -07001854 mType = ThreadBase::MIXER;
Eric Laurenta553c252009-07-17 12:17:14 -07001855 mAudioMixer = new AudioMixer(mFrameCount, mSampleRate);
1856
1857 // FIXME - Current mixer implementation only supports stereo output
1858 if (mChannelCount == 1) {
Steve Block3762c312012-01-06 19:20:56 +00001859 ALOGE("Invalid audio hardware channel count");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001860 }
The Android Open Source Projectf1e484a2009-01-22 00:13:42 -08001861}
1862
Eric Laurenta553c252009-07-17 12:17:14 -07001863AudioFlinger::MixerThread::~MixerThread()
The Android Open Source Projectf1e484a2009-01-22 00:13:42 -08001864{
Eric Laurenta553c252009-07-17 12:17:14 -07001865 delete mAudioMixer;
1866}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001867
Eric Laurenta553c252009-07-17 12:17:14 -07001868bool AudioFlinger::MixerThread::threadLoop()
1869{
Eric Laurenta553c252009-07-17 12:17:14 -07001870 Vector< sp<Track> > tracksToRemove;
Eric Laurent059b4be2009-11-09 23:32:22 -08001871 uint32_t mixerStatus = MIXER_IDLE;
Eric Laurenta553c252009-07-17 12:17:14 -07001872 nsecs_t standbyTime = systemTime();
1873 size_t mixBufferSize = mFrameCount * mFrameSize;
Dave Sparksd0ac8c02009-09-30 03:09:03 -07001874 // FIXME: Relaxed timing because of a certain device that can't meet latency
1875 // Should be reduced to 2x after the vendor fixes the driver issue
Eric Laurent276fa432011-10-18 15:42:27 -07001876 // increase threshold again due to low power audio mode. The way this warning threshold is
1877 // calculated and its usefulness should be reconsidered anyway.
1878 nsecs_t maxPeriod = seconds(mFrameCount) / mSampleRate * 15;
Dave Sparksd0ac8c02009-09-30 03:09:03 -07001879 nsecs_t lastWarning = 0;
Eric Laurent059b4be2009-11-09 23:32:22 -08001880 bool longStandbyExit = false;
1881 uint32_t activeSleepTime = activeSleepTimeUs();
1882 uint32_t idleSleepTime = idleSleepTimeUs();
1883 uint32_t sleepTime = idleSleepTime;
Eric Laurentf1f5fc82011-11-22 18:50:29 -08001884 uint32_t sleepTimeShift = 0;
Eric Laurent65b65452010-06-01 23:49:17 -07001885 Vector< sp<EffectChain> > effectChains;
Glenn Kastenda494f92011-07-08 15:26:12 -07001886#ifdef DEBUG_CPU_USAGE
1887 ThreadCpuUsage cpu;
1888 const CentralTendencyStatistics& stats = cpu.statistics();
1889#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001890
Eric Laurent6dbdc402011-07-22 09:04:31 -07001891 acquireWakeLock();
1892
Eric Laurenta553c252009-07-17 12:17:14 -07001893 while (!exitPending())
1894 {
Glenn Kastenda494f92011-07-08 15:26:12 -07001895#ifdef DEBUG_CPU_USAGE
1896 cpu.sampleAndEnable();
1897 unsigned n = stats.n();
1898 // cpu.elapsed() is expensive, so don't call it every loop
1899 if ((n & 127) == 1) {
1900 long long elapsed = cpu.elapsed();
1901 if (elapsed >= DEBUG_CPU_USAGE * 1000000000LL) {
1902 double perLoop = elapsed / (double) n;
1903 double perLoop100 = perLoop * 0.01;
1904 double mean = stats.mean();
1905 double stddev = stats.stddev();
1906 double minimum = stats.minimum();
1907 double maximum = stats.maximum();
1908 cpu.resetStatistics();
Steve Block6215d3f2012-01-04 20:05:49 +00001909 ALOGI("CPU usage over past %.1f secs (%u mixer loops at %.1f mean ms per loop):\n us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f",
Glenn Kastenda494f92011-07-08 15:26:12 -07001910 elapsed * .000000001, n, perLoop * .000001,
1911 mean * .001,
1912 stddev * .001,
1913 minimum * .001,
1914 maximum * .001,
1915 mean / perLoop100,
1916 stddev / perLoop100,
1917 minimum / perLoop100,
1918 maximum / perLoop100);
1919 }
1920 }
1921#endif
Eric Laurenta553c252009-07-17 12:17:14 -07001922 processConfigEvents();
1923
Eric Laurent059b4be2009-11-09 23:32:22 -08001924 mixerStatus = MIXER_IDLE;
Eric Laurenta553c252009-07-17 12:17:14 -07001925 { // scope for mLock
1926
1927 Mutex::Autolock _l(mLock);
1928
1929 if (checkForNewParameters_l()) {
1930 mixBufferSize = mFrameCount * mFrameSize;
Dave Sparksd0ac8c02009-09-30 03:09:03 -07001931 // FIXME: Relaxed timing because of a certain device that can't meet latency
1932 // Should be reduced to 2x after the vendor fixes the driver issue
Eric Laurent276fa432011-10-18 15:42:27 -07001933 // increase threshold again due to low power audio mode. The way this warning
1934 // threshold is calculated and its usefulness should be reconsidered anyway.
1935 maxPeriod = seconds(mFrameCount) / mSampleRate * 15;
Eric Laurent059b4be2009-11-09 23:32:22 -08001936 activeSleepTime = activeSleepTimeUs();
1937 idleSleepTime = idleSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -07001938 }
1939
1940 const SortedVector< wp<Track> >& activeTracks = mActiveTracks;
1941
1942 // put audio hardware into standby after short delay
Glenn Kastene80a4cc2011-12-15 09:51:17 -08001943 if (CC_UNLIKELY((!activeTracks.size() && systemTime() > standbyTime) ||
1944 mSuspended)) {
Eric Laurenta553c252009-07-17 12:17:14 -07001945 if (!mStandby) {
Steve Block71f2cf12011-10-20 11:56:00 +01001946 ALOGV("Audio hardware entering standby, mixer %p, mSuspended %d\n", this, mSuspended);
Dima Zavin31f188892011-04-18 16:57:27 -07001947 mOutput->stream->common.standby(&mOutput->stream->common);
Eric Laurenta553c252009-07-17 12:17:14 -07001948 mStandby = true;
1949 mBytesWritten = 0;
1950 }
1951
1952 if (!activeTracks.size() && mConfigEvents.isEmpty()) {
1953 // we're about to wait, flush the binder command buffer
1954 IPCThreadState::self()->flushCommands();
1955
1956 if (exitPending()) break;
1957
Eric Laurent6dbdc402011-07-22 09:04:31 -07001958 releaseWakeLock_l();
Eric Laurenta553c252009-07-17 12:17:14 -07001959 // wait until we have something to do...
Steve Block71f2cf12011-10-20 11:56:00 +01001960 ALOGV("MixerThread %p TID %d going to sleep\n", this, gettid());
Eric Laurenta553c252009-07-17 12:17:14 -07001961 mWaitWorkCV.wait(mLock);
Steve Block71f2cf12011-10-20 11:56:00 +01001962 ALOGV("MixerThread %p TID %d waking up\n", this, gettid());
Eric Laurent6dbdc402011-07-22 09:04:31 -07001963 acquireWakeLock_l();
Eric Laurenta553c252009-07-17 12:17:14 -07001964
Eric Laurent71c44962012-01-17 19:20:12 -08001965 mPrevMixerStatus = MIXER_IDLE;
Glenn Kastenb737dbb2012-01-13 15:54:24 -08001966 if (!mMasterMute) {
Eric Laurenta553c252009-07-17 12:17:14 -07001967 char value[PROPERTY_VALUE_MAX];
1968 property_get("ro.audio.silent", value, "0");
1969 if (atoi(value)) {
Steve Block5baa3a62011-12-20 16:23:08 +00001970 ALOGD("Silence is golden");
Eric Laurenta553c252009-07-17 12:17:14 -07001971 setMasterMute(true);
1972 }
1973 }
1974
1975 standbyTime = systemTime() + kStandbyTimeInNsecs;
Eric Laurent059b4be2009-11-09 23:32:22 -08001976 sleepTime = idleSleepTime;
Eric Laurentf1f5fc82011-11-22 18:50:29 -08001977 sleepTimeShift = 0;
Eric Laurenta553c252009-07-17 12:17:14 -07001978 continue;
1979 }
1980 }
1981
Eric Laurent059b4be2009-11-09 23:32:22 -08001982 mixerStatus = prepareTracks_l(activeTracks, &tracksToRemove);
Eric Laurent65b65452010-06-01 23:49:17 -07001983
1984 // prevent any changes in effect chain list and in each effect chain
1985 // during mixing and effect process as the audio buffers could be deleted
1986 // or modified if an effect is created or deleted
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001987 lockEffectChains_l(effectChains);
Glenn Kastenfb2ab9e2011-12-12 09:05:55 -08001988 }
Eric Laurenta553c252009-07-17 12:17:14 -07001989
Glenn Kastene80a4cc2011-12-15 09:51:17 -08001990 if (CC_LIKELY(mixerStatus == MIXER_TRACKS_READY)) {
Eric Laurentf69a3f82009-09-22 00:35:48 -07001991 // mix buffers...
Eric Laurent65b65452010-06-01 23:49:17 -07001992 mAudioMixer->process();
Eric Laurentf69a3f82009-09-22 00:35:48 -07001993 sleepTime = 0;
Eric Laurentf1f5fc82011-11-22 18:50:29 -08001994 // increase sleep time progressively when application underrun condition clears
1995 if (sleepTimeShift > 0) {
1996 sleepTimeShift--;
1997 }
Eric Laurentf69a3f82009-09-22 00:35:48 -07001998 standbyTime = systemTime() + kStandbyTimeInNsecs;
Eric Laurent65b65452010-06-01 23:49:17 -07001999 //TODO: delay standby when effects have a tail
Eric Laurent96c08a62009-09-07 08:38:38 -07002000 } else {
Eric Laurent62443f52009-10-05 20:29:18 -07002001 // If no tracks are ready, sleep once for the duration of an output
2002 // buffer size, then write 0s to the output
2003 if (sleepTime == 0) {
Eric Laurent059b4be2009-11-09 23:32:22 -08002004 if (mixerStatus == MIXER_TRACKS_ENABLED) {
Eric Laurentf1f5fc82011-11-22 18:50:29 -08002005 sleepTime = activeSleepTime >> sleepTimeShift;
2006 if (sleepTime < kMinThreadSleepTimeUs) {
2007 sleepTime = kMinThreadSleepTimeUs;
2008 }
2009 // reduce sleep time in case of consecutive application underruns to avoid
2010 // starving the audio HAL. As activeSleepTimeUs() is larger than a buffer
2011 // duration we would end up writing less data than needed by the audio HAL if
2012 // the condition persists.
2013 if (sleepTimeShift < kMaxThreadSleepTimeShift) {
2014 sleepTimeShift++;
2015 }
Eric Laurent059b4be2009-11-09 23:32:22 -08002016 } else {
2017 sleepTime = idleSleepTime;
2018 }
2019 } else if (mBytesWritten != 0 ||
2020 (mixerStatus == MIXER_TRACKS_ENABLED && longStandbyExit)) {
Eric Laurent65b65452010-06-01 23:49:17 -07002021 memset (mMixBuffer, 0, mixBufferSize);
Eric Laurent96c08a62009-09-07 08:38:38 -07002022 sleepTime = 0;
Steve Block71f2cf12011-10-20 11:56:00 +01002023 ALOGV_IF((mBytesWritten == 0 && (mixerStatus == MIXER_TRACKS_ENABLED && longStandbyExit)), "anticipated start");
Eric Laurent96c08a62009-09-07 08:38:38 -07002024 }
Eric Laurent65b65452010-06-01 23:49:17 -07002025 // TODO add standby time extension fct of effect tail
Eric Laurentf69a3f82009-09-22 00:35:48 -07002026 }
2027
2028 if (mSuspended) {
Eric Laurent8448a792010-08-18 18:13:17 -07002029 sleepTime = suspendSleepTimeUs();
Eric Laurentf69a3f82009-09-22 00:35:48 -07002030 }
2031 // sleepTime == 0 means we must write to audio hardware
2032 if (sleepTime == 0) {
Glenn Kastenfb2ab9e2011-12-12 09:05:55 -08002033 for (size_t i = 0; i < effectChains.size(); i ++) {
2034 effectChains[i]->process_l();
2035 }
2036 // enable changes in effect chain
2037 unlockEffectChains(effectChains);
Eric Laurent65b65452010-06-01 23:49:17 -07002038 mLastWriteTime = systemTime();
2039 mInWrite = true;
2040 mBytesWritten += mixBufferSize;
2041
Dima Zavin31f188892011-04-18 16:57:27 -07002042 int bytesWritten = (int)mOutput->stream->write(mOutput->stream, mMixBuffer, mixBufferSize);
Eric Laurent0986e792010-01-19 17:37:09 -08002043 if (bytesWritten < 0) mBytesWritten -= mixBufferSize;
Eric Laurentf69a3f82009-09-22 00:35:48 -07002044 mNumWrites++;
2045 mInWrite = false;
Dave Sparksd0ac8c02009-09-30 03:09:03 -07002046 nsecs_t now = systemTime();
2047 nsecs_t delta = now - mLastWriteTime;
Eric Laurent276fa432011-10-18 15:42:27 -07002048 if (!mStandby && delta > maxPeriod) {
Eric Laurentf69a3f82009-09-22 00:35:48 -07002049 mNumDelayedWrites++;
Glenn Kastencbfe2e12011-12-13 11:04:14 -08002050 if ((now - lastWarning) > kWarningThrottleNs) {
Steve Block8564c8d2012-01-05 23:22:43 +00002051 ALOGW("write blocked for %llu msecs, %d delayed writes, thread %p",
Dave Sparksd0ac8c02009-09-30 03:09:03 -07002052 ns2ms(delta), mNumDelayedWrites, this);
2053 lastWarning = now;
2054 }
Eric Laurent059b4be2009-11-09 23:32:22 -08002055 if (mStandby) {
2056 longStandbyExit = true;
2057 }
Eric Laurenta553c252009-07-17 12:17:14 -07002058 }
Eric Laurent059b4be2009-11-09 23:32:22 -08002059 mStandby = false;
Eric Laurentf69a3f82009-09-22 00:35:48 -07002060 } else {
Eric Laurent65b65452010-06-01 23:49:17 -07002061 // enable changes in effect chain
Eric Laurent8ed6ed02010-07-13 04:45:46 -07002062 unlockEffectChains(effectChains);
Eric Laurentf69a3f82009-09-22 00:35:48 -07002063 usleep(sleepTime);
Eric Laurenta553c252009-07-17 12:17:14 -07002064 }
2065
2066 // finally let go of all our tracks, without the lock held
2067 // since we can't guarantee the destructors won't acquire that
2068 // same lock.
2069 tracksToRemove.clear();
Eric Laurent65b65452010-06-01 23:49:17 -07002070
2071 // Effect chains will be actually deleted here if they were removed from
2072 // mEffectChains list during mixing or effects processing
2073 effectChains.clear();
Eric Laurenta553c252009-07-17 12:17:14 -07002074 }
2075
2076 if (!mStandby) {
Dima Zavin31f188892011-04-18 16:57:27 -07002077 mOutput->stream->common.standby(&mOutput->stream->common);
Eric Laurenta553c252009-07-17 12:17:14 -07002078 }
Eric Laurenta553c252009-07-17 12:17:14 -07002079
Eric Laurent6dbdc402011-07-22 09:04:31 -07002080 releaseWakeLock();
2081
Steve Block71f2cf12011-10-20 11:56:00 +01002082 ALOGV("MixerThread %p exiting", this);
Eric Laurenta553c252009-07-17 12:17:14 -07002083 return false;
2084}
2085
2086// prepareTracks_l() must be called with ThreadBase::mLock held
Eric Laurent059b4be2009-11-09 23:32:22 -08002087uint32_t AudioFlinger::MixerThread::prepareTracks_l(const SortedVector< wp<Track> >& activeTracks, Vector< sp<Track> > *tracksToRemove)
Eric Laurenta553c252009-07-17 12:17:14 -07002088{
2089
Eric Laurent059b4be2009-11-09 23:32:22 -08002090 uint32_t mixerStatus = MIXER_IDLE;
Eric Laurenta553c252009-07-17 12:17:14 -07002091 // find out which tracks need to be processed
2092 size_t count = activeTracks.size();
Eric Laurent65b65452010-06-01 23:49:17 -07002093 size_t mixedTracks = 0;
2094 size_t tracksWithEffect = 0;
Glenn Kasten871c16c2010-03-05 12:18:01 -08002095
2096 float masterVolume = mMasterVolume;
2097 bool masterMute = mMasterMute;
2098
Eric Laurent8cc93b92010-08-11 05:20:11 -07002099 if (masterMute) {
2100 masterVolume = 0;
2101 }
Eric Laurent65b65452010-06-01 23:49:17 -07002102 // Delegate master volume control to effect in output mix effect chain if needed
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002103 sp<EffectChain> chain = getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent65b65452010-06-01 23:49:17 -07002104 if (chain != 0) {
Eric Laurent8cc93b92010-08-11 05:20:11 -07002105 uint32_t v = (uint32_t)(masterVolume * (1 << 24));
Eric Laurent76c40f72010-07-15 12:50:15 -07002106 chain->setVolume_l(&v, &v);
Eric Laurent65b65452010-06-01 23:49:17 -07002107 masterVolume = (float)((v + (1 << 23)) >> 24);
2108 chain.clear();
2109 }
Glenn Kasten871c16c2010-03-05 12:18:01 -08002110
Eric Laurenta553c252009-07-17 12:17:14 -07002111 for (size_t i=0 ; i<count ; i++) {
2112 sp<Track> t = activeTracks[i].promote();
2113 if (t == 0) continue;
2114
Glenn Kasten68deb152011-12-19 15:06:39 -08002115 // this const just means the local variable doesn't change
Eric Laurenta553c252009-07-17 12:17:14 -07002116 Track* const track = t.get();
2117 audio_track_cblk_t* cblk = track->cblk();
2118
2119 // The first time a track is added we wait
2120 // for all its buffers to be filled before processing it
Glenn Kasten68deb152011-12-19 15:06:39 -08002121 int name = track->name();
Eric Laurent8a04fe02011-11-08 18:10:16 -08002122 // make sure that we have enough frames to mix one full buffer.
2123 // enforce this condition only once to enable draining the buffer in case the client
2124 // app does not call stop() and relies on underrun to stop:
Eric Laurent71c44962012-01-17 19:20:12 -08002125 // hence the test on (mPrevMixerStatus == MIXER_TRACKS_READY) meaning the track was mixed
Eric Laurent8a04fe02011-11-08 18:10:16 -08002126 // during last round
Eric Laurent19ddf0e2011-11-03 12:16:05 -07002127 uint32_t minFrames = 1;
Eric Laurent8a04fe02011-11-08 18:10:16 -08002128 if (!track->isStopped() && !track->isPausing() &&
Eric Laurent71c44962012-01-17 19:20:12 -08002129 (mPrevMixerStatus == MIXER_TRACKS_READY)) {
Eric Laurent19ddf0e2011-11-03 12:16:05 -07002130 if (t->sampleRate() == (int)mSampleRate) {
2131 minFrames = mFrameCount;
2132 } else {
Eric Laurent72dafb22011-12-22 16:08:41 -08002133 // +1 for rounding and +1 for additional sample needed for interpolation
2134 minFrames = (mFrameCount * t->sampleRate()) / mSampleRate + 1 + 1;
2135 // add frames already consumed but not yet released by the resampler
2136 // because cblk->framesReady() will include these frames
2137 minFrames += mAudioMixer->getUnreleasedFrames(track->name());
2138 // the minimum track buffer size is normally twice the number of frames necessary
2139 // to fill one buffer and the resampler should not leave more than one buffer worth
2140 // of unreleased frames after each pass, but just in case...
Steve Blockec193de2012-01-09 18:35:44 +00002141 ALOG_ASSERT(minFrames <= cblk->frameCount);
Eric Laurent19ddf0e2011-11-03 12:16:05 -07002142 }
2143 }
2144 if ((cblk->framesReady() >= minFrames) && track->isReady() &&
Eric Laurent71f37cd2010-03-31 12:21:17 -07002145 !track->isPaused() && !track->isTerminated())
Eric Laurenta553c252009-07-17 12:17:14 -07002146 {
Glenn Kasten68deb152011-12-19 15:06:39 -08002147 //ALOGV("track %d u=%08x, s=%08x [OK] on thread %p", name, cblk->user, cblk->server, this);
Eric Laurenta553c252009-07-17 12:17:14 -07002148
Eric Laurent65b65452010-06-01 23:49:17 -07002149 mixedTracks++;
2150
2151 // track->mainBuffer() != mMixBuffer means there is an effect chain
2152 // connected to the track
2153 chain.clear();
2154 if (track->mainBuffer() != mMixBuffer) {
2155 chain = getEffectChain_l(track->sessionId());
2156 // Delegate volume control to effect in track effect chain if needed
2157 if (chain != 0) {
2158 tracksWithEffect++;
2159 } else {
Steve Block8564c8d2012-01-05 23:22:43 +00002160 ALOGW("prepareTracks_l(): track %d attached to effect but no chain found on session %d",
Glenn Kasten68deb152011-12-19 15:06:39 -08002161 name, track->sessionId());
Eric Laurent65b65452010-06-01 23:49:17 -07002162 }
2163 }
2164
2165
2166 int param = AudioMixer::VOLUME;
2167 if (track->mFillingUpStatus == Track::FS_FILLED) {
2168 // no ramp for the first volume setting
2169 track->mFillingUpStatus = Track::FS_ACTIVE;
2170 if (track->mState == TrackBase::RESUMING) {
2171 track->mState = TrackBase::ACTIVE;
2172 param = AudioMixer::RAMP_VOLUME;
2173 }
Glenn Kasten68deb152011-12-19 15:06:39 -08002174 mAudioMixer->setParameter(name, AudioMixer::RESAMPLE, AudioMixer::RESET, NULL);
Eric Laurent65b65452010-06-01 23:49:17 -07002175 } else if (cblk->server != 0) {
2176 // If the track is stopped before the first frame was mixed,
2177 // do not apply ramp
2178 param = AudioMixer::RAMP_VOLUME;
2179 }
2180
Eric Laurenta553c252009-07-17 12:17:14 -07002181 // compute volume for this track
Eric Laurent27a2fdf2010-09-10 17:44:44 -07002182 uint32_t vl, vr, va;
Eric Laurent2a6b80b2010-07-29 23:43:43 -07002183 if (track->isMuted() || track->isPausing() ||
Eric Laurenta553c252009-07-17 12:17:14 -07002184 mStreamTypes[track->type()].mute) {
Eric Laurent27a2fdf2010-09-10 17:44:44 -07002185 vl = vr = va = 0;
Eric Laurenta553c252009-07-17 12:17:14 -07002186 if (track->isPausing()) {
2187 track->setPaused();
2188 }
2189 } else {
Eric Laurent27a2fdf2010-09-10 17:44:44 -07002190
Glenn Kasten871c16c2010-03-05 12:18:01 -08002191 // read original volumes with volume control
Eric Laurenta553c252009-07-17 12:17:14 -07002192 float typeVolume = mStreamTypes[track->type()].volume;
Glenn Kasten871c16c2010-03-05 12:18:01 -08002193 float v = masterVolume * typeVolume;
Glenn Kasten0632bad2012-01-17 12:20:54 -08002194 uint32_t vlr = cblk->volumeLR;
2195 vl = vlr & 0xFFFF;
2196 vr = vlr >> 16;
2197 // track volumes come from shared memory, so can't be trusted and must be clamped
2198 if (vl > MAX_GAIN_INT) {
2199 ALOGV("Track left volume out of range: %04X", vl);
2200 vl = MAX_GAIN_INT;
2201 }
2202 if (vr > MAX_GAIN_INT) {
2203 ALOGV("Track right volume out of range: %04X", vr);
2204 vr = MAX_GAIN_INT;
2205 }
2206 // now apply the master volume and stream type volume
2207 vl = (uint32_t)(v * vl) << 12;
2208 vr = (uint32_t)(v * vr) << 12;
2209 // assuming master volume and stream type volume each go up to 1.0,
2210 // vl and vr are now in 8.24 format
Eric Laurenta553c252009-07-17 12:17:14 -07002211
Glenn Kasten4790bd82012-01-03 14:22:33 -08002212 uint16_t sendLevel = cblk->getSendLevel_U4_12();
2213 // send level comes from shared memory and so may be corrupt
Glenn Kasten0632bad2012-01-17 12:20:54 -08002214 if (sendLevel >= MAX_GAIN_INT) {
Glenn Kasten4790bd82012-01-03 14:22:33 -08002215 ALOGV("Track send level out of range: %04X", sendLevel);
Glenn Kasten0632bad2012-01-17 12:20:54 -08002216 sendLevel = MAX_GAIN_INT;
Glenn Kasten4790bd82012-01-03 14:22:33 -08002217 }
2218 va = (uint32_t)(v * sendLevel);
Eric Laurenta553c252009-07-17 12:17:14 -07002219 }
Eric Laurent27a2fdf2010-09-10 17:44:44 -07002220 // Delegate volume control to effect in track effect chain if needed
2221 if (chain != 0 && chain->setVolume_l(&vl, &vr)) {
2222 // Do not ramp volume if volume is controlled by effect
2223 param = AudioMixer::VOLUME;
2224 track->mHasVolumeController = true;
2225 } else {
2226 // force no volume ramp when volume controller was just disabled or removed
2227 // from effect chain to avoid volume spike
2228 if (track->mHasVolumeController) {
2229 param = AudioMixer::VOLUME;
2230 }
2231 track->mHasVolumeController = false;
2232 }
2233
2234 // Convert volumes from 8.24 to 4.12 format
2235 int16_t left, right, aux;
Glenn Kasten0632bad2012-01-17 12:20:54 -08002236 // This additional clamping is needed in case chain->setVolume_l() overshot
Eric Laurent27a2fdf2010-09-10 17:44:44 -07002237 uint32_t v_clamped = (vl + (1 << 11)) >> 12;
2238 if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
2239 left = int16_t(v_clamped);
2240 v_clamped = (vr + (1 << 11)) >> 12;
2241 if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
2242 right = int16_t(v_clamped);
2243
2244 if (va > MAX_GAIN_INT) va = MAX_GAIN_INT;
2245 aux = int16_t(va);
Eric Laurent65b65452010-06-01 23:49:17 -07002246
Eric Laurent65b65452010-06-01 23:49:17 -07002247 // XXX: these things DON'T need to be done each time
Glenn Kasten68deb152011-12-19 15:06:39 -08002248 mAudioMixer->setBufferProvider(name, track);
2249 mAudioMixer->enable(name);
Eric Laurent65b65452010-06-01 23:49:17 -07002250
Glenn Kasten68deb152011-12-19 15:06:39 -08002251 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME0, (void *)left);
2252 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME1, (void *)right);
2253 mAudioMixer->setParameter(name, param, AudioMixer::AUXLEVEL, (void *)aux);
Eric Laurenta553c252009-07-17 12:17:14 -07002254 mAudioMixer->setParameter(
Glenn Kasten68deb152011-12-19 15:06:39 -08002255 name,
Eric Laurenta553c252009-07-17 12:17:14 -07002256 AudioMixer::TRACK,
Eric Laurent65b65452010-06-01 23:49:17 -07002257 AudioMixer::FORMAT, (void *)track->format());
Eric Laurenta553c252009-07-17 12:17:14 -07002258 mAudioMixer->setParameter(
Glenn Kasten68deb152011-12-19 15:06:39 -08002259 name,
Eric Laurenta553c252009-07-17 12:17:14 -07002260 AudioMixer::TRACK,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07002261 AudioMixer::CHANNEL_MASK, (void *)track->channelMask());
Eric Laurenta553c252009-07-17 12:17:14 -07002262 mAudioMixer->setParameter(
Glenn Kasten68deb152011-12-19 15:06:39 -08002263 name,
Eric Laurenta553c252009-07-17 12:17:14 -07002264 AudioMixer::RESAMPLE,
2265 AudioMixer::SAMPLE_RATE,
Eric Laurent65b65452010-06-01 23:49:17 -07002266 (void *)(cblk->sampleRate));
2267 mAudioMixer->setParameter(
Glenn Kasten68deb152011-12-19 15:06:39 -08002268 name,
Eric Laurent65b65452010-06-01 23:49:17 -07002269 AudioMixer::TRACK,
2270 AudioMixer::MAIN_BUFFER, (void *)track->mainBuffer());
2271 mAudioMixer->setParameter(
Glenn Kasten68deb152011-12-19 15:06:39 -08002272 name,
Eric Laurent65b65452010-06-01 23:49:17 -07002273 AudioMixer::TRACK,
2274 AudioMixer::AUX_BUFFER, (void *)track->auxBuffer());
Eric Laurenta553c252009-07-17 12:17:14 -07002275
2276 // reset retry count
2277 track->mRetryCount = kMaxTrackRetries;
Eric Laurent71c44962012-01-17 19:20:12 -08002278 // If one track is ready, set the mixer ready if:
2279 // - the mixer was not ready during previous round OR
2280 // - no other track is not ready
2281 if (mPrevMixerStatus != MIXER_TRACKS_READY ||
2282 mixerStatus != MIXER_TRACKS_ENABLED) {
2283 mixerStatus = MIXER_TRACKS_READY;
2284 }
Eric Laurenta553c252009-07-17 12:17:14 -07002285 } else {
Glenn Kasten68deb152011-12-19 15:06:39 -08002286 //ALOGV("track %d u=%08x, s=%08x [NOT READY] on thread %p", name, cblk->user, cblk->server, this);
Eric Laurenta553c252009-07-17 12:17:14 -07002287 if (track->isStopped()) {
2288 track->reset();
2289 }
2290 if (track->isTerminated() || track->isStopped() || track->isPaused()) {
2291 // We have consumed all the buffers of this track.
2292 // Remove it from the list of active tracks.
2293 tracksToRemove->add(track);
Eric Laurenta553c252009-07-17 12:17:14 -07002294 } else {
2295 // No buffers for this track. Give it a few chances to
2296 // fill a buffer, then remove it from active list.
2297 if (--(track->mRetryCount) <= 0) {
Glenn Kasten68deb152011-12-19 15:06:39 -08002298 ALOGV("BUFFER TIMEOUT: remove(%d) from active list on thread %p", name, this);
Eric Laurenta553c252009-07-17 12:17:14 -07002299 tracksToRemove->add(track);
Eric Laurent4712baa2010-09-30 16:12:31 -07002300 // indicate to client process that the track was disabled because of underrun
Eric Laurentae29b762011-03-28 18:37:07 -07002301 android_atomic_or(CBLK_DISABLED_ON, &cblk->flags);
Eric Laurent71c44962012-01-17 19:20:12 -08002302 // If one track is not ready, mark the mixer also not ready if:
2303 // - the mixer was ready during previous round OR
2304 // - no other track is ready
2305 } else if (mPrevMixerStatus == MIXER_TRACKS_READY ||
2306 mixerStatus != MIXER_TRACKS_READY) {
Eric Laurent059b4be2009-11-09 23:32:22 -08002307 mixerStatus = MIXER_TRACKS_ENABLED;
Eric Laurenta553c252009-07-17 12:17:14 -07002308 }
Eric Laurenta553c252009-07-17 12:17:14 -07002309 }
Glenn Kasten68deb152011-12-19 15:06:39 -08002310 mAudioMixer->disable(name);
Eric Laurenta553c252009-07-17 12:17:14 -07002311 }
2312 }
2313
2314 // remove all the tracks that need to be...
2315 count = tracksToRemove->size();
Glenn Kastene80a4cc2011-12-15 09:51:17 -08002316 if (CC_UNLIKELY(count)) {
Eric Laurenta553c252009-07-17 12:17:14 -07002317 for (size_t i=0 ; i<count ; i++) {
2318 const sp<Track>& track = tracksToRemove->itemAt(i);
2319 mActiveTracks.remove(track);
Eric Laurent65b65452010-06-01 23:49:17 -07002320 if (track->mainBuffer() != mMixBuffer) {
2321 chain = getEffectChain_l(track->sessionId());
2322 if (chain != 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01002323 ALOGV("stopping track on chain %p for session Id: %d", chain.get(), track->sessionId());
Eric Laurent90681d62011-05-09 12:09:06 -07002324 chain->decActiveTrackCnt();
Eric Laurent65b65452010-06-01 23:49:17 -07002325 }
2326 }
Eric Laurenta553c252009-07-17 12:17:14 -07002327 if (track->isTerminated()) {
Eric Laurent90681d62011-05-09 12:09:06 -07002328 removeTrack_l(track);
Eric Laurenta553c252009-07-17 12:17:14 -07002329 }
2330 }
2331 }
2332
Eric Laurent65b65452010-06-01 23:49:17 -07002333 // mix buffer must be cleared if all tracks are connected to an
2334 // effect chain as in this case the mixer will not write to
2335 // mix buffer and track effects will accumulate into it
2336 if (mixedTracks != 0 && mixedTracks == tracksWithEffect) {
2337 memset(mMixBuffer, 0, mFrameCount * mChannelCount * sizeof(int16_t));
2338 }
2339
Eric Laurent71c44962012-01-17 19:20:12 -08002340 mPrevMixerStatus = mixerStatus;
Eric Laurent059b4be2009-11-09 23:32:22 -08002341 return mixerStatus;
Eric Laurenta553c252009-07-17 12:17:14 -07002342}
2343
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08002344void AudioFlinger::MixerThread::invalidateTracks(audio_stream_type_t streamType)
Eric Laurenta553c252009-07-17 12:17:14 -07002345{
Steve Block71f2cf12011-10-20 11:56:00 +01002346 ALOGV ("MixerThread::invalidateTracks() mixer %p, streamType %d, mTracks.size %d",
Eric Laurent8ed6ed02010-07-13 04:45:46 -07002347 this, streamType, mTracks.size());
Eric Laurenta553c252009-07-17 12:17:14 -07002348 Mutex::Autolock _l(mLock);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07002349
Eric Laurenta553c252009-07-17 12:17:14 -07002350 size_t size = mTracks.size();
2351 for (size_t i = 0; i < size; i++) {
2352 sp<Track> t = mTracks[i];
2353 if (t->type() == streamType) {
Eric Laurentae29b762011-03-28 18:37:07 -07002354 android_atomic_or(CBLK_INVALID_ON, &t->mCblk->flags);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07002355 t->mCblk->cv.signal();
Eric Laurenta553c252009-07-17 12:17:14 -07002356 }
Eric Laurent53334cd2010-06-23 17:38:20 -07002357 }
2358}
Eric Laurenta553c252009-07-17 12:17:14 -07002359
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08002360void AudioFlinger::PlaybackThread::setStreamValid(audio_stream_type_t streamType, bool valid)
Eric Laurent05ce0942011-08-30 10:18:54 -07002361{
Steve Block71f2cf12011-10-20 11:56:00 +01002362 ALOGV ("PlaybackThread::setStreamValid() thread %p, streamType %d, valid %d",
Eric Laurent05ce0942011-08-30 10:18:54 -07002363 this, streamType, valid);
2364 Mutex::Autolock _l(mLock);
2365
2366 mStreamTypes[streamType].valid = valid;
2367}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002368
Eric Laurenta553c252009-07-17 12:17:14 -07002369// getTrackName_l() must be called with ThreadBase::mLock held
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002370int AudioFlinger::MixerThread::getTrackName_l()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002371{
2372 return mAudioMixer->getTrackName();
2373}
2374
Eric Laurenta553c252009-07-17 12:17:14 -07002375// deleteTrackName_l() must be called with ThreadBase::mLock held
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07002376void AudioFlinger::MixerThread::deleteTrackName_l(int name)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002377{
Steve Block71f2cf12011-10-20 11:56:00 +01002378 ALOGV("remove track (%d) and delete from mixer", name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002379 mAudioMixer->deleteTrackName(name);
2380}
2381
Eric Laurenta553c252009-07-17 12:17:14 -07002382// checkForNewParameters_l() must be called with ThreadBase::mLock held
2383bool AudioFlinger::MixerThread::checkForNewParameters_l()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002384{
Eric Laurenta553c252009-07-17 12:17:14 -07002385 bool reconfig = false;
2386
Eric Laurent8fce46a2009-08-04 09:45:33 -07002387 while (!mNewParameters.isEmpty()) {
Eric Laurenta553c252009-07-17 12:17:14 -07002388 status_t status = NO_ERROR;
Eric Laurent8fce46a2009-08-04 09:45:33 -07002389 String8 keyValuePair = mNewParameters[0];
2390 AudioParameter param = AudioParameter(keyValuePair);
Eric Laurenta553c252009-07-17 12:17:14 -07002391 int value;
Eric Laurent8fce46a2009-08-04 09:45:33 -07002392
Eric Laurenta553c252009-07-17 12:17:14 -07002393 if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
2394 reconfig = true;
2395 }
2396 if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
Glenn Kasten0a204ed2012-01-12 12:27:51 -08002397 if ((audio_format_t) value != AUDIO_FORMAT_PCM_16_BIT) {
Eric Laurenta553c252009-07-17 12:17:14 -07002398 status = BAD_VALUE;
2399 } else {
2400 reconfig = true;
2401 }
2402 }
2403 if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002404 if (value != AUDIO_CHANNEL_OUT_STEREO) {
Eric Laurenta553c252009-07-17 12:17:14 -07002405 status = BAD_VALUE;
2406 } else {
2407 reconfig = true;
2408 }
2409 }
2410 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
2411 // do not accept frame count changes if tracks are open as the track buffer
Glenn Kastene5fb2632011-12-14 10:28:06 -08002412 // size depends on frame count and correct behavior would not be guaranteed
Eric Laurenta553c252009-07-17 12:17:14 -07002413 // if frame count is changed after track creation
2414 if (!mTracks.isEmpty()) {
2415 status = INVALID_OPERATION;
2416 } else {
2417 reconfig = true;
2418 }
2419 }
Eric Laurent65b65452010-06-01 23:49:17 -07002420 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
Gloria Wang9b3f1522011-02-24 14:51:45 -08002421 // when changing the audio output device, call addBatteryData to notify
2422 // the change
Eric Laurent90681d62011-05-09 12:09:06 -07002423 if ((int)mDevice != value) {
Gloria Wang9b3f1522011-02-24 14:51:45 -08002424 uint32_t params = 0;
2425 // check whether speaker is on
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002426 if (value & AUDIO_DEVICE_OUT_SPEAKER) {
Gloria Wang9b3f1522011-02-24 14:51:45 -08002427 params |= IMediaPlayerService::kBatteryDataSpeakerOn;
2428 }
2429
2430 int deviceWithoutSpeaker
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002431 = AUDIO_DEVICE_OUT_ALL & ~AUDIO_DEVICE_OUT_SPEAKER;
Gloria Wang9b3f1522011-02-24 14:51:45 -08002432 // check if any other device (except speaker) is on
2433 if (value & deviceWithoutSpeaker ) {
2434 params |= IMediaPlayerService::kBatteryDataOtherAudioDeviceOn;
2435 }
2436
2437 if (params != 0) {
2438 addBatteryData(params);
2439 }
2440 }
2441
Eric Laurent65b65452010-06-01 23:49:17 -07002442 // forward device change to effects that have requested to be
2443 // aware of attached audio device.
2444 mDevice = (uint32_t)value;
2445 for (size_t i = 0; i < mEffectChains.size(); i++) {
Eric Laurent76c40f72010-07-15 12:50:15 -07002446 mEffectChains[i]->setDevice_l(mDevice);
Eric Laurent65b65452010-06-01 23:49:17 -07002447 }
2448 }
2449
Eric Laurenta553c252009-07-17 12:17:14 -07002450 if (status == NO_ERROR) {
Dima Zavin31f188892011-04-18 16:57:27 -07002451 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002452 keyValuePair.string());
Eric Laurenta553c252009-07-17 12:17:14 -07002453 if (!mStandby && status == INVALID_OPERATION) {
Dima Zavin31f188892011-04-18 16:57:27 -07002454 mOutput->stream->common.standby(&mOutput->stream->common);
Eric Laurenta553c252009-07-17 12:17:14 -07002455 mStandby = true;
2456 mBytesWritten = 0;
Dima Zavin31f188892011-04-18 16:57:27 -07002457 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002458 keyValuePair.string());
Eric Laurenta553c252009-07-17 12:17:14 -07002459 }
2460 if (status == NO_ERROR && reconfig) {
2461 delete mAudioMixer;
2462 readOutputParameters();
2463 mAudioMixer = new AudioMixer(mFrameCount, mSampleRate);
2464 for (size_t i = 0; i < mTracks.size() ; i++) {
2465 int name = getTrackName_l();
2466 if (name < 0) break;
2467 mTracks[i]->mName = name;
Eric Laurent6f7e0972009-08-10 08:15:12 -07002468 // limit track sample rate to 2 x new output sample rate
2469 if (mTracks[i]->mCblk->sampleRate > 2 * sampleRate()) {
2470 mTracks[i]->mCblk->sampleRate = 2 * sampleRate();
2471 }
Eric Laurenta553c252009-07-17 12:17:14 -07002472 }
Eric Laurent8fce46a2009-08-04 09:45:33 -07002473 sendConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
Eric Laurenta553c252009-07-17 12:17:14 -07002474 }
2475 }
Eric Laurent3fdb1262009-11-07 00:01:32 -08002476
2477 mNewParameters.removeAt(0);
2478
Eric Laurenta553c252009-07-17 12:17:14 -07002479 mParamStatus = status;
Eric Laurenta553c252009-07-17 12:17:14 -07002480 mParamCond.signal();
Eric Laurent5f37be32011-09-13 11:40:21 -07002481 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
2482 // already timed out waiting for the status and will never signal the condition.
Glenn Kastencbfe2e12011-12-13 11:04:14 -08002483 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Eric Laurenta553c252009-07-17 12:17:14 -07002484 }
2485 return reconfig;
2486}
2487
2488status_t AudioFlinger::MixerThread::dumpInternals(int fd, const Vector<String16>& args)
2489{
2490 const size_t SIZE = 256;
2491 char buffer[SIZE];
2492 String8 result;
2493
2494 PlaybackThread::dumpInternals(fd, args);
2495
2496 snprintf(buffer, SIZE, "AudioMixer tracks: %08x\n", mAudioMixer->trackNames());
2497 result.append(buffer);
2498 write(fd, result.string(), result.size());
2499 return NO_ERROR;
2500}
2501
Eric Laurent059b4be2009-11-09 23:32:22 -08002502uint32_t AudioFlinger::MixerThread::idleSleepTimeUs()
2503{
Eric Laurenta54d7d32010-07-29 06:50:24 -07002504 return (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000) / 2;
Eric Laurent62443f52009-10-05 20:29:18 -07002505}
2506
Eric Laurent8448a792010-08-18 18:13:17 -07002507uint32_t AudioFlinger::MixerThread::suspendSleepTimeUs()
2508{
2509 return (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000);
2510}
2511
Eric Laurenta553c252009-07-17 12:17:14 -07002512// ----------------------------------------------------------------------------
Dima Zavin31f188892011-04-18 16:57:27 -07002513AudioFlinger::DirectOutputThread::DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, int id, uint32_t device)
Eric Laurent65b65452010-06-01 23:49:17 -07002514 : PlaybackThread(audioFlinger, output, id, device)
Eric Laurenta553c252009-07-17 12:17:14 -07002515{
Eric Laurent464d5b32011-06-17 21:29:58 -07002516 mType = ThreadBase::DIRECT;
Eric Laurenta553c252009-07-17 12:17:14 -07002517}
2518
2519AudioFlinger::DirectOutputThread::~DirectOutputThread()
2520{
2521}
2522
Eric Laurent65b65452010-06-01 23:49:17 -07002523static inline
2524int32_t mul(int16_t in, int16_t v)
2525{
2526#if defined(__arm__) && !defined(__thumb__)
2527 int32_t out;
2528 asm( "smulbb %[out], %[in], %[v] \n"
2529 : [out]"=r"(out)
2530 : [in]"%r"(in), [v]"r"(v)
2531 : );
2532 return out;
2533#else
2534 return in * int32_t(v);
2535#endif
2536}
2537
2538void AudioFlinger::DirectOutputThread::applyVolume(uint16_t leftVol, uint16_t rightVol, bool ramp)
2539{
2540 // Do not apply volume on compressed audio
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002541 if (!audio_is_linear_pcm(mFormat)) {
Eric Laurent65b65452010-06-01 23:49:17 -07002542 return;
2543 }
2544
2545 // convert to signed 16 bit before volume calculation
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002546 if (mFormat == AUDIO_FORMAT_PCM_8_BIT) {
Eric Laurent65b65452010-06-01 23:49:17 -07002547 size_t count = mFrameCount * mChannelCount;
2548 uint8_t *src = (uint8_t *)mMixBuffer + count-1;
2549 int16_t *dst = mMixBuffer + count-1;
2550 while(count--) {
2551 *dst-- = (int16_t)(*src--^0x80) << 8;
2552 }
2553 }
2554
2555 size_t frameCount = mFrameCount;
2556 int16_t *out = mMixBuffer;
2557 if (ramp) {
2558 if (mChannelCount == 1) {
2559 int32_t d = ((int32_t)leftVol - (int32_t)mLeftVolShort) << 16;
2560 int32_t vlInc = d / (int32_t)frameCount;
2561 int32_t vl = ((int32_t)mLeftVolShort << 16);
2562 do {
2563 out[0] = clamp16(mul(out[0], vl >> 16) >> 12);
2564 out++;
2565 vl += vlInc;
2566 } while (--frameCount);
2567
2568 } else {
2569 int32_t d = ((int32_t)leftVol - (int32_t)mLeftVolShort) << 16;
2570 int32_t vlInc = d / (int32_t)frameCount;
2571 d = ((int32_t)rightVol - (int32_t)mRightVolShort) << 16;
2572 int32_t vrInc = d / (int32_t)frameCount;
2573 int32_t vl = ((int32_t)mLeftVolShort << 16);
2574 int32_t vr = ((int32_t)mRightVolShort << 16);
2575 do {
2576 out[0] = clamp16(mul(out[0], vl >> 16) >> 12);
2577 out[1] = clamp16(mul(out[1], vr >> 16) >> 12);
2578 out += 2;
2579 vl += vlInc;
2580 vr += vrInc;
2581 } while (--frameCount);
2582 }
2583 } else {
2584 if (mChannelCount == 1) {
2585 do {
2586 out[0] = clamp16(mul(out[0], leftVol) >> 12);
2587 out++;
2588 } while (--frameCount);
2589 } else {
2590 do {
2591 out[0] = clamp16(mul(out[0], leftVol) >> 12);
2592 out[1] = clamp16(mul(out[1], rightVol) >> 12);
2593 out += 2;
2594 } while (--frameCount);
2595 }
2596 }
2597
2598 // convert back to unsigned 8 bit after volume calculation
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002599 if (mFormat == AUDIO_FORMAT_PCM_8_BIT) {
Eric Laurent65b65452010-06-01 23:49:17 -07002600 size_t count = mFrameCount * mChannelCount;
2601 int16_t *src = mMixBuffer;
2602 uint8_t *dst = (uint8_t *)mMixBuffer;
2603 while(count--) {
2604 *dst++ = (uint8_t)(((int32_t)*src++ + (1<<7)) >> 8)^0x80;
2605 }
2606 }
2607
2608 mLeftVolShort = leftVol;
2609 mRightVolShort = rightVol;
2610}
2611
Eric Laurenta553c252009-07-17 12:17:14 -07002612bool AudioFlinger::DirectOutputThread::threadLoop()
2613{
Eric Laurent059b4be2009-11-09 23:32:22 -08002614 uint32_t mixerStatus = MIXER_IDLE;
Eric Laurenta553c252009-07-17 12:17:14 -07002615 sp<Track> trackToRemove;
2616 sp<Track> activeTrack;
2617 nsecs_t standbyTime = systemTime();
2618 int8_t *curBuf;
2619 size_t mixBufferSize = mFrameCount*mFrameSize;
Eric Laurent059b4be2009-11-09 23:32:22 -08002620 uint32_t activeSleepTime = activeSleepTimeUs();
2621 uint32_t idleSleepTime = idleSleepTimeUs();
2622 uint32_t sleepTime = idleSleepTime;
Eric Laurentef9500f2010-03-11 14:47:00 -08002623 // use shorter standby delay as on normal output to release
2624 // hardware resources as soon as possible
2625 nsecs_t standbyDelay = microseconds(activeSleepTime*2);
Eric Laurent059b4be2009-11-09 23:32:22 -08002626
Eric Laurent6dbdc402011-07-22 09:04:31 -07002627 acquireWakeLock();
2628
Eric Laurenta553c252009-07-17 12:17:14 -07002629 while (!exitPending())
2630 {
Eric Laurent65b65452010-06-01 23:49:17 -07002631 bool rampVolume;
2632 uint16_t leftVol;
2633 uint16_t rightVol;
2634 Vector< sp<EffectChain> > effectChains;
2635
Eric Laurenta553c252009-07-17 12:17:14 -07002636 processConfigEvents();
2637
Eric Laurent059b4be2009-11-09 23:32:22 -08002638 mixerStatus = MIXER_IDLE;
2639
Eric Laurenta553c252009-07-17 12:17:14 -07002640 { // scope for the mLock
2641
2642 Mutex::Autolock _l(mLock);
2643
2644 if (checkForNewParameters_l()) {
2645 mixBufferSize = mFrameCount*mFrameSize;
Eric Laurent059b4be2009-11-09 23:32:22 -08002646 activeSleepTime = activeSleepTimeUs();
2647 idleSleepTime = idleSleepTimeUs();
Eric Laurentef9500f2010-03-11 14:47:00 -08002648 standbyDelay = microseconds(activeSleepTime*2);
Eric Laurenta553c252009-07-17 12:17:14 -07002649 }
2650
2651 // put audio hardware into standby after short delay
Glenn Kastene80a4cc2011-12-15 09:51:17 -08002652 if (CC_UNLIKELY((!mActiveTracks.size() && systemTime() > standbyTime) ||
2653 mSuspended)) {
Eric Laurenta553c252009-07-17 12:17:14 -07002654 // wait until we have something to do...
2655 if (!mStandby) {
Steve Block71f2cf12011-10-20 11:56:00 +01002656 ALOGV("Audio hardware entering standby, mixer %p\n", this);
Dima Zavin31f188892011-04-18 16:57:27 -07002657 mOutput->stream->common.standby(&mOutput->stream->common);
Eric Laurenta553c252009-07-17 12:17:14 -07002658 mStandby = true;
2659 mBytesWritten = 0;
2660 }
2661
2662 if (!mActiveTracks.size() && mConfigEvents.isEmpty()) {
2663 // we're about to wait, flush the binder command buffer
2664 IPCThreadState::self()->flushCommands();
2665
2666 if (exitPending()) break;
2667
Eric Laurent6dbdc402011-07-22 09:04:31 -07002668 releaseWakeLock_l();
Steve Block71f2cf12011-10-20 11:56:00 +01002669 ALOGV("DirectOutputThread %p TID %d going to sleep\n", this, gettid());
Eric Laurenta553c252009-07-17 12:17:14 -07002670 mWaitWorkCV.wait(mLock);
Steve Block71f2cf12011-10-20 11:56:00 +01002671 ALOGV("DirectOutputThread %p TID %d waking up in active mode\n", this, gettid());
Eric Laurent6dbdc402011-07-22 09:04:31 -07002672 acquireWakeLock_l();
Eric Laurenta553c252009-07-17 12:17:14 -07002673
Glenn Kastenb737dbb2012-01-13 15:54:24 -08002674 if (!mMasterMute) {
Eric Laurenta553c252009-07-17 12:17:14 -07002675 char value[PROPERTY_VALUE_MAX];
2676 property_get("ro.audio.silent", value, "0");
2677 if (atoi(value)) {
Steve Block5baa3a62011-12-20 16:23:08 +00002678 ALOGD("Silence is golden");
Eric Laurenta553c252009-07-17 12:17:14 -07002679 setMasterMute(true);
2680 }
2681 }
2682
Eric Laurentef9500f2010-03-11 14:47:00 -08002683 standbyTime = systemTime() + standbyDelay;
Eric Laurent059b4be2009-11-09 23:32:22 -08002684 sleepTime = idleSleepTime;
Eric Laurenta553c252009-07-17 12:17:14 -07002685 continue;
2686 }
2687 }
2688
Eric Laurent65b65452010-06-01 23:49:17 -07002689 effectChains = mEffectChains;
2690
Eric Laurenta553c252009-07-17 12:17:14 -07002691 // find out which tracks need to be processed
2692 if (mActiveTracks.size() != 0) {
2693 sp<Track> t = mActiveTracks[0].promote();
2694 if (t == 0) continue;
2695
2696 Track* const track = t.get();
2697 audio_track_cblk_t* cblk = track->cblk();
2698
2699 // The first time a track is added we wait
2700 // for all its buffers to be filled before processing it
Eric Laurent9a30fc12010-10-05 14:41:42 -07002701 if (cblk->framesReady() && track->isReady() &&
Eric Laurent380558b2010-04-09 06:11:48 -07002702 !track->isPaused() && !track->isTerminated())
Eric Laurenta553c252009-07-17 12:17:14 -07002703 {
Steve Block71f2cf12011-10-20 11:56:00 +01002704 //ALOGV("track %d u=%08x, s=%08x [OK]", track->name(), cblk->user, cblk->server);
Eric Laurenta553c252009-07-17 12:17:14 -07002705
Eric Laurent65b65452010-06-01 23:49:17 -07002706 if (track->mFillingUpStatus == Track::FS_FILLED) {
2707 track->mFillingUpStatus = Track::FS_ACTIVE;
2708 mLeftVolFloat = mRightVolFloat = 0;
2709 mLeftVolShort = mRightVolShort = 0;
2710 if (track->mState == TrackBase::RESUMING) {
2711 track->mState = TrackBase::ACTIVE;
2712 rampVolume = true;
2713 }
2714 } else if (cblk->server != 0) {
2715 // If the track is stopped before the first frame was mixed,
2716 // do not apply ramp
2717 rampVolume = true;
2718 }
Eric Laurenta553c252009-07-17 12:17:14 -07002719 // compute volume for this track
2720 float left, right;
2721 if (track->isMuted() || mMasterMute || track->isPausing() ||
2722 mStreamTypes[track->type()].mute) {
2723 left = right = 0;
2724 if (track->isPausing()) {
2725 track->setPaused();
2726 }
2727 } else {
2728 float typeVolume = mStreamTypes[track->type()].volume;
2729 float v = mMasterVolume * typeVolume;
Glenn Kasten0632bad2012-01-17 12:20:54 -08002730 uint32_t vlr = cblk->volumeLR;
2731 float v_clamped = v * (vlr & 0xFFFF);
Eric Laurenta553c252009-07-17 12:17:14 -07002732 if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
2733 left = v_clamped/MAX_GAIN;
Glenn Kasten0632bad2012-01-17 12:20:54 -08002734 v_clamped = v * (vlr >> 16);
Eric Laurenta553c252009-07-17 12:17:14 -07002735 if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
2736 right = v_clamped/MAX_GAIN;
2737 }
2738
Eric Laurent65b65452010-06-01 23:49:17 -07002739 if (left != mLeftVolFloat || right != mRightVolFloat) {
2740 mLeftVolFloat = left;
2741 mRightVolFloat = right;
Eric Laurenta553c252009-07-17 12:17:14 -07002742
Eric Laurent65b65452010-06-01 23:49:17 -07002743 // If audio HAL implements volume control,
2744 // force software volume to nominal value
Dima Zavin31f188892011-04-18 16:57:27 -07002745 if (mOutput->stream->set_volume(mOutput->stream, left, right) == NO_ERROR) {
Eric Laurent65b65452010-06-01 23:49:17 -07002746 left = 1.0f;
2747 right = 1.0f;
Eric Laurenta553c252009-07-17 12:17:14 -07002748 }
Eric Laurent65b65452010-06-01 23:49:17 -07002749
2750 // Convert volumes from float to 8.24
2751 uint32_t vl = (uint32_t)(left * (1 << 24));
2752 uint32_t vr = (uint32_t)(right * (1 << 24));
2753
2754 // Delegate volume control to effect in track effect chain if needed
2755 // only one effect chain can be present on DirectOutputThread, so if
2756 // there is one, the track is connected to it
2757 if (!effectChains.isEmpty()) {
Eric Laurent27a2fdf2010-09-10 17:44:44 -07002758 // Do not ramp volume if volume is controlled by effect
Eric Laurent76c40f72010-07-15 12:50:15 -07002759 if(effectChains[0]->setVolume_l(&vl, &vr)) {
Eric Laurent65b65452010-06-01 23:49:17 -07002760 rampVolume = false;
2761 }
2762 }
2763
2764 // Convert volumes from 8.24 to 4.12 format
2765 uint32_t v_clamped = (vl + (1 << 11)) >> 12;
2766 if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
2767 leftVol = (uint16_t)v_clamped;
2768 v_clamped = (vr + (1 << 11)) >> 12;
2769 if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
2770 rightVol = (uint16_t)v_clamped;
2771 } else {
2772 leftVol = mLeftVolShort;
2773 rightVol = mRightVolShort;
2774 rampVolume = false;
Eric Laurenta553c252009-07-17 12:17:14 -07002775 }
2776
2777 // reset retry count
Eric Laurentef9500f2010-03-11 14:47:00 -08002778 track->mRetryCount = kMaxTrackRetriesDirect;
Eric Laurenta553c252009-07-17 12:17:14 -07002779 activeTrack = t;
Eric Laurent059b4be2009-11-09 23:32:22 -08002780 mixerStatus = MIXER_TRACKS_READY;
Eric Laurenta553c252009-07-17 12:17:14 -07002781 } else {
Steve Block71f2cf12011-10-20 11:56:00 +01002782 //ALOGV("track %d u=%08x, s=%08x [NOT READY]", track->name(), cblk->user, cblk->server);
Eric Laurenta553c252009-07-17 12:17:14 -07002783 if (track->isStopped()) {
2784 track->reset();
2785 }
2786 if (track->isTerminated() || track->isStopped() || track->isPaused()) {
2787 // We have consumed all the buffers of this track.
2788 // Remove it from the list of active tracks.
2789 trackToRemove = track;
2790 } else {
2791 // No buffers for this track. Give it a few chances to
2792 // fill a buffer, then remove it from active list.
2793 if (--(track->mRetryCount) <= 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01002794 ALOGV("BUFFER TIMEOUT: remove(%d) from active list", track->name());
Eric Laurenta553c252009-07-17 12:17:14 -07002795 trackToRemove = track;
Eric Laurent059b4be2009-11-09 23:32:22 -08002796 } else {
2797 mixerStatus = MIXER_TRACKS_ENABLED;
Eric Laurenta553c252009-07-17 12:17:14 -07002798 }
Eric Laurent059b4be2009-11-09 23:32:22 -08002799 }
Eric Laurenta553c252009-07-17 12:17:14 -07002800 }
2801 }
2802
2803 // remove all the tracks that need to be...
Glenn Kastene80a4cc2011-12-15 09:51:17 -08002804 if (CC_UNLIKELY(trackToRemove != 0)) {
Eric Laurenta553c252009-07-17 12:17:14 -07002805 mActiveTracks.remove(trackToRemove);
Eric Laurent65b65452010-06-01 23:49:17 -07002806 if (!effectChains.isEmpty()) {
Steve Block71f2cf12011-10-20 11:56:00 +01002807 ALOGV("stopping track on chain %p for session Id: %d", effectChains[0].get(),
Eric Laurent8ed6ed02010-07-13 04:45:46 -07002808 trackToRemove->sessionId());
Eric Laurent90681d62011-05-09 12:09:06 -07002809 effectChains[0]->decActiveTrackCnt();
Eric Laurent65b65452010-06-01 23:49:17 -07002810 }
Eric Laurenta553c252009-07-17 12:17:14 -07002811 if (trackToRemove->isTerminated()) {
Eric Laurent90681d62011-05-09 12:09:06 -07002812 removeTrack_l(trackToRemove);
Eric Laurenta553c252009-07-17 12:17:14 -07002813 }
2814 }
Eric Laurent65b65452010-06-01 23:49:17 -07002815
Eric Laurent8ed6ed02010-07-13 04:45:46 -07002816 lockEffectChains_l(effectChains);
Eric Laurenta553c252009-07-17 12:17:14 -07002817 }
2818
Glenn Kastene80a4cc2011-12-15 09:51:17 -08002819 if (CC_LIKELY(mixerStatus == MIXER_TRACKS_READY)) {
Eric Laurentf69a3f82009-09-22 00:35:48 -07002820 AudioBufferProvider::Buffer buffer;
2821 size_t frameCount = mFrameCount;
2822 curBuf = (int8_t *)mMixBuffer;
2823 // output audio to hardware
Eric Laurent65b65452010-06-01 23:49:17 -07002824 while (frameCount) {
Eric Laurentf69a3f82009-09-22 00:35:48 -07002825 buffer.frameCount = frameCount;
2826 activeTrack->getNextBuffer(&buffer);
Glenn Kastene80a4cc2011-12-15 09:51:17 -08002827 if (CC_UNLIKELY(buffer.raw == NULL)) {
Eric Laurentf69a3f82009-09-22 00:35:48 -07002828 memset(curBuf, 0, frameCount * mFrameSize);
2829 break;
2830 }
2831 memcpy(curBuf, buffer.raw, buffer.frameCount * mFrameSize);
2832 frameCount -= buffer.frameCount;
2833 curBuf += buffer.frameCount * mFrameSize;
2834 activeTrack->releaseBuffer(&buffer);
2835 }
2836 sleepTime = 0;
Eric Laurentef9500f2010-03-11 14:47:00 -08002837 standbyTime = systemTime() + standbyDelay;
Eric Laurent96c08a62009-09-07 08:38:38 -07002838 } else {
Eric Laurent62443f52009-10-05 20:29:18 -07002839 if (sleepTime == 0) {
Eric Laurent059b4be2009-11-09 23:32:22 -08002840 if (mixerStatus == MIXER_TRACKS_ENABLED) {
2841 sleepTime = activeSleepTime;
2842 } else {
2843 sleepTime = idleSleepTime;
2844 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002845 } else if (mBytesWritten != 0 && audio_is_linear_pcm(mFormat)) {
Eric Laurentf69a3f82009-09-22 00:35:48 -07002846 memset (mMixBuffer, 0, mFrameCount * mFrameSize);
Eric Laurent96c08a62009-09-07 08:38:38 -07002847 sleepTime = 0;
Eric Laurent96c08a62009-09-07 08:38:38 -07002848 }
Eric Laurentf69a3f82009-09-22 00:35:48 -07002849 }
Eric Laurent96c08a62009-09-07 08:38:38 -07002850
Eric Laurentf69a3f82009-09-22 00:35:48 -07002851 if (mSuspended) {
Eric Laurent8448a792010-08-18 18:13:17 -07002852 sleepTime = suspendSleepTimeUs();
Eric Laurentf69a3f82009-09-22 00:35:48 -07002853 }
2854 // sleepTime == 0 means we must write to audio hardware
2855 if (sleepTime == 0) {
Eric Laurent65b65452010-06-01 23:49:17 -07002856 if (mixerStatus == MIXER_TRACKS_READY) {
2857 applyVolume(leftVol, rightVol, rampVolume);
2858 }
2859 for (size_t i = 0; i < effectChains.size(); i ++) {
2860 effectChains[i]->process_l();
2861 }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07002862 unlockEffectChains(effectChains);
Eric Laurent65b65452010-06-01 23:49:17 -07002863
Eric Laurentf69a3f82009-09-22 00:35:48 -07002864 mLastWriteTime = systemTime();
2865 mInWrite = true;
Eric Laurent0986e792010-01-19 17:37:09 -08002866 mBytesWritten += mixBufferSize;
Dima Zavin31f188892011-04-18 16:57:27 -07002867 int bytesWritten = (int)mOutput->stream->write(mOutput->stream, mMixBuffer, mixBufferSize);
Eric Laurent0986e792010-01-19 17:37:09 -08002868 if (bytesWritten < 0) mBytesWritten -= mixBufferSize;
Eric Laurentf69a3f82009-09-22 00:35:48 -07002869 mNumWrites++;
2870 mInWrite = false;
2871 mStandby = false;
2872 } else {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07002873 unlockEffectChains(effectChains);
Eric Laurentf69a3f82009-09-22 00:35:48 -07002874 usleep(sleepTime);
Eric Laurenta553c252009-07-17 12:17:14 -07002875 }
2876
2877 // finally let go of removed track, without the lock held
2878 // since we can't guarantee the destructors won't acquire that
2879 // same lock.
2880 trackToRemove.clear();
2881 activeTrack.clear();
Eric Laurent65b65452010-06-01 23:49:17 -07002882
2883 // Effect chains will be actually deleted here if they were removed from
2884 // mEffectChains list during mixing or effects processing
2885 effectChains.clear();
Eric Laurenta553c252009-07-17 12:17:14 -07002886 }
2887
2888 if (!mStandby) {
Dima Zavin31f188892011-04-18 16:57:27 -07002889 mOutput->stream->common.standby(&mOutput->stream->common);
Eric Laurenta553c252009-07-17 12:17:14 -07002890 }
Eric Laurenta553c252009-07-17 12:17:14 -07002891
Eric Laurent6dbdc402011-07-22 09:04:31 -07002892 releaseWakeLock();
2893
Steve Block71f2cf12011-10-20 11:56:00 +01002894 ALOGV("DirectOutputThread %p exiting", this);
Eric Laurenta553c252009-07-17 12:17:14 -07002895 return false;
2896}
2897
2898// getTrackName_l() must be called with ThreadBase::mLock held
2899int AudioFlinger::DirectOutputThread::getTrackName_l()
2900{
2901 return 0;
2902}
2903
2904// deleteTrackName_l() must be called with ThreadBase::mLock held
2905void AudioFlinger::DirectOutputThread::deleteTrackName_l(int name)
2906{
2907}
2908
2909// checkForNewParameters_l() must be called with ThreadBase::mLock held
2910bool AudioFlinger::DirectOutputThread::checkForNewParameters_l()
2911{
2912 bool reconfig = false;
2913
Eric Laurent8fce46a2009-08-04 09:45:33 -07002914 while (!mNewParameters.isEmpty()) {
Eric Laurenta553c252009-07-17 12:17:14 -07002915 status_t status = NO_ERROR;
Eric Laurent8fce46a2009-08-04 09:45:33 -07002916 String8 keyValuePair = mNewParameters[0];
2917 AudioParameter param = AudioParameter(keyValuePair);
Eric Laurenta553c252009-07-17 12:17:14 -07002918 int value;
Eric Laurent8fce46a2009-08-04 09:45:33 -07002919
Eric Laurenta553c252009-07-17 12:17:14 -07002920 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
2921 // do not accept frame count changes if tracks are open as the track buffer
2922 // size depends on frame count and correct behavior would not be garantied
2923 // if frame count is changed after track creation
2924 if (!mTracks.isEmpty()) {
2925 status = INVALID_OPERATION;
2926 } else {
2927 reconfig = true;
2928 }
2929 }
2930 if (status == NO_ERROR) {
Dima Zavin31f188892011-04-18 16:57:27 -07002931 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002932 keyValuePair.string());
Eric Laurenta553c252009-07-17 12:17:14 -07002933 if (!mStandby && status == INVALID_OPERATION) {
Dima Zavin31f188892011-04-18 16:57:27 -07002934 mOutput->stream->common.standby(&mOutput->stream->common);
Eric Laurenta553c252009-07-17 12:17:14 -07002935 mStandby = true;
2936 mBytesWritten = 0;
Dima Zavin31f188892011-04-18 16:57:27 -07002937 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002938 keyValuePair.string());
Eric Laurenta553c252009-07-17 12:17:14 -07002939 }
2940 if (status == NO_ERROR && reconfig) {
2941 readOutputParameters();
Eric Laurent8fce46a2009-08-04 09:45:33 -07002942 sendConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
Eric Laurenta553c252009-07-17 12:17:14 -07002943 }
2944 }
Eric Laurent3fdb1262009-11-07 00:01:32 -08002945
2946 mNewParameters.removeAt(0);
2947
Eric Laurenta553c252009-07-17 12:17:14 -07002948 mParamStatus = status;
Eric Laurenta553c252009-07-17 12:17:14 -07002949 mParamCond.signal();
Eric Laurent5f37be32011-09-13 11:40:21 -07002950 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
2951 // already timed out waiting for the status and will never signal the condition.
Glenn Kastencbfe2e12011-12-13 11:04:14 -08002952 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Eric Laurenta553c252009-07-17 12:17:14 -07002953 }
2954 return reconfig;
The Android Open Source Projectf1e484a2009-01-22 00:13:42 -08002955}
2956
Eric Laurent059b4be2009-11-09 23:32:22 -08002957uint32_t AudioFlinger::DirectOutputThread::activeSleepTimeUs()
Eric Laurent62443f52009-10-05 20:29:18 -07002958{
2959 uint32_t time;
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002960 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent44331692011-12-05 09:47:19 -08002961 time = PlaybackThread::activeSleepTimeUs();
Eric Laurent059b4be2009-11-09 23:32:22 -08002962 } else {
2963 time = 10000;
2964 }
2965 return time;
2966}
2967
2968uint32_t AudioFlinger::DirectOutputThread::idleSleepTimeUs()
2969{
2970 uint32_t time;
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002971 if (audio_is_linear_pcm(mFormat)) {
Eric Laurenta54d7d32010-07-29 06:50:24 -07002972 time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000) / 2;
Eric Laurent62443f52009-10-05 20:29:18 -07002973 } else {
2974 time = 10000;
2975 }
2976 return time;
2977}
2978
Eric Laurent8448a792010-08-18 18:13:17 -07002979uint32_t AudioFlinger::DirectOutputThread::suspendSleepTimeUs()
2980{
2981 uint32_t time;
Dima Zavin24fc2fb2011-04-19 22:30:36 -07002982 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent8448a792010-08-18 18:13:17 -07002983 time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000);
2984 } else {
2985 time = 10000;
2986 }
2987 return time;
2988}
2989
2990
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07002991// ----------------------------------------------------------------------------
2992
Eric Laurent49f02be2009-11-19 09:00:56 -08002993AudioFlinger::DuplicatingThread::DuplicatingThread(const sp<AudioFlinger>& audioFlinger, AudioFlinger::MixerThread* mainThread, int id)
Eric Laurent65b65452010-06-01 23:49:17 -07002994 : MixerThread(audioFlinger, mainThread->getOutput(), id, mainThread->device()), mWaitTimeMs(UINT_MAX)
Eric Laurenta553c252009-07-17 12:17:14 -07002995{
Eric Laurent464d5b32011-06-17 21:29:58 -07002996 mType = ThreadBase::DUPLICATING;
Eric Laurenta553c252009-07-17 12:17:14 -07002997 addOutputTrack(mainThread);
2998}
2999
3000AudioFlinger::DuplicatingThread::~DuplicatingThread()
3001{
Eric Laurent0a080292009-12-07 10:53:10 -08003002 for (size_t i = 0; i < mOutputTracks.size(); i++) {
3003 mOutputTracks[i]->destroy();
3004 }
Eric Laurenta553c252009-07-17 12:17:14 -07003005 mOutputTracks.clear();
3006}
3007
3008bool AudioFlinger::DuplicatingThread::threadLoop()
3009{
Eric Laurenta553c252009-07-17 12:17:14 -07003010 Vector< sp<Track> > tracksToRemove;
Eric Laurent059b4be2009-11-09 23:32:22 -08003011 uint32_t mixerStatus = MIXER_IDLE;
Eric Laurenta553c252009-07-17 12:17:14 -07003012 nsecs_t standbyTime = systemTime();
3013 size_t mixBufferSize = mFrameCount*mFrameSize;
3014 SortedVector< sp<OutputTrack> > outputTracks;
Eric Laurent62443f52009-10-05 20:29:18 -07003015 uint32_t writeFrames = 0;
Eric Laurent059b4be2009-11-09 23:32:22 -08003016 uint32_t activeSleepTime = activeSleepTimeUs();
3017 uint32_t idleSleepTime = idleSleepTimeUs();
3018 uint32_t sleepTime = idleSleepTime;
Eric Laurent65b65452010-06-01 23:49:17 -07003019 Vector< sp<EffectChain> > effectChains;
Eric Laurenta553c252009-07-17 12:17:14 -07003020
Eric Laurent6dbdc402011-07-22 09:04:31 -07003021 acquireWakeLock();
3022
Eric Laurenta553c252009-07-17 12:17:14 -07003023 while (!exitPending())
3024 {
3025 processConfigEvents();
3026
Eric Laurent059b4be2009-11-09 23:32:22 -08003027 mixerStatus = MIXER_IDLE;
Eric Laurenta553c252009-07-17 12:17:14 -07003028 { // scope for the mLock
3029
3030 Mutex::Autolock _l(mLock);
3031
3032 if (checkForNewParameters_l()) {
3033 mixBufferSize = mFrameCount*mFrameSize;
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003034 updateWaitTime();
Eric Laurent059b4be2009-11-09 23:32:22 -08003035 activeSleepTime = activeSleepTimeUs();
3036 idleSleepTime = idleSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -07003037 }
3038
3039 const SortedVector< wp<Track> >& activeTracks = mActiveTracks;
3040
3041 for (size_t i = 0; i < mOutputTracks.size(); i++) {
3042 outputTracks.add(mOutputTracks[i]);
3043 }
3044
3045 // put audio hardware into standby after short delay
Glenn Kastene80a4cc2011-12-15 09:51:17 -08003046 if (CC_UNLIKELY((!activeTracks.size() && systemTime() > standbyTime) ||
3047 mSuspended)) {
Eric Laurenta553c252009-07-17 12:17:14 -07003048 if (!mStandby) {
3049 for (size_t i = 0; i < outputTracks.size(); i++) {
Eric Laurenta553c252009-07-17 12:17:14 -07003050 outputTracks[i]->stop();
Eric Laurenta553c252009-07-17 12:17:14 -07003051 }
3052 mStandby = true;
3053 mBytesWritten = 0;
3054 }
3055
3056 if (!activeTracks.size() && mConfigEvents.isEmpty()) {
3057 // we're about to wait, flush the binder command buffer
3058 IPCThreadState::self()->flushCommands();
3059 outputTracks.clear();
3060
3061 if (exitPending()) break;
3062
Eric Laurent6dbdc402011-07-22 09:04:31 -07003063 releaseWakeLock_l();
Steve Block71f2cf12011-10-20 11:56:00 +01003064 ALOGV("DuplicatingThread %p TID %d going to sleep\n", this, gettid());
Eric Laurenta553c252009-07-17 12:17:14 -07003065 mWaitWorkCV.wait(mLock);
Steve Block71f2cf12011-10-20 11:56:00 +01003066 ALOGV("DuplicatingThread %p TID %d waking up\n", this, gettid());
Eric Laurent6dbdc402011-07-22 09:04:31 -07003067 acquireWakeLock_l();
3068
Eric Laurent71c44962012-01-17 19:20:12 -08003069 mPrevMixerStatus = MIXER_IDLE;
Glenn Kastenb737dbb2012-01-13 15:54:24 -08003070 if (!mMasterMute) {
Eric Laurenta553c252009-07-17 12:17:14 -07003071 char value[PROPERTY_VALUE_MAX];
3072 property_get("ro.audio.silent", value, "0");
3073 if (atoi(value)) {
Steve Block5baa3a62011-12-20 16:23:08 +00003074 ALOGD("Silence is golden");
Eric Laurenta553c252009-07-17 12:17:14 -07003075 setMasterMute(true);
3076 }
3077 }
3078
3079 standbyTime = systemTime() + kStandbyTimeInNsecs;
Eric Laurent059b4be2009-11-09 23:32:22 -08003080 sleepTime = idleSleepTime;
Eric Laurenta553c252009-07-17 12:17:14 -07003081 continue;
3082 }
3083 }
3084
Eric Laurent059b4be2009-11-09 23:32:22 -08003085 mixerStatus = prepareTracks_l(activeTracks, &tracksToRemove);
Eric Laurent65b65452010-06-01 23:49:17 -07003086
3087 // prevent any changes in effect chain list and in each effect chain
3088 // during mixing and effect process as the audio buffers could be deleted
3089 // or modified if an effect is created or deleted
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003090 lockEffectChains_l(effectChains);
Eric Laurentf69a3f82009-09-22 00:35:48 -07003091 }
Eric Laurenta553c252009-07-17 12:17:14 -07003092
Glenn Kastene80a4cc2011-12-15 09:51:17 -08003093 if (CC_LIKELY(mixerStatus == MIXER_TRACKS_READY)) {
Eric Laurenta553c252009-07-17 12:17:14 -07003094 // mix buffers...
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003095 if (outputsReady(outputTracks)) {
Eric Laurent65b65452010-06-01 23:49:17 -07003096 mAudioMixer->process();
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003097 } else {
Eric Laurent65b65452010-06-01 23:49:17 -07003098 memset(mMixBuffer, 0, mixBufferSize);
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003099 }
Eric Laurentf69a3f82009-09-22 00:35:48 -07003100 sleepTime = 0;
Eric Laurent62443f52009-10-05 20:29:18 -07003101 writeFrames = mFrameCount;
Eric Laurenta553c252009-07-17 12:17:14 -07003102 } else {
Eric Laurent62443f52009-10-05 20:29:18 -07003103 if (sleepTime == 0) {
Eric Laurent059b4be2009-11-09 23:32:22 -08003104 if (mixerStatus == MIXER_TRACKS_ENABLED) {
3105 sleepTime = activeSleepTime;
3106 } else {
3107 sleepTime = idleSleepTime;
3108 }
Eric Laurent62443f52009-10-05 20:29:18 -07003109 } else if (mBytesWritten != 0) {
3110 // flush remaining overflow buffers in output tracks
3111 for (size_t i = 0; i < outputTracks.size(); i++) {
3112 if (outputTracks[i]->isActive()) {
3113 sleepTime = 0;
3114 writeFrames = 0;
Eric Laurent65b65452010-06-01 23:49:17 -07003115 memset(mMixBuffer, 0, mixBufferSize);
Eric Laurent62443f52009-10-05 20:29:18 -07003116 break;
3117 }
3118 }
Eric Laurenta553c252009-07-17 12:17:14 -07003119 }
3120 }
Eric Laurentf69a3f82009-09-22 00:35:48 -07003121
3122 if (mSuspended) {
Eric Laurent8448a792010-08-18 18:13:17 -07003123 sleepTime = suspendSleepTimeUs();
Eric Laurentf69a3f82009-09-22 00:35:48 -07003124 }
3125 // sleepTime == 0 means we must write to audio hardware
3126 if (sleepTime == 0) {
Eric Laurent65b65452010-06-01 23:49:17 -07003127 for (size_t i = 0; i < effectChains.size(); i ++) {
3128 effectChains[i]->process_l();
3129 }
3130 // enable changes in effect chain
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003131 unlockEffectChains(effectChains);
Eric Laurent65b65452010-06-01 23:49:17 -07003132
Eric Laurent62443f52009-10-05 20:29:18 -07003133 standbyTime = systemTime() + kStandbyTimeInNsecs;
Eric Laurentf69a3f82009-09-22 00:35:48 -07003134 for (size_t i = 0; i < outputTracks.size(); i++) {
Eric Laurent65b65452010-06-01 23:49:17 -07003135 outputTracks[i]->write(mMixBuffer, writeFrames);
Eric Laurenta553c252009-07-17 12:17:14 -07003136 }
Eric Laurentf69a3f82009-09-22 00:35:48 -07003137 mStandby = false;
3138 mBytesWritten += mixBufferSize;
Eric Laurenta553c252009-07-17 12:17:14 -07003139 } else {
Eric Laurent65b65452010-06-01 23:49:17 -07003140 // enable changes in effect chain
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003141 unlockEffectChains(effectChains);
Eric Laurentf69a3f82009-09-22 00:35:48 -07003142 usleep(sleepTime);
Eric Laurenta553c252009-07-17 12:17:14 -07003143 }
3144
3145 // finally let go of all our tracks, without the lock held
3146 // since we can't guarantee the destructors won't acquire that
3147 // same lock.
3148 tracksToRemove.clear();
3149 outputTracks.clear();
Eric Laurent65b65452010-06-01 23:49:17 -07003150
3151 // Effect chains will be actually deleted here if they were removed from
3152 // mEffectChains list during mixing or effects processing
3153 effectChains.clear();
Eric Laurenta553c252009-07-17 12:17:14 -07003154 }
3155
Eric Laurent6dbdc402011-07-22 09:04:31 -07003156 releaseWakeLock();
3157
Eric Laurenta553c252009-07-17 12:17:14 -07003158 return false;
3159}
3160
3161void AudioFlinger::DuplicatingThread::addOutputTrack(MixerThread *thread)
3162{
3163 int frameCount = (3 * mFrameCount * mSampleRate) / thread->sampleRate();
3164 OutputTrack *outputTrack = new OutputTrack((ThreadBase *)thread,
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003165 this,
Eric Laurenta553c252009-07-17 12:17:14 -07003166 mSampleRate,
3167 mFormat,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003168 mChannelMask,
Eric Laurenta553c252009-07-17 12:17:14 -07003169 frameCount);
Eric Laurent6c30a712009-08-10 23:22:32 -07003170 if (outputTrack->cblk() != NULL) {
Dima Zavin24fc2fb2011-04-19 22:30:36 -07003171 thread->setStreamVolume(AUDIO_STREAM_CNT, 1.0f);
Eric Laurent6c30a712009-08-10 23:22:32 -07003172 mOutputTracks.add(outputTrack);
Steve Block71f2cf12011-10-20 11:56:00 +01003173 ALOGV("addOutputTrack() track %p, on thread %p", outputTrack, thread);
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003174 updateWaitTime();
Eric Laurent6c30a712009-08-10 23:22:32 -07003175 }
Eric Laurenta553c252009-07-17 12:17:14 -07003176}
3177
3178void AudioFlinger::DuplicatingThread::removeOutputTrack(MixerThread *thread)
3179{
3180 Mutex::Autolock _l(mLock);
3181 for (size_t i = 0; i < mOutputTracks.size(); i++) {
3182 if (mOutputTracks[i]->thread() == (ThreadBase *)thread) {
Eric Laurent6c30a712009-08-10 23:22:32 -07003183 mOutputTracks[i]->destroy();
Eric Laurenta553c252009-07-17 12:17:14 -07003184 mOutputTracks.removeAt(i);
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003185 updateWaitTime();
Eric Laurenta553c252009-07-17 12:17:14 -07003186 return;
3187 }
3188 }
Steve Block71f2cf12011-10-20 11:56:00 +01003189 ALOGV("removeOutputTrack(): unkonwn thread: %p", thread);
Eric Laurenta553c252009-07-17 12:17:14 -07003190}
3191
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003192void AudioFlinger::DuplicatingThread::updateWaitTime()
3193{
3194 mWaitTimeMs = UINT_MAX;
3195 for (size_t i = 0; i < mOutputTracks.size(); i++) {
3196 sp<ThreadBase> strong = mOutputTracks[i]->thread().promote();
3197 if (strong != NULL) {
3198 uint32_t waitTimeMs = (strong->frameCount() * 2 * 1000) / strong->sampleRate();
3199 if (waitTimeMs < mWaitTimeMs) {
3200 mWaitTimeMs = waitTimeMs;
3201 }
3202 }
3203 }
3204}
3205
3206
3207bool AudioFlinger::DuplicatingThread::outputsReady(SortedVector< sp<OutputTrack> > &outputTracks)
3208{
3209 for (size_t i = 0; i < outputTracks.size(); i++) {
3210 sp <ThreadBase> thread = outputTracks[i]->thread().promote();
3211 if (thread == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00003212 ALOGW("DuplicatingThread::outputsReady() could not promote thread on output track %p", outputTracks[i].get());
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003213 return false;
3214 }
3215 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3216 if (playbackThread->standby() && !playbackThread->isSuspended()) {
Steve Block71f2cf12011-10-20 11:56:00 +01003217 ALOGV("DuplicatingThread output track %p on thread %p Not Ready", outputTracks[i].get(), thread.get());
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003218 return false;
3219 }
3220 }
3221 return true;
3222}
3223
3224uint32_t AudioFlinger::DuplicatingThread::activeSleepTimeUs()
3225{
3226 return (mWaitTimeMs * 1000) / 2;
3227}
3228
Eric Laurenta553c252009-07-17 12:17:14 -07003229// ----------------------------------------------------------------------------
3230
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003231// TrackBase constructor must be called with AudioFlinger::mLock held
Eric Laurenta553c252009-07-17 12:17:14 -07003232AudioFlinger::ThreadBase::TrackBase::TrackBase(
3233 const wp<ThreadBase>& thread,
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003234 const sp<Client>& client,
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003235 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08003236 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003237 uint32_t channelMask,
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003238 int frameCount,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003239 uint32_t flags,
Eric Laurent65b65452010-06-01 23:49:17 -07003240 const sp<IMemory>& sharedBuffer,
3241 int sessionId)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003242 : RefBase(),
Eric Laurenta553c252009-07-17 12:17:14 -07003243 mThread(thread),
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003244 mClient(client),
Eric Laurent8a77a992009-09-09 05:16:08 -07003245 mCblk(0),
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003246 mFrameCount(0),
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003247 mState(IDLE),
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003248 mClientTid(-1),
3249 mFormat(format),
Eric Laurent65b65452010-06-01 23:49:17 -07003250 mFlags(flags & ~SYSTEM_FLAGS_MASK),
3251 mSessionId(sessionId)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003252{
Steve Block71f2cf12011-10-20 11:56:00 +01003253 ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(), sharedBuffer->size());
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003254
Steve Block5baa3a62011-12-20 16:23:08 +00003255 // ALOGD("Creating track with %d buffers @ %d bytes", bufferCount, bufferSize);
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003256 size_t size = sizeof(audio_track_cblk_t);
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003257 uint8_t channelCount = popcount(channelMask);
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003258 size_t bufferSize = frameCount*channelCount*sizeof(int16_t);
3259 if (sharedBuffer == 0) {
3260 size += bufferSize;
3261 }
3262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003263 if (client != NULL) {
3264 mCblkMemory = client->heap()->allocate(size);
3265 if (mCblkMemory != 0) {
3266 mCblk = static_cast<audio_track_cblk_t *>(mCblkMemory->pointer());
3267 if (mCblk) { // construct the shared structure in-place.
3268 new(mCblk) audio_track_cblk_t();
3269 // clear all buffers
3270 mCblk->frameCount = frameCount;
Eric Laurent88e209d2009-07-07 07:10:45 -07003271 mCblk->sampleRate = sampleRate;
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003272 mChannelCount = channelCount;
3273 mChannelMask = channelMask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003274 if (sharedBuffer == 0) {
3275 mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
3276 memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
3277 // Force underrun condition to avoid false underrun callback until first data is
Eric Laurent4712baa2010-09-30 16:12:31 -07003278 // written to buffer (other flags are cleared)
Eric Laurenteb8f850d2010-05-14 03:26:45 -07003279 mCblk->flags = CBLK_UNDERRUN_ON;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003280 } else {
3281 mBuffer = sharedBuffer->pointer();
3282 }
3283 mBufferEnd = (uint8_t *)mBuffer + bufferSize;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003284 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003285 } else {
Steve Block3762c312012-01-06 19:20:56 +00003286 ALOGE("not enough memory for AudioTrack size=%u", size);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003287 client->heap()->dump("AudioTrack");
3288 return;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003289 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003290 } else {
3291 mCblk = (audio_track_cblk_t *)(new uint8_t[size]);
Glenn Kastenc95ca2c2012-01-06 15:03:11 -08003292 // construct the shared structure in-place.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003293 new(mCblk) audio_track_cblk_t();
3294 // clear all buffers
3295 mCblk->frameCount = frameCount;
Eric Laurent88e209d2009-07-07 07:10:45 -07003296 mCblk->sampleRate = sampleRate;
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003297 mChannelCount = channelCount;
3298 mChannelMask = channelMask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003299 mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
3300 memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
3301 // Force underrun condition to avoid false underrun callback until first data is
Eric Laurent4712baa2010-09-30 16:12:31 -07003302 // written to buffer (other flags are cleared)
Eric Laurenteb8f850d2010-05-14 03:26:45 -07003303 mCblk->flags = CBLK_UNDERRUN_ON;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003304 mBufferEnd = (uint8_t *)mBuffer + bufferSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003305 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003306}
3307
Eric Laurent2bb6b2a2009-09-16 06:02:45 -07003308AudioFlinger::ThreadBase::TrackBase::~TrackBase()
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003309{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003310 if (mCblk) {
Eric Laurenta553c252009-07-17 12:17:14 -07003311 mCblk->~audio_track_cblk_t(); // destroy our shared-structure.
3312 if (mClient == NULL) {
3313 delete mCblk;
3314 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003315 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003316 mCblkMemory.clear(); // and free the shared memory
Eric Laurentb9481d82009-09-17 05:12:56 -07003317 if (mClient != NULL) {
3318 Mutex::Autolock _l(mClient->audioFlinger()->mLock);
3319 mClient.clear();
3320 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003321}
3322
Eric Laurent2bb6b2a2009-09-16 06:02:45 -07003323void AudioFlinger::ThreadBase::TrackBase::releaseBuffer(AudioBufferProvider::Buffer* buffer)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003324{
Glenn Kastenc434c902011-12-13 11:53:26 -08003325 buffer->raw = NULL;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003326 mFrameCount = buffer->frameCount;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003327 step();
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003328 buffer->frameCount = 0;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003329}
3330
Eric Laurent2bb6b2a2009-09-16 06:02:45 -07003331bool AudioFlinger::ThreadBase::TrackBase::step() {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003332 bool result;
3333 audio_track_cblk_t* cblk = this->cblk();
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003334
3335 result = cblk->stepServer(mFrameCount);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003336 if (!result) {
Steve Block71f2cf12011-10-20 11:56:00 +01003337 ALOGV("stepServer failed acquiring cblk mutex");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003338 mFlags |= STEPSERVER_FAILED;
3339 }
3340 return result;
3341}
3342
Eric Laurent2bb6b2a2009-09-16 06:02:45 -07003343void AudioFlinger::ThreadBase::TrackBase::reset() {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003344 audio_track_cblk_t* cblk = this->cblk();
3345
3346 cblk->user = 0;
3347 cblk->server = 0;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003348 cblk->userBase = 0;
3349 cblk->serverBase = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003350 mFlags &= (uint32_t)(~SYSTEM_FLAGS_MASK);
Steve Block71f2cf12011-10-20 11:56:00 +01003351 ALOGV("TrackBase::reset");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003352}
3353
Eric Laurent2bb6b2a2009-09-16 06:02:45 -07003354sp<IMemory> AudioFlinger::ThreadBase::TrackBase::getCblk() const
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003355{
3356 return mCblkMemory;
3357}
3358
Eric Laurent2bb6b2a2009-09-16 06:02:45 -07003359int AudioFlinger::ThreadBase::TrackBase::sampleRate() const {
The Android Open Source Project10592532009-03-18 17:39:46 -07003360 return (int)mCblk->sampleRate;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003361}
3362
Eric Laurent2bb6b2a2009-09-16 06:02:45 -07003363int AudioFlinger::ThreadBase::TrackBase::channelCount() const {
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003364 return (const int)mChannelCount;
3365}
3366
3367uint32_t AudioFlinger::ThreadBase::TrackBase::channelMask() const {
3368 return mChannelMask;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003369}
3370
Eric Laurent2bb6b2a2009-09-16 06:02:45 -07003371void* AudioFlinger::ThreadBase::TrackBase::getBuffer(uint32_t offset, uint32_t frames) const {
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003372 audio_track_cblk_t* cblk = this->cblk();
Glenn Kastenfaf354d2012-01-11 09:48:27 -08003373 size_t frameSize = cblk->frameSize;
3374 int8_t *bufferStart = (int8_t *)mBuffer + (offset-cblk->serverBase)*frameSize;
3375 int8_t *bufferEnd = bufferStart + frames * frameSize;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003376
3377 // Check validity of returned pointer in case the track control block would have been corrupted.
Eric Laurenta553c252009-07-17 12:17:14 -07003378 if (bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd ||
Glenn Kastenfaf354d2012-01-11 09:48:27 -08003379 ((unsigned long)bufferStart & (unsigned long)(frameSize - 1))) {
Steve Block3762c312012-01-06 19:20:56 +00003380 ALOGE("TrackBase::getBuffer buffer out of range:\n start: %p, end %p , mBuffer %p mBufferEnd %p\n \
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003381 server %d, serverBase %d, user %d, userBase %d",
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003382 bufferStart, bufferEnd, mBuffer, mBufferEnd,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003383 cblk->server, cblk->serverBase, cblk->user, cblk->userBase);
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003384 return 0;
3385 }
3386
3387 return bufferStart;
3388}
3389
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003390// ----------------------------------------------------------------------------
3391
Eric Laurenta553c252009-07-17 12:17:14 -07003392// Track constructor must be called with AudioFlinger::mLock and ThreadBase::mLock held
3393AudioFlinger::PlaybackThread::Track::Track(
3394 const wp<ThreadBase>& thread,
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003395 const sp<Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08003396 audio_stream_type_t streamType,
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003397 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08003398 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003399 uint32_t channelMask,
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003400 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -07003401 const sp<IMemory>& sharedBuffer,
3402 int sessionId)
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003403 : TrackBase(thread, client, sampleRate, format, channelMask, frameCount, 0, sharedBuffer, sessionId),
Eric Laurenta92ebfa2010-08-31 13:50:07 -07003404 mMute(false), mSharedBuffer(sharedBuffer), mName(-1), mMainBuffer(NULL), mAuxBuffer(NULL),
3405 mAuxEffectId(0), mHasVolumeController(false)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003406{
Eric Laurent8a77a992009-09-09 05:16:08 -07003407 if (mCblk != NULL) {
3408 sp<ThreadBase> baseThread = thread.promote();
3409 if (baseThread != 0) {
3410 PlaybackThread *playbackThread = (PlaybackThread *)baseThread.get();
3411 mName = playbackThread->getTrackName_l();
Eric Laurent65b65452010-06-01 23:49:17 -07003412 mMainBuffer = playbackThread->mixBuffer();
Eric Laurent8a77a992009-09-09 05:16:08 -07003413 }
Steve Block71f2cf12011-10-20 11:56:00 +01003414 ALOGV("Track constructor name %d, calling thread %d", mName, IPCThreadState::self()->getCallingPid());
Eric Laurent8a77a992009-09-09 05:16:08 -07003415 if (mName < 0) {
Steve Block3762c312012-01-06 19:20:56 +00003416 ALOGE("no more track names available");
Eric Laurent8a77a992009-09-09 05:16:08 -07003417 }
Eric Laurent8a77a992009-09-09 05:16:08 -07003418 mStreamType = streamType;
3419 // NOTE: audio_track_cblk_t::frameSize for 8 bit PCM data is based on a sample size of
3420 // 16 bit because data is converted to 16 bit before being stored in buffer by AudioTrack
Eric Laurent09508612011-07-21 19:35:01 -07003421 mCblk->frameSize = audio_is_linear_pcm(format) ? mChannelCount * sizeof(int16_t) : sizeof(uint8_t);
Eric Laurenta553c252009-07-17 12:17:14 -07003422 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003423}
3424
Eric Laurenta553c252009-07-17 12:17:14 -07003425AudioFlinger::PlaybackThread::Track::~Track()
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003426{
Steve Block71f2cf12011-10-20 11:56:00 +01003427 ALOGV("PlaybackThread::Track destructor");
Eric Laurenta553c252009-07-17 12:17:14 -07003428 sp<ThreadBase> thread = mThread.promote();
3429 if (thread != 0) {
Eric Laurentac196e12009-12-01 02:17:41 -08003430 Mutex::Autolock _l(thread->mLock);
Eric Laurenta553c252009-07-17 12:17:14 -07003431 mState = TERMINATED;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003432 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003433}
3434
Eric Laurenta553c252009-07-17 12:17:14 -07003435void AudioFlinger::PlaybackThread::Track::destroy()
3436{
3437 // NOTE: destroyTrack_l() can remove a strong reference to this Track
3438 // by removing it from mTracks vector, so there is a risk that this Tracks's
3439 // desctructor is called. As the destructor needs to lock mLock,
3440 // we must acquire a strong reference on this Track before locking mLock
3441 // here so that the destructor is called only when exiting this function.
3442 // On the other hand, as long as Track::destroy() is only called by
3443 // TrackHandle destructor, the TrackHandle still holds a strong ref on
3444 // this Track with its member mTrack.
3445 sp<Track> keep(this);
3446 { // scope for mLock
3447 sp<ThreadBase> thread = mThread.promote();
3448 if (thread != 0) {
Eric Laurentac196e12009-12-01 02:17:41 -08003449 if (!isOutputTrack()) {
3450 if (mState == ACTIVE || mState == RESUMING) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003451 AudioSystem::stopOutput(thread->id(),
Dima Zavin24fc2fb2011-04-19 22:30:36 -07003452 (audio_stream_type_t)mStreamType,
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003453 mSessionId);
Gloria Wang9b3f1522011-02-24 14:51:45 -08003454
3455 // to track the speaker usage
3456 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Eric Laurentac196e12009-12-01 02:17:41 -08003457 }
3458 AudioSystem::releaseOutput(thread->id());
Eric Laurent49f02be2009-11-19 09:00:56 -08003459 }
Eric Laurenta553c252009-07-17 12:17:14 -07003460 Mutex::Autolock _l(thread->mLock);
3461 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3462 playbackThread->destroyTrack_l(this);
3463 }
3464 }
3465}
3466
3467void AudioFlinger::PlaybackThread::Track::dump(char* buffer, size_t size)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003468{
Glenn Kasten0632bad2012-01-17 12:20:54 -08003469 uint32_t vlr = mCblk->volumeLR;
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003470 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",
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003471 mName - AudioMixer::TRACK0,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003472 (mClient == NULL) ? getpid() : mClient->pid(),
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003473 mStreamType,
3474 mFormat,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003475 mChannelMask,
Eric Laurent65b65452010-06-01 23:49:17 -07003476 mSessionId,
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003477 mFrameCount,
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003478 mState,
3479 mMute,
3480 mFillingUpStatus,
3481 mCblk->sampleRate,
Glenn Kasten0632bad2012-01-17 12:20:54 -08003482 vlr & 0xFFFF,
3483 vlr >> 16,
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003484 mCblk->server,
Eric Laurent65b65452010-06-01 23:49:17 -07003485 mCblk->user,
3486 (int)mMainBuffer,
3487 (int)mAuxBuffer);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003488}
3489
Eric Laurenta553c252009-07-17 12:17:14 -07003490status_t AudioFlinger::PlaybackThread::Track::getNextBuffer(AudioBufferProvider::Buffer* buffer)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003491{
3492 audio_track_cblk_t* cblk = this->cblk();
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003493 uint32_t framesReady;
3494 uint32_t framesReq = buffer->frameCount;
3495
3496 // Check if last stepServer failed, try to step now
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003497 if (mFlags & TrackBase::STEPSERVER_FAILED) {
3498 if (!step()) goto getNextBuffer_exit;
Steve Block71f2cf12011-10-20 11:56:00 +01003499 ALOGV("stepServer recovered");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003500 mFlags &= ~TrackBase::STEPSERVER_FAILED;
3501 }
3502
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003503 framesReady = cblk->framesReady();
3504
Glenn Kastene80a4cc2011-12-15 09:51:17 -08003505 if (CC_LIKELY(framesReady)) {
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003506 uint32_t s = cblk->server;
3507 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
3508
3509 bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
3510 if (framesReq > framesReady) {
3511 framesReq = framesReady;
3512 }
3513 if (s + framesReq > bufferEnd) {
3514 framesReq = bufferEnd - s;
3515 }
3516
3517 buffer->raw = getBuffer(s, framesReq);
Glenn Kastenc434c902011-12-13 11:53:26 -08003518 if (buffer->raw == NULL) goto getNextBuffer_exit;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003519
3520 buffer->frameCount = framesReq;
3521 return NO_ERROR;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003522 }
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003523
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003524getNextBuffer_exit:
Glenn Kastenc434c902011-12-13 11:53:26 -08003525 buffer->raw = NULL;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003526 buffer->frameCount = 0;
Steve Block71f2cf12011-10-20 11:56:00 +01003527 ALOGV("getNextBuffer() no more data for track %d on thread %p", mName, mThread.unsafe_get());
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003528 return NOT_ENOUGH_DATA;
3529}
3530
Eric Laurenta553c252009-07-17 12:17:14 -07003531bool AudioFlinger::PlaybackThread::Track::isReady() const {
Eric Laurent9a30fc12010-10-05 14:41:42 -07003532 if (mFillingUpStatus != FS_FILLING || isStopped() || isPausing()) return true;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003533
3534 if (mCblk->framesReady() >= mCblk->frameCount ||
Eric Laurenteb8f850d2010-05-14 03:26:45 -07003535 (mCblk->flags & CBLK_FORCEREADY_MSK)) {
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003536 mFillingUpStatus = FS_FILLED;
Eric Laurentae29b762011-03-28 18:37:07 -07003537 android_atomic_and(~CBLK_FORCEREADY_MSK, &mCblk->flags);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003538 return true;
3539 }
3540 return false;
3541}
3542
Eric Laurenta553c252009-07-17 12:17:14 -07003543status_t AudioFlinger::PlaybackThread::Track::start()
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003544{
Eric Laurent49f02be2009-11-19 09:00:56 -08003545 status_t status = NO_ERROR;
Steve Block71f2cf12011-10-20 11:56:00 +01003546 ALOGV("start(%d), calling thread %d session %d",
Eric Laurent0d7e0482010-07-19 06:24:46 -07003547 mName, IPCThreadState::self()->getCallingPid(), mSessionId);
Eric Laurenta553c252009-07-17 12:17:14 -07003548 sp<ThreadBase> thread = mThread.promote();
3549 if (thread != 0) {
3550 Mutex::Autolock _l(thread->mLock);
Eric Laurent49f02be2009-11-19 09:00:56 -08003551 int state = mState;
3552 // here the track could be either new, or restarted
3553 // in both cases "unstop" the track
3554 if (mState == PAUSED) {
3555 mState = TrackBase::RESUMING;
Steve Block71f2cf12011-10-20 11:56:00 +01003556 ALOGV("PAUSED => RESUMING (%d) on thread %p", mName, this);
Eric Laurent49f02be2009-11-19 09:00:56 -08003557 } else {
3558 mState = TrackBase::ACTIVE;
Steve Block71f2cf12011-10-20 11:56:00 +01003559 ALOGV("? => ACTIVE (%d) on thread %p", mName, this);
Eric Laurent49f02be2009-11-19 09:00:56 -08003560 }
3561
3562 if (!isOutputTrack() && state != ACTIVE && state != RESUMING) {
3563 thread->mLock.unlock();
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003564 status = AudioSystem::startOutput(thread->id(),
Dima Zavin24fc2fb2011-04-19 22:30:36 -07003565 (audio_stream_type_t)mStreamType,
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003566 mSessionId);
Eric Laurent49f02be2009-11-19 09:00:56 -08003567 thread->mLock.lock();
Gloria Wang9b3f1522011-02-24 14:51:45 -08003568
3569 // to track the speaker usage
3570 if (status == NO_ERROR) {
3571 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStart);
3572 }
Eric Laurent49f02be2009-11-19 09:00:56 -08003573 }
3574 if (status == NO_ERROR) {
3575 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3576 playbackThread->addTrack_l(this);
3577 } else {
3578 mState = state;
3579 }
3580 } else {
3581 status = BAD_VALUE;
Eric Laurenta553c252009-07-17 12:17:14 -07003582 }
Eric Laurent49f02be2009-11-19 09:00:56 -08003583 return status;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003584}
3585
Eric Laurenta553c252009-07-17 12:17:14 -07003586void AudioFlinger::PlaybackThread::Track::stop()
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003587{
Steve Block71f2cf12011-10-20 11:56:00 +01003588 ALOGV("stop(%d), calling thread %d", mName, IPCThreadState::self()->getCallingPid());
Eric Laurenta553c252009-07-17 12:17:14 -07003589 sp<ThreadBase> thread = mThread.promote();
3590 if (thread != 0) {
3591 Mutex::Autolock _l(thread->mLock);
Eric Laurent49f02be2009-11-19 09:00:56 -08003592 int state = mState;
Eric Laurenta553c252009-07-17 12:17:14 -07003593 if (mState > STOPPED) {
3594 mState = STOPPED;
3595 // If the track is not active (PAUSED and buffers full), flush buffers
3596 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3597 if (playbackThread->mActiveTracks.indexOf(this) < 0) {
3598 reset();
3599 }
Steve Block71f2cf12011-10-20 11:56:00 +01003600 ALOGV("(> STOPPED) => STOPPED (%d) on thread %p", mName, playbackThread);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003601 }
Eric Laurent49f02be2009-11-19 09:00:56 -08003602 if (!isOutputTrack() && (state == ACTIVE || state == RESUMING)) {
3603 thread->mLock.unlock();
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003604 AudioSystem::stopOutput(thread->id(),
Dima Zavin24fc2fb2011-04-19 22:30:36 -07003605 (audio_stream_type_t)mStreamType,
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003606 mSessionId);
Eric Laurent49f02be2009-11-19 09:00:56 -08003607 thread->mLock.lock();
Gloria Wang9b3f1522011-02-24 14:51:45 -08003608
3609 // to track the speaker usage
3610 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Eric Laurent49f02be2009-11-19 09:00:56 -08003611 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003612 }
3613}
3614
Eric Laurenta553c252009-07-17 12:17:14 -07003615void AudioFlinger::PlaybackThread::Track::pause()
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003616{
Steve Block71f2cf12011-10-20 11:56:00 +01003617 ALOGV("pause(%d), calling thread %d", mName, IPCThreadState::self()->getCallingPid());
Eric Laurenta553c252009-07-17 12:17:14 -07003618 sp<ThreadBase> thread = mThread.promote();
3619 if (thread != 0) {
3620 Mutex::Autolock _l(thread->mLock);
3621 if (mState == ACTIVE || mState == RESUMING) {
3622 mState = PAUSING;
Steve Block71f2cf12011-10-20 11:56:00 +01003623 ALOGV("ACTIVE/RESUMING => PAUSING (%d) on thread %p", mName, thread.get());
Eric Laurent49f02be2009-11-19 09:00:56 -08003624 if (!isOutputTrack()) {
3625 thread->mLock.unlock();
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003626 AudioSystem::stopOutput(thread->id(),
Dima Zavin24fc2fb2011-04-19 22:30:36 -07003627 (audio_stream_type_t)mStreamType,
Eric Laurent8ed6ed02010-07-13 04:45:46 -07003628 mSessionId);
Eric Laurent49f02be2009-11-19 09:00:56 -08003629 thread->mLock.lock();
Gloria Wang9b3f1522011-02-24 14:51:45 -08003630
3631 // to track the speaker usage
3632 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Eric Laurent49f02be2009-11-19 09:00:56 -08003633 }
Eric Laurenta553c252009-07-17 12:17:14 -07003634 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003635 }
3636}
3637
Eric Laurenta553c252009-07-17 12:17:14 -07003638void AudioFlinger::PlaybackThread::Track::flush()
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003639{
Steve Block71f2cf12011-10-20 11:56:00 +01003640 ALOGV("flush(%d)", mName);
Eric Laurenta553c252009-07-17 12:17:14 -07003641 sp<ThreadBase> thread = mThread.promote();
3642 if (thread != 0) {
3643 Mutex::Autolock _l(thread->mLock);
3644 if (mState != STOPPED && mState != PAUSED && mState != PAUSING) {
3645 return;
3646 }
3647 // No point remaining in PAUSED state after a flush => go to
3648 // STOPPED state
3649 mState = STOPPED;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003650
Eric Laurentae29b762011-03-28 18:37:07 -07003651 // do not reset the track if it is still in the process of being stopped or paused.
3652 // this will be done by prepareTracks_l() when the track is stopped.
3653 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3654 if (playbackThread->mActiveTracks.indexOf(this) < 0) {
3655 reset();
3656 }
Eric Laurenta553c252009-07-17 12:17:14 -07003657 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003658}
3659
Eric Laurenta553c252009-07-17 12:17:14 -07003660void AudioFlinger::PlaybackThread::Track::reset()
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003661{
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003662 // Do not reset twice to avoid discarding data written just after a flush and before
3663 // the audioflinger thread detects the track is stopped.
3664 if (!mResetDone) {
3665 TrackBase::reset();
3666 // Force underrun condition to avoid false underrun callback until first data is
3667 // written to buffer
Eric Laurentae29b762011-03-28 18:37:07 -07003668 android_atomic_and(~CBLK_FORCEREADY_MSK, &mCblk->flags);
3669 android_atomic_or(CBLK_UNDERRUN_ON, &mCblk->flags);
Eric Laurenta553c252009-07-17 12:17:14 -07003670 mFillingUpStatus = FS_FILLING;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08003671 mResetDone = true;
3672 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003673}
3674
Eric Laurenta553c252009-07-17 12:17:14 -07003675void AudioFlinger::PlaybackThread::Track::mute(bool muted)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003676{
3677 mMute = muted;
3678}
3679
Eric Laurent65b65452010-06-01 23:49:17 -07003680status_t AudioFlinger::PlaybackThread::Track::attachAuxEffect(int EffectId)
3681{
3682 status_t status = DEAD_OBJECT;
3683 sp<ThreadBase> thread = mThread.promote();
3684 if (thread != 0) {
3685 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
3686 status = playbackThread->attachAuxEffect(this, EffectId);
3687 }
3688 return status;
3689}
3690
3691void AudioFlinger::PlaybackThread::Track::setAuxBuffer(int EffectId, int32_t *buffer)
3692{
3693 mAuxEffectId = EffectId;
3694 mAuxBuffer = buffer;
3695}
3696
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07003697// ----------------------------------------------------------------------------
3698
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07003699// RecordTrack constructor must be called with AudioFlinger::mLock held
Eric Laurenta553c252009-07-17 12:17:14 -07003700AudioFlinger::RecordThread::RecordTrack::RecordTrack(
3701 const wp<ThreadBase>& thread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003702 const sp<Client>& client,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003703 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08003704 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003705 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003706 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -07003707 uint32_t flags,
3708 int sessionId)
Eric Laurenta553c252009-07-17 12:17:14 -07003709 : TrackBase(thread, client, sampleRate, format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003710 channelMask, frameCount, flags, 0, sessionId),
Eric Laurenta553c252009-07-17 12:17:14 -07003711 mOverflow(false)
3712{
Eric Laurent8a77a992009-09-09 05:16:08 -07003713 if (mCblk != NULL) {
Steve Block71f2cf12011-10-20 11:56:00 +01003714 ALOGV("RecordTrack constructor, size %d", (int)mBufferEnd - (int)mBuffer);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07003715 if (format == AUDIO_FORMAT_PCM_16_BIT) {
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003716 mCblk->frameSize = mChannelCount * sizeof(int16_t);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07003717 } else if (format == AUDIO_FORMAT_PCM_8_BIT) {
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003718 mCblk->frameSize = mChannelCount * sizeof(int8_t);
Eric Laurent8a77a992009-09-09 05:16:08 -07003719 } else {
3720 mCblk->frameSize = sizeof(int8_t);
3721 }
3722 }
Eric Laurenta553c252009-07-17 12:17:14 -07003723}
3724
3725AudioFlinger::RecordThread::RecordTrack::~RecordTrack()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003726{
Eric Laurent49f02be2009-11-19 09:00:56 -08003727 sp<ThreadBase> thread = mThread.promote();
3728 if (thread != 0) {
3729 AudioSystem::releaseInput(thread->id());
3730 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003731}
3732
Eric Laurenta553c252009-07-17 12:17:14 -07003733status_t AudioFlinger::RecordThread::RecordTrack::getNextBuffer(AudioBufferProvider::Buffer* buffer)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003734{
3735 audio_track_cblk_t* cblk = this->cblk();
3736 uint32_t framesAvail;
3737 uint32_t framesReq = buffer->frameCount;
3738
3739 // Check if last stepServer failed, try to step now
3740 if (mFlags & TrackBase::STEPSERVER_FAILED) {
3741 if (!step()) goto getNextBuffer_exit;
Steve Block71f2cf12011-10-20 11:56:00 +01003742 ALOGV("stepServer recovered");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003743 mFlags &= ~TrackBase::STEPSERVER_FAILED;
3744 }
3745
3746 framesAvail = cblk->framesAvailable_l();
3747
Glenn Kastene80a4cc2011-12-15 09:51:17 -08003748 if (CC_LIKELY(framesAvail)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003749 uint32_t s = cblk->server;
3750 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
3751
3752 if (framesReq > framesAvail) {
3753 framesReq = framesAvail;
3754 }
3755 if (s + framesReq > bufferEnd) {
3756 framesReq = bufferEnd - s;
3757 }
3758
3759 buffer->raw = getBuffer(s, framesReq);
Glenn Kastenc434c902011-12-13 11:53:26 -08003760 if (buffer->raw == NULL) goto getNextBuffer_exit;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003761
3762 buffer->frameCount = framesReq;
3763 return NO_ERROR;
3764 }
3765
3766getNextBuffer_exit:
Glenn Kastenc434c902011-12-13 11:53:26 -08003767 buffer->raw = NULL;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003768 buffer->frameCount = 0;
3769 return NOT_ENOUGH_DATA;
3770}
3771
Eric Laurenta553c252009-07-17 12:17:14 -07003772status_t AudioFlinger::RecordThread::RecordTrack::start()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003773{
Eric Laurenta553c252009-07-17 12:17:14 -07003774 sp<ThreadBase> thread = mThread.promote();
3775 if (thread != 0) {
3776 RecordThread *recordThread = (RecordThread *)thread.get();
3777 return recordThread->start(this);
Eric Laurent49f02be2009-11-19 09:00:56 -08003778 } else {
3779 return BAD_VALUE;
Eric Laurenta553c252009-07-17 12:17:14 -07003780 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003781}
3782
Eric Laurenta553c252009-07-17 12:17:14 -07003783void AudioFlinger::RecordThread::RecordTrack::stop()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003784{
Eric Laurenta553c252009-07-17 12:17:14 -07003785 sp<ThreadBase> thread = mThread.promote();
3786 if (thread != 0) {
3787 RecordThread *recordThread = (RecordThread *)thread.get();
3788 recordThread->stop(this);
Eric Laurentae29b762011-03-28 18:37:07 -07003789 TrackBase::reset();
3790 // Force overerrun condition to avoid false overrun callback until first data is
3791 // read from buffer
3792 android_atomic_or(CBLK_UNDERRUN_ON, &mCblk->flags);
Eric Laurenta553c252009-07-17 12:17:14 -07003793 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003794}
3795
Eric Laurent3fdb1262009-11-07 00:01:32 -08003796void AudioFlinger::RecordThread::RecordTrack::dump(char* buffer, size_t size)
3797{
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003798 snprintf(buffer, size, " %05d %03u 0x%08x %05d %04u %01d %05u %08x %08x\n",
Eric Laurent3fdb1262009-11-07 00:01:32 -08003799 (mClient == NULL) ? getpid() : mClient->pid(),
3800 mFormat,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003801 mChannelMask,
Eric Laurent65b65452010-06-01 23:49:17 -07003802 mSessionId,
Eric Laurent3fdb1262009-11-07 00:01:32 -08003803 mFrameCount,
3804 mState,
3805 mCblk->sampleRate,
3806 mCblk->server,
3807 mCblk->user);
3808}
3809
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003810
3811// ----------------------------------------------------------------------------
3812
Eric Laurenta553c252009-07-17 12:17:14 -07003813AudioFlinger::PlaybackThread::OutputTrack::OutputTrack(
3814 const wp<ThreadBase>& thread,
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003815 DuplicatingThread *sourceThread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003816 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08003817 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003818 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003819 int frameCount)
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003820 : Track(thread, NULL, AUDIO_STREAM_CNT, sampleRate, format, channelMask, frameCount, NULL, 0),
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003821 mActive(false), mSourceThread(sourceThread)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003822{
Eric Laurenta553c252009-07-17 12:17:14 -07003823
3824 PlaybackThread *playbackThread = (PlaybackThread *)thread.unsafe_get();
Eric Laurent6c30a712009-08-10 23:22:32 -07003825 if (mCblk != NULL) {
Eric Laurenteb8f850d2010-05-14 03:26:45 -07003826 mCblk->flags |= CBLK_DIRECTION_OUT;
Eric Laurent6c30a712009-08-10 23:22:32 -07003827 mCblk->buffers = (char*)mCblk + sizeof(audio_track_cblk_t);
Glenn Kasten0632bad2012-01-17 12:20:54 -08003828 mCblk->volumeLR = (MAX_GAIN_INT << 16) | MAX_GAIN_INT;
Eric Laurent6c30a712009-08-10 23:22:32 -07003829 mOutBuffer.frameCount = 0;
Eric Laurent6c30a712009-08-10 23:22:32 -07003830 playbackThread->mTracks.add(this);
Steve Block71f2cf12011-10-20 11:56:00 +01003831 ALOGV("OutputTrack constructor mCblk %p, mBuffer %p, mCblk->buffers %p, " \
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003832 "mCblk->frameCount %d, mCblk->sampleRate %d, mChannelMask 0x%08x mBufferEnd %p",
3833 mCblk, mBuffer, mCblk->buffers,
3834 mCblk->frameCount, mCblk->sampleRate, mChannelMask, mBufferEnd);
Eric Laurent6c30a712009-08-10 23:22:32 -07003835 } else {
Steve Block8564c8d2012-01-05 23:22:43 +00003836 ALOGW("Error creating output track on thread %p", playbackThread);
Eric Laurent6c30a712009-08-10 23:22:32 -07003837 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003838}
3839
Eric Laurenta553c252009-07-17 12:17:14 -07003840AudioFlinger::PlaybackThread::OutputTrack::~OutputTrack()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003841{
Eric Laurent6c30a712009-08-10 23:22:32 -07003842 clearBufferQueue();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003843}
3844
Eric Laurenta553c252009-07-17 12:17:14 -07003845status_t AudioFlinger::PlaybackThread::OutputTrack::start()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003846{
3847 status_t status = Track::start();
Eric Laurenta553c252009-07-17 12:17:14 -07003848 if (status != NO_ERROR) {
3849 return status;
3850 }
3851
3852 mActive = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003853 mRetryCount = 127;
3854 return status;
3855}
3856
Eric Laurenta553c252009-07-17 12:17:14 -07003857void AudioFlinger::PlaybackThread::OutputTrack::stop()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003858{
3859 Track::stop();
3860 clearBufferQueue();
3861 mOutBuffer.frameCount = 0;
Eric Laurenta553c252009-07-17 12:17:14 -07003862 mActive = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003863}
3864
Eric Laurenta553c252009-07-17 12:17:14 -07003865bool AudioFlinger::PlaybackThread::OutputTrack::write(int16_t* data, uint32_t frames)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003866{
3867 Buffer *pInBuffer;
3868 Buffer inBuffer;
Jean-Michel Trivi54392232011-05-24 15:53:33 -07003869 uint32_t channelCount = mChannelCount;
Eric Laurenta553c252009-07-17 12:17:14 -07003870 bool outputBufferFull = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003871 inBuffer.frameCount = frames;
3872 inBuffer.i16 = data;
Eric Laurenta553c252009-07-17 12:17:14 -07003873
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003874 uint32_t waitTimeLeftMs = mSourceThread->waitTimeMs();
Eric Laurenta553c252009-07-17 12:17:14 -07003875
Eric Laurent62443f52009-10-05 20:29:18 -07003876 if (!mActive && frames != 0) {
Eric Laurenta553c252009-07-17 12:17:14 -07003877 start();
3878 sp<ThreadBase> thread = mThread.promote();
3879 if (thread != 0) {
3880 MixerThread *mixerThread = (MixerThread *)thread.get();
3881 if (mCblk->frameCount > frames){
3882 if (mBufferQueue.size() < kMaxOverFlowBuffers) {
3883 uint32_t startFrames = (mCblk->frameCount - frames);
3884 pInBuffer = new Buffer;
Eric Laurentb0a01472010-05-14 05:45:46 -07003885 pInBuffer->mBuffer = new int16_t[startFrames * channelCount];
Eric Laurenta553c252009-07-17 12:17:14 -07003886 pInBuffer->frameCount = startFrames;
3887 pInBuffer->i16 = pInBuffer->mBuffer;
Eric Laurentb0a01472010-05-14 05:45:46 -07003888 memset(pInBuffer->raw, 0, startFrames * channelCount * sizeof(int16_t));
Eric Laurenta553c252009-07-17 12:17:14 -07003889 mBufferQueue.add(pInBuffer);
3890 } else {
Steve Block8564c8d2012-01-05 23:22:43 +00003891 ALOGW ("OutputTrack::write() %p no more buffers in queue", this);
Eric Laurenta553c252009-07-17 12:17:14 -07003892 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003893 }
Eric Laurenta553c252009-07-17 12:17:14 -07003894 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003895 }
3896
Eric Laurenta553c252009-07-17 12:17:14 -07003897 while (waitTimeLeftMs) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003898 // First write pending buffers, then new data
3899 if (mBufferQueue.size()) {
3900 pInBuffer = mBufferQueue.itemAt(0);
3901 } else {
3902 pInBuffer = &inBuffer;
3903 }
Eric Laurenta553c252009-07-17 12:17:14 -07003904
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003905 if (pInBuffer->frameCount == 0) {
3906 break;
3907 }
Eric Laurenta553c252009-07-17 12:17:14 -07003908
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003909 if (mOutBuffer.frameCount == 0) {
3910 mOutBuffer.frameCount = pInBuffer->frameCount;
Eric Laurenta553c252009-07-17 12:17:14 -07003911 nsecs_t startTime = systemTime();
3912 if (obtainBuffer(&mOutBuffer, waitTimeLeftMs) == (status_t)AudioTrack::NO_MORE_BUFFERS) {
Steve Block71f2cf12011-10-20 11:56:00 +01003913 ALOGV ("OutputTrack::write() %p thread %p no more output buffers", this, mThread.unsafe_get());
Eric Laurenta553c252009-07-17 12:17:14 -07003914 outputBufferFull = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003915 break;
3916 }
Eric Laurenta553c252009-07-17 12:17:14 -07003917 uint32_t waitTimeMs = (uint32_t)ns2ms(systemTime() - startTime);
Eric Laurenta553c252009-07-17 12:17:14 -07003918 if (waitTimeLeftMs >= waitTimeMs) {
3919 waitTimeLeftMs -= waitTimeMs;
3920 } else {
3921 waitTimeLeftMs = 0;
3922 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003923 }
Eric Laurenta553c252009-07-17 12:17:14 -07003924
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003925 uint32_t outFrames = pInBuffer->frameCount > mOutBuffer.frameCount ? mOutBuffer.frameCount : pInBuffer->frameCount;
Eric Laurentb0a01472010-05-14 05:45:46 -07003926 memcpy(mOutBuffer.raw, pInBuffer->raw, outFrames * channelCount * sizeof(int16_t));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003927 mCblk->stepUser(outFrames);
3928 pInBuffer->frameCount -= outFrames;
Eric Laurentb0a01472010-05-14 05:45:46 -07003929 pInBuffer->i16 += outFrames * channelCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003930 mOutBuffer.frameCount -= outFrames;
Eric Laurentb0a01472010-05-14 05:45:46 -07003931 mOutBuffer.i16 += outFrames * channelCount;
Eric Laurenta553c252009-07-17 12:17:14 -07003932
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003933 if (pInBuffer->frameCount == 0) {
3934 if (mBufferQueue.size()) {
3935 mBufferQueue.removeAt(0);
3936 delete [] pInBuffer->mBuffer;
3937 delete pInBuffer;
Steve Block71f2cf12011-10-20 11:56:00 +01003938 ALOGV("OutputTrack::write() %p thread %p released overflow buffer %d", this, mThread.unsafe_get(), mBufferQueue.size());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003939 } else {
3940 break;
3941 }
3942 }
3943 }
Eric Laurenta553c252009-07-17 12:17:14 -07003944
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003945 // If we could not write all frames, allocate a buffer and queue it for next time.
3946 if (inBuffer.frameCount) {
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003947 sp<ThreadBase> thread = mThread.promote();
3948 if (thread != 0 && !thread->standby()) {
3949 if (mBufferQueue.size() < kMaxOverFlowBuffers) {
3950 pInBuffer = new Buffer;
Eric Laurentb0a01472010-05-14 05:45:46 -07003951 pInBuffer->mBuffer = new int16_t[inBuffer.frameCount * channelCount];
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003952 pInBuffer->frameCount = inBuffer.frameCount;
3953 pInBuffer->i16 = pInBuffer->mBuffer;
Eric Laurentb0a01472010-05-14 05:45:46 -07003954 memcpy(pInBuffer->raw, inBuffer.raw, inBuffer.frameCount * channelCount * sizeof(int16_t));
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003955 mBufferQueue.add(pInBuffer);
Steve Block71f2cf12011-10-20 11:56:00 +01003956 ALOGV("OutputTrack::write() %p thread %p adding overflow buffer %d", this, mThread.unsafe_get(), mBufferQueue.size());
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003957 } else {
Steve Block8564c8d2012-01-05 23:22:43 +00003958 ALOGW("OutputTrack::write() %p thread %p no more overflow buffers", mThread.unsafe_get(), this);
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08003959 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003960 }
3961 }
Eric Laurenta553c252009-07-17 12:17:14 -07003962
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003963 // Calling write() with a 0 length buffer, means that no more data will be written:
Eric Laurenta553c252009-07-17 12:17:14 -07003964 // If no more buffers are pending, fill output track buffer to make sure it is started
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003965 // by output mixer.
Eric Laurenta553c252009-07-17 12:17:14 -07003966 if (frames == 0 && mBufferQueue.size() == 0) {
3967 if (mCblk->user < mCblk->frameCount) {
3968 frames = mCblk->frameCount - mCblk->user;
3969 pInBuffer = new Buffer;
Eric Laurentb0a01472010-05-14 05:45:46 -07003970 pInBuffer->mBuffer = new int16_t[frames * channelCount];
Eric Laurenta553c252009-07-17 12:17:14 -07003971 pInBuffer->frameCount = frames;
3972 pInBuffer->i16 = pInBuffer->mBuffer;
Eric Laurentb0a01472010-05-14 05:45:46 -07003973 memset(pInBuffer->raw, 0, frames * channelCount * sizeof(int16_t));
Eric Laurenta553c252009-07-17 12:17:14 -07003974 mBufferQueue.add(pInBuffer);
Eric Laurent62443f52009-10-05 20:29:18 -07003975 } else if (mActive) {
Eric Laurenta553c252009-07-17 12:17:14 -07003976 stop();
3977 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003978 }
3979
Eric Laurenta553c252009-07-17 12:17:14 -07003980 return outputBufferFull;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003981}
3982
Eric Laurenta553c252009-07-17 12:17:14 -07003983status_t AudioFlinger::PlaybackThread::OutputTrack::obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003984{
3985 int active;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003986 status_t result;
3987 audio_track_cblk_t* cblk = mCblk;
3988 uint32_t framesReq = buffer->frameCount;
3989
Steve Block71f2cf12011-10-20 11:56:00 +01003990// ALOGV("OutputTrack::obtainBuffer user %d, server %d", cblk->user, cblk->server);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003991 buffer->frameCount = 0;
Eric Laurenta553c252009-07-17 12:17:14 -07003992
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003993 uint32_t framesAvail = cblk->framesAvailable();
3994
Eric Laurenta553c252009-07-17 12:17:14 -07003995
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003996 if (framesAvail == 0) {
Eric Laurenta553c252009-07-17 12:17:14 -07003997 Mutex::Autolock _l(cblk->lock);
3998 goto start_loop_here;
3999 while (framesAvail == 0) {
4000 active = mActive;
Glenn Kastene80a4cc2011-12-15 09:51:17 -08004001 if (CC_UNLIKELY(!active)) {
Steve Block71f2cf12011-10-20 11:56:00 +01004002 ALOGV("Not active and NO_MORE_BUFFERS");
Eric Laurenta553c252009-07-17 12:17:14 -07004003 return AudioTrack::NO_MORE_BUFFERS;
4004 }
4005 result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs));
4006 if (result != NO_ERROR) {
4007 return AudioTrack::NO_MORE_BUFFERS;
4008 }
4009 // read the server count again
4010 start_loop_here:
4011 framesAvail = cblk->framesAvailable_l();
4012 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004013 }
4014
Eric Laurenta553c252009-07-17 12:17:14 -07004015// if (framesAvail < framesReq) {
4016// return AudioTrack::NO_MORE_BUFFERS;
4017// }
4018
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004019 if (framesReq > framesAvail) {
4020 framesReq = framesAvail;
4021 }
4022
4023 uint32_t u = cblk->user;
4024 uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
4025
4026 if (u + framesReq > bufferEnd) {
4027 framesReq = bufferEnd - u;
4028 }
4029
4030 buffer->frameCount = framesReq;
4031 buffer->raw = (void *)cblk->buffer(u);
4032 return NO_ERROR;
4033}
4034
4035
Eric Laurenta553c252009-07-17 12:17:14 -07004036void AudioFlinger::PlaybackThread::OutputTrack::clearBufferQueue()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004037{
4038 size_t size = mBufferQueue.size();
4039 Buffer *pBuffer;
Eric Laurenta553c252009-07-17 12:17:14 -07004040
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004041 for (size_t i = 0; i < size; i++) {
4042 pBuffer = mBufferQueue.itemAt(i);
4043 delete [] pBuffer->mBuffer;
4044 delete pBuffer;
4045 }
4046 mBufferQueue.clear();
4047}
4048
4049// ----------------------------------------------------------------------------
4050
4051AudioFlinger::Client::Client(const sp<AudioFlinger>& audioFlinger, pid_t pid)
4052 : RefBase(),
4053 mAudioFlinger(audioFlinger),
Mathias Agopian6faf7892010-01-25 19:00:00 -08004054 mMemoryDealer(new MemoryDealer(1024*1024, "AudioFlinger::Client")),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004055 mPid(pid)
4056{
4057 // 1 MB of address space is good for 32 tracks, 8 buffers each, 4 KB/buffer
4058}
4059
Eric Laurentb9481d82009-09-17 05:12:56 -07004060// Client destructor must be called with AudioFlinger::mLock held
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004061AudioFlinger::Client::~Client()
4062{
Eric Laurentb9481d82009-09-17 05:12:56 -07004063 mAudioFlinger->removeClient_l(mPid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004064}
4065
4066const sp<MemoryDealer>& AudioFlinger::Client::heap() const
4067{
4068 return mMemoryDealer;
4069}
4070
4071// ----------------------------------------------------------------------------
4072
Eric Laurent4f0f17d2010-05-12 02:05:53 -07004073AudioFlinger::NotificationClient::NotificationClient(const sp<AudioFlinger>& audioFlinger,
4074 const sp<IAudioFlingerClient>& client,
4075 pid_t pid)
4076 : mAudioFlinger(audioFlinger), mPid(pid), mClient(client)
4077{
4078}
4079
4080AudioFlinger::NotificationClient::~NotificationClient()
4081{
4082 mClient.clear();
4083}
4084
4085void AudioFlinger::NotificationClient::binderDied(const wp<IBinder>& who)
4086{
4087 sp<NotificationClient> keep(this);
4088 {
4089 mAudioFlinger->removeNotificationClient(mPid);
4090 }
4091}
4092
4093// ----------------------------------------------------------------------------
4094
Eric Laurenta553c252009-07-17 12:17:14 -07004095AudioFlinger::TrackHandle::TrackHandle(const sp<AudioFlinger::PlaybackThread::Track>& track)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004096 : BnAudioTrack(),
4097 mTrack(track)
4098{
4099}
4100
4101AudioFlinger::TrackHandle::~TrackHandle() {
4102 // just stop the track on deletion, associated resources
4103 // will be freed from the main thread once all pending buffers have
4104 // been played. Unless it's not in the active track list, in which
4105 // case we free everything now...
4106 mTrack->destroy();
4107}
4108
4109status_t AudioFlinger::TrackHandle::start() {
4110 return mTrack->start();
4111}
4112
4113void AudioFlinger::TrackHandle::stop() {
4114 mTrack->stop();
4115}
4116
4117void AudioFlinger::TrackHandle::flush() {
4118 mTrack->flush();
4119}
4120
4121void AudioFlinger::TrackHandle::mute(bool e) {
4122 mTrack->mute(e);
4123}
4124
4125void AudioFlinger::TrackHandle::pause() {
4126 mTrack->pause();
4127}
4128
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004129sp<IMemory> AudioFlinger::TrackHandle::getCblk() const {
4130 return mTrack->getCblk();
4131}
4132
Eric Laurent65b65452010-06-01 23:49:17 -07004133status_t AudioFlinger::TrackHandle::attachAuxEffect(int EffectId)
4134{
4135 return mTrack->attachAuxEffect(EffectId);
4136}
4137
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004138status_t AudioFlinger::TrackHandle::onTransact(
4139 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
4140{
4141 return BnAudioTrack::onTransact(code, data, reply, flags);
4142}
4143
4144// ----------------------------------------------------------------------------
4145
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004146sp<IAudioRecord> AudioFlinger::openRecord(
4147 pid_t pid,
Eric Laurentddb78e72009-07-28 08:44:33 -07004148 int input,
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004149 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08004150 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07004151 uint32_t channelMask,
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004152 int frameCount,
4153 uint32_t flags,
Eric Laurent65b65452010-06-01 23:49:17 -07004154 int *sessionId,
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004155 status_t *status)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004156{
Eric Laurenta553c252009-07-17 12:17:14 -07004157 sp<RecordThread::RecordTrack> recordTrack;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004158 sp<RecordHandle> recordHandle;
4159 sp<Client> client;
4160 wp<Client> wclient;
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004161 status_t lStatus;
Eric Laurenta553c252009-07-17 12:17:14 -07004162 RecordThread *thread;
4163 size_t inFrameCount;
Eric Laurent65b65452010-06-01 23:49:17 -07004164 int lSessionId;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004165
4166 // check calling permissions
4167 if (!recordingAllowed()) {
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004168 lStatus = PERMISSION_DENIED;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004169 goto Exit;
4170 }
4171
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004172 // add client to list
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07004173 { // scope for mLock
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004174 Mutex::Autolock _l(mLock);
Eric Laurenta553c252009-07-17 12:17:14 -07004175 thread = checkRecordThread_l(input);
4176 if (thread == NULL) {
4177 lStatus = BAD_VALUE;
4178 goto Exit;
4179 }
4180
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004181 wclient = mClients.valueFor(pid);
4182 if (wclient != NULL) {
4183 client = wclient.promote();
4184 } else {
4185 client = new Client(this, pid);
4186 mClients.add(pid, client);
4187 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07004188
Eric Laurent65b65452010-06-01 23:49:17 -07004189 // If no audio session id is provided, create one here
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004190 if (sessionId != NULL && *sessionId != AUDIO_SESSION_OUTPUT_MIX) {
Eric Laurent65b65452010-06-01 23:49:17 -07004191 lSessionId = *sessionId;
4192 } else {
Eric Laurent464d5b32011-06-17 21:29:58 -07004193 lSessionId = nextUniqueId();
Eric Laurent65b65452010-06-01 23:49:17 -07004194 if (sessionId != NULL) {
4195 *sessionId = lSessionId;
4196 }
4197 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07004198 // create new record track. The record track uses one track in mHardwareMixerThread by convention.
Eric Laurent464d5b32011-06-17 21:29:58 -07004199 recordTrack = thread->createRecordTrack_l(client,
4200 sampleRate,
4201 format,
4202 channelMask,
4203 frameCount,
4204 flags,
4205 lSessionId,
4206 &lStatus);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004207 }
Eric Laurent464d5b32011-06-17 21:29:58 -07004208 if (lStatus != NO_ERROR) {
Eric Laurentb9481d82009-09-17 05:12:56 -07004209 // remove local strong reference to Client before deleting the RecordTrack so that the Client
4210 // destructor is called by the TrackBase destructor with mLock held
4211 client.clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004212 recordTrack.clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004213 goto Exit;
4214 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004215
4216 // return to handle to client
4217 recordHandle = new RecordHandle(recordTrack);
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004218 lStatus = NO_ERROR;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004219
4220Exit:
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004221 if (status) {
4222 *status = lStatus;
4223 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004224 return recordHandle;
4225}
4226
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004227// ----------------------------------------------------------------------------
4228
Eric Laurenta553c252009-07-17 12:17:14 -07004229AudioFlinger::RecordHandle::RecordHandle(const sp<AudioFlinger::RecordThread::RecordTrack>& recordTrack)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004230 : BnAudioRecord(),
4231 mRecordTrack(recordTrack)
4232{
4233}
4234
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004235AudioFlinger::RecordHandle::~RecordHandle() {
4236 stop();
4237}
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004238
4239status_t AudioFlinger::RecordHandle::start() {
Steve Block71f2cf12011-10-20 11:56:00 +01004240 ALOGV("RecordHandle::start()");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004241 return mRecordTrack->start();
4242}
4243
4244void AudioFlinger::RecordHandle::stop() {
Steve Block71f2cf12011-10-20 11:56:00 +01004245 ALOGV("RecordHandle::stop()");
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004246 mRecordTrack->stop();
4247}
4248
4249sp<IMemory> AudioFlinger::RecordHandle::getCblk() const {
4250 return mRecordTrack->getCblk();
4251}
4252
4253status_t AudioFlinger::RecordHandle::onTransact(
4254 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
4255{
4256 return BnAudioRecord::onTransact(code, data, reply, flags);
4257}
4258
4259// ----------------------------------------------------------------------------
4260
Eric Laurent464d5b32011-06-17 21:29:58 -07004261AudioFlinger::RecordThread::RecordThread(const sp<AudioFlinger>& audioFlinger,
4262 AudioStreamIn *input,
4263 uint32_t sampleRate,
4264 uint32_t channels,
4265 int id,
4266 uint32_t device) :
4267 ThreadBase(audioFlinger, id, device),
Glenn Kastenc434c902011-12-13 11:53:26 -08004268 mInput(input), mTrack(NULL), mResampler(NULL), mRsmpOutBuffer(NULL), mRsmpInBuffer(NULL)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004269{
Eric Laurent464d5b32011-06-17 21:29:58 -07004270 mType = ThreadBase::RECORD;
Eric Laurent6dbdc402011-07-22 09:04:31 -07004271
4272 snprintf(mName, kNameLength, "AudioIn_%d", id);
4273
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004274 mReqChannelCount = popcount(channels);
Eric Laurenta553c252009-07-17 12:17:14 -07004275 mReqSampleRate = sampleRate;
4276 readInputParameters();
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004277}
4278
Eric Laurenta553c252009-07-17 12:17:14 -07004279
4280AudioFlinger::RecordThread::~RecordThread()
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004281{
Eric Laurenta553c252009-07-17 12:17:14 -07004282 delete[] mRsmpInBuffer;
Glenn Kastenc434c902011-12-13 11:53:26 -08004283 if (mResampler != NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -07004284 delete mResampler;
4285 delete[] mRsmpOutBuffer;
4286 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004287}
4288
Eric Laurenta553c252009-07-17 12:17:14 -07004289void AudioFlinger::RecordThread::onFirstRef()
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004290{
Eric Laurent6dbdc402011-07-22 09:04:31 -07004291 run(mName, PRIORITY_URGENT_AUDIO);
Eric Laurenta553c252009-07-17 12:17:14 -07004292}
Eric Laurent49f02be2009-11-19 09:00:56 -08004293
Eric Laurent828b9772011-08-07 16:32:26 -07004294status_t AudioFlinger::RecordThread::readyToRun()
4295{
4296 status_t status = initCheck();
Steve Block8564c8d2012-01-05 23:22:43 +00004297 ALOGW_IF(status != NO_ERROR,"RecordThread %p could not initialize", this);
Eric Laurent828b9772011-08-07 16:32:26 -07004298 return status;
4299}
4300
Eric Laurenta553c252009-07-17 12:17:14 -07004301bool AudioFlinger::RecordThread::threadLoop()
4302{
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004303 AudioBufferProvider::Buffer buffer;
Eric Laurenta553c252009-07-17 12:17:14 -07004304 sp<RecordTrack> activeTrack;
Eric Laurent464d5b32011-06-17 21:29:58 -07004305 Vector< sp<EffectChain> > effectChains;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004306
Eric Laurent4712baa2010-09-30 16:12:31 -07004307 nsecs_t lastWarning = 0;
4308
Eric Laurent6dbdc402011-07-22 09:04:31 -07004309 acquireWakeLock();
4310
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004311 // start recording
4312 while (!exitPending()) {
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004313
Eric Laurenta553c252009-07-17 12:17:14 -07004314 processConfigEvents();
4315
4316 { // scope for mLock
4317 Mutex::Autolock _l(mLock);
4318 checkForNewParameters_l();
4319 if (mActiveTrack == 0 && mConfigEvents.isEmpty()) {
4320 if (!mStandby) {
Dima Zavin31f188892011-04-18 16:57:27 -07004321 mInput->stream->common.standby(&mInput->stream->common);
Eric Laurenta553c252009-07-17 12:17:14 -07004322 mStandby = true;
4323 }
4324
4325 if (exitPending()) break;
4326
Eric Laurent6dbdc402011-07-22 09:04:31 -07004327 releaseWakeLock_l();
Steve Block71f2cf12011-10-20 11:56:00 +01004328 ALOGV("RecordThread: loop stopping");
Eric Laurenta553c252009-07-17 12:17:14 -07004329 // go to sleep
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004330 mWaitWorkCV.wait(mLock);
Steve Block71f2cf12011-10-20 11:56:00 +01004331 ALOGV("RecordThread: loop starting");
Eric Laurent6dbdc402011-07-22 09:04:31 -07004332 acquireWakeLock_l();
Eric Laurenta553c252009-07-17 12:17:14 -07004333 continue;
4334 }
4335 if (mActiveTrack != 0) {
4336 if (mActiveTrack->mState == TrackBase::PAUSING) {
Eric Laurent9cc489a2009-12-05 05:20:01 -08004337 if (!mStandby) {
Dima Zavin31f188892011-04-18 16:57:27 -07004338 mInput->stream->common.standby(&mInput->stream->common);
Eric Laurent9cc489a2009-12-05 05:20:01 -08004339 mStandby = true;
4340 }
Eric Laurenta553c252009-07-17 12:17:14 -07004341 mActiveTrack.clear();
4342 mStartStopCond.broadcast();
4343 } else if (mActiveTrack->mState == TrackBase::RESUMING) {
Eric Laurenta553c252009-07-17 12:17:14 -07004344 if (mReqChannelCount != mActiveTrack->channelCount()) {
4345 mActiveTrack.clear();
Eric Laurent9cc489a2009-12-05 05:20:01 -08004346 mStartStopCond.broadcast();
4347 } else if (mBytesRead != 0) {
4348 // record start succeeds only if first read from audio input
4349 // succeeds
4350 if (mBytesRead > 0) {
4351 mActiveTrack->mState = TrackBase::ACTIVE;
4352 } else {
4353 mActiveTrack.clear();
4354 }
4355 mStartStopCond.broadcast();
Eric Laurenta553c252009-07-17 12:17:14 -07004356 }
Eric Laurent9cc489a2009-12-05 05:20:01 -08004357 mStandby = false;
Eric Laurenta553c252009-07-17 12:17:14 -07004358 }
Eric Laurenta553c252009-07-17 12:17:14 -07004359 }
Eric Laurent464d5b32011-06-17 21:29:58 -07004360 lockEffectChains_l(effectChains);
Eric Laurenta553c252009-07-17 12:17:14 -07004361 }
4362
4363 if (mActiveTrack != 0) {
Eric Laurent9cc489a2009-12-05 05:20:01 -08004364 if (mActiveTrack->mState != TrackBase::ACTIVE &&
4365 mActiveTrack->mState != TrackBase::RESUMING) {
Eric Laurent464d5b32011-06-17 21:29:58 -07004366 unlockEffectChains(effectChains);
4367 usleep(kRecordThreadSleepUs);
Eric Laurent49f02be2009-11-19 09:00:56 -08004368 continue;
4369 }
Eric Laurent464d5b32011-06-17 21:29:58 -07004370 for (size_t i = 0; i < effectChains.size(); i ++) {
4371 effectChains[i]->process_l();
4372 }
Eric Laurent464d5b32011-06-17 21:29:58 -07004373
Eric Laurenta553c252009-07-17 12:17:14 -07004374 buffer.frameCount = mFrameCount;
Glenn Kastene80a4cc2011-12-15 09:51:17 -08004375 if (CC_LIKELY(mActiveTrack->getNextBuffer(&buffer) == NO_ERROR)) {
Eric Laurenta553c252009-07-17 12:17:14 -07004376 size_t framesOut = buffer.frameCount;
Glenn Kastenc434c902011-12-13 11:53:26 -08004377 if (mResampler == NULL) {
Eric Laurenta553c252009-07-17 12:17:14 -07004378 // no resampling
4379 while (framesOut) {
4380 size_t framesIn = mFrameCount - mRsmpInIndex;
4381 if (framesIn) {
4382 int8_t *src = (int8_t *)mRsmpInBuffer + mRsmpInIndex * mFrameSize;
4383 int8_t *dst = buffer.i8 + (buffer.frameCount - framesOut) * mActiveTrack->mCblk->frameSize;
4384 if (framesIn > framesOut)
4385 framesIn = framesOut;
4386 mRsmpInIndex += framesIn;
4387 framesOut -= framesIn;
Eric Laurentb0a01472010-05-14 05:45:46 -07004388 if ((int)mChannelCount == mReqChannelCount ||
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004389 mFormat != AUDIO_FORMAT_PCM_16_BIT) {
Eric Laurenta553c252009-07-17 12:17:14 -07004390 memcpy(dst, src, framesIn * mFrameSize);
4391 } else {
4392 int16_t *src16 = (int16_t *)src;
4393 int16_t *dst16 = (int16_t *)dst;
4394 if (mChannelCount == 1) {
4395 while (framesIn--) {
4396 *dst16++ = *src16;
4397 *dst16++ = *src16++;
4398 }
4399 } else {
4400 while (framesIn--) {
4401 *dst16++ = (int16_t)(((int32_t)*src16 + (int32_t)*(src16 + 1)) >> 1);
4402 src16 += 2;
4403 }
4404 }
4405 }
4406 }
4407 if (framesOut && mFrameCount == mRsmpInIndex) {
Eric Laurenta553c252009-07-17 12:17:14 -07004408 if (framesOut == mFrameCount &&
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004409 ((int)mChannelCount == mReqChannelCount || mFormat != AUDIO_FORMAT_PCM_16_BIT)) {
Dima Zavin31f188892011-04-18 16:57:27 -07004410 mBytesRead = mInput->stream->read(mInput->stream, buffer.raw, mInputBytes);
Eric Laurenta553c252009-07-17 12:17:14 -07004411 framesOut = 0;
4412 } else {
Dima Zavin31f188892011-04-18 16:57:27 -07004413 mBytesRead = mInput->stream->read(mInput->stream, mRsmpInBuffer, mInputBytes);
Eric Laurenta553c252009-07-17 12:17:14 -07004414 mRsmpInIndex = 0;
4415 }
Eric Laurent9cc489a2009-12-05 05:20:01 -08004416 if (mBytesRead < 0) {
Steve Block3762c312012-01-06 19:20:56 +00004417 ALOGE("Error reading audio input");
Eric Laurent9cc489a2009-12-05 05:20:01 -08004418 if (mActiveTrack->mState == TrackBase::ACTIVE) {
Eric Laurentba8811f2010-03-02 18:38:06 -08004419 // Force input into standby so that it tries to
4420 // recover at next read attempt
Dima Zavin31f188892011-04-18 16:57:27 -07004421 mInput->stream->common.standby(&mInput->stream->common);
Eric Laurent464d5b32011-06-17 21:29:58 -07004422 usleep(kRecordThreadSleepUs);
Eric Laurent9cc489a2009-12-05 05:20:01 -08004423 }
Eric Laurenta553c252009-07-17 12:17:14 -07004424 mRsmpInIndex = mFrameCount;
4425 framesOut = 0;
4426 buffer.frameCount = 0;
4427 }
4428 }
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004429 }
4430 } else {
Eric Laurenta553c252009-07-17 12:17:14 -07004431 // resampling
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004432
Eric Laurenta553c252009-07-17 12:17:14 -07004433 memset(mRsmpOutBuffer, 0, framesOut * 2 * sizeof(int32_t));
4434 // alter output frame count as if we were expecting stereo samples
4435 if (mChannelCount == 1 && mReqChannelCount == 1) {
4436 framesOut >>= 1;
4437 }
4438 mResampler->resample(mRsmpOutBuffer, framesOut, this);
4439 // ditherAndClamp() works as long as all buffers returned by mActiveTrack->getNextBuffer()
4440 // are 32 bit aligned which should be always true.
4441 if (mChannelCount == 2 && mReqChannelCount == 1) {
Glenn Kasten490909d2011-12-15 09:52:39 -08004442 ditherAndClamp(mRsmpOutBuffer, mRsmpOutBuffer, framesOut);
Eric Laurenta553c252009-07-17 12:17:14 -07004443 // the resampler always outputs stereo samples: do post stereo to mono conversion
4444 int16_t *src = (int16_t *)mRsmpOutBuffer;
4445 int16_t *dst = buffer.i16;
4446 while (framesOut--) {
4447 *dst++ = (int16_t)(((int32_t)*src + (int32_t)*(src + 1)) >> 1);
4448 src += 2;
4449 }
4450 } else {
Glenn Kasten490909d2011-12-15 09:52:39 -08004451 ditherAndClamp((int32_t *)buffer.raw, mRsmpOutBuffer, framesOut);
Eric Laurenta553c252009-07-17 12:17:14 -07004452 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004453
Eric Laurenta553c252009-07-17 12:17:14 -07004454 }
4455 mActiveTrack->releaseBuffer(&buffer);
4456 mActiveTrack->overflow();
4457 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004458 // client isn't retrieving buffers fast enough
4459 else {
Eric Laurent4712baa2010-09-30 16:12:31 -07004460 if (!mActiveTrack->setOverflow()) {
4461 nsecs_t now = systemTime();
Glenn Kastencbfe2e12011-12-13 11:04:14 -08004462 if ((now - lastWarning) > kWarningThrottleNs) {
Steve Block8564c8d2012-01-05 23:22:43 +00004463 ALOGW("RecordThread: buffer overflow");
Eric Laurent4712baa2010-09-30 16:12:31 -07004464 lastWarning = now;
4465 }
4466 }
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004467 // Release the processor for a while before asking for a new buffer.
4468 // This will give the application more chance to read from the buffer and
4469 // clear the overflow.
Eric Laurent464d5b32011-06-17 21:29:58 -07004470 usleep(kRecordThreadSleepUs);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004471 }
4472 }
Eric Laurent21b5c472011-07-26 20:54:46 -07004473 // enable changes in effect chain
4474 unlockEffectChains(effectChains);
Eric Laurent464d5b32011-06-17 21:29:58 -07004475 effectChains.clear();
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004476 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004477
Eric Laurenta553c252009-07-17 12:17:14 -07004478 if (!mStandby) {
Dima Zavin31f188892011-04-18 16:57:27 -07004479 mInput->stream->common.standby(&mInput->stream->common);
The Android Open Source Projectf013e1a2008-12-17 18:05:43 -08004480 }
Eric Laurenta553c252009-07-17 12:17:14 -07004481 mActiveTrack.clear();
4482
Eric Laurent49f02be2009-11-19 09:00:56 -08004483 mStartStopCond.broadcast();
4484
Eric Laurent6dbdc402011-07-22 09:04:31 -07004485 releaseWakeLock();
4486
Steve Block71f2cf12011-10-20 11:56:00 +01004487 ALOGV("RecordThread %p exiting", this);
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004488 return false;
4489}
4490
Eric Laurent464d5b32011-06-17 21:29:58 -07004491
4492sp<AudioFlinger::RecordThread::RecordTrack> AudioFlinger::RecordThread::createRecordTrack_l(
4493 const sp<AudioFlinger::Client>& client,
4494 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08004495 audio_format_t format,
Eric Laurent464d5b32011-06-17 21:29:58 -07004496 int channelMask,
4497 int frameCount,
4498 uint32_t flags,
4499 int sessionId,
4500 status_t *status)
4501{
4502 sp<RecordTrack> track;
4503 status_t lStatus;
4504
4505 lStatus = initCheck();
4506 if (lStatus != NO_ERROR) {
Steve Block3762c312012-01-06 19:20:56 +00004507 ALOGE("Audio driver not initialized.");
Eric Laurent464d5b32011-06-17 21:29:58 -07004508 goto Exit;
4509 }
4510
4511 { // scope for mLock
4512 Mutex::Autolock _l(mLock);
4513
4514 track = new RecordTrack(this, client, sampleRate,
4515 format, channelMask, frameCount, flags, sessionId);
4516
4517 if (track->getCblk() == NULL) {
4518 lStatus = NO_MEMORY;
4519 goto Exit;
4520 }
4521
4522 mTrack = track.get();
Eric Laurent6639b552011-08-01 09:52:20 -07004523 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
4524 bool suspend = audio_is_bluetooth_sco_device(
Eric Laurent2d95dfb2011-08-29 12:42:48 -07004525 (audio_devices_t)(mDevice & AUDIO_DEVICE_IN_ALL)) && mAudioFlinger->btNrecIsOff();
Eric Laurent6639b552011-08-01 09:52:20 -07004526 setEffectSuspended_l(FX_IID_AEC, suspend, sessionId);
4527 setEffectSuspended_l(FX_IID_NS, suspend, sessionId);
Eric Laurent464d5b32011-06-17 21:29:58 -07004528 }
4529 lStatus = NO_ERROR;
4530
4531Exit:
4532 if (status) {
4533 *status = lStatus;
4534 }
4535 return track;
4536}
4537
Eric Laurenta553c252009-07-17 12:17:14 -07004538status_t AudioFlinger::RecordThread::start(RecordThread::RecordTrack* recordTrack)
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004539{
Steve Block71f2cf12011-10-20 11:56:00 +01004540 ALOGV("RecordThread::start");
Eric Laurent49f02be2009-11-19 09:00:56 -08004541 sp <ThreadBase> strongMe = this;
4542 status_t status = NO_ERROR;
4543 {
Glenn Kasten325ee1c2012-01-05 15:41:56 -08004544 AutoMutex lock(mLock);
Eric Laurent49f02be2009-11-19 09:00:56 -08004545 if (mActiveTrack != 0) {
4546 if (recordTrack != mActiveTrack.get()) {
4547 status = -EBUSY;
4548 } else if (mActiveTrack->mState == TrackBase::PAUSING) {
Eric Laurent9cc489a2009-12-05 05:20:01 -08004549 mActiveTrack->mState = TrackBase::ACTIVE;
Eric Laurent49f02be2009-11-19 09:00:56 -08004550 }
4551 return status;
4552 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004553
Eric Laurent49f02be2009-11-19 09:00:56 -08004554 recordTrack->mState = TrackBase::IDLE;
4555 mActiveTrack = recordTrack;
4556 mLock.unlock();
4557 status_t status = AudioSystem::startInput(mId);
4558 mLock.lock();
4559 if (status != NO_ERROR) {
4560 mActiveTrack.clear();
4561 return status;
4562 }
Eric Laurent9cc489a2009-12-05 05:20:01 -08004563 mRsmpInIndex = mFrameCount;
4564 mBytesRead = 0;
Eric Laurent4bb21c42011-02-28 16:52:51 -08004565 if (mResampler != NULL) {
4566 mResampler->reset();
4567 }
4568 mActiveTrack->mState = TrackBase::RESUMING;
Eric Laurent49f02be2009-11-19 09:00:56 -08004569 // signal thread to start
Steve Block71f2cf12011-10-20 11:56:00 +01004570 ALOGV("Signal record thread");
Eric Laurent49f02be2009-11-19 09:00:56 -08004571 mWaitWorkCV.signal();
4572 // do not wait for mStartStopCond if exiting
4573 if (mExiting) {
4574 mActiveTrack.clear();
4575 status = INVALID_OPERATION;
4576 goto startError;
4577 }
4578 mStartStopCond.wait(mLock);
4579 if (mActiveTrack == 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01004580 ALOGV("Record failed to start");
Eric Laurent49f02be2009-11-19 09:00:56 -08004581 status = BAD_VALUE;
4582 goto startError;
4583 }
Steve Block71f2cf12011-10-20 11:56:00 +01004584 ALOGV("Record started OK");
Eric Laurent49f02be2009-11-19 09:00:56 -08004585 return status;
Eric Laurenta553c252009-07-17 12:17:14 -07004586 }
Eric Laurent49f02be2009-11-19 09:00:56 -08004587startError:
4588 AudioSystem::stopInput(mId);
4589 return status;
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004590}
4591
Eric Laurenta553c252009-07-17 12:17:14 -07004592void AudioFlinger::RecordThread::stop(RecordThread::RecordTrack* recordTrack) {
Steve Block71f2cf12011-10-20 11:56:00 +01004593 ALOGV("RecordThread::stop");
Eric Laurent49f02be2009-11-19 09:00:56 -08004594 sp <ThreadBase> strongMe = this;
4595 {
Glenn Kasten325ee1c2012-01-05 15:41:56 -08004596 AutoMutex lock(mLock);
Eric Laurent49f02be2009-11-19 09:00:56 -08004597 if (mActiveTrack != 0 && recordTrack == mActiveTrack.get()) {
4598 mActiveTrack->mState = TrackBase::PAUSING;
4599 // do not wait for mStartStopCond if exiting
4600 if (mExiting) {
4601 return;
4602 }
4603 mStartStopCond.wait(mLock);
4604 // if we have been restarted, recordTrack == mActiveTrack.get() here
4605 if (mActiveTrack == 0 || recordTrack != mActiveTrack.get()) {
4606 mLock.unlock();
4607 AudioSystem::stopInput(mId);
4608 mLock.lock();
Steve Block71f2cf12011-10-20 11:56:00 +01004609 ALOGV("Record stopped OK");
Eric Laurent49f02be2009-11-19 09:00:56 -08004610 }
4611 }
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004612 }
4613}
4614
Eric Laurenta553c252009-07-17 12:17:14 -07004615status_t AudioFlinger::RecordThread::dump(int fd, const Vector<String16>& args)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004616{
4617 const size_t SIZE = 256;
4618 char buffer[SIZE];
4619 String8 result;
4620 pid_t pid = 0;
4621
Eric Laurent3fdb1262009-11-07 00:01:32 -08004622 snprintf(buffer, SIZE, "\nInput thread %p internals\n", this);
4623 result.append(buffer);
4624
4625 if (mActiveTrack != 0) {
4626 result.append("Active Track:\n");
Jean-Michel Trivi54392232011-05-24 15:53:33 -07004627 result.append(" Clien Fmt Chn mask Session Buf S SRate Serv User\n");
Eric Laurent3fdb1262009-11-07 00:01:32 -08004628 mActiveTrack->dump(buffer, SIZE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004629 result.append(buffer);
Eric Laurent3fdb1262009-11-07 00:01:32 -08004630
4631 snprintf(buffer, SIZE, "In index: %d\n", mRsmpInIndex);
4632 result.append(buffer);
4633 snprintf(buffer, SIZE, "In size: %d\n", mInputBytes);
4634 result.append(buffer);
Glenn Kastenc434c902011-12-13 11:53:26 -08004635 snprintf(buffer, SIZE, "Resampling: %d\n", (mResampler != NULL));
Eric Laurent3fdb1262009-11-07 00:01:32 -08004636 result.append(buffer);
4637 snprintf(buffer, SIZE, "Out channel count: %d\n", mReqChannelCount);
4638 result.append(buffer);
4639 snprintf(buffer, SIZE, "Out sample rate: %d\n", mReqSampleRate);
4640 result.append(buffer);
4641
4642
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004643 } else {
4644 result.append("No record client\n");
4645 }
4646 write(fd, result.string(), result.size());
Eric Laurent3fdb1262009-11-07 00:01:32 -08004647
4648 dumpBase(fd, args);
Eric Laurent1345d332011-07-24 17:49:51 -07004649 dumpEffectChains(fd, args);
Eric Laurent3fdb1262009-11-07 00:01:32 -08004650
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004651 return NO_ERROR;
4652}
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07004653
Eric Laurenta553c252009-07-17 12:17:14 -07004654status_t AudioFlinger::RecordThread::getNextBuffer(AudioBufferProvider::Buffer* buffer)
4655{
4656 size_t framesReq = buffer->frameCount;
4657 size_t framesReady = mFrameCount - mRsmpInIndex;
4658 int channelCount;
4659
4660 if (framesReady == 0) {
Dima Zavin31f188892011-04-18 16:57:27 -07004661 mBytesRead = mInput->stream->read(mInput->stream, mRsmpInBuffer, mInputBytes);
Eric Laurent9cc489a2009-12-05 05:20:01 -08004662 if (mBytesRead < 0) {
Steve Block3762c312012-01-06 19:20:56 +00004663 ALOGE("RecordThread::getNextBuffer() Error reading audio input");
Eric Laurent9cc489a2009-12-05 05:20:01 -08004664 if (mActiveTrack->mState == TrackBase::ACTIVE) {
Eric Laurentba8811f2010-03-02 18:38:06 -08004665 // Force input into standby so that it tries to
4666 // recover at next read attempt
Dima Zavin31f188892011-04-18 16:57:27 -07004667 mInput->stream->common.standby(&mInput->stream->common);
Eric Laurent464d5b32011-06-17 21:29:58 -07004668 usleep(kRecordThreadSleepUs);
Eric Laurent9cc489a2009-12-05 05:20:01 -08004669 }
Glenn Kastenc434c902011-12-13 11:53:26 -08004670 buffer->raw = NULL;
Eric Laurenta553c252009-07-17 12:17:14 -07004671 buffer->frameCount = 0;
4672 return NOT_ENOUGH_DATA;
4673 }
4674 mRsmpInIndex = 0;
4675 framesReady = mFrameCount;
4676 }
4677
4678 if (framesReq > framesReady) {
4679 framesReq = framesReady;
4680 }
4681
4682 if (mChannelCount == 1 && mReqChannelCount == 2) {
4683 channelCount = 1;
4684 } else {
4685 channelCount = 2;
4686 }
4687 buffer->raw = mRsmpInBuffer + mRsmpInIndex * channelCount;
4688 buffer->frameCount = framesReq;
4689 return NO_ERROR;
4690}
4691
4692void AudioFlinger::RecordThread::releaseBuffer(AudioBufferProvider::Buffer* buffer)
4693{
4694 mRsmpInIndex += buffer->frameCount;
4695 buffer->frameCount = 0;
4696}
4697
4698bool AudioFlinger::RecordThread::checkForNewParameters_l()
4699{
4700 bool reconfig = false;
4701
Eric Laurent8fce46a2009-08-04 09:45:33 -07004702 while (!mNewParameters.isEmpty()) {
Eric Laurenta553c252009-07-17 12:17:14 -07004703 status_t status = NO_ERROR;
Eric Laurent8fce46a2009-08-04 09:45:33 -07004704 String8 keyValuePair = mNewParameters[0];
4705 AudioParameter param = AudioParameter(keyValuePair);
Eric Laurenta553c252009-07-17 12:17:14 -07004706 int value;
Glenn Kasten0a204ed2012-01-12 12:27:51 -08004707 audio_format_t reqFormat = mFormat;
Eric Laurenta553c252009-07-17 12:17:14 -07004708 int reqSamplingRate = mReqSampleRate;
4709 int reqChannelCount = mReqChannelCount;
Eric Laurent8fce46a2009-08-04 09:45:33 -07004710
Eric Laurenta553c252009-07-17 12:17:14 -07004711 if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
4712 reqSamplingRate = value;
4713 reconfig = true;
4714 }
4715 if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
Glenn Kasten0a204ed2012-01-12 12:27:51 -08004716 reqFormat = (audio_format_t) value;
Eric Laurenta553c252009-07-17 12:17:14 -07004717 reconfig = true;
4718 }
4719 if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004720 reqChannelCount = popcount(value);
Eric Laurenta553c252009-07-17 12:17:14 -07004721 reconfig = true;
4722 }
4723 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
4724 // do not accept frame count changes if tracks are open as the track buffer
4725 // size depends on frame count and correct behavior would not be garantied
4726 // if frame count is changed after track creation
4727 if (mActiveTrack != 0) {
4728 status = INVALID_OPERATION;
4729 } else {
4730 reconfig = true;
4731 }
4732 }
Eric Laurent464d5b32011-06-17 21:29:58 -07004733 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
4734 // forward device change to effects that have requested to be
4735 // aware of attached audio device.
4736 for (size_t i = 0; i < mEffectChains.size(); i++) {
4737 mEffectChains[i]->setDevice_l(value);
4738 }
4739 // store input device and output device but do not forward output device to audio HAL.
4740 // Note that status is ignored by the caller for output device
4741 // (see AudioFlinger::setParameters()
4742 if (value & AUDIO_DEVICE_OUT_ALL) {
4743 mDevice &= (uint32_t)~(value & AUDIO_DEVICE_OUT_ALL);
4744 status = BAD_VALUE;
4745 } else {
4746 mDevice &= (uint32_t)~(value & AUDIO_DEVICE_IN_ALL);
Eric Laurent6639b552011-08-01 09:52:20 -07004747 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
4748 if (mTrack != NULL) {
4749 bool suspend = audio_is_bluetooth_sco_device(
Eric Laurent2d95dfb2011-08-29 12:42:48 -07004750 (audio_devices_t)value) && mAudioFlinger->btNrecIsOff();
Eric Laurent6639b552011-08-01 09:52:20 -07004751 setEffectSuspended_l(FX_IID_AEC, suspend, mTrack->sessionId());
4752 setEffectSuspended_l(FX_IID_NS, suspend, mTrack->sessionId());
4753 }
Eric Laurent464d5b32011-06-17 21:29:58 -07004754 }
4755 mDevice |= (uint32_t)value;
4756 }
Eric Laurenta553c252009-07-17 12:17:14 -07004757 if (status == NO_ERROR) {
Dima Zavin31f188892011-04-18 16:57:27 -07004758 status = mInput->stream->common.set_parameters(&mInput->stream->common, keyValuePair.string());
Eric Laurenta553c252009-07-17 12:17:14 -07004759 if (status == INVALID_OPERATION) {
Dima Zavin31f188892011-04-18 16:57:27 -07004760 mInput->stream->common.standby(&mInput->stream->common);
4761 status = mInput->stream->common.set_parameters(&mInput->stream->common, keyValuePair.string());
Eric Laurenta553c252009-07-17 12:17:14 -07004762 }
4763 if (reconfig) {
4764 if (status == BAD_VALUE &&
Dima Zavin31f188892011-04-18 16:57:27 -07004765 reqFormat == mInput->stream->common.get_format(&mInput->stream->common) &&
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004766 reqFormat == AUDIO_FORMAT_PCM_16_BIT &&
Dima Zavin31f188892011-04-18 16:57:27 -07004767 ((int)mInput->stream->common.get_sample_rate(&mInput->stream->common) <= (2 * reqSamplingRate)) &&
4768 (popcount(mInput->stream->common.get_channels(&mInput->stream->common)) < 3) &&
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004769 (reqChannelCount < 3)) {
Eric Laurenta553c252009-07-17 12:17:14 -07004770 status = NO_ERROR;
4771 }
4772 if (status == NO_ERROR) {
4773 readInputParameters();
Eric Laurent8fce46a2009-08-04 09:45:33 -07004774 sendConfigEvent_l(AudioSystem::INPUT_CONFIG_CHANGED);
Eric Laurenta553c252009-07-17 12:17:14 -07004775 }
4776 }
4777 }
Eric Laurent3fdb1262009-11-07 00:01:32 -08004778
4779 mNewParameters.removeAt(0);
4780
Eric Laurenta553c252009-07-17 12:17:14 -07004781 mParamStatus = status;
4782 mParamCond.signal();
Eric Laurent5f37be32011-09-13 11:40:21 -07004783 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
4784 // already timed out waiting for the status and will never signal the condition.
Glenn Kastencbfe2e12011-12-13 11:04:14 -08004785 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Eric Laurenta553c252009-07-17 12:17:14 -07004786 }
4787 return reconfig;
4788}
4789
4790String8 AudioFlinger::RecordThread::getParameters(const String8& keys)
4791{
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004792 char *s;
Eric Laurent828b9772011-08-07 16:32:26 -07004793 String8 out_s8 = String8();
4794
4795 Mutex::Autolock _l(mLock);
4796 if (initCheck() != NO_ERROR) {
4797 return out_s8;
4798 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004799
Dima Zavin31f188892011-04-18 16:57:27 -07004800 s = mInput->stream->common.get_parameters(&mInput->stream->common, keys.string());
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004801 out_s8 = String8(s);
4802 free(s);
4803 return out_s8;
Eric Laurenta553c252009-07-17 12:17:14 -07004804}
4805
Eric Laurenteb8f850d2010-05-14 03:26:45 -07004806void AudioFlinger::RecordThread::audioConfigChanged_l(int event, int param) {
Eric Laurenta553c252009-07-17 12:17:14 -07004807 AudioSystem::OutputDescriptor desc;
4808 void *param2 = 0;
4809
4810 switch (event) {
4811 case AudioSystem::INPUT_OPENED:
4812 case AudioSystem::INPUT_CONFIG_CHANGED:
Jean-Michel Trivi54392232011-05-24 15:53:33 -07004813 desc.channels = mChannelMask;
Eric Laurenta553c252009-07-17 12:17:14 -07004814 desc.samplingRate = mSampleRate;
4815 desc.format = mFormat;
4816 desc.frameCount = mFrameCount;
4817 desc.latency = 0;
4818 param2 = &desc;
4819 break;
4820
4821 case AudioSystem::INPUT_CLOSED:
4822 default:
4823 break;
4824 }
Eric Laurent49f02be2009-11-19 09:00:56 -08004825 mAudioFlinger->audioConfigChanged_l(event, mId, param2);
Eric Laurenta553c252009-07-17 12:17:14 -07004826}
4827
4828void AudioFlinger::RecordThread::readInputParameters()
4829{
4830 if (mRsmpInBuffer) delete mRsmpInBuffer;
4831 if (mRsmpOutBuffer) delete mRsmpOutBuffer;
4832 if (mResampler) delete mResampler;
Glenn Kastenc434c902011-12-13 11:53:26 -08004833 mResampler = NULL;
Eric Laurenta553c252009-07-17 12:17:14 -07004834
Dima Zavin31f188892011-04-18 16:57:27 -07004835 mSampleRate = mInput->stream->common.get_sample_rate(&mInput->stream->common);
Jean-Michel Trivi54392232011-05-24 15:53:33 -07004836 mChannelMask = mInput->stream->common.get_channels(&mInput->stream->common);
4837 mChannelCount = (uint16_t)popcount(mChannelMask);
Dima Zavin31f188892011-04-18 16:57:27 -07004838 mFormat = mInput->stream->common.get_format(&mInput->stream->common);
Glenn Kastenfaf354d2012-01-11 09:48:27 -08004839 mFrameSize = audio_stream_frame_size(&mInput->stream->common);
Dima Zavin31f188892011-04-18 16:57:27 -07004840 mInputBytes = mInput->stream->common.get_buffer_size(&mInput->stream->common);
Eric Laurenta553c252009-07-17 12:17:14 -07004841 mFrameCount = mInputBytes / mFrameSize;
4842 mRsmpInBuffer = new int16_t[mFrameCount * mChannelCount];
4843
4844 if (mSampleRate != mReqSampleRate && mChannelCount < 3 && mReqChannelCount < 3)
4845 {
4846 int channelCount;
4847 // optmization: if mono to mono, use the resampler in stereo to stereo mode to avoid
4848 // stereo to mono post process as the resampler always outputs stereo.
4849 if (mChannelCount == 1 && mReqChannelCount == 2) {
4850 channelCount = 1;
4851 } else {
4852 channelCount = 2;
4853 }
4854 mResampler = AudioResampler::create(16, channelCount, mReqSampleRate);
4855 mResampler->setSampleRate(mSampleRate);
4856 mResampler->setVolume(AudioMixer::UNITY_GAIN, AudioMixer::UNITY_GAIN);
4857 mRsmpOutBuffer = new int32_t[mFrameCount * 2];
4858
4859 // optmization: if mono to mono, alter input frame count as if we were inputing stereo samples
4860 if (mChannelCount == 1 && mReqChannelCount == 1) {
4861 mFrameCount >>= 1;
4862 }
4863
4864 }
4865 mRsmpInIndex = mFrameCount;
4866}
4867
Eric Laurent47d0a922010-02-26 02:47:27 -08004868unsigned int AudioFlinger::RecordThread::getInputFramesLost()
4869{
Eric Laurent828b9772011-08-07 16:32:26 -07004870 Mutex::Autolock _l(mLock);
4871 if (initCheck() != NO_ERROR) {
4872 return 0;
4873 }
4874
Dima Zavin31f188892011-04-18 16:57:27 -07004875 return mInput->stream->get_input_frames_lost(mInput->stream);
Eric Laurent47d0a922010-02-26 02:47:27 -08004876}
4877
Eric Laurent464d5b32011-06-17 21:29:58 -07004878uint32_t AudioFlinger::RecordThread::hasAudioSession(int sessionId)
4879{
4880 Mutex::Autolock _l(mLock);
4881 uint32_t result = 0;
4882 if (getEffectChain_l(sessionId) != 0) {
4883 result = EFFECT_SESSION;
4884 }
4885
4886 if (mTrack != NULL && sessionId == mTrack->sessionId()) {
4887 result |= TRACK_SESSION;
4888 }
4889
4890 return result;
4891}
4892
Eric Laurent6639b552011-08-01 09:52:20 -07004893AudioFlinger::RecordThread::RecordTrack* AudioFlinger::RecordThread::track()
4894{
4895 Mutex::Autolock _l(mLock);
4896 return mTrack;
4897}
4898
Eric Laurent828b9772011-08-07 16:32:26 -07004899AudioFlinger::AudioStreamIn* AudioFlinger::RecordThread::getInput()
4900{
4901 Mutex::Autolock _l(mLock);
4902 return mInput;
4903}
4904
4905AudioFlinger::AudioStreamIn* AudioFlinger::RecordThread::clearInput()
4906{
4907 Mutex::Autolock _l(mLock);
4908 AudioStreamIn *input = mInput;
4909 mInput = NULL;
4910 return input;
4911}
4912
4913// this method must always be called either with ThreadBase mLock held or inside the thread loop
4914audio_stream_t* AudioFlinger::RecordThread::stream()
4915{
4916 if (mInput == NULL) {
4917 return NULL;
4918 }
4919 return &mInput->stream->common;
4920}
4921
4922
Eric Laurenta553c252009-07-17 12:17:14 -07004923// ----------------------------------------------------------------------------
4924
Eric Laurentddb78e72009-07-28 08:44:33 -07004925int AudioFlinger::openOutput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -07004926 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08004927 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -07004928 uint32_t *pChannels,
4929 uint32_t *pLatencyMs,
4930 uint32_t flags)
4931{
4932 status_t status;
4933 PlaybackThread *thread = NULL;
4934 mHardwareStatus = AUDIO_HW_OUTPUT_OPEN;
4935 uint32_t samplingRate = pSamplingRate ? *pSamplingRate : 0;
Glenn Kasten0a204ed2012-01-12 12:27:51 -08004936 audio_format_t format = pFormat ? *pFormat : AUDIO_FORMAT_DEFAULT;
Eric Laurenta553c252009-07-17 12:17:14 -07004937 uint32_t channels = pChannels ? *pChannels : 0;
4938 uint32_t latency = pLatencyMs ? *pLatencyMs : 0;
Dima Zavin31f188892011-04-18 16:57:27 -07004939 audio_stream_out_t *outStream;
4940 audio_hw_device_t *outHwDev;
Eric Laurenta553c252009-07-17 12:17:14 -07004941
Steve Block71f2cf12011-10-20 11:56:00 +01004942 ALOGV("openOutput(), Device %x, SamplingRate %d, Format %d, Channels %x, flags %x",
Eric Laurenta553c252009-07-17 12:17:14 -07004943 pDevices ? *pDevices : 0,
4944 samplingRate,
4945 format,
4946 channels,
4947 flags);
4948
4949 if (pDevices == NULL || *pDevices == 0) {
Eric Laurentddb78e72009-07-28 08:44:33 -07004950 return 0;
Eric Laurenta553c252009-07-17 12:17:14 -07004951 }
Dima Zavin31f188892011-04-18 16:57:27 -07004952
Eric Laurenta553c252009-07-17 12:17:14 -07004953 Mutex::Autolock _l(mLock);
4954
Dima Zavin31f188892011-04-18 16:57:27 -07004955 outHwDev = findSuitableHwDev_l(*pDevices);
4956 if (outHwDev == NULL)
4957 return 0;
4958
Glenn Kasten0a204ed2012-01-12 12:27:51 -08004959 status = outHwDev->open_output_stream(outHwDev, *pDevices, &format,
Dima Zavin31f188892011-04-18 16:57:27 -07004960 &channels, &samplingRate, &outStream);
Steve Block71f2cf12011-10-20 11:56:00 +01004961 ALOGV("openOutput() openOutputStream returned output %p, SamplingRate %d, Format %d, Channels %x, status %d",
Dima Zavin31f188892011-04-18 16:57:27 -07004962 outStream,
Eric Laurenta553c252009-07-17 12:17:14 -07004963 samplingRate,
4964 format,
4965 channels,
4966 status);
4967
4968 mHardwareStatus = AUDIO_HW_IDLE;
Dima Zavin31f188892011-04-18 16:57:27 -07004969 if (outStream != NULL) {
4970 AudioStreamOut *output = new AudioStreamOut(outHwDev, outStream);
Eric Laurent464d5b32011-06-17 21:29:58 -07004971 int id = nextUniqueId();
Dima Zavin31f188892011-04-18 16:57:27 -07004972
Dima Zavin24fc2fb2011-04-19 22:30:36 -07004973 if ((flags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT) ||
4974 (format != AUDIO_FORMAT_PCM_16_BIT) ||
4975 (channels != AUDIO_CHANNEL_OUT_STEREO)) {
Eric Laurent65b65452010-06-01 23:49:17 -07004976 thread = new DirectOutputThread(this, output, id, *pDevices);
Steve Block71f2cf12011-10-20 11:56:00 +01004977 ALOGV("openOutput() created direct output: ID %d thread %p", id, thread);
Eric Laurenta553c252009-07-17 12:17:14 -07004978 } else {
Eric Laurent65b65452010-06-01 23:49:17 -07004979 thread = new MixerThread(this, output, id, *pDevices);
Steve Block71f2cf12011-10-20 11:56:00 +01004980 ALOGV("openOutput() created mixer output: ID %d thread %p", id, thread);
Eric Laurenta553c252009-07-17 12:17:14 -07004981 }
Eric Laurent65b65452010-06-01 23:49:17 -07004982 mPlaybackThreads.add(id, thread);
Eric Laurenta553c252009-07-17 12:17:14 -07004983
4984 if (pSamplingRate) *pSamplingRate = samplingRate;
4985 if (pFormat) *pFormat = format;
4986 if (pChannels) *pChannels = channels;
4987 if (pLatencyMs) *pLatencyMs = thread->latency();
Eric Laurent9cc489a2009-12-05 05:20:01 -08004988
Eric Laurenteb8f850d2010-05-14 03:26:45 -07004989 // notify client processes of the new output creation
4990 thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
Eric Laurent65b65452010-06-01 23:49:17 -07004991 return id;
Eric Laurenta553c252009-07-17 12:17:14 -07004992 }
4993
Eric Laurent9cc489a2009-12-05 05:20:01 -08004994 return 0;
Eric Laurenta553c252009-07-17 12:17:14 -07004995}
4996
Eric Laurentddb78e72009-07-28 08:44:33 -07004997int AudioFlinger::openDuplicateOutput(int output1, int output2)
Eric Laurenta553c252009-07-17 12:17:14 -07004998{
4999 Mutex::Autolock _l(mLock);
Eric Laurentddb78e72009-07-28 08:44:33 -07005000 MixerThread *thread1 = checkMixerThread_l(output1);
5001 MixerThread *thread2 = checkMixerThread_l(output2);
Eric Laurenta553c252009-07-17 12:17:14 -07005002
Eric Laurentddb78e72009-07-28 08:44:33 -07005003 if (thread1 == NULL || thread2 == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00005004 ALOGW("openDuplicateOutput() wrong output mixer type for output %d or %d", output1, output2);
Eric Laurentddb78e72009-07-28 08:44:33 -07005005 return 0;
Eric Laurenta553c252009-07-17 12:17:14 -07005006 }
5007
Eric Laurent464d5b32011-06-17 21:29:58 -07005008 int id = nextUniqueId();
Eric Laurent65b65452010-06-01 23:49:17 -07005009 DuplicatingThread *thread = new DuplicatingThread(this, thread1, id);
Eric Laurentddb78e72009-07-28 08:44:33 -07005010 thread->addOutputTrack(thread2);
Eric Laurent65b65452010-06-01 23:49:17 -07005011 mPlaybackThreads.add(id, thread);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07005012 // notify client processes of the new output creation
5013 thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
Eric Laurent65b65452010-06-01 23:49:17 -07005014 return id;
Eric Laurenta553c252009-07-17 12:17:14 -07005015}
5016
Eric Laurentddb78e72009-07-28 08:44:33 -07005017status_t AudioFlinger::closeOutput(int output)
Eric Laurenta553c252009-07-17 12:17:14 -07005018{
Eric Laurent49018a52009-08-04 08:37:05 -07005019 // keep strong reference on the playback thread so that
5020 // it is not destroyed while exit() is executed
5021 sp <PlaybackThread> thread;
Eric Laurenta553c252009-07-17 12:17:14 -07005022 {
5023 Mutex::Autolock _l(mLock);
5024 thread = checkPlaybackThread_l(output);
5025 if (thread == NULL) {
5026 return BAD_VALUE;
5027 }
5028
Steve Block71f2cf12011-10-20 11:56:00 +01005029 ALOGV("closeOutput() %d", output);
Eric Laurenta553c252009-07-17 12:17:14 -07005030
Eric Laurent464d5b32011-06-17 21:29:58 -07005031 if (thread->type() == ThreadBase::MIXER) {
Eric Laurenta553c252009-07-17 12:17:14 -07005032 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurent464d5b32011-06-17 21:29:58 -07005033 if (mPlaybackThreads.valueAt(i)->type() == ThreadBase::DUPLICATING) {
Eric Laurentddb78e72009-07-28 08:44:33 -07005034 DuplicatingThread *dupThread = (DuplicatingThread *)mPlaybackThreads.valueAt(i).get();
Eric Laurent49018a52009-08-04 08:37:05 -07005035 dupThread->removeOutputTrack((MixerThread *)thread.get());
Eric Laurenta553c252009-07-17 12:17:14 -07005036 }
5037 }
5038 }
Eric Laurent296a0ec2009-09-15 07:10:12 -07005039 void *param2 = 0;
Eric Laurent49f02be2009-11-19 09:00:56 -08005040 audioConfigChanged_l(AudioSystem::OUTPUT_CLOSED, output, param2);
Eric Laurentddb78e72009-07-28 08:44:33 -07005041 mPlaybackThreads.removeItem(output);
Eric Laurenta553c252009-07-17 12:17:14 -07005042 }
5043 thread->exit();
5044
Eric Laurent464d5b32011-06-17 21:29:58 -07005045 if (thread->type() != ThreadBase::DUPLICATING) {
Eric Laurent828b9772011-08-07 16:32:26 -07005046 AudioStreamOut *out = thread->clearOutput();
5047 // from now on thread->mOutput is NULL
Dima Zavin31f188892011-04-18 16:57:27 -07005048 out->hwDev->close_output_stream(out->hwDev, out->stream);
5049 delete out;
Eric Laurent49018a52009-08-04 08:37:05 -07005050 }
Eric Laurenta553c252009-07-17 12:17:14 -07005051 return NO_ERROR;
5052}
5053
Eric Laurentddb78e72009-07-28 08:44:33 -07005054status_t AudioFlinger::suspendOutput(int output)
Eric Laurenta553c252009-07-17 12:17:14 -07005055{
5056 Mutex::Autolock _l(mLock);
5057 PlaybackThread *thread = checkPlaybackThread_l(output);
5058
5059 if (thread == NULL) {
5060 return BAD_VALUE;
5061 }
5062
Steve Block71f2cf12011-10-20 11:56:00 +01005063 ALOGV("suspendOutput() %d", output);
Eric Laurenta553c252009-07-17 12:17:14 -07005064 thread->suspend();
5065
5066 return NO_ERROR;
5067}
5068
Eric Laurentddb78e72009-07-28 08:44:33 -07005069status_t AudioFlinger::restoreOutput(int output)
Eric Laurenta553c252009-07-17 12:17:14 -07005070{
5071 Mutex::Autolock _l(mLock);
5072 PlaybackThread *thread = checkPlaybackThread_l(output);
5073
5074 if (thread == NULL) {
5075 return BAD_VALUE;
5076 }
5077
Steve Block71f2cf12011-10-20 11:56:00 +01005078 ALOGV("restoreOutput() %d", output);
Eric Laurenta553c252009-07-17 12:17:14 -07005079
5080 thread->restore();
5081
5082 return NO_ERROR;
5083}
5084
Eric Laurentddb78e72009-07-28 08:44:33 -07005085int AudioFlinger::openInput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -07005086 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08005087 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -07005088 uint32_t *pChannels,
5089 uint32_t acoustics)
5090{
5091 status_t status;
5092 RecordThread *thread = NULL;
5093 uint32_t samplingRate = pSamplingRate ? *pSamplingRate : 0;
Glenn Kasten0a204ed2012-01-12 12:27:51 -08005094 audio_format_t format = pFormat ? *pFormat : AUDIO_FORMAT_DEFAULT;
Eric Laurenta553c252009-07-17 12:17:14 -07005095 uint32_t channels = pChannels ? *pChannels : 0;
5096 uint32_t reqSamplingRate = samplingRate;
Glenn Kasten0a204ed2012-01-12 12:27:51 -08005097 audio_format_t reqFormat = format;
Eric Laurenta553c252009-07-17 12:17:14 -07005098 uint32_t reqChannels = channels;
Dima Zavin31f188892011-04-18 16:57:27 -07005099 audio_stream_in_t *inStream;
5100 audio_hw_device_t *inHwDev;
Eric Laurenta553c252009-07-17 12:17:14 -07005101
5102 if (pDevices == NULL || *pDevices == 0) {
Eric Laurentddb78e72009-07-28 08:44:33 -07005103 return 0;
Eric Laurenta553c252009-07-17 12:17:14 -07005104 }
Dima Zavin31f188892011-04-18 16:57:27 -07005105
Eric Laurenta553c252009-07-17 12:17:14 -07005106 Mutex::Autolock _l(mLock);
5107
Dima Zavin31f188892011-04-18 16:57:27 -07005108 inHwDev = findSuitableHwDev_l(*pDevices);
5109 if (inHwDev == NULL)
5110 return 0;
5111
Glenn Kasten0a204ed2012-01-12 12:27:51 -08005112 status = inHwDev->open_input_stream(inHwDev, *pDevices, &format,
Dima Zavin31f188892011-04-18 16:57:27 -07005113 &channels, &samplingRate,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005114 (audio_in_acoustics_t)acoustics,
Dima Zavin31f188892011-04-18 16:57:27 -07005115 &inStream);
Steve Block71f2cf12011-10-20 11:56:00 +01005116 ALOGV("openInput() openInputStream returned input %p, SamplingRate %d, Format %d, Channels %x, acoustics %x, status %d",
Dima Zavin31f188892011-04-18 16:57:27 -07005117 inStream,
Eric Laurenta553c252009-07-17 12:17:14 -07005118 samplingRate,
5119 format,
5120 channels,
5121 acoustics,
5122 status);
5123
5124 // If the input could not be opened with the requested parameters and we can handle the conversion internally,
5125 // try to open again with the proposed parameters. The AudioFlinger can resample the input and do mono to stereo
5126 // or stereo to mono conversions on 16 bit PCM inputs.
Dima Zavin31f188892011-04-18 16:57:27 -07005127 if (inStream == NULL && status == BAD_VALUE &&
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005128 reqFormat == format && format == AUDIO_FORMAT_PCM_16_BIT &&
Eric Laurenta553c252009-07-17 12:17:14 -07005129 (samplingRate <= 2 * reqSamplingRate) &&
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005130 (popcount(channels) < 3) && (popcount(reqChannels) < 3)) {
Steve Block71f2cf12011-10-20 11:56:00 +01005131 ALOGV("openInput() reopening with proposed sampling rate and channels");
Glenn Kasten0a204ed2012-01-12 12:27:51 -08005132 status = inHwDev->open_input_stream(inHwDev, *pDevices, &format,
Dima Zavin31f188892011-04-18 16:57:27 -07005133 &channels, &samplingRate,
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005134 (audio_in_acoustics_t)acoustics,
Dima Zavin31f188892011-04-18 16:57:27 -07005135 &inStream);
Eric Laurenta553c252009-07-17 12:17:14 -07005136 }
5137
Dima Zavin31f188892011-04-18 16:57:27 -07005138 if (inStream != NULL) {
5139 AudioStreamIn *input = new AudioStreamIn(inHwDev, inStream);
5140
Eric Laurent464d5b32011-06-17 21:29:58 -07005141 int id = nextUniqueId();
5142 // Start record thread
5143 // RecorThread require both input and output device indication to forward to audio
5144 // pre processing modules
5145 uint32_t device = (*pDevices) | primaryOutputDevice_l();
5146 thread = new RecordThread(this,
5147 input,
5148 reqSamplingRate,
5149 reqChannels,
5150 id,
5151 device);
Eric Laurent65b65452010-06-01 23:49:17 -07005152 mRecordThreads.add(id, thread);
Steve Block71f2cf12011-10-20 11:56:00 +01005153 ALOGV("openInput() created record thread: ID %d thread %p", id, thread);
Eric Laurenta553c252009-07-17 12:17:14 -07005154 if (pSamplingRate) *pSamplingRate = reqSamplingRate;
5155 if (pFormat) *pFormat = format;
5156 if (pChannels) *pChannels = reqChannels;
5157
Dima Zavin31f188892011-04-18 16:57:27 -07005158 input->stream->common.standby(&input->stream->common);
Eric Laurent9cc489a2009-12-05 05:20:01 -08005159
Eric Laurenteb8f850d2010-05-14 03:26:45 -07005160 // notify client processes of the new input creation
5161 thread->audioConfigChanged_l(AudioSystem::INPUT_OPENED);
Eric Laurent65b65452010-06-01 23:49:17 -07005162 return id;
Eric Laurenta553c252009-07-17 12:17:14 -07005163 }
5164
Eric Laurent9cc489a2009-12-05 05:20:01 -08005165 return 0;
Eric Laurenta553c252009-07-17 12:17:14 -07005166}
5167
Eric Laurentddb78e72009-07-28 08:44:33 -07005168status_t AudioFlinger::closeInput(int input)
Eric Laurenta553c252009-07-17 12:17:14 -07005169{
Eric Laurent49018a52009-08-04 08:37:05 -07005170 // keep strong reference on the record thread so that
5171 // it is not destroyed while exit() is executed
5172 sp <RecordThread> thread;
Eric Laurenta553c252009-07-17 12:17:14 -07005173 {
5174 Mutex::Autolock _l(mLock);
5175 thread = checkRecordThread_l(input);
5176 if (thread == NULL) {
5177 return BAD_VALUE;
5178 }
5179
Steve Block71f2cf12011-10-20 11:56:00 +01005180 ALOGV("closeInput() %d", input);
Eric Laurent296a0ec2009-09-15 07:10:12 -07005181 void *param2 = 0;
Eric Laurent49f02be2009-11-19 09:00:56 -08005182 audioConfigChanged_l(AudioSystem::INPUT_CLOSED, input, param2);
Eric Laurentddb78e72009-07-28 08:44:33 -07005183 mRecordThreads.removeItem(input);
Eric Laurenta553c252009-07-17 12:17:14 -07005184 }
5185 thread->exit();
5186
Eric Laurent828b9772011-08-07 16:32:26 -07005187 AudioStreamIn *in = thread->clearInput();
5188 // from now on thread->mInput is NULL
Dima Zavin31f188892011-04-18 16:57:27 -07005189 in->hwDev->close_input_stream(in->hwDev, in->stream);
5190 delete in;
Eric Laurent49018a52009-08-04 08:37:05 -07005191
Eric Laurenta553c252009-07-17 12:17:14 -07005192 return NO_ERROR;
5193}
5194
Glenn Kastenbc1d77b2012-01-12 16:38:12 -08005195status_t AudioFlinger::setStreamOutput(audio_stream_type_t stream, int output)
Eric Laurenta553c252009-07-17 12:17:14 -07005196{
5197 Mutex::Autolock _l(mLock);
5198 MixerThread *dstThread = checkMixerThread_l(output);
5199 if (dstThread == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00005200 ALOGW("setStreamOutput() bad output id %d", output);
Eric Laurenta553c252009-07-17 12:17:14 -07005201 return BAD_VALUE;
5202 }
5203
Steve Block71f2cf12011-10-20 11:56:00 +01005204 ALOGV("setStreamOutput() stream %d to output %d", stream, output);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07005205 audioConfigChanged_l(AudioSystem::STREAM_CONFIG_CHANGED, output, &stream);
Eric Laurenta553c252009-07-17 12:17:14 -07005206
Eric Laurent05ce0942011-08-30 10:18:54 -07005207 dstThread->setStreamValid(stream, true);
5208
Eric Laurenta553c252009-07-17 12:17:14 -07005209 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurentddb78e72009-07-28 08:44:33 -07005210 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
Eric Laurenta553c252009-07-17 12:17:14 -07005211 if (thread != dstThread &&
Eric Laurent464d5b32011-06-17 21:29:58 -07005212 thread->type() != ThreadBase::DIRECT) {
Eric Laurenta553c252009-07-17 12:17:14 -07005213 MixerThread *srcThread = (MixerThread *)thread;
Eric Laurent05ce0942011-08-30 10:18:54 -07005214 srcThread->setStreamValid(stream, false);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07005215 srcThread->invalidateTracks(stream);
Eric Laurenta553c252009-07-17 12:17:14 -07005216 }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005217 }
Eric Laurentd069f322009-09-01 05:56:26 -07005218
Eric Laurenta553c252009-07-17 12:17:14 -07005219 return NO_ERROR;
5220}
5221
Eric Laurent65b65452010-06-01 23:49:17 -07005222
5223int AudioFlinger::newAudioSessionId()
5224{
Eric Laurent464d5b32011-06-17 21:29:58 -07005225 return nextUniqueId();
Eric Laurent65b65452010-06-01 23:49:17 -07005226}
5227
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005228void AudioFlinger::acquireAudioSessionId(int audioSession)
5229{
5230 Mutex::Autolock _l(mLock);
5231 int caller = IPCThreadState::self()->getCallingPid();
Steve Block71f2cf12011-10-20 11:56:00 +01005232 ALOGV("acquiring %d from %d", audioSession, caller);
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005233 int num = mAudioSessionRefs.size();
5234 for (int i = 0; i< num; i++) {
5235 AudioSessionRef *ref = mAudioSessionRefs.editItemAt(i);
5236 if (ref->sessionid == audioSession && ref->pid == caller) {
5237 ref->cnt++;
Steve Block71f2cf12011-10-20 11:56:00 +01005238 ALOGV(" incremented refcount to %d", ref->cnt);
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005239 return;
5240 }
5241 }
5242 AudioSessionRef *ref = new AudioSessionRef();
5243 ref->sessionid = audioSession;
5244 ref->pid = caller;
5245 ref->cnt = 1;
5246 mAudioSessionRefs.push(ref);
Steve Block71f2cf12011-10-20 11:56:00 +01005247 ALOGV(" added new entry for %d", ref->sessionid);
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005248}
5249
5250void AudioFlinger::releaseAudioSessionId(int audioSession)
5251{
5252 Mutex::Autolock _l(mLock);
5253 int caller = IPCThreadState::self()->getCallingPid();
Steve Block71f2cf12011-10-20 11:56:00 +01005254 ALOGV("releasing %d from %d", audioSession, caller);
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005255 int num = mAudioSessionRefs.size();
5256 for (int i = 0; i< num; i++) {
5257 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
5258 if (ref->sessionid == audioSession && ref->pid == caller) {
5259 ref->cnt--;
Steve Block71f2cf12011-10-20 11:56:00 +01005260 ALOGV(" decremented refcount to %d", ref->cnt);
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005261 if (ref->cnt == 0) {
5262 mAudioSessionRefs.removeAt(i);
5263 delete ref;
5264 purgeStaleEffects_l();
5265 }
5266 return;
5267 }
5268 }
Steve Block8564c8d2012-01-05 23:22:43 +00005269 ALOGW("session id %d not found for pid %d", audioSession, caller);
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005270}
5271
5272void AudioFlinger::purgeStaleEffects_l() {
5273
Steve Block71f2cf12011-10-20 11:56:00 +01005274 ALOGV("purging stale effects");
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005275
5276 Vector< sp<EffectChain> > chains;
5277
5278 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
5279 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
5280 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
5281 sp<EffectChain> ec = t->mEffectChains[j];
Marco Nelissen2255a1e2011-08-12 14:14:39 -07005282 if (ec->sessionId() > AUDIO_SESSION_OUTPUT_MIX) {
5283 chains.push(ec);
5284 }
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005285 }
5286 }
5287 for (size_t i = 0; i < mRecordThreads.size(); i++) {
5288 sp<RecordThread> t = mRecordThreads.valueAt(i);
5289 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
5290 sp<EffectChain> ec = t->mEffectChains[j];
5291 chains.push(ec);
5292 }
5293 }
5294
5295 for (size_t i = 0; i < chains.size(); i++) {
5296 sp<EffectChain> ec = chains[i];
5297 int sessionid = ec->sessionId();
5298 sp<ThreadBase> t = ec->mThread.promote();
5299 if (t == 0) {
5300 continue;
5301 }
5302 size_t numsessionrefs = mAudioSessionRefs.size();
5303 bool found = false;
5304 for (size_t k = 0; k < numsessionrefs; k++) {
5305 AudioSessionRef *ref = mAudioSessionRefs.itemAt(k);
5306 if (ref->sessionid == sessionid) {
Steve Block71f2cf12011-10-20 11:56:00 +01005307 ALOGV(" session %d still exists for %d with %d refs",
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005308 sessionid, ref->pid, ref->cnt);
5309 found = true;
5310 break;
5311 }
5312 }
5313 if (!found) {
5314 // remove all effects from the chain
5315 while (ec->mEffects.size()) {
5316 sp<EffectModule> effect = ec->mEffects[0];
5317 effect->unPin();
5318 Mutex::Autolock _l (t->mLock);
5319 t->removeEffect_l(effect);
5320 for (size_t j = 0; j < effect->mHandles.size(); j++) {
5321 sp<EffectHandle> handle = effect->mHandles[j].promote();
5322 if (handle != 0) {
5323 handle->mEffect.clear();
Eric Laurent7fa1cee2011-10-19 11:44:54 -07005324 if (handle->mHasControl && handle->mEnabled) {
5325 t->checkSuspendOnEffectEnabled_l(effect, false, effect->sessionId());
5326 }
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005327 }
5328 }
5329 AudioSystem::unregisterEffect(effect->id());
5330 }
5331 }
5332 }
5333 return;
5334}
5335
Eric Laurenta553c252009-07-17 12:17:14 -07005336// checkPlaybackThread_l() must be called with AudioFlinger::mLock held
Eric Laurentddb78e72009-07-28 08:44:33 -07005337AudioFlinger::PlaybackThread *AudioFlinger::checkPlaybackThread_l(int output) const
Eric Laurenta553c252009-07-17 12:17:14 -07005338{
5339 PlaybackThread *thread = NULL;
Eric Laurentddb78e72009-07-28 08:44:33 -07005340 if (mPlaybackThreads.indexOfKey(output) >= 0) {
5341 thread = (PlaybackThread *)mPlaybackThreads.valueFor(output).get();
Eric Laurenta553c252009-07-17 12:17:14 -07005342 }
Eric Laurenta553c252009-07-17 12:17:14 -07005343 return thread;
5344}
5345
5346// checkMixerThread_l() must be called with AudioFlinger::mLock held
Eric Laurentddb78e72009-07-28 08:44:33 -07005347AudioFlinger::MixerThread *AudioFlinger::checkMixerThread_l(int output) const
Eric Laurenta553c252009-07-17 12:17:14 -07005348{
5349 PlaybackThread *thread = checkPlaybackThread_l(output);
5350 if (thread != NULL) {
Eric Laurent464d5b32011-06-17 21:29:58 -07005351 if (thread->type() == ThreadBase::DIRECT) {
Eric Laurenta553c252009-07-17 12:17:14 -07005352 thread = NULL;
5353 }
5354 }
5355 return (MixerThread *)thread;
5356}
5357
5358// checkRecordThread_l() must be called with AudioFlinger::mLock held
Eric Laurentddb78e72009-07-28 08:44:33 -07005359AudioFlinger::RecordThread *AudioFlinger::checkRecordThread_l(int input) const
Eric Laurenta553c252009-07-17 12:17:14 -07005360{
5361 RecordThread *thread = NULL;
Eric Laurentddb78e72009-07-28 08:44:33 -07005362 if (mRecordThreads.indexOfKey(input) >= 0) {
5363 thread = (RecordThread *)mRecordThreads.valueFor(input).get();
Eric Laurenta553c252009-07-17 12:17:14 -07005364 }
Eric Laurenta553c252009-07-17 12:17:14 -07005365 return thread;
5366}
5367
Eric Laurent464d5b32011-06-17 21:29:58 -07005368uint32_t AudioFlinger::nextUniqueId()
Eric Laurent65b65452010-06-01 23:49:17 -07005369{
Eric Laurent464d5b32011-06-17 21:29:58 -07005370 return android_atomic_inc(&mNextUniqueId);
Eric Laurent65b65452010-06-01 23:49:17 -07005371}
5372
Eric Laurent464d5b32011-06-17 21:29:58 -07005373AudioFlinger::PlaybackThread *AudioFlinger::primaryPlaybackThread_l()
5374{
5375 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
5376 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
Eric Laurent828b9772011-08-07 16:32:26 -07005377 AudioStreamOut *output = thread->getOutput();
5378 if (output != NULL && output->hwDev == mPrimaryHardwareDev) {
Eric Laurent464d5b32011-06-17 21:29:58 -07005379 return thread;
5380 }
5381 }
5382 return NULL;
5383}
5384
5385uint32_t AudioFlinger::primaryOutputDevice_l()
5386{
5387 PlaybackThread *thread = primaryPlaybackThread_l();
5388
5389 if (thread == NULL) {
5390 return 0;
5391 }
5392
5393 return thread->device();
5394}
5395
5396
Eric Laurent65b65452010-06-01 23:49:17 -07005397// ----------------------------------------------------------------------------
5398// Effect management
5399// ----------------------------------------------------------------------------
5400
5401
Eric Laurent65b65452010-06-01 23:49:17 -07005402status_t AudioFlinger::queryNumberEffects(uint32_t *numEffects)
5403{
5404 Mutex::Autolock _l(mLock);
5405 return EffectQueryNumberEffects(numEffects);
5406}
5407
Eric Laurent53334cd2010-06-23 17:38:20 -07005408status_t AudioFlinger::queryEffect(uint32_t index, effect_descriptor_t *descriptor)
Eric Laurent65b65452010-06-01 23:49:17 -07005409{
5410 Mutex::Autolock _l(mLock);
Eric Laurent53334cd2010-06-23 17:38:20 -07005411 return EffectQueryEffect(index, descriptor);
Eric Laurent65b65452010-06-01 23:49:17 -07005412}
5413
5414status_t AudioFlinger::getEffectDescriptor(effect_uuid_t *pUuid, effect_descriptor_t *descriptor)
5415{
5416 Mutex::Autolock _l(mLock);
5417 return EffectGetDescriptor(pUuid, descriptor);
5418}
5419
Eric Laurentdf9b81c2010-07-02 08:12:41 -07005420
Eric Laurent65b65452010-06-01 23:49:17 -07005421sp<IEffect> AudioFlinger::createEffect(pid_t pid,
5422 effect_descriptor_t *pDesc,
5423 const sp<IEffectClient>& effectClient,
5424 int32_t priority,
Eric Laurent464d5b32011-06-17 21:29:58 -07005425 int io,
Eric Laurent65b65452010-06-01 23:49:17 -07005426 int sessionId,
5427 status_t *status,
5428 int *id,
5429 int *enabled)
5430{
5431 status_t lStatus = NO_ERROR;
5432 sp<EffectHandle> handle;
Eric Laurent65b65452010-06-01 23:49:17 -07005433 effect_descriptor_t desc;
5434 sp<Client> client;
5435 wp<Client> wclient;
5436
Steve Block71f2cf12011-10-20 11:56:00 +01005437 ALOGV("createEffect pid %d, client %p, priority %d, sessionId %d, io %d",
Eric Laurent464d5b32011-06-17 21:29:58 -07005438 pid, effectClient.get(), priority, sessionId, io);
Eric Laurent65b65452010-06-01 23:49:17 -07005439
5440 if (pDesc == NULL) {
5441 lStatus = BAD_VALUE;
5442 goto Exit;
5443 }
5444
Eric Laurent98c92592010-09-23 16:10:16 -07005445 // check audio settings permission for global effects
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005446 if (sessionId == AUDIO_SESSION_OUTPUT_MIX && !settingsAllowed()) {
Eric Laurent98c92592010-09-23 16:10:16 -07005447 lStatus = PERMISSION_DENIED;
5448 goto Exit;
5449 }
5450
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005451 // Session AUDIO_SESSION_OUTPUT_STAGE is reserved for output stage effects
Eric Laurent98c92592010-09-23 16:10:16 -07005452 // that can only be created by audio policy manager (running in same process)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005453 if (sessionId == AUDIO_SESSION_OUTPUT_STAGE && getpid() != pid) {
Eric Laurent98c92592010-09-23 16:10:16 -07005454 lStatus = PERMISSION_DENIED;
5455 goto Exit;
5456 }
5457
Eric Laurent464d5b32011-06-17 21:29:58 -07005458 if (io == 0) {
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005459 if (sessionId == AUDIO_SESSION_OUTPUT_STAGE) {
Eric Laurent98c92592010-09-23 16:10:16 -07005460 // output must be specified by AudioPolicyManager when using session
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005461 // AUDIO_SESSION_OUTPUT_STAGE
Eric Laurent98c92592010-09-23 16:10:16 -07005462 lStatus = BAD_VALUE;
5463 goto Exit;
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005464 } else if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
Eric Laurent98c92592010-09-23 16:10:16 -07005465 // if the output returned by getOutputForEffect() is removed before we lock the
Eric Laurent464d5b32011-06-17 21:29:58 -07005466 // mutex below, the call to checkPlaybackThread_l(io) below will detect it
Eric Laurent98c92592010-09-23 16:10:16 -07005467 // and we will exit safely
Eric Laurent464d5b32011-06-17 21:29:58 -07005468 io = AudioSystem::getOutputForEffect(&desc);
Eric Laurent98c92592010-09-23 16:10:16 -07005469 }
5470 }
5471
Eric Laurent65b65452010-06-01 23:49:17 -07005472 {
5473 Mutex::Autolock _l(mLock);
5474
Eric Laurentdf9b81c2010-07-02 08:12:41 -07005475
Eric Laurent65b65452010-06-01 23:49:17 -07005476 if (!EffectIsNullUuid(&pDesc->uuid)) {
5477 // if uuid is specified, request effect descriptor
5478 lStatus = EffectGetDescriptor(&pDesc->uuid, &desc);
5479 if (lStatus < 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00005480 ALOGW("createEffect() error %d from EffectGetDescriptor", lStatus);
Eric Laurent65b65452010-06-01 23:49:17 -07005481 goto Exit;
5482 }
5483 } else {
5484 // if uuid is not specified, look for an available implementation
5485 // of the required type in effect factory
5486 if (EffectIsNullUuid(&pDesc->type)) {
Steve Block8564c8d2012-01-05 23:22:43 +00005487 ALOGW("createEffect() no effect type");
Eric Laurent65b65452010-06-01 23:49:17 -07005488 lStatus = BAD_VALUE;
5489 goto Exit;
5490 }
5491 uint32_t numEffects = 0;
5492 effect_descriptor_t d;
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005493 d.flags = 0; // prevent compiler warning
Eric Laurent65b65452010-06-01 23:49:17 -07005494 bool found = false;
5495
5496 lStatus = EffectQueryNumberEffects(&numEffects);
5497 if (lStatus < 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00005498 ALOGW("createEffect() error %d from EffectQueryNumberEffects", lStatus);
Eric Laurent65b65452010-06-01 23:49:17 -07005499 goto Exit;
5500 }
Eric Laurent53334cd2010-06-23 17:38:20 -07005501 for (uint32_t i = 0; i < numEffects; i++) {
5502 lStatus = EffectQueryEffect(i, &desc);
Eric Laurent65b65452010-06-01 23:49:17 -07005503 if (lStatus < 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00005504 ALOGW("createEffect() error %d from EffectQueryEffect", lStatus);
Eric Laurent65b65452010-06-01 23:49:17 -07005505 continue;
5506 }
5507 if (memcmp(&desc.type, &pDesc->type, sizeof(effect_uuid_t)) == 0) {
5508 // If matching type found save effect descriptor. If the session is
5509 // 0 and the effect is not auxiliary, continue enumeration in case
5510 // an auxiliary version of this effect type is available
5511 found = true;
5512 memcpy(&d, &desc, sizeof(effect_descriptor_t));
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005513 if (sessionId != AUDIO_SESSION_OUTPUT_MIX ||
Eric Laurent65b65452010-06-01 23:49:17 -07005514 (desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
5515 break;
5516 }
5517 }
5518 }
5519 if (!found) {
5520 lStatus = BAD_VALUE;
Steve Block8564c8d2012-01-05 23:22:43 +00005521 ALOGW("createEffect() effect not found");
Eric Laurent65b65452010-06-01 23:49:17 -07005522 goto Exit;
5523 }
5524 // For same effect type, chose auxiliary version over insert version if
5525 // connect to output mix (Compliance to OpenSL ES)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005526 if (sessionId == AUDIO_SESSION_OUTPUT_MIX &&
Eric Laurent65b65452010-06-01 23:49:17 -07005527 (d.flags & EFFECT_FLAG_TYPE_MASK) != EFFECT_FLAG_TYPE_AUXILIARY) {
5528 memcpy(&desc, &d, sizeof(effect_descriptor_t));
5529 }
5530 }
5531
5532 // Do not allow auxiliary effects on a session different from 0 (output mix)
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005533 if (sessionId != AUDIO_SESSION_OUTPUT_MIX &&
Eric Laurent65b65452010-06-01 23:49:17 -07005534 (desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
5535 lStatus = INVALID_OPERATION;
5536 goto Exit;
5537 }
5538
Eric Laurentf82fccd2011-07-27 19:49:51 -07005539 // check recording permission for visualizer
5540 if ((memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) &&
5541 !recordingAllowed()) {
5542 lStatus = PERMISSION_DENIED;
5543 goto Exit;
5544 }
5545
Eric Laurent65b65452010-06-01 23:49:17 -07005546 // return effect descriptor
5547 memcpy(pDesc, &desc, sizeof(effect_descriptor_t));
5548
5549 // If output is not specified try to find a matching audio session ID in one of the
5550 // output threads.
Eric Laurent98c92592010-09-23 16:10:16 -07005551 // If output is 0 here, sessionId is neither SESSION_OUTPUT_STAGE nor SESSION_OUTPUT_MIX
5552 // because of code checking output when entering the function.
Eric Laurent464d5b32011-06-17 21:29:58 -07005553 // Note: io is never 0 when creating an effect on an input
5554 if (io == 0) {
Eric Laurent98c92592010-09-23 16:10:16 -07005555 // look for the thread where the specified audio session is present
5556 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
5557 if (mPlaybackThreads.valueAt(i)->hasAudioSession(sessionId) != 0) {
Eric Laurent464d5b32011-06-17 21:29:58 -07005558 io = mPlaybackThreads.keyAt(i);
Eric Laurent98c92592010-09-23 16:10:16 -07005559 break;
Eric Laurent493941b2010-07-28 01:32:47 -07005560 }
Eric Laurent65b65452010-06-01 23:49:17 -07005561 }
Eric Laurent464d5b32011-06-17 21:29:58 -07005562 if (io == 0) {
5563 for (size_t i = 0; i < mRecordThreads.size(); i++) {
5564 if (mRecordThreads.valueAt(i)->hasAudioSession(sessionId) != 0) {
5565 io = mRecordThreads.keyAt(i);
5566 break;
5567 }
5568 }
5569 }
Eric Laurent98c92592010-09-23 16:10:16 -07005570 // If no output thread contains the requested session ID, default to
5571 // first output. The effect chain will be moved to the correct output
5572 // thread when a track with the same session ID is created
Eric Laurent464d5b32011-06-17 21:29:58 -07005573 if (io == 0 && mPlaybackThreads.size()) {
5574 io = mPlaybackThreads.keyAt(0);
5575 }
Steve Block71f2cf12011-10-20 11:56:00 +01005576 ALOGV("createEffect() got io %d for effect %s", io, desc.name);
Eric Laurent464d5b32011-06-17 21:29:58 -07005577 }
5578 ThreadBase *thread = checkRecordThread_l(io);
5579 if (thread == NULL) {
5580 thread = checkPlaybackThread_l(io);
5581 if (thread == NULL) {
Steve Block3762c312012-01-06 19:20:56 +00005582 ALOGE("createEffect() unknown output thread");
Eric Laurent464d5b32011-06-17 21:29:58 -07005583 lStatus = BAD_VALUE;
5584 goto Exit;
Eric Laurent98c92592010-09-23 16:10:16 -07005585 }
Eric Laurent65b65452010-06-01 23:49:17 -07005586 }
Eric Laurent98c92592010-09-23 16:10:16 -07005587
Eric Laurent65b65452010-06-01 23:49:17 -07005588 wclient = mClients.valueFor(pid);
5589
5590 if (wclient != NULL) {
5591 client = wclient.promote();
5592 } else {
5593 client = new Client(this, pid);
5594 mClients.add(pid, client);
5595 }
5596
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005597 // create effect on selected output thread
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005598 handle = thread->createEffect_l(client, effectClient, priority, sessionId,
5599 &desc, enabled, &lStatus);
Eric Laurent65b65452010-06-01 23:49:17 -07005600 if (handle != 0 && id != NULL) {
5601 *id = handle->id();
5602 }
5603 }
5604
5605Exit:
5606 if(status) {
5607 *status = lStatus;
5608 }
5609 return handle;
5610}
5611
Eric Laurentf82fccd2011-07-27 19:49:51 -07005612status_t AudioFlinger::moveEffects(int sessionId, int srcOutput, int dstOutput)
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005613{
Steve Block71f2cf12011-10-20 11:56:00 +01005614 ALOGV("moveEffects() session %d, srcOutput %d, dstOutput %d",
Eric Laurentf82fccd2011-07-27 19:49:51 -07005615 sessionId, srcOutput, dstOutput);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005616 Mutex::Autolock _l(mLock);
5617 if (srcOutput == dstOutput) {
Steve Block8564c8d2012-01-05 23:22:43 +00005618 ALOGW("moveEffects() same dst and src outputs %d", dstOutput);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005619 return NO_ERROR;
Eric Laurent53334cd2010-06-23 17:38:20 -07005620 }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005621 PlaybackThread *srcThread = checkPlaybackThread_l(srcOutput);
5622 if (srcThread == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00005623 ALOGW("moveEffects() bad srcOutput %d", srcOutput);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005624 return BAD_VALUE;
Eric Laurent53334cd2010-06-23 17:38:20 -07005625 }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005626 PlaybackThread *dstThread = checkPlaybackThread_l(dstOutput);
5627 if (dstThread == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00005628 ALOGW("moveEffects() bad dstOutput %d", dstOutput);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005629 return BAD_VALUE;
5630 }
5631
5632 Mutex::Autolock _dl(dstThread->mLock);
5633 Mutex::Autolock _sl(srcThread->mLock);
Eric Laurentf82fccd2011-07-27 19:49:51 -07005634 moveEffectChain_l(sessionId, srcThread, dstThread, false);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005635
Eric Laurent53334cd2010-06-23 17:38:20 -07005636 return NO_ERROR;
5637}
5638
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005639// moveEffectChain_l must be called with both srcThread and dstThread mLocks held
Eric Laurentf82fccd2011-07-27 19:49:51 -07005640status_t AudioFlinger::moveEffectChain_l(int sessionId,
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005641 AudioFlinger::PlaybackThread *srcThread,
Eric Laurent493941b2010-07-28 01:32:47 -07005642 AudioFlinger::PlaybackThread *dstThread,
5643 bool reRegister)
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005644{
Steve Block71f2cf12011-10-20 11:56:00 +01005645 ALOGV("moveEffectChain_l() session %d from thread %p to thread %p",
Eric Laurentf82fccd2011-07-27 19:49:51 -07005646 sessionId, srcThread, dstThread);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005647
Eric Laurentf82fccd2011-07-27 19:49:51 -07005648 sp<EffectChain> chain = srcThread->getEffectChain_l(sessionId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005649 if (chain == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00005650 ALOGW("moveEffectChain_l() effect chain for session %d not on source thread %p",
Eric Laurentf82fccd2011-07-27 19:49:51 -07005651 sessionId, srcThread);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005652 return INVALID_OPERATION;
5653 }
5654
Eric Laurent493941b2010-07-28 01:32:47 -07005655 // remove chain first. This is useful only if reconfiguring effect chain on same output thread,
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005656 // so that a new chain is created with correct parameters when first effect is added. This is
Eric Laurent6fccbd02011-10-05 17:42:25 -07005657 // otherwise unnecessary as removeEffect_l() will remove the chain when last effect is
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005658 // removed.
5659 srcThread->removeEffectChain_l(chain);
5660
5661 // transfer all effects one by one so that new effect chain is created on new thread with
5662 // correct buffer sizes and audio parameters and effect engines reconfigured accordingly
Eric Laurent493941b2010-07-28 01:32:47 -07005663 int dstOutput = dstThread->id();
5664 sp<EffectChain> dstChain;
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005665 uint32_t strategy = 0; // prevent compiler warning
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005666 sp<EffectModule> effect = chain->getEffectFromId_l(0);
5667 while (effect != 0) {
5668 srcThread->removeEffect_l(effect);
5669 dstThread->addEffect_l(effect);
Eric Laurent6fccbd02011-10-05 17:42:25 -07005670 // removeEffect_l() has stopped the effect if it was active so it must be restarted
5671 if (effect->state() == EffectModule::ACTIVE ||
5672 effect->state() == EffectModule::STOPPING) {
5673 effect->start();
5674 }
Eric Laurent493941b2010-07-28 01:32:47 -07005675 // if the move request is not received from audio policy manager, the effect must be
5676 // re-registered with the new strategy and output
5677 if (dstChain == 0) {
5678 dstChain = effect->chain().promote();
5679 if (dstChain == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00005680 ALOGW("moveEffectChain_l() cannot get chain from effect %p", effect.get());
Eric Laurent493941b2010-07-28 01:32:47 -07005681 srcThread->addEffect_l(effect);
5682 return NO_INIT;
5683 }
5684 strategy = dstChain->strategy();
5685 }
5686 if (reRegister) {
5687 AudioSystem::unregisterEffect(effect->id());
5688 AudioSystem::registerEffect(&effect->desc(),
5689 dstOutput,
5690 strategy,
Eric Laurentf82fccd2011-07-27 19:49:51 -07005691 sessionId,
Eric Laurent493941b2010-07-28 01:32:47 -07005692 effect->id());
5693 }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005694 effect = chain->getEffectFromId_l(0);
5695 }
5696
5697 return NO_ERROR;
Eric Laurent53334cd2010-06-23 17:38:20 -07005698}
5699
Eric Laurent464d5b32011-06-17 21:29:58 -07005700
Eric Laurent65b65452010-06-01 23:49:17 -07005701// PlaybackThread::createEffect_l() must be called with AudioFlinger::mLock held
Eric Laurent464d5b32011-06-17 21:29:58 -07005702sp<AudioFlinger::EffectHandle> AudioFlinger::ThreadBase::createEffect_l(
Eric Laurent65b65452010-06-01 23:49:17 -07005703 const sp<AudioFlinger::Client>& client,
5704 const sp<IEffectClient>& effectClient,
5705 int32_t priority,
5706 int sessionId,
5707 effect_descriptor_t *desc,
5708 int *enabled,
5709 status_t *status
5710 )
5711{
5712 sp<EffectModule> effect;
5713 sp<EffectHandle> handle;
5714 status_t lStatus;
Eric Laurent65b65452010-06-01 23:49:17 -07005715 sp<EffectChain> chain;
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005716 bool chainCreated = false;
Eric Laurent65b65452010-06-01 23:49:17 -07005717 bool effectCreated = false;
Eric Laurent53334cd2010-06-23 17:38:20 -07005718 bool effectRegistered = false;
Eric Laurent65b65452010-06-01 23:49:17 -07005719
Eric Laurent464d5b32011-06-17 21:29:58 -07005720 lStatus = initCheck();
5721 if (lStatus != NO_ERROR) {
Steve Block8564c8d2012-01-05 23:22:43 +00005722 ALOGW("createEffect_l() Audio driver not initialized.");
Eric Laurent65b65452010-06-01 23:49:17 -07005723 goto Exit;
5724 }
5725
5726 // Do not allow effects with session ID 0 on direct output or duplicating threads
5727 // TODO: add rule for hw accelerated effects on direct outputs with non PCM format
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005728 if (sessionId == AUDIO_SESSION_OUTPUT_MIX && mType != MIXER) {
Steve Block8564c8d2012-01-05 23:22:43 +00005729 ALOGW("createEffect_l() Cannot add auxiliary effect %s to session %d",
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005730 desc->name, sessionId);
Eric Laurent65b65452010-06-01 23:49:17 -07005731 lStatus = BAD_VALUE;
5732 goto Exit;
5733 }
Eric Laurent464d5b32011-06-17 21:29:58 -07005734 // Only Pre processor effects are allowed on input threads and only on input threads
5735 if ((mType == RECORD &&
5736 (desc->flags & EFFECT_FLAG_TYPE_MASK) != EFFECT_FLAG_TYPE_PRE_PROC) ||
5737 (mType != RECORD &&
5738 (desc->flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC)) {
Steve Block8564c8d2012-01-05 23:22:43 +00005739 ALOGW("createEffect_l() effect %s (flags %08x) created on wrong thread type %d",
Eric Laurent464d5b32011-06-17 21:29:58 -07005740 desc->name, desc->flags, mType);
5741 lStatus = BAD_VALUE;
5742 goto Exit;
5743 }
Eric Laurent65b65452010-06-01 23:49:17 -07005744
Steve Block71f2cf12011-10-20 11:56:00 +01005745 ALOGV("createEffect_l() thread %p effect %s on session %d", this, desc->name, sessionId);
Eric Laurent65b65452010-06-01 23:49:17 -07005746
5747 { // scope for mLock
5748 Mutex::Autolock _l(mLock);
5749
5750 // check for existing effect chain with the requested audio session
5751 chain = getEffectChain_l(sessionId);
5752 if (chain == 0) {
5753 // create a new chain for this session
Steve Block71f2cf12011-10-20 11:56:00 +01005754 ALOGV("createEffect_l() new effect chain for session %d", sessionId);
Eric Laurent65b65452010-06-01 23:49:17 -07005755 chain = new EffectChain(this, sessionId);
5756 addEffectChain_l(chain);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005757 chain->setStrategy(getStrategyForSession_l(sessionId));
5758 chainCreated = true;
Eric Laurent65b65452010-06-01 23:49:17 -07005759 } else {
Eric Laurent76c40f72010-07-15 12:50:15 -07005760 effect = chain->getEffectFromDesc_l(desc);
Eric Laurent65b65452010-06-01 23:49:17 -07005761 }
5762
Glenn Kasten70ed6b72012-01-10 10:46:34 -08005763 ALOGV("createEffect_l() got effect %p on chain %p", effect.get(), chain.get());
Eric Laurent65b65452010-06-01 23:49:17 -07005764
5765 if (effect == 0) {
Eric Laurent464d5b32011-06-17 21:29:58 -07005766 int id = mAudioFlinger->nextUniqueId();
Eric Laurent53334cd2010-06-23 17:38:20 -07005767 // Check CPU and memory usage
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005768 lStatus = AudioSystem::registerEffect(desc, mId, chain->strategy(), sessionId, id);
Eric Laurent53334cd2010-06-23 17:38:20 -07005769 if (lStatus != NO_ERROR) {
5770 goto Exit;
5771 }
5772 effectRegistered = true;
Eric Laurent65b65452010-06-01 23:49:17 -07005773 // create a new effect module if none present in the chain
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005774 effect = new EffectModule(this, chain, desc, id, sessionId);
Eric Laurent65b65452010-06-01 23:49:17 -07005775 lStatus = effect->status();
5776 if (lStatus != NO_ERROR) {
5777 goto Exit;
5778 }
Eric Laurent76c40f72010-07-15 12:50:15 -07005779 lStatus = chain->addEffect_l(effect);
Eric Laurent65b65452010-06-01 23:49:17 -07005780 if (lStatus != NO_ERROR) {
5781 goto Exit;
5782 }
Eric Laurent53334cd2010-06-23 17:38:20 -07005783 effectCreated = true;
Eric Laurent65b65452010-06-01 23:49:17 -07005784
5785 effect->setDevice(mDevice);
Eric Laurent53334cd2010-06-23 17:38:20 -07005786 effect->setMode(mAudioFlinger->getMode());
Eric Laurent65b65452010-06-01 23:49:17 -07005787 }
5788 // create effect handle and connect it to effect module
5789 handle = new EffectHandle(effect, client, effectClient, priority);
5790 lStatus = effect->addHandle(handle);
5791 if (enabled) {
5792 *enabled = (int)effect->isEnabled();
5793 }
5794 }
5795
5796Exit:
5797 if (lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005798 Mutex::Autolock _l(mLock);
Eric Laurent53334cd2010-06-23 17:38:20 -07005799 if (effectCreated) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005800 chain->removeEffect_l(effect);
Eric Laurent65b65452010-06-01 23:49:17 -07005801 }
Eric Laurent53334cd2010-06-23 17:38:20 -07005802 if (effectRegistered) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005803 AudioSystem::unregisterEffect(effect->id());
5804 }
5805 if (chainCreated) {
5806 removeEffectChain_l(chain);
Eric Laurent53334cd2010-06-23 17:38:20 -07005807 }
Eric Laurent65b65452010-06-01 23:49:17 -07005808 handle.clear();
5809 }
5810
5811 if(status) {
5812 *status = lStatus;
5813 }
5814 return handle;
5815}
5816
Eric Laurent464d5b32011-06-17 21:29:58 -07005817sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId)
5818{
5819 sp<EffectModule> effect;
5820
5821 sp<EffectChain> chain = getEffectChain_l(sessionId);
5822 if (chain != 0) {
5823 effect = chain->getEffectFromId_l(effectId);
5824 }
5825 return effect;
5826}
5827
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005828// PlaybackThread::addEffect_l() must be called with AudioFlinger::mLock and
5829// PlaybackThread::mLock held
Eric Laurent464d5b32011-06-17 21:29:58 -07005830status_t AudioFlinger::ThreadBase::addEffect_l(const sp<EffectModule>& effect)
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005831{
5832 // check for existing effect chain with the requested audio session
5833 int sessionId = effect->sessionId();
5834 sp<EffectChain> chain = getEffectChain_l(sessionId);
5835 bool chainCreated = false;
5836
5837 if (chain == 0) {
5838 // create a new chain for this session
Steve Block71f2cf12011-10-20 11:56:00 +01005839 ALOGV("addEffect_l() new effect chain for session %d", sessionId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005840 chain = new EffectChain(this, sessionId);
5841 addEffectChain_l(chain);
5842 chain->setStrategy(getStrategyForSession_l(sessionId));
5843 chainCreated = true;
5844 }
Steve Block71f2cf12011-10-20 11:56:00 +01005845 ALOGV("addEffect_l() %p chain %p effect %p", this, chain.get(), effect.get());
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005846
5847 if (chain->getEffectFromId_l(effect->id()) != 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00005848 ALOGW("addEffect_l() %p effect %s already present in chain %p",
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005849 this, effect->desc().name, chain.get());
5850 return BAD_VALUE;
5851 }
5852
5853 status_t status = chain->addEffect_l(effect);
5854 if (status != NO_ERROR) {
5855 if (chainCreated) {
5856 removeEffectChain_l(chain);
5857 }
5858 return status;
5859 }
5860
5861 effect->setDevice(mDevice);
5862 effect->setMode(mAudioFlinger->getMode());
5863 return NO_ERROR;
5864}
5865
Eric Laurent464d5b32011-06-17 21:29:58 -07005866void AudioFlinger::ThreadBase::removeEffect_l(const sp<EffectModule>& effect) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005867
Steve Block71f2cf12011-10-20 11:56:00 +01005868 ALOGV("removeEffect_l() %p effect %p", this, effect.get());
Eric Laurent53334cd2010-06-23 17:38:20 -07005869 effect_descriptor_t desc = effect->desc();
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005870 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
5871 detachAuxEffect_l(effect->id());
5872 }
5873
5874 sp<EffectChain> chain = effect->chain().promote();
5875 if (chain != 0) {
5876 // remove effect chain if removing last effect
5877 if (chain->removeEffect_l(effect) == 0) {
5878 removeEffectChain_l(chain);
5879 }
5880 } else {
Steve Block8564c8d2012-01-05 23:22:43 +00005881 ALOGW("removeEffect_l() %p cannot promote chain for effect %p", this, effect.get());
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005882 }
5883}
5884
Eric Laurent464d5b32011-06-17 21:29:58 -07005885void AudioFlinger::ThreadBase::lockEffectChains_l(
5886 Vector<sp <AudioFlinger::EffectChain> >& effectChains)
5887{
5888 effectChains = mEffectChains;
5889 for (size_t i = 0; i < mEffectChains.size(); i++) {
5890 mEffectChains[i]->lock();
5891 }
5892}
5893
5894void AudioFlinger::ThreadBase::unlockEffectChains(
5895 Vector<sp <AudioFlinger::EffectChain> >& effectChains)
5896{
5897 for (size_t i = 0; i < effectChains.size(); i++) {
5898 effectChains[i]->unlock();
5899 }
5900}
5901
5902sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain(int sessionId)
5903{
5904 Mutex::Autolock _l(mLock);
5905 return getEffectChain_l(sessionId);
5906}
5907
5908sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain_l(int sessionId)
5909{
5910 sp<EffectChain> chain;
5911
5912 size_t size = mEffectChains.size();
5913 for (size_t i = 0; i < size; i++) {
5914 if (mEffectChains[i]->sessionId() == sessionId) {
5915 chain = mEffectChains[i];
5916 break;
5917 }
5918 }
5919 return chain;
5920}
5921
Glenn Kastenaccb1142012-01-04 11:00:47 -08005922void AudioFlinger::ThreadBase::setMode(audio_mode_t mode)
Eric Laurent464d5b32011-06-17 21:29:58 -07005923{
5924 Mutex::Autolock _l(mLock);
5925 size_t size = mEffectChains.size();
5926 for (size_t i = 0; i < size; i++) {
5927 mEffectChains[i]->setMode_l(mode);
5928 }
5929}
5930
5931void AudioFlinger::ThreadBase::disconnectEffect(const sp<EffectModule>& effect,
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005932 const wp<EffectHandle>& handle,
5933 bool unpiniflast) {
Eric Laurentf82fccd2011-07-27 19:49:51 -07005934
Eric Laurent53334cd2010-06-23 17:38:20 -07005935 Mutex::Autolock _l(mLock);
Steve Block71f2cf12011-10-20 11:56:00 +01005936 ALOGV("disconnectEffect() %p effect %p", this, effect.get());
Eric Laurent53334cd2010-06-23 17:38:20 -07005937 // delete the effect module if removing last handle on it
5938 if (effect->removeHandle(handle) == 0) {
Marco Nelissenc74b93f2011-08-02 13:33:41 -07005939 if (!effect->isPinned() || unpiniflast) {
5940 removeEffect_l(effect);
5941 AudioSystem::unregisterEffect(effect->id());
5942 }
Eric Laurent53334cd2010-06-23 17:38:20 -07005943 }
5944}
5945
Eric Laurent65b65452010-06-01 23:49:17 -07005946status_t AudioFlinger::PlaybackThread::addEffectChain_l(const sp<EffectChain>& chain)
5947{
5948 int session = chain->sessionId();
5949 int16_t *buffer = mMixBuffer;
Eric Laurent53334cd2010-06-23 17:38:20 -07005950 bool ownsBuffer = false;
Eric Laurent65b65452010-06-01 23:49:17 -07005951
Steve Block71f2cf12011-10-20 11:56:00 +01005952 ALOGV("addEffectChain_l() %p on thread %p for session %d", chain.get(), this, session);
Eric Laurent53334cd2010-06-23 17:38:20 -07005953 if (session > 0) {
Eric Laurent65b65452010-06-01 23:49:17 -07005954 // Only one effect chain can be present in direct output thread and it uses
5955 // the mix buffer as input
5956 if (mType != DIRECT) {
5957 size_t numSamples = mFrameCount * mChannelCount;
5958 buffer = new int16_t[numSamples];
5959 memset(buffer, 0, numSamples * sizeof(int16_t));
Steve Block71f2cf12011-10-20 11:56:00 +01005960 ALOGV("addEffectChain_l() creating new input buffer %p session %d", buffer, session);
Eric Laurent65b65452010-06-01 23:49:17 -07005961 ownsBuffer = true;
5962 }
Eric Laurent65b65452010-06-01 23:49:17 -07005963
Eric Laurent53334cd2010-06-23 17:38:20 -07005964 // Attach all tracks with same session ID to this chain.
5965 for (size_t i = 0; i < mTracks.size(); ++i) {
5966 sp<Track> track = mTracks[i];
5967 if (session == track->sessionId()) {
Steve Block71f2cf12011-10-20 11:56:00 +01005968 ALOGV("addEffectChain_l() track->setMainBuffer track %p buffer %p", track.get(), buffer);
Eric Laurent53334cd2010-06-23 17:38:20 -07005969 track->setMainBuffer(buffer);
Eric Laurent90681d62011-05-09 12:09:06 -07005970 chain->incTrackCnt();
Eric Laurent53334cd2010-06-23 17:38:20 -07005971 }
5972 }
5973
5974 // indicate all active tracks in the chain
5975 for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
5976 sp<Track> track = mActiveTracks[i].promote();
5977 if (track == 0) continue;
5978 if (session == track->sessionId()) {
Steve Block71f2cf12011-10-20 11:56:00 +01005979 ALOGV("addEffectChain_l() activating track %p on session %d", track.get(), session);
Eric Laurent90681d62011-05-09 12:09:06 -07005980 chain->incActiveTrackCnt();
Eric Laurent53334cd2010-06-23 17:38:20 -07005981 }
Eric Laurent65b65452010-06-01 23:49:17 -07005982 }
5983 }
5984
Eric Laurent53334cd2010-06-23 17:38:20 -07005985 chain->setInBuffer(buffer, ownsBuffer);
5986 chain->setOutBuffer(mMixBuffer);
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005987 // Effect chain for session AUDIO_SESSION_OUTPUT_STAGE is inserted at end of effect
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005988 // chains list in order to be processed last as it contains output stage effects
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005989 // Effect chain for session AUDIO_SESSION_OUTPUT_MIX is inserted before
5990 // session AUDIO_SESSION_OUTPUT_STAGE to be processed
Eric Laurent53334cd2010-06-23 17:38:20 -07005991 // after track specific effects and before output stage
Dima Zavin24fc2fb2011-04-19 22:30:36 -07005992 // It is therefore mandatory that AUDIO_SESSION_OUTPUT_MIX == 0 and
5993 // that AUDIO_SESSION_OUTPUT_STAGE < AUDIO_SESSION_OUTPUT_MIX
Eric Laurent8ed6ed02010-07-13 04:45:46 -07005994 // Effect chain for other sessions are inserted at beginning of effect
5995 // chains list to be processed before output mix effects. Relative order between other
5996 // sessions is not important
Eric Laurent53334cd2010-06-23 17:38:20 -07005997 size_t size = mEffectChains.size();
5998 size_t i = 0;
5999 for (i = 0; i < size; i++) {
6000 if (mEffectChains[i]->sessionId() < session) break;
Eric Laurent65b65452010-06-01 23:49:17 -07006001 }
Eric Laurent53334cd2010-06-23 17:38:20 -07006002 mEffectChains.insertAt(chain, i);
Eric Laurentf82fccd2011-07-27 19:49:51 -07006003 checkSuspendOnAddEffectChain_l(chain);
Eric Laurent65b65452010-06-01 23:49:17 -07006004
6005 return NO_ERROR;
6006}
6007
6008size_t AudioFlinger::PlaybackThread::removeEffectChain_l(const sp<EffectChain>& chain)
6009{
6010 int session = chain->sessionId();
6011
Steve Block71f2cf12011-10-20 11:56:00 +01006012 ALOGV("removeEffectChain_l() %p from thread %p for session %d", chain.get(), this, session);
Eric Laurent65b65452010-06-01 23:49:17 -07006013
6014 for (size_t i = 0; i < mEffectChains.size(); i++) {
6015 if (chain == mEffectChains[i]) {
6016 mEffectChains.removeAt(i);
Eric Laurent90681d62011-05-09 12:09:06 -07006017 // detach all active tracks from the chain
6018 for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
6019 sp<Track> track = mActiveTracks[i].promote();
6020 if (track == 0) continue;
6021 if (session == track->sessionId()) {
Steve Block71f2cf12011-10-20 11:56:00 +01006022 ALOGV("removeEffectChain_l(): stopping track on chain %p for session Id: %d",
Eric Laurent90681d62011-05-09 12:09:06 -07006023 chain.get(), session);
6024 chain->decActiveTrackCnt();
6025 }
6026 }
6027
Eric Laurent65b65452010-06-01 23:49:17 -07006028 // detach all tracks with same session ID from this chain
6029 for (size_t i = 0; i < mTracks.size(); ++i) {
6030 sp<Track> track = mTracks[i];
6031 if (session == track->sessionId()) {
6032 track->setMainBuffer(mMixBuffer);
Eric Laurent90681d62011-05-09 12:09:06 -07006033 chain->decTrackCnt();
Eric Laurent65b65452010-06-01 23:49:17 -07006034 }
6035 }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07006036 break;
Eric Laurent65b65452010-06-01 23:49:17 -07006037 }
6038 }
6039 return mEffectChains.size();
6040}
6041
Eric Laurent8ed6ed02010-07-13 04:45:46 -07006042status_t AudioFlinger::PlaybackThread::attachAuxEffect(
6043 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
Eric Laurent65b65452010-06-01 23:49:17 -07006044{
6045 Mutex::Autolock _l(mLock);
6046 return attachAuxEffect_l(track, EffectId);
6047}
6048
Eric Laurent8ed6ed02010-07-13 04:45:46 -07006049status_t AudioFlinger::PlaybackThread::attachAuxEffect_l(
6050 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
Eric Laurent65b65452010-06-01 23:49:17 -07006051{
6052 status_t status = NO_ERROR;
6053
6054 if (EffectId == 0) {
6055 track->setAuxBuffer(0, NULL);
6056 } else {
Dima Zavin24fc2fb2011-04-19 22:30:36 -07006057 // Auxiliary effects are always in audio session AUDIO_SESSION_OUTPUT_MIX
6058 sp<EffectModule> effect = getEffect_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
Eric Laurent65b65452010-06-01 23:49:17 -07006059 if (effect != 0) {
6060 if ((effect->desc().flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6061 track->setAuxBuffer(EffectId, (int32_t *)effect->inBuffer());
6062 } else {
6063 status = INVALID_OPERATION;
6064 }
6065 } else {
6066 status = BAD_VALUE;
6067 }
6068 }
6069 return status;
6070}
6071
6072void AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId)
6073{
6074 for (size_t i = 0; i < mTracks.size(); ++i) {
6075 sp<Track> track = mTracks[i];
6076 if (track->auxEffectId() == effectId) {
6077 attachAuxEffect_l(track, 0);
6078 }
6079 }
6080}
6081
Eric Laurent464d5b32011-06-17 21:29:58 -07006082status_t AudioFlinger::RecordThread::addEffectChain_l(const sp<EffectChain>& chain)
6083{
6084 // only one chain per input thread
6085 if (mEffectChains.size() != 0) {
6086 return INVALID_OPERATION;
6087 }
Steve Block71f2cf12011-10-20 11:56:00 +01006088 ALOGV("addEffectChain_l() %p on thread %p", chain.get(), this);
Eric Laurent464d5b32011-06-17 21:29:58 -07006089
6090 chain->setInBuffer(NULL);
6091 chain->setOutBuffer(NULL);
6092
Eric Laurentf82fccd2011-07-27 19:49:51 -07006093 checkSuspendOnAddEffectChain_l(chain);
6094
Eric Laurent464d5b32011-06-17 21:29:58 -07006095 mEffectChains.add(chain);
6096
6097 return NO_ERROR;
6098}
6099
6100size_t AudioFlinger::RecordThread::removeEffectChain_l(const sp<EffectChain>& chain)
6101{
Steve Block71f2cf12011-10-20 11:56:00 +01006102 ALOGV("removeEffectChain_l() %p from thread %p", chain.get(), this);
Steve Block8564c8d2012-01-05 23:22:43 +00006103 ALOGW_IF(mEffectChains.size() != 1,
Eric Laurent464d5b32011-06-17 21:29:58 -07006104 "removeEffectChain_l() %p invalid chain size %d on thread %p",
6105 chain.get(), mEffectChains.size(), this);
6106 if (mEffectChains.size() == 1) {
6107 mEffectChains.removeAt(0);
6108 }
6109 return 0;
6110}
6111
Eric Laurent65b65452010-06-01 23:49:17 -07006112// ----------------------------------------------------------------------------
6113// EffectModule implementation
6114// ----------------------------------------------------------------------------
6115
6116#undef LOG_TAG
6117#define LOG_TAG "AudioFlinger::EffectModule"
6118
6119AudioFlinger::EffectModule::EffectModule(const wp<ThreadBase>& wThread,
6120 const wp<AudioFlinger::EffectChain>& chain,
6121 effect_descriptor_t *desc,
6122 int id,
6123 int sessionId)
6124 : mThread(wThread), mChain(chain), mId(id), mSessionId(sessionId), mEffectInterface(NULL),
Eric Laurentf82fccd2011-07-27 19:49:51 -07006125 mStatus(NO_INIT), mState(IDLE), mSuspended(false)
Eric Laurent65b65452010-06-01 23:49:17 -07006126{
Steve Block71f2cf12011-10-20 11:56:00 +01006127 ALOGV("Constructor %p", this);
Eric Laurent65b65452010-06-01 23:49:17 -07006128 int lStatus;
6129 sp<ThreadBase> thread = mThread.promote();
6130 if (thread == 0) {
6131 return;
6132 }
Eric Laurent65b65452010-06-01 23:49:17 -07006133
6134 memcpy(&mDescriptor, desc, sizeof(effect_descriptor_t));
6135
6136 // create effect engine from effect factory
Eric Laurent464d5b32011-06-17 21:29:58 -07006137 mStatus = EffectCreate(&desc->uuid, sessionId, thread->id(), &mEffectInterface);
Eric Laurent53334cd2010-06-23 17:38:20 -07006138
Eric Laurent65b65452010-06-01 23:49:17 -07006139 if (mStatus != NO_ERROR) {
6140 return;
6141 }
6142 lStatus = init();
6143 if (lStatus < 0) {
6144 mStatus = lStatus;
6145 goto Error;
6146 }
6147
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006148 if (mSessionId > AUDIO_SESSION_OUTPUT_MIX) {
6149 mPinned = true;
6150 }
Steve Block71f2cf12011-10-20 11:56:00 +01006151 ALOGV("Constructor success name %s, Interface %p", mDescriptor.name, mEffectInterface);
Eric Laurent65b65452010-06-01 23:49:17 -07006152 return;
6153Error:
6154 EffectRelease(mEffectInterface);
6155 mEffectInterface = NULL;
Steve Block71f2cf12011-10-20 11:56:00 +01006156 ALOGV("Constructor Error %d", mStatus);
Eric Laurent65b65452010-06-01 23:49:17 -07006157}
6158
6159AudioFlinger::EffectModule::~EffectModule()
6160{
Steve Block71f2cf12011-10-20 11:56:00 +01006161 ALOGV("Destructor %p", this);
Eric Laurent65b65452010-06-01 23:49:17 -07006162 if (mEffectInterface != NULL) {
Eric Laurent464d5b32011-06-17 21:29:58 -07006163 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
6164 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
6165 sp<ThreadBase> thread = mThread.promote();
6166 if (thread != 0) {
Eric Laurent828b9772011-08-07 16:32:26 -07006167 audio_stream_t *stream = thread->stream();
6168 if (stream != NULL) {
6169 stream->remove_audio_effect(stream, mEffectInterface);
6170 }
Eric Laurent464d5b32011-06-17 21:29:58 -07006171 }
6172 }
Eric Laurent65b65452010-06-01 23:49:17 -07006173 // release effect engine
6174 EffectRelease(mEffectInterface);
6175 }
6176}
6177
6178status_t AudioFlinger::EffectModule::addHandle(sp<EffectHandle>& handle)
6179{
6180 status_t status;
6181
6182 Mutex::Autolock _l(mLock);
6183 // First handle in mHandles has highest priority and controls the effect module
6184 int priority = handle->priority();
6185 size_t size = mHandles.size();
6186 sp<EffectHandle> h;
6187 size_t i;
6188 for (i = 0; i < size; i++) {
6189 h = mHandles[i].promote();
6190 if (h == 0) continue;
6191 if (h->priority() <= priority) break;
6192 }
6193 // if inserted in first place, move effect control from previous owner to this handle
6194 if (i == 0) {
Eric Laurentf82fccd2011-07-27 19:49:51 -07006195 bool enabled = false;
Eric Laurent65b65452010-06-01 23:49:17 -07006196 if (h != 0) {
Eric Laurentf82fccd2011-07-27 19:49:51 -07006197 enabled = h->enabled();
6198 h->setControl(false/*hasControl*/, true /*signal*/, enabled /*enabled*/);
Eric Laurent65b65452010-06-01 23:49:17 -07006199 }
Eric Laurentf82fccd2011-07-27 19:49:51 -07006200 handle->setControl(true /*hasControl*/, false /*signal*/, enabled /*enabled*/);
Eric Laurent65b65452010-06-01 23:49:17 -07006201 status = NO_ERROR;
6202 } else {
6203 status = ALREADY_EXISTS;
6204 }
Steve Block71f2cf12011-10-20 11:56:00 +01006205 ALOGV("addHandle() %p added handle %p in position %d", this, handle.get(), i);
Eric Laurent65b65452010-06-01 23:49:17 -07006206 mHandles.insertAt(handle, i);
6207 return status;
6208}
6209
6210size_t AudioFlinger::EffectModule::removeHandle(const wp<EffectHandle>& handle)
6211{
6212 Mutex::Autolock _l(mLock);
6213 size_t size = mHandles.size();
6214 size_t i;
6215 for (i = 0; i < size; i++) {
6216 if (mHandles[i] == handle) break;
6217 }
6218 if (i == size) {
6219 return size;
6220 }
Steve Block71f2cf12011-10-20 11:56:00 +01006221 ALOGV("removeHandle() %p removed handle %p in position %d", this, handle.unsafe_get(), i);
Eric Laurentf82fccd2011-07-27 19:49:51 -07006222
6223 bool enabled = false;
6224 EffectHandle *hdl = handle.unsafe_get();
6225 if (hdl) {
Steve Block71f2cf12011-10-20 11:56:00 +01006226 ALOGV("removeHandle() unsafe_get OK");
Eric Laurentf82fccd2011-07-27 19:49:51 -07006227 enabled = hdl->enabled();
6228 }
Eric Laurent65b65452010-06-01 23:49:17 -07006229 mHandles.removeAt(i);
6230 size = mHandles.size();
6231 // if removed from first place, move effect control from this handle to next in line
6232 if (i == 0 && size != 0) {
6233 sp<EffectHandle> h = mHandles[0].promote();
6234 if (h != 0) {
Eric Laurentf82fccd2011-07-27 19:49:51 -07006235 h->setControl(true /*hasControl*/, true /*signal*/ , enabled /*enabled*/);
Eric Laurent65b65452010-06-01 23:49:17 -07006236 }
6237 }
6238
Eric Laurent21b5c472011-07-26 20:54:46 -07006239 // Prevent calls to process() and other functions on effect interface from now on.
6240 // The effect engine will be released by the destructor when the last strong reference on
6241 // this object is released which can happen after next process is called.
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006242 if (size == 0 && !mPinned) {
Eric Laurent21b5c472011-07-26 20:54:46 -07006243 mState = DESTROYED;
Eric Laurent4fd3ecc2010-09-28 14:09:57 -07006244 }
6245
Eric Laurent65b65452010-06-01 23:49:17 -07006246 return size;
6247}
6248
Eric Laurentf82fccd2011-07-27 19:49:51 -07006249sp<AudioFlinger::EffectHandle> AudioFlinger::EffectModule::controlHandle()
6250{
6251 Mutex::Autolock _l(mLock);
6252 sp<EffectHandle> handle;
6253 if (mHandles.size() != 0) {
6254 handle = mHandles[0].promote();
6255 }
6256 return handle;
6257}
6258
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006259void AudioFlinger::EffectModule::disconnect(const wp<EffectHandle>& handle, bool unpiniflast)
Eric Laurent65b65452010-06-01 23:49:17 -07006260{
Steve Block71f2cf12011-10-20 11:56:00 +01006261 ALOGV("disconnect() %p handle %p ", this, handle.unsafe_get());
Eric Laurent65b65452010-06-01 23:49:17 -07006262 // keep a strong reference on this EffectModule to avoid calling the
6263 // destructor before we exit
6264 sp<EffectModule> keep(this);
Eric Laurent53334cd2010-06-23 17:38:20 -07006265 {
6266 sp<ThreadBase> thread = mThread.promote();
6267 if (thread != 0) {
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006268 thread->disconnectEffect(keep, handle, unpiniflast);
Eric Laurent65b65452010-06-01 23:49:17 -07006269 }
6270 }
6271}
6272
Eric Laurent7d850f22010-07-09 13:34:17 -07006273void AudioFlinger::EffectModule::updateState() {
6274 Mutex::Autolock _l(mLock);
6275
6276 switch (mState) {
6277 case RESTART:
6278 reset_l();
6279 // FALL THROUGH
6280
6281 case STARTING:
6282 // clear auxiliary effect input buffer for next accumulation
6283 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
6284 memset(mConfig.inputCfg.buffer.raw,
6285 0,
6286 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
6287 }
6288 start_l();
6289 mState = ACTIVE;
6290 break;
6291 case STOPPING:
6292 stop_l();
6293 mDisableWaitCnt = mMaxDisableWaitCnt;
6294 mState = STOPPED;
6295 break;
6296 case STOPPED:
6297 // mDisableWaitCnt is forced to 1 by process() when the engine indicates the end of the
6298 // turn off sequence.
6299 if (--mDisableWaitCnt == 0) {
6300 reset_l();
6301 mState = IDLE;
6302 }
6303 break;
Eric Laurent21b5c472011-07-26 20:54:46 -07006304 default: //IDLE , ACTIVE, DESTROYED
Eric Laurent7d850f22010-07-09 13:34:17 -07006305 break;
6306 }
6307}
6308
Eric Laurent65b65452010-06-01 23:49:17 -07006309void AudioFlinger::EffectModule::process()
6310{
6311 Mutex::Autolock _l(mLock);
6312
Eric Laurent21b5c472011-07-26 20:54:46 -07006313 if (mState == DESTROYED || mEffectInterface == NULL ||
Eric Laurent7d850f22010-07-09 13:34:17 -07006314 mConfig.inputCfg.buffer.raw == NULL ||
6315 mConfig.outputCfg.buffer.raw == NULL) {
Eric Laurent65b65452010-06-01 23:49:17 -07006316 return;
6317 }
6318
Eric Laurenta92ebfa2010-08-31 13:50:07 -07006319 if (isProcessEnabled()) {
Eric Laurent65b65452010-06-01 23:49:17 -07006320 // do 32 bit to 16 bit conversion for auxiliary effect input buffer
6321 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Glenn Kasten490909d2011-12-15 09:52:39 -08006322 ditherAndClamp(mConfig.inputCfg.buffer.s32,
Eric Laurent65b65452010-06-01 23:49:17 -07006323 mConfig.inputCfg.buffer.s32,
Eric Laurent8ed6ed02010-07-13 04:45:46 -07006324 mConfig.inputCfg.buffer.frameCount/2);
Eric Laurent65b65452010-06-01 23:49:17 -07006325 }
6326
Eric Laurent65b65452010-06-01 23:49:17 -07006327 // do the actual processing in the effect engine
Eric Laurent7d850f22010-07-09 13:34:17 -07006328 int ret = (*mEffectInterface)->process(mEffectInterface,
6329 &mConfig.inputCfg.buffer,
6330 &mConfig.outputCfg.buffer);
6331
6332 // force transition to IDLE state when engine is ready
6333 if (mState == STOPPED && ret == -ENODATA) {
6334 mDisableWaitCnt = 1;
6335 }
Eric Laurent65b65452010-06-01 23:49:17 -07006336
6337 // clear auxiliary effect input buffer for next accumulation
6338 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Eric Laurent67b5ed32011-01-19 18:36:13 -08006339 memset(mConfig.inputCfg.buffer.raw, 0,
6340 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
Eric Laurent65b65452010-06-01 23:49:17 -07006341 }
6342 } else if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_INSERT &&
Eric Laurent67b5ed32011-01-19 18:36:13 -08006343 mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
6344 // If an insert effect is idle and input buffer is different from output buffer,
6345 // accumulate input onto output
Eric Laurent65b65452010-06-01 23:49:17 -07006346 sp<EffectChain> chain = mChain.promote();
Eric Laurent90681d62011-05-09 12:09:06 -07006347 if (chain != 0 && chain->activeTrackCnt() != 0) {
Eric Laurent67b5ed32011-01-19 18:36:13 -08006348 size_t frameCnt = mConfig.inputCfg.buffer.frameCount * 2; //always stereo here
6349 int16_t *in = mConfig.inputCfg.buffer.s16;
6350 int16_t *out = mConfig.outputCfg.buffer.s16;
6351 for (size_t i = 0; i < frameCnt; i++) {
6352 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
Eric Laurent65b65452010-06-01 23:49:17 -07006353 }
Eric Laurent65b65452010-06-01 23:49:17 -07006354 }
6355 }
6356}
6357
Eric Laurentdf9b81c2010-07-02 08:12:41 -07006358void AudioFlinger::EffectModule::reset_l()
Eric Laurent65b65452010-06-01 23:49:17 -07006359{
6360 if (mEffectInterface == NULL) {
6361 return;
6362 }
6363 (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_RESET, 0, NULL, 0, NULL);
6364}
6365
6366status_t AudioFlinger::EffectModule::configure()
6367{
6368 uint32_t channels;
6369 if (mEffectInterface == NULL) {
6370 return NO_INIT;
6371 }
6372
6373 sp<ThreadBase> thread = mThread.promote();
6374 if (thread == 0) {
6375 return DEAD_OBJECT;
6376 }
6377
6378 // TODO: handle configuration of effects replacing track process
6379 if (thread->channelCount() == 1) {
Eric Laurent0fb66c22011-05-17 19:16:02 -07006380 channels = AUDIO_CHANNEL_OUT_MONO;
Eric Laurent65b65452010-06-01 23:49:17 -07006381 } else {
Eric Laurent0fb66c22011-05-17 19:16:02 -07006382 channels = AUDIO_CHANNEL_OUT_STEREO;
Eric Laurent65b65452010-06-01 23:49:17 -07006383 }
6384
6385 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Eric Laurent0fb66c22011-05-17 19:16:02 -07006386 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_MONO;
Eric Laurent65b65452010-06-01 23:49:17 -07006387 } else {
6388 mConfig.inputCfg.channels = channels;
6389 }
6390 mConfig.outputCfg.channels = channels;
Eric Laurent0fb66c22011-05-17 19:16:02 -07006391 mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
6392 mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
Eric Laurent65b65452010-06-01 23:49:17 -07006393 mConfig.inputCfg.samplingRate = thread->sampleRate();
6394 mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
6395 mConfig.inputCfg.bufferProvider.cookie = NULL;
6396 mConfig.inputCfg.bufferProvider.getBuffer = NULL;
6397 mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
6398 mConfig.outputCfg.bufferProvider.cookie = NULL;
6399 mConfig.outputCfg.bufferProvider.getBuffer = NULL;
6400 mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
6401 mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
6402 // Insert effect:
Dima Zavin24fc2fb2011-04-19 22:30:36 -07006403 // - in session AUDIO_SESSION_OUTPUT_MIX or AUDIO_SESSION_OUTPUT_STAGE,
Eric Laurent8ed6ed02010-07-13 04:45:46 -07006404 // always overwrites output buffer: input buffer == output buffer
Eric Laurent65b65452010-06-01 23:49:17 -07006405 // - in other sessions:
6406 // last effect in the chain accumulates in output buffer: input buffer != output buffer
6407 // other effect: overwrites output buffer: input buffer == output buffer
6408 // Auxiliary effect:
6409 // accumulates in output buffer: input buffer != output buffer
6410 // Therefore: accumulate <=> input buffer != output buffer
6411 if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
6412 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
6413 } else {
6414 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
6415 }
6416 mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
6417 mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
6418 mConfig.inputCfg.buffer.frameCount = thread->frameCount();
6419 mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
6420
Steve Block71f2cf12011-10-20 11:56:00 +01006421 ALOGV("configure() %p thread %p buffer %p framecount %d",
Eric Laurent8ed6ed02010-07-13 04:45:46 -07006422 this, thread.get(), mConfig.inputCfg.buffer.raw, mConfig.inputCfg.buffer.frameCount);
6423
Eric Laurent65b65452010-06-01 23:49:17 -07006424 status_t cmdStatus;
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006425 uint32_t size = sizeof(int);
6426 status_t status = (*mEffectInterface)->command(mEffectInterface,
Eric Laurent4abf8822011-12-16 15:30:36 -08006427 EFFECT_CMD_SET_CONFIG,
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006428 sizeof(effect_config_t),
6429 &mConfig,
6430 &size,
6431 &cmdStatus);
Eric Laurent65b65452010-06-01 23:49:17 -07006432 if (status == 0) {
6433 status = cmdStatus;
6434 }
Eric Laurent7d850f22010-07-09 13:34:17 -07006435
6436 mMaxDisableWaitCnt = (MAX_DISABLE_TIME_MS * mConfig.outputCfg.samplingRate) /
6437 (1000 * mConfig.outputCfg.buffer.frameCount);
6438
Eric Laurent65b65452010-06-01 23:49:17 -07006439 return status;
6440}
6441
6442status_t AudioFlinger::EffectModule::init()
6443{
Eric Laurentdf9b81c2010-07-02 08:12:41 -07006444 Mutex::Autolock _l(mLock);
Eric Laurent65b65452010-06-01 23:49:17 -07006445 if (mEffectInterface == NULL) {
6446 return NO_INIT;
6447 }
6448 status_t cmdStatus;
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006449 uint32_t size = sizeof(status_t);
6450 status_t status = (*mEffectInterface)->command(mEffectInterface,
6451 EFFECT_CMD_INIT,
6452 0,
6453 NULL,
6454 &size,
6455 &cmdStatus);
Eric Laurent65b65452010-06-01 23:49:17 -07006456 if (status == 0) {
6457 status = cmdStatus;
6458 }
6459 return status;
6460}
6461
Eric Laurent6fccbd02011-10-05 17:42:25 -07006462status_t AudioFlinger::EffectModule::start()
6463{
6464 Mutex::Autolock _l(mLock);
6465 return start_l();
6466}
6467
Eric Laurentdf9b81c2010-07-02 08:12:41 -07006468status_t AudioFlinger::EffectModule::start_l()
Eric Laurent65b65452010-06-01 23:49:17 -07006469{
6470 if (mEffectInterface == NULL) {
6471 return NO_INIT;
6472 }
6473 status_t cmdStatus;
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006474 uint32_t size = sizeof(status_t);
6475 status_t status = (*mEffectInterface)->command(mEffectInterface,
6476 EFFECT_CMD_ENABLE,
6477 0,
6478 NULL,
6479 &size,
6480 &cmdStatus);
Eric Laurent65b65452010-06-01 23:49:17 -07006481 if (status == 0) {
6482 status = cmdStatus;
6483 }
Eric Laurent464d5b32011-06-17 21:29:58 -07006484 if (status == 0 &&
6485 ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
6486 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
6487 sp<ThreadBase> thread = mThread.promote();
6488 if (thread != 0) {
Eric Laurent828b9772011-08-07 16:32:26 -07006489 audio_stream_t *stream = thread->stream();
6490 if (stream != NULL) {
6491 stream->add_audio_effect(stream, mEffectInterface);
6492 }
Eric Laurent464d5b32011-06-17 21:29:58 -07006493 }
6494 }
Eric Laurent65b65452010-06-01 23:49:17 -07006495 return status;
6496}
6497
Eric Laurent21b5c472011-07-26 20:54:46 -07006498status_t AudioFlinger::EffectModule::stop()
6499{
6500 Mutex::Autolock _l(mLock);
6501 return stop_l();
6502}
6503
Eric Laurentdf9b81c2010-07-02 08:12:41 -07006504status_t AudioFlinger::EffectModule::stop_l()
Eric Laurent65b65452010-06-01 23:49:17 -07006505{
6506 if (mEffectInterface == NULL) {
6507 return NO_INIT;
6508 }
6509 status_t cmdStatus;
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006510 uint32_t size = sizeof(status_t);
6511 status_t status = (*mEffectInterface)->command(mEffectInterface,
6512 EFFECT_CMD_DISABLE,
6513 0,
6514 NULL,
6515 &size,
6516 &cmdStatus);
Eric Laurent65b65452010-06-01 23:49:17 -07006517 if (status == 0) {
6518 status = cmdStatus;
6519 }
Eric Laurent464d5b32011-06-17 21:29:58 -07006520 if (status == 0 &&
6521 ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
6522 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
6523 sp<ThreadBase> thread = mThread.promote();
6524 if (thread != 0) {
Eric Laurent828b9772011-08-07 16:32:26 -07006525 audio_stream_t *stream = thread->stream();
6526 if (stream != NULL) {
6527 stream->remove_audio_effect(stream, mEffectInterface);
6528 }
Eric Laurent464d5b32011-06-17 21:29:58 -07006529 }
6530 }
Eric Laurent65b65452010-06-01 23:49:17 -07006531 return status;
6532}
6533
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006534status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
6535 uint32_t cmdSize,
6536 void *pCmdData,
6537 uint32_t *replySize,
6538 void *pReplyData)
Eric Laurent65b65452010-06-01 23:49:17 -07006539{
Eric Laurentdf9b81c2010-07-02 08:12:41 -07006540 Mutex::Autolock _l(mLock);
Steve Block71f2cf12011-10-20 11:56:00 +01006541// ALOGV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
Eric Laurent65b65452010-06-01 23:49:17 -07006542
Eric Laurent21b5c472011-07-26 20:54:46 -07006543 if (mState == DESTROYED || mEffectInterface == NULL) {
Eric Laurent65b65452010-06-01 23:49:17 -07006544 return NO_INIT;
6545 }
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006546 status_t status = (*mEffectInterface)->command(mEffectInterface,
6547 cmdCode,
6548 cmdSize,
6549 pCmdData,
6550 replySize,
6551 pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07006552 if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006553 uint32_t size = (replySize == NULL) ? 0 : *replySize;
Eric Laurent65b65452010-06-01 23:49:17 -07006554 for (size_t i = 1; i < mHandles.size(); i++) {
6555 sp<EffectHandle> h = mHandles[i].promote();
6556 if (h != 0) {
6557 h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
6558 }
6559 }
6560 }
6561 return status;
6562}
6563
6564status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
6565{
Eric Laurent6752ec82011-08-10 10:37:50 -07006566
Eric Laurent65b65452010-06-01 23:49:17 -07006567 Mutex::Autolock _l(mLock);
Steve Block71f2cf12011-10-20 11:56:00 +01006568 ALOGV("setEnabled %p enabled %d", this, enabled);
Eric Laurent65b65452010-06-01 23:49:17 -07006569
6570 if (enabled != isEnabled()) {
Eric Laurent6752ec82011-08-10 10:37:50 -07006571 status_t status = AudioSystem::setEffectEnabled(mId, enabled);
6572 if (enabled && status != NO_ERROR) {
6573 return status;
6574 }
6575
Eric Laurent65b65452010-06-01 23:49:17 -07006576 switch (mState) {
6577 // going from disabled to enabled
6578 case IDLE:
Eric Laurent7d850f22010-07-09 13:34:17 -07006579 mState = STARTING;
6580 break;
6581 case STOPPED:
6582 mState = RESTART;
Eric Laurent65b65452010-06-01 23:49:17 -07006583 break;
6584 case STOPPING:
6585 mState = ACTIVE;
6586 break;
Eric Laurent65b65452010-06-01 23:49:17 -07006587
6588 // going from enabled to disabled
Eric Laurent7d850f22010-07-09 13:34:17 -07006589 case RESTART:
Eric Laurenta92ebfa2010-08-31 13:50:07 -07006590 mState = STOPPED;
6591 break;
Eric Laurent65b65452010-06-01 23:49:17 -07006592 case STARTING:
Eric Laurent7d850f22010-07-09 13:34:17 -07006593 mState = IDLE;
Eric Laurent65b65452010-06-01 23:49:17 -07006594 break;
6595 case ACTIVE:
6596 mState = STOPPING;
6597 break;
Eric Laurent21b5c472011-07-26 20:54:46 -07006598 case DESTROYED:
6599 return NO_ERROR; // simply ignore as we are being destroyed
Eric Laurent65b65452010-06-01 23:49:17 -07006600 }
6601 for (size_t i = 1; i < mHandles.size(); i++) {
6602 sp<EffectHandle> h = mHandles[i].promote();
6603 if (h != 0) {
6604 h->setEnabled(enabled);
6605 }
6606 }
6607 }
6608 return NO_ERROR;
6609}
6610
6611bool AudioFlinger::EffectModule::isEnabled()
6612{
6613 switch (mState) {
Eric Laurent7d850f22010-07-09 13:34:17 -07006614 case RESTART:
Eric Laurent65b65452010-06-01 23:49:17 -07006615 case STARTING:
6616 case ACTIVE:
6617 return true;
6618 case IDLE:
6619 case STOPPING:
6620 case STOPPED:
Eric Laurent21b5c472011-07-26 20:54:46 -07006621 case DESTROYED:
Eric Laurent65b65452010-06-01 23:49:17 -07006622 default:
6623 return false;
6624 }
6625}
6626
Eric Laurenta92ebfa2010-08-31 13:50:07 -07006627bool AudioFlinger::EffectModule::isProcessEnabled()
6628{
6629 switch (mState) {
6630 case RESTART:
6631 case ACTIVE:
6632 case STOPPING:
6633 case STOPPED:
6634 return true;
6635 case IDLE:
6636 case STARTING:
Eric Laurent21b5c472011-07-26 20:54:46 -07006637 case DESTROYED:
Eric Laurenta92ebfa2010-08-31 13:50:07 -07006638 default:
6639 return false;
6640 }
6641}
6642
Eric Laurent65b65452010-06-01 23:49:17 -07006643status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
6644{
Eric Laurentdf9b81c2010-07-02 08:12:41 -07006645 Mutex::Autolock _l(mLock);
Eric Laurent65b65452010-06-01 23:49:17 -07006646 status_t status = NO_ERROR;
6647
6648 // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
6649 // if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
Eric Laurenta92ebfa2010-08-31 13:50:07 -07006650 if (isProcessEnabled() &&
Eric Laurent0d7e0482010-07-19 06:24:46 -07006651 ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL ||
6652 (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_IND)) {
Eric Laurent65b65452010-06-01 23:49:17 -07006653 status_t cmdStatus;
6654 uint32_t volume[2];
6655 uint32_t *pVolume = NULL;
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006656 uint32_t size = sizeof(volume);
Eric Laurent65b65452010-06-01 23:49:17 -07006657 volume[0] = *left;
6658 volume[1] = *right;
6659 if (controller) {
6660 pVolume = volume;
6661 }
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006662 status = (*mEffectInterface)->command(mEffectInterface,
6663 EFFECT_CMD_SET_VOLUME,
6664 size,
6665 volume,
6666 &size,
6667 pVolume);
Eric Laurent65b65452010-06-01 23:49:17 -07006668 if (controller && status == NO_ERROR && size == sizeof(volume)) {
6669 *left = volume[0];
6670 *right = volume[1];
6671 }
6672 }
6673 return status;
6674}
6675
6676status_t AudioFlinger::EffectModule::setDevice(uint32_t device)
6677{
Eric Laurentdf9b81c2010-07-02 08:12:41 -07006678 Mutex::Autolock _l(mLock);
Eric Laurent65b65452010-06-01 23:49:17 -07006679 status_t status = NO_ERROR;
Eric Laurent464d5b32011-06-17 21:29:58 -07006680 if (device && (mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
6681 // audio pre processing modules on RecordThread can receive both output and
6682 // input device indication in the same call
6683 uint32_t dev = device & AUDIO_DEVICE_OUT_ALL;
6684 if (dev) {
6685 status_t cmdStatus;
6686 uint32_t size = sizeof(status_t);
6687
6688 status = (*mEffectInterface)->command(mEffectInterface,
6689 EFFECT_CMD_SET_DEVICE,
6690 sizeof(uint32_t),
6691 &dev,
6692 &size,
6693 &cmdStatus);
6694 if (status == NO_ERROR) {
6695 status = cmdStatus;
6696 }
6697 }
6698 dev = device & AUDIO_DEVICE_IN_ALL;
6699 if (dev) {
6700 status_t cmdStatus;
6701 uint32_t size = sizeof(status_t);
6702
6703 status_t status2 = (*mEffectInterface)->command(mEffectInterface,
6704 EFFECT_CMD_SET_INPUT_DEVICE,
6705 sizeof(uint32_t),
6706 &dev,
6707 &size,
6708 &cmdStatus);
6709 if (status2 == NO_ERROR) {
6710 status2 = cmdStatus;
6711 }
6712 if (status == NO_ERROR) {
6713 status = status2;
6714 }
Eric Laurent65b65452010-06-01 23:49:17 -07006715 }
6716 }
6717 return status;
6718}
6719
Glenn Kastenaccb1142012-01-04 11:00:47 -08006720status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
Eric Laurent53334cd2010-06-23 17:38:20 -07006721{
Eric Laurentdf9b81c2010-07-02 08:12:41 -07006722 Mutex::Autolock _l(mLock);
Eric Laurent53334cd2010-06-23 17:38:20 -07006723 status_t status = NO_ERROR;
6724 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
Eric Laurent53334cd2010-06-23 17:38:20 -07006725 status_t cmdStatus;
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006726 uint32_t size = sizeof(status_t);
6727 status = (*mEffectInterface)->command(mEffectInterface,
6728 EFFECT_CMD_SET_AUDIO_MODE,
Glenn Kastenaccb1142012-01-04 11:00:47 -08006729 sizeof(audio_mode_t),
Eric Laurent0fb66c22011-05-17 19:16:02 -07006730 &mode,
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006731 &size,
6732 &cmdStatus);
Eric Laurent53334cd2010-06-23 17:38:20 -07006733 if (status == NO_ERROR) {
6734 status = cmdStatus;
6735 }
6736 }
6737 return status;
6738}
6739
Eric Laurentf82fccd2011-07-27 19:49:51 -07006740void AudioFlinger::EffectModule::setSuspended(bool suspended)
6741{
6742 Mutex::Autolock _l(mLock);
6743 mSuspended = suspended;
6744}
Glenn Kasten1dce8412012-01-04 11:01:11 -08006745
6746bool AudioFlinger::EffectModule::suspended() const
Eric Laurentf82fccd2011-07-27 19:49:51 -07006747{
6748 Mutex::Autolock _l(mLock);
6749 return mSuspended;
6750}
6751
Eric Laurent65b65452010-06-01 23:49:17 -07006752status_t AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args)
6753{
6754 const size_t SIZE = 256;
6755 char buffer[SIZE];
6756 String8 result;
6757
6758 snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
6759 result.append(buffer);
6760
6761 bool locked = tryLock(mLock);
6762 // failed to lock - AudioFlinger is probably deadlocked
6763 if (!locked) {
6764 result.append("\t\tCould not lock Fx mutex:\n");
6765 }
6766
6767 result.append("\t\tSession Status State Engine:\n");
6768 snprintf(buffer, SIZE, "\t\t%05d %03d %03d 0x%08x\n",
6769 mSessionId, mStatus, mState, (uint32_t)mEffectInterface);
6770 result.append(buffer);
6771
6772 result.append("\t\tDescriptor:\n");
6773 snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
6774 mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
6775 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],mDescriptor.uuid.node[2],
6776 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
6777 result.append(buffer);
6778 snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
6779 mDescriptor.type.timeLow, mDescriptor.type.timeMid, mDescriptor.type.timeHiAndVersion,
6780 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],mDescriptor.type.node[2],
6781 mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
6782 result.append(buffer);
Eric Laurent0fb66c22011-05-17 19:16:02 -07006783 snprintf(buffer, SIZE, "\t\t- apiVersion: %08X\n\t\t- flags: %08X\n",
Eric Laurent65b65452010-06-01 23:49:17 -07006784 mDescriptor.apiVersion,
6785 mDescriptor.flags);
6786 result.append(buffer);
6787 snprintf(buffer, SIZE, "\t\t- name: %s\n",
6788 mDescriptor.name);
6789 result.append(buffer);
6790 snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
6791 mDescriptor.implementor);
6792 result.append(buffer);
6793
6794 result.append("\t\t- Input configuration:\n");
6795 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
6796 snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
6797 (uint32_t)mConfig.inputCfg.buffer.raw,
6798 mConfig.inputCfg.buffer.frameCount,
6799 mConfig.inputCfg.samplingRate,
6800 mConfig.inputCfg.channels,
6801 mConfig.inputCfg.format);
6802 result.append(buffer);
6803
6804 result.append("\t\t- Output configuration:\n");
6805 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
6806 snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
6807 (uint32_t)mConfig.outputCfg.buffer.raw,
6808 mConfig.outputCfg.buffer.frameCount,
6809 mConfig.outputCfg.samplingRate,
6810 mConfig.outputCfg.channels,
6811 mConfig.outputCfg.format);
6812 result.append(buffer);
6813
6814 snprintf(buffer, SIZE, "\t\t%d Clients:\n", mHandles.size());
6815 result.append(buffer);
6816 result.append("\t\t\tPid Priority Ctrl Locked client server\n");
6817 for (size_t i = 0; i < mHandles.size(); ++i) {
6818 sp<EffectHandle> handle = mHandles[i].promote();
6819 if (handle != 0) {
6820 handle->dump(buffer, SIZE);
6821 result.append(buffer);
6822 }
6823 }
6824
6825 result.append("\n");
6826
6827 write(fd, result.string(), result.length());
6828
6829 if (locked) {
6830 mLock.unlock();
6831 }
6832
6833 return NO_ERROR;
6834}
6835
6836// ----------------------------------------------------------------------------
6837// EffectHandle implementation
6838// ----------------------------------------------------------------------------
6839
6840#undef LOG_TAG
6841#define LOG_TAG "AudioFlinger::EffectHandle"
6842
6843AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
6844 const sp<AudioFlinger::Client>& client,
6845 const sp<IEffectClient>& effectClient,
6846 int32_t priority)
6847 : BnEffect(),
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006848 mEffect(effect), mEffectClient(effectClient), mClient(client), mCblk(NULL),
Eric Laurentf82fccd2011-07-27 19:49:51 -07006849 mPriority(priority), mHasControl(false), mEnabled(false)
Eric Laurent65b65452010-06-01 23:49:17 -07006850{
Steve Block71f2cf12011-10-20 11:56:00 +01006851 ALOGV("constructor %p", this);
Eric Laurent65b65452010-06-01 23:49:17 -07006852
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006853 if (client == 0) {
6854 return;
6855 }
Eric Laurent65b65452010-06-01 23:49:17 -07006856 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
6857 mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
6858 if (mCblkMemory != 0) {
6859 mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer());
6860
6861 if (mCblk) {
6862 new(mCblk) effect_param_cblk_t();
6863 mBuffer = (uint8_t *)mCblk + bufOffset;
6864 }
6865 } else {
Steve Block3762c312012-01-06 19:20:56 +00006866 ALOGE("not enough memory for Effect size=%u", EFFECT_PARAM_BUFFER_SIZE + sizeof(effect_param_cblk_t));
Eric Laurent65b65452010-06-01 23:49:17 -07006867 return;
6868 }
6869}
6870
6871AudioFlinger::EffectHandle::~EffectHandle()
6872{
Steve Block71f2cf12011-10-20 11:56:00 +01006873 ALOGV("Destructor %p", this);
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006874 disconnect(false);
Steve Block71f2cf12011-10-20 11:56:00 +01006875 ALOGV("Destructor DONE %p", this);
Eric Laurent65b65452010-06-01 23:49:17 -07006876}
6877
6878status_t AudioFlinger::EffectHandle::enable()
6879{
Steve Block71f2cf12011-10-20 11:56:00 +01006880 ALOGV("enable %p", this);
Eric Laurent65b65452010-06-01 23:49:17 -07006881 if (!mHasControl) return INVALID_OPERATION;
6882 if (mEffect == 0) return DEAD_OBJECT;
6883
Eric Laurent6752ec82011-08-10 10:37:50 -07006884 if (mEnabled) {
6885 return NO_ERROR;
6886 }
6887
Eric Laurentf82fccd2011-07-27 19:49:51 -07006888 mEnabled = true;
6889
6890 sp<ThreadBase> thread = mEffect->thread().promote();
6891 if (thread != 0) {
6892 thread->checkSuspendOnEffectEnabled(mEffect, true, mEffect->sessionId());
6893 }
6894
6895 // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
6896 if (mEffect->suspended()) {
6897 return NO_ERROR;
6898 }
6899
Eric Laurent6752ec82011-08-10 10:37:50 -07006900 status_t status = mEffect->setEnabled(true);
6901 if (status != NO_ERROR) {
6902 if (thread != 0) {
6903 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
6904 }
6905 mEnabled = false;
6906 }
6907 return status;
Eric Laurent65b65452010-06-01 23:49:17 -07006908}
6909
6910status_t AudioFlinger::EffectHandle::disable()
6911{
Steve Block71f2cf12011-10-20 11:56:00 +01006912 ALOGV("disable %p", this);
Eric Laurent65b65452010-06-01 23:49:17 -07006913 if (!mHasControl) return INVALID_OPERATION;
Eric Laurentf82fccd2011-07-27 19:49:51 -07006914 if (mEffect == 0) return DEAD_OBJECT;
Eric Laurent65b65452010-06-01 23:49:17 -07006915
Eric Laurent6752ec82011-08-10 10:37:50 -07006916 if (!mEnabled) {
6917 return NO_ERROR;
6918 }
Eric Laurentf82fccd2011-07-27 19:49:51 -07006919 mEnabled = false;
6920
6921 if (mEffect->suspended()) {
6922 return NO_ERROR;
6923 }
6924
6925 status_t status = mEffect->setEnabled(false);
6926
6927 sp<ThreadBase> thread = mEffect->thread().promote();
6928 if (thread != 0) {
6929 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
6930 }
6931
6932 return status;
Eric Laurent65b65452010-06-01 23:49:17 -07006933}
6934
6935void AudioFlinger::EffectHandle::disconnect()
6936{
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006937 disconnect(true);
6938}
6939
6940void AudioFlinger::EffectHandle::disconnect(bool unpiniflast)
6941{
Steve Block71f2cf12011-10-20 11:56:00 +01006942 ALOGV("disconnect(%s)", unpiniflast ? "true" : "false");
Eric Laurent65b65452010-06-01 23:49:17 -07006943 if (mEffect == 0) {
6944 return;
6945 }
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006946 mEffect->disconnect(this, unpiniflast);
Eric Laurentf82fccd2011-07-27 19:49:51 -07006947
Eric Laurent7fa1cee2011-10-19 11:44:54 -07006948 if (mHasControl && mEnabled) {
Eric Laurent6752ec82011-08-10 10:37:50 -07006949 sp<ThreadBase> thread = mEffect->thread().promote();
6950 if (thread != 0) {
6951 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
6952 }
Eric Laurentf82fccd2011-07-27 19:49:51 -07006953 }
6954
Eric Laurent65b65452010-06-01 23:49:17 -07006955 // release sp on module => module destructor can be called now
6956 mEffect.clear();
Eric Laurent65b65452010-06-01 23:49:17 -07006957 if (mClient != 0) {
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006958 if (mCblk) {
6959 mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
6960 }
6961 mCblkMemory.clear(); // and free the shared memory
Eric Laurent65b65452010-06-01 23:49:17 -07006962 Mutex::Autolock _l(mClient->audioFlinger()->mLock);
6963 mClient.clear();
6964 }
6965}
6966
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006967status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
6968 uint32_t cmdSize,
6969 void *pCmdData,
6970 uint32_t *replySize,
6971 void *pReplyData)
Eric Laurent65b65452010-06-01 23:49:17 -07006972{
Steve Block71f2cf12011-10-20 11:56:00 +01006973// ALOGV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006974// cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
Eric Laurent65b65452010-06-01 23:49:17 -07006975
6976 // only get parameter command is permitted for applications not controlling the effect
6977 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
6978 return INVALID_OPERATION;
6979 }
6980 if (mEffect == 0) return DEAD_OBJECT;
Marco Nelissenc74b93f2011-08-02 13:33:41 -07006981 if (mClient == 0) return INVALID_OPERATION;
Eric Laurent65b65452010-06-01 23:49:17 -07006982
6983 // handle commands that are not forwarded transparently to effect engine
6984 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
6985 // No need to trylock() here as this function is executed in the binder thread serving a particular client process:
6986 // no risk to block the whole media server process or mixer threads is we are stuck here
6987 Mutex::Autolock _l(mCblk->lock);
6988 if (mCblk->clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
6989 mCblk->serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
6990 mCblk->serverIndex = 0;
6991 mCblk->clientIndex = 0;
6992 return BAD_VALUE;
6993 }
6994 status_t status = NO_ERROR;
6995 while (mCblk->serverIndex < mCblk->clientIndex) {
6996 int reply;
Eric Laurenta4c72ac2010-07-28 05:40:18 -07006997 uint32_t rsize = sizeof(int);
Eric Laurent65b65452010-06-01 23:49:17 -07006998 int *p = (int *)(mBuffer + mCblk->serverIndex);
6999 int size = *p++;
Eric Laurent53334cd2010-06-23 17:38:20 -07007000 if (((uint8_t *)p + size) > mBuffer + mCblk->clientIndex) {
Steve Block8564c8d2012-01-05 23:22:43 +00007001 ALOGW("command(): invalid parameter block size");
Eric Laurent53334cd2010-06-23 17:38:20 -07007002 break;
7003 }
Eric Laurent65b65452010-06-01 23:49:17 -07007004 effect_param_t *param = (effect_param_t *)p;
Eric Laurent53334cd2010-06-23 17:38:20 -07007005 if (param->psize == 0 || param->vsize == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00007006 ALOGW("command(): null parameter or value size");
Eric Laurent53334cd2010-06-23 17:38:20 -07007007 mCblk->serverIndex += size;
7008 continue;
7009 }
Eric Laurenta4c72ac2010-07-28 05:40:18 -07007010 uint32_t psize = sizeof(effect_param_t) +
7011 ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) +
7012 param->vsize;
7013 status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM,
7014 psize,
7015 p,
7016 &rsize,
7017 &reply);
Eric Laurente65280c2010-09-02 11:56:55 -07007018 // stop at first error encountered
7019 if (ret != NO_ERROR) {
Eric Laurent65b65452010-06-01 23:49:17 -07007020 status = ret;
Eric Laurente65280c2010-09-02 11:56:55 -07007021 *(int *)pReplyData = reply;
7022 break;
7023 } else if (reply != NO_ERROR) {
7024 *(int *)pReplyData = reply;
7025 break;
Eric Laurent65b65452010-06-01 23:49:17 -07007026 }
7027 mCblk->serverIndex += size;
7028 }
7029 mCblk->serverIndex = 0;
7030 mCblk->clientIndex = 0;
7031 return status;
7032 } else if (cmdCode == EFFECT_CMD_ENABLE) {
Eric Laurente65280c2010-09-02 11:56:55 -07007033 *(int *)pReplyData = NO_ERROR;
Eric Laurent65b65452010-06-01 23:49:17 -07007034 return enable();
7035 } else if (cmdCode == EFFECT_CMD_DISABLE) {
Eric Laurente65280c2010-09-02 11:56:55 -07007036 *(int *)pReplyData = NO_ERROR;
Eric Laurent65b65452010-06-01 23:49:17 -07007037 return disable();
7038 }
7039
7040 return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
7041}
7042
7043sp<IMemory> AudioFlinger::EffectHandle::getCblk() const {
7044 return mCblkMemory;
7045}
7046
Eric Laurentf82fccd2011-07-27 19:49:51 -07007047void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
Eric Laurent65b65452010-06-01 23:49:17 -07007048{
Steve Block71f2cf12011-10-20 11:56:00 +01007049 ALOGV("setControl %p control %d", this, hasControl);
Eric Laurent65b65452010-06-01 23:49:17 -07007050
7051 mHasControl = hasControl;
Eric Laurentf82fccd2011-07-27 19:49:51 -07007052 mEnabled = enabled;
7053
Eric Laurent65b65452010-06-01 23:49:17 -07007054 if (signal && mEffectClient != 0) {
7055 mEffectClient->controlStatusChanged(hasControl);
7056 }
7057}
7058
Eric Laurenta4c72ac2010-07-28 05:40:18 -07007059void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
7060 uint32_t cmdSize,
7061 void *pCmdData,
7062 uint32_t replySize,
7063 void *pReplyData)
Eric Laurent65b65452010-06-01 23:49:17 -07007064{
7065 if (mEffectClient != 0) {
7066 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
7067 }
7068}
7069
7070
7071
7072void AudioFlinger::EffectHandle::setEnabled(bool enabled)
7073{
7074 if (mEffectClient != 0) {
7075 mEffectClient->enableStatusChanged(enabled);
7076 }
7077}
7078
7079status_t AudioFlinger::EffectHandle::onTransact(
7080 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
7081{
7082 return BnEffect::onTransact(code, data, reply, flags);
7083}
7084
7085
7086void AudioFlinger::EffectHandle::dump(char* buffer, size_t size)
7087{
Marco Nelissenc74b93f2011-08-02 13:33:41 -07007088 bool locked = mCblk ? tryLock(mCblk->lock) : false;
Eric Laurent65b65452010-06-01 23:49:17 -07007089
7090 snprintf(buffer, size, "\t\t\t%05d %05d %01u %01u %05u %05u\n",
7091 (mClient == NULL) ? getpid() : mClient->pid(),
7092 mPriority,
7093 mHasControl,
7094 !locked,
Marco Nelissenc74b93f2011-08-02 13:33:41 -07007095 mCblk ? mCblk->clientIndex : 0,
7096 mCblk ? mCblk->serverIndex : 0
Eric Laurent65b65452010-06-01 23:49:17 -07007097 );
7098
7099 if (locked) {
7100 mCblk->lock.unlock();
7101 }
7102}
7103
7104#undef LOG_TAG
7105#define LOG_TAG "AudioFlinger::EffectChain"
7106
7107AudioFlinger::EffectChain::EffectChain(const wp<ThreadBase>& wThread,
7108 int sessionId)
Eric Laurentf9c361d2011-11-11 15:42:52 -08007109 : mThread(wThread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
Eric Laurent90681d62011-05-09 12:09:06 -07007110 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
7111 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX)
Eric Laurent65b65452010-06-01 23:49:17 -07007112{
Dima Zavin24fc2fb2011-04-19 22:30:36 -07007113 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Eric Laurentf9c361d2011-11-11 15:42:52 -08007114 sp<ThreadBase> thread = mThread.promote();
7115 if (thread == 0) {
7116 return;
7117 }
7118 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
7119 thread->frameCount();
Eric Laurent65b65452010-06-01 23:49:17 -07007120}
7121
7122AudioFlinger::EffectChain::~EffectChain()
7123{
7124 if (mOwnInBuffer) {
7125 delete mInBuffer;
7126 }
7127
7128}
7129
Eric Laurentf82fccd2011-07-27 19:49:51 -07007130// getEffectFromDesc_l() must be called with ThreadBase::mLock held
Eric Laurent76c40f72010-07-15 12:50:15 -07007131sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(effect_descriptor_t *descriptor)
Eric Laurent65b65452010-06-01 23:49:17 -07007132{
7133 sp<EffectModule> effect;
7134 size_t size = mEffects.size();
7135
7136 for (size_t i = 0; i < size; i++) {
7137 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
7138 effect = mEffects[i];
7139 break;
7140 }
7141 }
7142 return effect;
7143}
7144
Eric Laurentf82fccd2011-07-27 19:49:51 -07007145// getEffectFromId_l() must be called with ThreadBase::mLock held
Eric Laurent76c40f72010-07-15 12:50:15 -07007146sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
Eric Laurent65b65452010-06-01 23:49:17 -07007147{
7148 sp<EffectModule> effect;
7149 size_t size = mEffects.size();
7150
7151 for (size_t i = 0; i < size; i++) {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07007152 // by convention, return first effect if id provided is 0 (0 is never a valid id)
7153 if (id == 0 || mEffects[i]->id() == id) {
Eric Laurent65b65452010-06-01 23:49:17 -07007154 effect = mEffects[i];
7155 break;
7156 }
7157 }
7158 return effect;
7159}
7160
Eric Laurentf82fccd2011-07-27 19:49:51 -07007161// getEffectFromType_l() must be called with ThreadBase::mLock held
7162sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
7163 const effect_uuid_t *type)
7164{
7165 sp<EffectModule> effect;
7166 size_t size = mEffects.size();
7167
7168 for (size_t i = 0; i < size; i++) {
7169 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
7170 effect = mEffects[i];
7171 break;
7172 }
7173 }
7174 return effect;
7175}
7176
Eric Laurent65b65452010-06-01 23:49:17 -07007177// Must be called with EffectChain::mLock locked
7178void AudioFlinger::EffectChain::process_l()
7179{
Eric Laurent4fd3ecc2010-09-28 14:09:57 -07007180 sp<ThreadBase> thread = mThread.promote();
7181 if (thread == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00007182 ALOGW("process_l(): cannot promote mixer thread");
Eric Laurent4fd3ecc2010-09-28 14:09:57 -07007183 return;
7184 }
Dima Zavin24fc2fb2011-04-19 22:30:36 -07007185 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
7186 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Eric Laurentf9c361d2011-11-11 15:42:52 -08007187 // always process effects unless no more tracks are on the session and the effect tail
7188 // has been rendered
7189 bool doProcess = true;
Eric Laurent4fd3ecc2010-09-28 14:09:57 -07007190 if (!isGlobalSession) {
Eric Laurentf9c361d2011-11-11 15:42:52 -08007191 bool tracksOnSession = (trackCnt() != 0);
Eric Laurent90681d62011-05-09 12:09:06 -07007192
Eric Laurentf9c361d2011-11-11 15:42:52 -08007193 if (!tracksOnSession && mTailBufferCount == 0) {
7194 doProcess = false;
7195 }
7196
7197 if (activeTrackCnt() == 0) {
7198 // if no track is active and the effect tail has not been rendered,
7199 // the input buffer must be cleared here as the mixer process will not do it
7200 if (tracksOnSession || mTailBufferCount > 0) {
7201 size_t numSamples = thread->frameCount() * thread->channelCount();
7202 memset(mInBuffer, 0, numSamples * sizeof(int16_t));
7203 if (mTailBufferCount > 0) {
7204 mTailBufferCount--;
7205 }
7206 }
7207 }
Eric Laurent4fd3ecc2010-09-28 14:09:57 -07007208 }
7209
Eric Laurent65b65452010-06-01 23:49:17 -07007210 size_t size = mEffects.size();
Eric Laurentf9c361d2011-11-11 15:42:52 -08007211 if (doProcess) {
Eric Laurent4fd3ecc2010-09-28 14:09:57 -07007212 for (size_t i = 0; i < size; i++) {
7213 mEffects[i]->process();
7214 }
Eric Laurent65b65452010-06-01 23:49:17 -07007215 }
Eric Laurent7d850f22010-07-09 13:34:17 -07007216 for (size_t i = 0; i < size; i++) {
7217 mEffects[i]->updateState();
7218 }
Eric Laurent65b65452010-06-01 23:49:17 -07007219}
7220
Eric Laurent76c40f72010-07-15 12:50:15 -07007221// addEffect_l() must be called with PlaybackThread::mLock held
Eric Laurent8ed6ed02010-07-13 04:45:46 -07007222status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
Eric Laurent65b65452010-06-01 23:49:17 -07007223{
7224 effect_descriptor_t desc = effect->desc();
7225 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
7226
7227 Mutex::Autolock _l(mLock);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07007228 effect->setChain(this);
7229 sp<ThreadBase> thread = mThread.promote();
7230 if (thread == 0) {
7231 return NO_INIT;
7232 }
7233 effect->setThread(thread);
Eric Laurent65b65452010-06-01 23:49:17 -07007234
7235 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
7236 // Auxiliary effects are inserted at the beginning of mEffects vector as
7237 // they are processed first and accumulated in chain input buffer
7238 mEffects.insertAt(effect, 0);
Eric Laurent8ed6ed02010-07-13 04:45:46 -07007239
Eric Laurent65b65452010-06-01 23:49:17 -07007240 // the input buffer for auxiliary effect contains mono samples in
7241 // 32 bit format. This is to avoid saturation in AudoMixer
7242 // accumulation stage. Saturation is done in EffectModule::process() before
7243 // calling the process in effect engine
7244 size_t numSamples = thread->frameCount();
7245 int32_t *buffer = new int32_t[numSamples];
7246 memset(buffer, 0, numSamples * sizeof(int32_t));
7247 effect->setInBuffer((int16_t *)buffer);
7248 // auxiliary effects output samples to chain input buffer for further processing
7249 // by insert effects
7250 effect->setOutBuffer(mInBuffer);
7251 } else {
7252 // Insert effects are inserted at the end of mEffects vector as they are processed
7253 // after track and auxiliary effects.
Eric Laurent53334cd2010-06-23 17:38:20 -07007254 // Insert effect order as a function of indicated preference:
7255 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
7256 // another effect is present
7257 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
7258 // last effect claiming first position
7259 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
7260 // first effect claiming last position
Eric Laurent65b65452010-06-01 23:49:17 -07007261 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
Eric Laurent53334cd2010-06-23 17:38:20 -07007262 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
7263 // already present
Eric Laurent65b65452010-06-01 23:49:17 -07007264
7265 int size = (int)mEffects.size();
7266 int idx_insert = size;
7267 int idx_insert_first = -1;
7268 int idx_insert_last = -1;
7269
7270 for (int i = 0; i < size; i++) {
7271 effect_descriptor_t d = mEffects[i]->desc();
7272 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
7273 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
7274 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
7275 // check invalid effect chaining combinations
7276 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
Eric Laurent53334cd2010-06-23 17:38:20 -07007277 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
Steve Block8564c8d2012-01-05 23:22:43 +00007278 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s", desc.name, d.name);
Eric Laurent65b65452010-06-01 23:49:17 -07007279 return INVALID_OPERATION;
7280 }
Eric Laurent53334cd2010-06-23 17:38:20 -07007281 // remember position of first insert effect and by default
7282 // select this as insert position for new effect
Eric Laurent65b65452010-06-01 23:49:17 -07007283 if (idx_insert == size) {
7284 idx_insert = i;
7285 }
Eric Laurent53334cd2010-06-23 17:38:20 -07007286 // remember position of last insert effect claiming
7287 // first position
Eric Laurent65b65452010-06-01 23:49:17 -07007288 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
7289 idx_insert_first = i;
7290 }
Eric Laurent53334cd2010-06-23 17:38:20 -07007291 // remember position of first insert effect claiming
7292 // last position
7293 if (iPref == EFFECT_FLAG_INSERT_LAST &&
7294 idx_insert_last == -1) {
Eric Laurent65b65452010-06-01 23:49:17 -07007295 idx_insert_last = i;
7296 }
7297 }
7298 }
7299
Eric Laurent53334cd2010-06-23 17:38:20 -07007300 // modify idx_insert from first position if needed
7301 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
7302 if (idx_insert_last != -1) {
7303 idx_insert = idx_insert_last;
7304 } else {
7305 idx_insert = size;
7306 }
7307 } else {
7308 if (idx_insert_first != -1) {
7309 idx_insert = idx_insert_first + 1;
7310 }
Eric Laurent65b65452010-06-01 23:49:17 -07007311 }
7312
7313 // always read samples from chain input buffer
7314 effect->setInBuffer(mInBuffer);
7315
7316 // if last effect in the chain, output samples to chain
7317 // output buffer, otherwise to chain input buffer
7318 if (idx_insert == size) {
7319 if (idx_insert != 0) {
7320 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
7321 mEffects[idx_insert-1]->configure();
7322 }
7323 effect->setOutBuffer(mOutBuffer);
7324 } else {
7325 effect->setOutBuffer(mInBuffer);
7326 }
Eric Laurent53334cd2010-06-23 17:38:20 -07007327 mEffects.insertAt(effect, idx_insert);
Eric Laurent65b65452010-06-01 23:49:17 -07007328
Steve Block71f2cf12011-10-20 11:56:00 +01007329 ALOGV("addEffect_l() effect %p, added in chain %p at rank %d", effect.get(), this, idx_insert);
Eric Laurent65b65452010-06-01 23:49:17 -07007330 }
7331 effect->configure();
7332 return NO_ERROR;
7333}
7334
Eric Laurent76c40f72010-07-15 12:50:15 -07007335// removeEffect_l() must be called with PlaybackThread::mLock held
7336size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
Eric Laurent65b65452010-06-01 23:49:17 -07007337{
7338 Mutex::Autolock _l(mLock);
Eric Laurent65b65452010-06-01 23:49:17 -07007339 int size = (int)mEffects.size();
7340 int i;
7341 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
7342
7343 for (i = 0; i < size; i++) {
7344 if (effect == mEffects[i]) {
Eric Laurent21b5c472011-07-26 20:54:46 -07007345 // calling stop here will remove pre-processing effect from the audio HAL.
7346 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
7347 // the middle of a read from audio HAL
Eric Laurent6fccbd02011-10-05 17:42:25 -07007348 if (mEffects[i]->state() == EffectModule::ACTIVE ||
7349 mEffects[i]->state() == EffectModule::STOPPING) {
7350 mEffects[i]->stop();
7351 }
Eric Laurent65b65452010-06-01 23:49:17 -07007352 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
7353 delete[] effect->inBuffer();
7354 } else {
7355 if (i == size - 1 && i != 0) {
7356 mEffects[i - 1]->setOutBuffer(mOutBuffer);
7357 mEffects[i - 1]->configure();
7358 }
7359 }
7360 mEffects.removeAt(i);
Steve Block71f2cf12011-10-20 11:56:00 +01007361 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %d", effect.get(), this, i);
Eric Laurent65b65452010-06-01 23:49:17 -07007362 break;
7363 }
7364 }
Eric Laurent65b65452010-06-01 23:49:17 -07007365
7366 return mEffects.size();
7367}
7368
Eric Laurent76c40f72010-07-15 12:50:15 -07007369// setDevice_l() must be called with PlaybackThread::mLock held
7370void AudioFlinger::EffectChain::setDevice_l(uint32_t device)
Eric Laurent65b65452010-06-01 23:49:17 -07007371{
7372 size_t size = mEffects.size();
7373 for (size_t i = 0; i < size; i++) {
7374 mEffects[i]->setDevice(device);
7375 }
7376}
7377
Eric Laurent76c40f72010-07-15 12:50:15 -07007378// setMode_l() must be called with PlaybackThread::mLock held
Glenn Kastenaccb1142012-01-04 11:00:47 -08007379void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
Eric Laurent53334cd2010-06-23 17:38:20 -07007380{
7381 size_t size = mEffects.size();
7382 for (size_t i = 0; i < size; i++) {
7383 mEffects[i]->setMode(mode);
7384 }
7385}
7386
Eric Laurent76c40f72010-07-15 12:50:15 -07007387// setVolume_l() must be called with PlaybackThread::mLock held
7388bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
Eric Laurent65b65452010-06-01 23:49:17 -07007389{
7390 uint32_t newLeft = *left;
7391 uint32_t newRight = *right;
7392 bool hasControl = false;
Eric Laurent76c40f72010-07-15 12:50:15 -07007393 int ctrlIdx = -1;
7394 size_t size = mEffects.size();
Eric Laurent65b65452010-06-01 23:49:17 -07007395
Eric Laurent76c40f72010-07-15 12:50:15 -07007396 // first update volume controller
7397 for (size_t i = size; i > 0; i--) {
Eric Laurenta92ebfa2010-08-31 13:50:07 -07007398 if (mEffects[i - 1]->isProcessEnabled() &&
Eric Laurent76c40f72010-07-15 12:50:15 -07007399 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
7400 ctrlIdx = i - 1;
Eric Laurent0d7e0482010-07-19 06:24:46 -07007401 hasControl = true;
Eric Laurent76c40f72010-07-15 12:50:15 -07007402 break;
7403 }
7404 }
7405
7406 if (ctrlIdx == mVolumeCtrlIdx && *left == mLeftVolume && *right == mRightVolume) {
Eric Laurent0d7e0482010-07-19 06:24:46 -07007407 if (hasControl) {
7408 *left = mNewLeftVolume;
7409 *right = mNewRightVolume;
7410 }
7411 return hasControl;
Eric Laurent76c40f72010-07-15 12:50:15 -07007412 }
7413
7414 mVolumeCtrlIdx = ctrlIdx;
Eric Laurent0d7e0482010-07-19 06:24:46 -07007415 mLeftVolume = newLeft;
7416 mRightVolume = newRight;
Eric Laurent76c40f72010-07-15 12:50:15 -07007417
7418 // second get volume update from volume controller
7419 if (ctrlIdx >= 0) {
7420 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
Eric Laurent0d7e0482010-07-19 06:24:46 -07007421 mNewLeftVolume = newLeft;
7422 mNewRightVolume = newRight;
Eric Laurent65b65452010-06-01 23:49:17 -07007423 }
7424 // then indicate volume to all other effects in chain.
7425 // Pass altered volume to effects before volume controller
7426 // and requested volume to effects after controller
7427 uint32_t lVol = newLeft;
7428 uint32_t rVol = newRight;
Eric Laurent76c40f72010-07-15 12:50:15 -07007429
Eric Laurent65b65452010-06-01 23:49:17 -07007430 for (size_t i = 0; i < size; i++) {
Eric Laurent76c40f72010-07-15 12:50:15 -07007431 if ((int)i == ctrlIdx) continue;
7432 // this also works for ctrlIdx == -1 when there is no volume controller
7433 if ((int)i > ctrlIdx) {
Eric Laurent65b65452010-06-01 23:49:17 -07007434 lVol = *left;
7435 rVol = *right;
7436 }
7437 mEffects[i]->setVolume(&lVol, &rVol, false);
7438 }
7439 *left = newLeft;
7440 *right = newRight;
7441
7442 return hasControl;
7443}
7444
Eric Laurent65b65452010-06-01 23:49:17 -07007445status_t AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
7446{
7447 const size_t SIZE = 256;
7448 char buffer[SIZE];
7449 String8 result;
7450
7451 snprintf(buffer, SIZE, "Effects for session %d:\n", mSessionId);
7452 result.append(buffer);
7453
7454 bool locked = tryLock(mLock);
7455 // failed to lock - AudioFlinger is probably deadlocked
7456 if (!locked) {
7457 result.append("\tCould not lock mutex:\n");
7458 }
7459
Eric Laurent76c40f72010-07-15 12:50:15 -07007460 result.append("\tNum fx In buffer Out buffer Active tracks:\n");
7461 snprintf(buffer, SIZE, "\t%02d 0x%08x 0x%08x %d\n",
Eric Laurent65b65452010-06-01 23:49:17 -07007462 mEffects.size(),
7463 (uint32_t)mInBuffer,
7464 (uint32_t)mOutBuffer,
Eric Laurent65b65452010-06-01 23:49:17 -07007465 mActiveTrackCnt);
7466 result.append(buffer);
7467 write(fd, result.string(), result.size());
7468
7469 for (size_t i = 0; i < mEffects.size(); ++i) {
7470 sp<EffectModule> effect = mEffects[i];
7471 if (effect != 0) {
7472 effect->dump(fd, args);
7473 }
7474 }
7475
7476 if (locked) {
7477 mLock.unlock();
7478 }
7479
7480 return NO_ERROR;
7481}
7482
Eric Laurentf82fccd2011-07-27 19:49:51 -07007483// must be called with ThreadBase::mLock held
7484void AudioFlinger::EffectChain::setEffectSuspended_l(
7485 const effect_uuid_t *type, bool suspend)
7486{
7487 sp<SuspendedEffectDesc> desc;
7488 // use effect type UUID timelow as key as there is no real risk of identical
7489 // timeLow fields among effect type UUIDs.
7490 int index = mSuspendedEffects.indexOfKey(type->timeLow);
7491 if (suspend) {
7492 if (index >= 0) {
7493 desc = mSuspendedEffects.valueAt(index);
7494 } else {
7495 desc = new SuspendedEffectDesc();
7496 memcpy(&desc->mType, type, sizeof(effect_uuid_t));
7497 mSuspendedEffects.add(type->timeLow, desc);
Steve Block71f2cf12011-10-20 11:56:00 +01007498 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
Eric Laurentf82fccd2011-07-27 19:49:51 -07007499 }
7500 if (desc->mRefCount++ == 0) {
7501 sp<EffectModule> effect = getEffectIfEnabled(type);
7502 if (effect != 0) {
7503 desc->mEffect = effect;
7504 effect->setSuspended(true);
7505 effect->setEnabled(false);
7506 }
7507 }
7508 } else {
7509 if (index < 0) {
7510 return;
7511 }
7512 desc = mSuspendedEffects.valueAt(index);
7513 if (desc->mRefCount <= 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00007514 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
Eric Laurentf82fccd2011-07-27 19:49:51 -07007515 desc->mRefCount = 1;
7516 }
7517 if (--desc->mRefCount == 0) {
Steve Block71f2cf12011-10-20 11:56:00 +01007518 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
Eric Laurentf82fccd2011-07-27 19:49:51 -07007519 if (desc->mEffect != 0) {
7520 sp<EffectModule> effect = desc->mEffect.promote();
7521 if (effect != 0) {
7522 effect->setSuspended(false);
7523 sp<EffectHandle> handle = effect->controlHandle();
7524 if (handle != 0) {
7525 effect->setEnabled(handle->enabled());
7526 }
7527 }
7528 desc->mEffect.clear();
7529 }
7530 mSuspendedEffects.removeItemsAt(index);
7531 }
7532 }
7533}
7534
7535// must be called with ThreadBase::mLock held
7536void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
7537{
7538 sp<SuspendedEffectDesc> desc;
7539
7540 int index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
7541 if (suspend) {
7542 if (index >= 0) {
7543 desc = mSuspendedEffects.valueAt(index);
7544 } else {
7545 desc = new SuspendedEffectDesc();
7546 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
Steve Block71f2cf12011-10-20 11:56:00 +01007547 ALOGV("setEffectSuspendedAll_l() add entry for 0");
Eric Laurentf82fccd2011-07-27 19:49:51 -07007548 }
7549 if (desc->mRefCount++ == 0) {
7550 Vector< sp<EffectModule> > effects = getSuspendEligibleEffects();
7551 for (size_t i = 0; i < effects.size(); i++) {
7552 setEffectSuspended_l(&effects[i]->desc().type, true);
7553 }
7554 }
7555 } else {
7556 if (index < 0) {
7557 return;
7558 }
7559 desc = mSuspendedEffects.valueAt(index);
7560 if (desc->mRefCount <= 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00007561 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
Eric Laurentf82fccd2011-07-27 19:49:51 -07007562 desc->mRefCount = 1;
7563 }
7564 if (--desc->mRefCount == 0) {
7565 Vector<const effect_uuid_t *> types;
7566 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
7567 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
7568 continue;
7569 }
7570 types.add(&mSuspendedEffects.valueAt(i)->mType);
7571 }
7572 for (size_t i = 0; i < types.size(); i++) {
7573 setEffectSuspended_l(types[i], false);
7574 }
Steve Block71f2cf12011-10-20 11:56:00 +01007575 ALOGV("setEffectSuspendedAll_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
Eric Laurentf82fccd2011-07-27 19:49:51 -07007576 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
7577 }
7578 }
7579}
7580
Eric Laurent5e7acae2011-09-23 08:40:41 -07007581
7582// The volume effect is used for automated tests only
7583#ifndef OPENSL_ES_H_
7584static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
7585 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
7586const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
7587#endif //OPENSL_ES_H_
7588
Eric Laurent6752ec82011-08-10 10:37:50 -07007589bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
7590{
7591 // auxiliary effects and visualizer are never suspended on output mix
7592 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
7593 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
Eric Laurent5e7acae2011-09-23 08:40:41 -07007594 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
7595 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
Eric Laurent6752ec82011-08-10 10:37:50 -07007596 return false;
7597 }
7598 return true;
7599}
7600
Eric Laurentf82fccd2011-07-27 19:49:51 -07007601Vector< sp<AudioFlinger::EffectModule> > AudioFlinger::EffectChain::getSuspendEligibleEffects()
7602{
7603 Vector< sp<EffectModule> > effects;
7604 for (size_t i = 0; i < mEffects.size(); i++) {
Eric Laurent6752ec82011-08-10 10:37:50 -07007605 if (!isEffectEligibleForSuspend(mEffects[i]->desc())) {
Eric Laurentf82fccd2011-07-27 19:49:51 -07007606 continue;
7607 }
7608 effects.add(mEffects[i]);
7609 }
7610 return effects;
7611}
7612
7613sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
7614 const effect_uuid_t *type)
7615{
7616 sp<EffectModule> effect;
7617 effect = getEffectFromType_l(type);
7618 if (effect != 0 && !effect->isEnabled()) {
7619 effect.clear();
7620 }
7621 return effect;
7622}
7623
7624void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
7625 bool enabled)
7626{
7627 int index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
7628 if (enabled) {
7629 if (index < 0) {
7630 // if the effect is not suspend check if all effects are suspended
7631 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
7632 if (index < 0) {
7633 return;
7634 }
Eric Laurent6752ec82011-08-10 10:37:50 -07007635 if (!isEffectEligibleForSuspend(effect->desc())) {
7636 return;
7637 }
Eric Laurentf82fccd2011-07-27 19:49:51 -07007638 setEffectSuspended_l(&effect->desc().type, enabled);
7639 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
Eric Laurent6752ec82011-08-10 10:37:50 -07007640 if (index < 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00007641 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
Eric Laurent6752ec82011-08-10 10:37:50 -07007642 return;
7643 }
Eric Laurentf82fccd2011-07-27 19:49:51 -07007644 }
Steve Block71f2cf12011-10-20 11:56:00 +01007645 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
Eric Laurentf82fccd2011-07-27 19:49:51 -07007646 effect->desc().type.timeLow);
7647 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
7648 // if effect is requested to suspended but was not yet enabled, supend it now.
7649 if (desc->mEffect == 0) {
7650 desc->mEffect = effect;
7651 effect->setEnabled(false);
7652 effect->setSuspended(true);
7653 }
7654 } else {
7655 if (index < 0) {
7656 return;
7657 }
Steve Block71f2cf12011-10-20 11:56:00 +01007658 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
Eric Laurentf82fccd2011-07-27 19:49:51 -07007659 effect->desc().type.timeLow);
7660 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
7661 desc->mEffect.clear();
7662 effect->setSuspended(false);
7663 }
7664}
7665
Eric Laurent65b65452010-06-01 23:49:17 -07007666#undef LOG_TAG
7667#define LOG_TAG "AudioFlinger"
7668
Eric Laurenta553c252009-07-17 12:17:14 -07007669// ----------------------------------------------------------------------------
7670
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07007671status_t AudioFlinger::onTransact(
7672 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
7673{
7674 return BnAudioFlinger::onTransact(code, data, reply, flags);
7675}
7676
The Android Open Source Project54b6cfa2008-10-21 07:00:00 -07007677}; // namespace android