blob: a921ad66b4cf248417817d453b5326bd617206cf [file] [log] [blame]
Glenn Kasten99e53b82012-01-19 08:59:58 -08001/*
Mathias Agopian65ab4712010-07-14 17:59:35 -07002**
3** Copyright 2007, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18
19#define LOG_TAG "AudioFlinger"
20//#define LOG_NDEBUG 0
21
22#include <math.h>
23#include <signal.h>
24#include <sys/time.h>
25#include <sys/resource.h>
26
Gloria Wang9ee159b2011-02-24 14:51:45 -080027#include <binder/IPCThreadState.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070028#include <binder/IServiceManager.h>
29#include <utils/Log.h>
Glenn Kastend8e6fd32012-05-07 11:07:57 -070030#include <utils/Trace.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070031#include <binder/Parcel.h>
32#include <binder/IPCThreadState.h>
33#include <utils/String16.h>
34#include <utils/threads.h>
Eric Laurent38ccae22011-03-28 18:37:07 -070035#include <utils/Atomic.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070036
Dima Zavinfce7a472011-04-19 22:30:36 -070037#include <cutils/bitops.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070038#include <cutils/properties.h>
Glenn Kastenf6b16782011-12-15 09:51:17 -080039#include <cutils/compiler.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070040
Glenn Kastend3cee2f2012-03-13 17:55:35 -070041#undef ADD_BATTERY_DATA
42
43#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -080044#include <media/IMediaPlayerService.h>
Glenn Kasten25b248e2012-01-03 15:28:29 -080045#include <media/IMediaDeathNotifier.h>
Glenn Kastend3cee2f2012-03-13 17:55:35 -070046#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -070047
48#include <private/media/AudioTrackShared.h>
49#include <private/media/AudioEffectShared.h>
Dima Zavinfce7a472011-04-19 22:30:36 -070050
Dima Zavin64760242011-05-11 14:15:23 -070051#include <system/audio.h>
Dima Zavin7394a4f2011-06-13 18:16:26 -070052#include <hardware/audio.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070053
54#include "AudioMixer.h"
55#include "AudioFlinger.h"
Glenn Kasten44deb052012-02-05 18:09:08 -080056#include "ServiceUtilities.h"
Mathias Agopian65ab4712010-07-14 17:59:35 -070057
Mathias Agopian65ab4712010-07-14 17:59:35 -070058#include <media/EffectsFactoryApi.h>
Eric Laurent6d8b6942011-06-24 07:01:31 -070059#include <audio_effects/effect_visualizer.h>
Eric Laurent59bd0da2011-08-01 09:52:20 -070060#include <audio_effects/effect_ns.h>
61#include <audio_effects/effect_aec.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070062
Glenn Kasten3b21c502011-12-15 09:52:39 -080063#include <audio_utils/primitives.h>
64
Eric Laurentfeb0db62011-07-22 09:04:31 -070065#include <powermanager/PowerManager.h>
Glenn Kasten190a46f2012-03-06 11:27:10 -080066
Glenn Kasten4d8d0c32011-07-08 15:26:12 -070067// #define DEBUG_CPU_USAGE 10 // log statistics every n wall clock seconds
Glenn Kasten190a46f2012-03-06 11:27:10 -080068#ifdef DEBUG_CPU_USAGE
69#include <cpustats/CentralTendencyStatistics.h>
70#include <cpustats/ThreadCpuUsage.h>
71#endif
Glenn Kasten4d8d0c32011-07-08 15:26:12 -070072
John Grossman4ff14ba2012-02-08 16:37:41 -080073#include <common_time/cc_helper.h>
74#include <common_time/local_clock.h>
75
Glenn Kasten58912562012-04-03 10:45:00 -070076#include "FastMixer.h"
77
78// NBAIO implementations
79#include "AudioStreamOutSink.h"
80#include "MonoPipe.h"
81#include "MonoPipeReader.h"
Glenn Kastenfbae5da2012-05-21 09:17:20 -070082#include "Pipe.h"
83#include "PipeReader.h"
Glenn Kasten58912562012-04-03 10:45:00 -070084#include "SourceAudioBufferProvider.h"
85
Glenn Kasten1dc28b72012-04-24 10:01:03 -070086#include "SchedulingPolicyService.h"
Glenn Kasten58912562012-04-03 10:45:00 -070087
Mathias Agopian65ab4712010-07-14 17:59:35 -070088// ----------------------------------------------------------------------------
Mathias Agopian65ab4712010-07-14 17:59:35 -070089
John Grossman1c345192012-03-27 14:00:17 -070090// Note: the following macro is used for extremely verbose logging message. In
91// order to run with ALOG_ASSERT turned on, we need to have LOG_NDEBUG set to
92// 0; but one side effect of this is to turn all LOGV's as well. Some messages
93// are so verbose that we want to suppress them even when we have ALOG_ASSERT
94// turned on. Do not uncomment the #def below unless you really know what you
95// are doing and want to see all of the extremely verbose messages.
96//#define VERY_VERY_VERBOSE_LOGGING
97#ifdef VERY_VERY_VERBOSE_LOGGING
98#define ALOGVV ALOGV
99#else
100#define ALOGVV(a...) do { } while(0)
101#endif
Eric Laurentde070132010-07-13 04:45:46 -0700102
Mathias Agopian65ab4712010-07-14 17:59:35 -0700103namespace android {
104
Glenn Kastenec1d6b52011-12-12 09:04:45 -0800105static const char kDeadlockedString[] = "AudioFlinger may be deadlocked\n";
106static const char kHardwareLockedString[] = "Hardware lock is taken\n";
Mathias Agopian65ab4712010-07-14 17:59:35 -0700107
Mathias Agopian65ab4712010-07-14 17:59:35 -0700108static const float MAX_GAIN = 4096.0f;
Glenn Kastenb1cf75c2012-01-17 12:20:54 -0800109static const uint32_t MAX_GAIN_INT = 0x1000;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700110
111// retry counts for buffer fill timeout
112// 50 * ~20msecs = 1 second
113static const int8_t kMaxTrackRetries = 50;
114static const int8_t kMaxTrackStartupRetries = 50;
115// allow less retry attempts on direct output thread.
116// direct outputs can be a scarce resource in audio hardware and should
117// be released as quickly as possible.
118static const int8_t kMaxTrackRetriesDirect = 2;
119
120static const int kDumpLockRetries = 50;
Glenn Kasten7dede872011-12-13 11:04:14 -0800121static const int kDumpLockSleepUs = 20000;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700122
Glenn Kasten7dede872011-12-13 11:04:14 -0800123// don't warn about blocked writes or record buffer overflows more often than this
124static const nsecs_t kWarningThrottleNs = seconds(5);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700125
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700126// RecordThread loop sleep time upon application overrun or audio HAL read error
127static const int kRecordThreadSleepUs = 5000;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700128
Glenn Kasten7dede872011-12-13 11:04:14 -0800129// maximum time to wait for setParameters to complete
130static const nsecs_t kSetParametersTimeoutNs = seconds(2);
Eric Laurent60cd0a02011-09-13 11:40:21 -0700131
Eric Laurent7cafbb32011-11-22 18:50:29 -0800132// minimum sleep time for the mixer thread loop when tracks are active but in underrun
133static const uint32_t kMinThreadSleepTimeUs = 5000;
134// maximum divider applied to the active sleep time in the mixer thread loop
135static const uint32_t kMaxThreadSleepTimeShift = 2;
136
Glenn Kasten58912562012-04-03 10:45:00 -0700137// minimum normal mix buffer size, expressed in milliseconds rather than frames
138static const uint32_t kMinNormalMixBufferSizeMs = 20;
Glenn Kasten4adcede2012-05-14 12:26:02 -0700139// maximum normal mix buffer size
140static const uint32_t kMaxNormalMixBufferSizeMs = 24;
Glenn Kasten58912562012-04-03 10:45:00 -0700141
John Grossman4ff14ba2012-02-08 16:37:41 -0800142nsecs_t AudioFlinger::mStandbyTimeInNsecs = kDefaultStandbyTimeInNsecs;
Eric Laurent7cafbb32011-11-22 18:50:29 -0800143
Glenn Kasten300a2ee2012-04-25 13:47:36 -0700144// Whether to use fast mixer
145static const enum {
146 FastMixer_Never, // never initialize or use: for debugging only
147 FastMixer_Always, // always initialize and use, even if not needed: for debugging only
148 // normal mixer multiplier is 1
149 FastMixer_Static, // initialize if needed, then use all the time if initialized,
Glenn Kasten4adcede2012-05-14 12:26:02 -0700150 // multiplier is calculated based on min & max normal mixer buffer size
Glenn Kasten300a2ee2012-04-25 13:47:36 -0700151 FastMixer_Dynamic, // initialize if needed, then use dynamically depending on track load,
Glenn Kasten4adcede2012-05-14 12:26:02 -0700152 // multiplier is calculated based on min & max normal mixer buffer size
Glenn Kasten300a2ee2012-04-25 13:47:36 -0700153 // FIXME for FastMixer_Dynamic:
154 // Supporting this option will require fixing HALs that can't handle large writes.
155 // For example, one HAL implementation returns an error from a large write,
156 // and another HAL implementation corrupts memory, possibly in the sample rate converter.
157 // We could either fix the HAL implementations, or provide a wrapper that breaks
158 // up large writes into smaller ones, and the wrapper would need to deal with scheduler.
159} kUseFastMixer = FastMixer_Static;
160
Glenn Kasten28ed2f92012-06-07 10:17:54 -0700161static uint32_t gScreenState; // incremented by 2 when screen state changes, bit 0 == 1 means "off"
162 // AudioFlinger::setParameters() updates, other threads read w/o lock
163
Glenn Kastenfd4e20c2012-06-04 11:51:12 -0700164// Priorities for requestPriority
165static const int kPriorityAudioApp = 2;
166static const int kPriorityFastMixer = 3;
167
Mathias Agopian65ab4712010-07-14 17:59:35 -0700168// ----------------------------------------------------------------------------
169
Glenn Kastend3cee2f2012-03-13 17:55:35 -0700170#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -0800171// To collect the amplifier usage
172static void addBatteryData(uint32_t params) {
Glenn Kasten25b248e2012-01-03 15:28:29 -0800173 sp<IMediaPlayerService> service = IMediaDeathNotifier::getMediaPlayerService();
174 if (service == NULL) {
175 // it already logged
Gloria Wang9ee159b2011-02-24 14:51:45 -0800176 return;
177 }
178
179 service->addBatteryData(params);
180}
Glenn Kastend3cee2f2012-03-13 17:55:35 -0700181#endif
Gloria Wang9ee159b2011-02-24 14:51:45 -0800182
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700183static int load_audio_interface(const char *if_name, audio_hw_device_t **dev)
Dima Zavin799a70e2011-04-18 16:57:27 -0700184{
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700185 const hw_module_t *mod;
Dima Zavin799a70e2011-04-18 16:57:27 -0700186 int rc;
187
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700188 rc = hw_get_module_by_class(AUDIO_HARDWARE_MODULE_ID, if_name, &mod);
189 ALOGE_IF(rc, "%s couldn't load audio hw module %s.%s (%s)", __func__,
190 AUDIO_HARDWARE_MODULE_ID, if_name, strerror(-rc));
191 if (rc) {
Dima Zavin799a70e2011-04-18 16:57:27 -0700192 goto out;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700193 }
194 rc = audio_hw_device_open(mod, dev);
195 ALOGE_IF(rc, "%s couldn't open audio hw device in %s.%s (%s)", __func__,
196 AUDIO_HARDWARE_MODULE_ID, if_name, strerror(-rc));
197 if (rc) {
Dima Zavin799a70e2011-04-18 16:57:27 -0700198 goto out;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700199 }
200 if ((*dev)->common.version != AUDIO_DEVICE_API_VERSION_CURRENT) {
201 ALOGE("%s wrong audio hw device version %04x", __func__, (*dev)->common.version);
202 rc = BAD_VALUE;
203 goto out;
204 }
Dima Zavin799a70e2011-04-18 16:57:27 -0700205 return 0;
206
207out:
Dima Zavin799a70e2011-04-18 16:57:27 -0700208 *dev = NULL;
209 return rc;
210}
211
Mathias Agopian65ab4712010-07-14 17:59:35 -0700212// ----------------------------------------------------------------------------
213
214AudioFlinger::AudioFlinger()
215 : BnAudioFlinger(),
John Grossman4ff14ba2012-02-08 16:37:41 -0800216 mPrimaryHardwareDev(NULL),
Glenn Kasten7d6c35b2012-07-02 12:45:10 -0700217 mHardwareStatus(AUDIO_HW_IDLE),
John Grossman4ff14ba2012-02-08 16:37:41 -0800218 mMasterVolume(1.0f),
Glenn Kasten7d6c35b2012-07-02 12:45:10 -0700219 mMasterVolumeSW(1.0f),
John Grossman4ff14ba2012-02-08 16:37:41 -0800220 mMasterVolumeSupportLvl(MVS_NONE),
221 mMasterMute(false),
222 mNextUniqueId(1),
223 mMode(AUDIO_MODE_INVALID),
224 mBtNrecIsOff(false)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700225{
Dima Zavin5a61d2f2011-04-19 19:04:32 -0700226}
227
228void AudioFlinger::onFirstRef()
229{
Dima Zavin799a70e2011-04-18 16:57:27 -0700230 int rc = 0;
Dima Zavinfce7a472011-04-19 22:30:36 -0700231
Eric Laurent93575202011-01-18 18:39:02 -0800232 Mutex::Autolock _l(mLock);
233
Dima Zavin799a70e2011-04-18 16:57:27 -0700234 /* TODO: move all this work into an Init() function */
John Grossman4ff14ba2012-02-08 16:37:41 -0800235 char val_str[PROPERTY_VALUE_MAX] = { 0 };
236 if (property_get("ro.audio.flinger_standbytime_ms", val_str, NULL) >= 0) {
237 uint32_t int_val;
238 if (1 == sscanf(val_str, "%u", &int_val)) {
239 mStandbyTimeInNsecs = milliseconds(int_val);
240 ALOGI("Using %u mSec as standby time.", int_val);
241 } else {
242 mStandbyTimeInNsecs = kDefaultStandbyTimeInNsecs;
243 ALOGI("Using default %u mSec as standby time.",
244 (uint32_t)(mStandbyTimeInNsecs / 1000000));
245 }
246 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700247
Eric Laurenta4c5a552012-03-29 10:12:40 -0700248 mMode = AUDIO_MODE_NORMAL;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700249}
250
251AudioFlinger::~AudioFlinger()
252{
253 while (!mRecordThreads.isEmpty()) {
254 // closeInput() will remove first entry from mRecordThreads
Glenn Kastend96c5722012-04-25 13:44:49 -0700255 closeInput_nonvirtual(mRecordThreads.keyAt(0));
Mathias Agopian65ab4712010-07-14 17:59:35 -0700256 }
257 while (!mPlaybackThreads.isEmpty()) {
258 // closeOutput() will remove first entry from mPlaybackThreads
Glenn Kastend96c5722012-04-25 13:44:49 -0700259 closeOutput_nonvirtual(mPlaybackThreads.keyAt(0));
Mathias Agopian65ab4712010-07-14 17:59:35 -0700260 }
Dima Zavin799a70e2011-04-18 16:57:27 -0700261
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800262 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
263 // no mHardwareLock needed, as there are no other references to this
Eric Laurenta4c5a552012-03-29 10:12:40 -0700264 audio_hw_device_close(mAudioHwDevs.valueAt(i)->hwDevice());
265 delete mAudioHwDevs.valueAt(i);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700266 }
267}
268
Eric Laurenta4c5a552012-03-29 10:12:40 -0700269static const char * const audio_interfaces[] = {
270 AUDIO_HARDWARE_MODULE_ID_PRIMARY,
271 AUDIO_HARDWARE_MODULE_ID_A2DP,
272 AUDIO_HARDWARE_MODULE_ID_USB,
273};
274#define ARRAY_SIZE(x) (sizeof((x))/sizeof(((x)[0])))
275
Glenn Kastenbb4350d2012-07-03 15:56:38 -0700276audio_hw_device_t* AudioFlinger::findSuitableHwDev_l(audio_module_handle_t module, audio_devices_t devices)
Dima Zavin799a70e2011-04-18 16:57:27 -0700277{
Eric Laurenta4c5a552012-03-29 10:12:40 -0700278 // if module is 0, the request comes from an old policy manager and we should load
279 // well known modules
280 if (module == 0) {
281 ALOGW("findSuitableHwDev_l() loading well know audio hw modules");
282 for (size_t i = 0; i < ARRAY_SIZE(audio_interfaces); i++) {
283 loadHwModule_l(audio_interfaces[i]);
284 }
285 } else {
286 // check a match for the requested module handle
287 AudioHwDevice *audioHwdevice = mAudioHwDevs.valueFor(module);
288 if (audioHwdevice != NULL) {
289 return audioHwdevice->hwDevice();
290 }
291 }
292 // then try to find a module supporting the requested device.
Dima Zavin799a70e2011-04-18 16:57:27 -0700293 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700294 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
Dima Zavin799a70e2011-04-18 16:57:27 -0700295 if ((dev->get_supported_devices(dev) & devices) == devices)
296 return dev;
297 }
Eric Laurenta4c5a552012-03-29 10:12:40 -0700298
Dima Zavin799a70e2011-04-18 16:57:27 -0700299 return NULL;
300}
Mathias Agopian65ab4712010-07-14 17:59:35 -0700301
Glenn Kastenbe5f05e2012-07-18 15:24:02 -0700302void AudioFlinger::dumpClients(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700303{
304 const size_t SIZE = 256;
305 char buffer[SIZE];
306 String8 result;
307
308 result.append("Clients:\n");
309 for (size_t i = 0; i < mClients.size(); ++i) {
Glenn Kasten77c11192012-01-25 14:27:41 -0800310 sp<Client> client = mClients.valueAt(i).promote();
311 if (client != 0) {
312 snprintf(buffer, SIZE, " pid: %d\n", client->pid());
313 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700314 }
315 }
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700316
317 result.append("Global session refs:\n");
Glenn Kasten012ca6b2012-03-06 11:22:01 -0800318 result.append(" session pid count\n");
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700319 for (size_t i = 0; i < mAudioSessionRefs.size(); i++) {
320 AudioSessionRef *r = mAudioSessionRefs[i];
Glenn Kasten012ca6b2012-03-06 11:22:01 -0800321 snprintf(buffer, SIZE, " %7d %3d %3d\n", r->mSessionid, r->mPid, r->mCnt);
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700322 result.append(buffer);
323 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700324 write(fd, result.string(), result.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700325}
326
327
Glenn Kastenbe5f05e2012-07-18 15:24:02 -0700328void AudioFlinger::dumpInternals(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700329{
330 const size_t SIZE = 256;
331 char buffer[SIZE];
332 String8 result;
Glenn Kastena4454b42012-01-04 11:02:33 -0800333 hardware_call_state hardwareStatus = mHardwareStatus;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700334
John Grossman4ff14ba2012-02-08 16:37:41 -0800335 snprintf(buffer, SIZE, "Hardware status: %d\n"
336 "Standby Time mSec: %u\n",
337 hardwareStatus,
338 (uint32_t)(mStandbyTimeInNsecs / 1000000));
Mathias Agopian65ab4712010-07-14 17:59:35 -0700339 result.append(buffer);
340 write(fd, result.string(), result.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700341}
342
Glenn Kastenbe5f05e2012-07-18 15:24:02 -0700343void AudioFlinger::dumpPermissionDenial(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700344{
345 const size_t SIZE = 256;
346 char buffer[SIZE];
347 String8 result;
348 snprintf(buffer, SIZE, "Permission Denial: "
349 "can't dump AudioFlinger from pid=%d, uid=%d\n",
350 IPCThreadState::self()->getCallingPid(),
351 IPCThreadState::self()->getCallingUid());
352 result.append(buffer);
353 write(fd, result.string(), result.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700354}
355
356static bool tryLock(Mutex& mutex)
357{
358 bool locked = false;
359 for (int i = 0; i < kDumpLockRetries; ++i) {
360 if (mutex.tryLock() == NO_ERROR) {
361 locked = true;
362 break;
363 }
Glenn Kasten7dede872011-12-13 11:04:14 -0800364 usleep(kDumpLockSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700365 }
366 return locked;
367}
368
369status_t AudioFlinger::dump(int fd, const Vector<String16>& args)
370{
Glenn Kasten44deb052012-02-05 18:09:08 -0800371 if (!dumpAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700372 dumpPermissionDenial(fd, args);
373 } else {
374 // get state of hardware lock
375 bool hardwareLocked = tryLock(mHardwareLock);
376 if (!hardwareLocked) {
377 String8 result(kHardwareLockedString);
378 write(fd, result.string(), result.size());
379 } else {
380 mHardwareLock.unlock();
381 }
382
383 bool locked = tryLock(mLock);
384
385 // failed to lock - AudioFlinger is probably deadlocked
386 if (!locked) {
387 String8 result(kDeadlockedString);
388 write(fd, result.string(), result.size());
389 }
390
391 dumpClients(fd, args);
392 dumpInternals(fd, args);
393
394 // dump playback threads
395 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
396 mPlaybackThreads.valueAt(i)->dump(fd, args);
397 }
398
399 // dump record threads
400 for (size_t i = 0; i < mRecordThreads.size(); i++) {
401 mRecordThreads.valueAt(i)->dump(fd, args);
402 }
403
Dima Zavin799a70e2011-04-18 16:57:27 -0700404 // dump all hardware devs
405 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700406 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
Dima Zavin799a70e2011-04-18 16:57:27 -0700407 dev->dump(dev, fd);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700408 }
409 if (locked) mLock.unlock();
410 }
411 return NO_ERROR;
412}
413
Glenn Kasten98ec94c2012-01-25 14:28:29 -0800414sp<AudioFlinger::Client> AudioFlinger::registerPid_l(pid_t pid)
415{
416 // If pid is already in the mClients wp<> map, then use that entry
417 // (for which promote() is always != 0), otherwise create a new entry and Client.
418 sp<Client> client = mClients.valueFor(pid).promote();
419 if (client == 0) {
420 client = new Client(this, pid);
421 mClients.add(pid, client);
422 }
423
424 return client;
425}
Mathias Agopian65ab4712010-07-14 17:59:35 -0700426
427// IAudioFlinger interface
428
429
430sp<IAudioTrack> AudioFlinger::createTrack(
431 pid_t pid,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800432 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700433 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800434 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -0700435 audio_channel_mask_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700436 int frameCount,
Glenn Kastena075db42012-03-06 11:22:44 -0800437 IAudioFlinger::track_flags_t flags,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700438 const sp<IMemory>& sharedBuffer,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800439 audio_io_handle_t output,
Glenn Kasten3acbd052012-02-28 10:39:56 -0800440 pid_t tid,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700441 int *sessionId,
442 status_t *status)
443{
444 sp<PlaybackThread::Track> track;
445 sp<TrackHandle> trackHandle;
446 sp<Client> client;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700447 status_t lStatus;
448 int lSessionId;
449
Glenn Kasten263709e2012-01-06 08:40:01 -0800450 // client AudioTrack::set already implements AUDIO_STREAM_DEFAULT => AUDIO_STREAM_MUSIC,
451 // but if someone uses binder directly they could bypass that and cause us to crash
452 if (uint32_t(streamType) >= AUDIO_STREAM_CNT) {
Steve Block29357bc2012-01-06 19:20:56 +0000453 ALOGE("createTrack() invalid stream type %d", streamType);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700454 lStatus = BAD_VALUE;
455 goto Exit;
456 }
457
458 {
459 Mutex::Autolock _l(mLock);
460 PlaybackThread *thread = checkPlaybackThread_l(output);
Eric Laurent39e94f82010-07-28 01:32:47 -0700461 PlaybackThread *effectThread = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700462 if (thread == NULL) {
Steve Block29357bc2012-01-06 19:20:56 +0000463 ALOGE("unknown output thread");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700464 lStatus = BAD_VALUE;
465 goto Exit;
466 }
467
Glenn Kasten98ec94c2012-01-25 14:28:29 -0800468 client = registerPid_l(pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700469
Steve Block3856b092011-10-20 11:56:00 +0100470 ALOGV("createTrack() sessionId: %d", (sessionId == NULL) ? -2 : *sessionId);
Dima Zavinfce7a472011-04-19 22:30:36 -0700471 if (sessionId != NULL && *sessionId != AUDIO_SESSION_OUTPUT_MIX) {
Eric Laurentf436fdc2012-05-24 11:07:14 -0700472 // check if an effect chain with the same session ID is present on another
473 // output thread and move it here.
Eric Laurentde070132010-07-13 04:45:46 -0700474 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurent39e94f82010-07-28 01:32:47 -0700475 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
476 if (mPlaybackThreads.keyAt(i) != output) {
Eric Laurent39e94f82010-07-28 01:32:47 -0700477 uint32_t sessions = t->hasAudioSession(*sessionId);
Eric Laurent39e94f82010-07-28 01:32:47 -0700478 if (sessions & PlaybackThread::EFFECT_SESSION) {
479 effectThread = t.get();
Eric Laurentf436fdc2012-05-24 11:07:14 -0700480 break;
Eric Laurent39e94f82010-07-28 01:32:47 -0700481 }
Eric Laurentde070132010-07-13 04:45:46 -0700482 }
483 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700484 lSessionId = *sessionId;
485 } else {
Eric Laurentde070132010-07-13 04:45:46 -0700486 // if no audio session id is provided, create one here
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700487 lSessionId = nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700488 if (sessionId != NULL) {
489 *sessionId = lSessionId;
490 }
491 }
Steve Block3856b092011-10-20 11:56:00 +0100492 ALOGV("createTrack() lSessionId: %d", lSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700493
494 track = thread->createTrack_l(client, streamType, sampleRate, format,
Glenn Kasten3acbd052012-02-28 10:39:56 -0800495 channelMask, frameCount, sharedBuffer, lSessionId, flags, tid, &lStatus);
Eric Laurent39e94f82010-07-28 01:32:47 -0700496
497 // move effect chain to this output thread if an effect on same session was waiting
498 // for a track to be created
499 if (lStatus == NO_ERROR && effectThread != NULL) {
500 Mutex::Autolock _dl(thread->mLock);
501 Mutex::Autolock _sl(effectThread->mLock);
502 moveEffectChain_l(lSessionId, effectThread, thread, true);
503 }
Eric Laurenta011e352012-03-29 15:51:43 -0700504
505 // Look for sync events awaiting for a session to be used.
506 for (int i = 0; i < (int)mPendingSyncEvents.size(); i++) {
507 if (mPendingSyncEvents[i]->triggerSession() == lSessionId) {
508 if (thread->isValidSyncEvent(mPendingSyncEvents[i])) {
Eric Laurent29864602012-05-08 18:57:51 -0700509 if (lStatus == NO_ERROR) {
510 track->setSyncEvent(mPendingSyncEvents[i]);
511 } else {
512 mPendingSyncEvents[i]->cancel();
513 }
Eric Laurenta011e352012-03-29 15:51:43 -0700514 mPendingSyncEvents.removeAt(i);
515 i--;
516 }
517 }
518 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700519 }
520 if (lStatus == NO_ERROR) {
521 trackHandle = new TrackHandle(track);
522 } else {
523 // remove local strong reference to Client before deleting the Track so that the Client
524 // destructor is called by the TrackBase destructor with mLock held
525 client.clear();
526 track.clear();
527 }
528
529Exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700530 if (status != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700531 *status = lStatus;
532 }
533 return trackHandle;
534}
535
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800536uint32_t AudioFlinger::sampleRate(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700537{
538 Mutex::Autolock _l(mLock);
539 PlaybackThread *thread = checkPlaybackThread_l(output);
540 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000541 ALOGW("sampleRate() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700542 return 0;
543 }
544 return thread->sampleRate();
545}
546
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800547int AudioFlinger::channelCount(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700548{
549 Mutex::Autolock _l(mLock);
550 PlaybackThread *thread = checkPlaybackThread_l(output);
551 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000552 ALOGW("channelCount() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700553 return 0;
554 }
555 return thread->channelCount();
556}
557
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800558audio_format_t AudioFlinger::format(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700559{
560 Mutex::Autolock _l(mLock);
561 PlaybackThread *thread = checkPlaybackThread_l(output);
562 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000563 ALOGW("format() unknown thread %d", output);
Glenn Kasten58f30212012-01-12 12:27:51 -0800564 return AUDIO_FORMAT_INVALID;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700565 }
566 return thread->format();
567}
568
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800569size_t AudioFlinger::frameCount(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700570{
571 Mutex::Autolock _l(mLock);
572 PlaybackThread *thread = checkPlaybackThread_l(output);
573 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000574 ALOGW("frameCount() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700575 return 0;
576 }
Glenn Kasten58912562012-04-03 10:45:00 -0700577 // FIXME currently returns the normal mixer's frame count to avoid confusing legacy callers;
578 // should examine all callers and fix them to handle smaller counts
Mathias Agopian65ab4712010-07-14 17:59:35 -0700579 return thread->frameCount();
580}
581
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800582uint32_t AudioFlinger::latency(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700583{
584 Mutex::Autolock _l(mLock);
585 PlaybackThread *thread = checkPlaybackThread_l(output);
586 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000587 ALOGW("latency() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700588 return 0;
589 }
590 return thread->latency();
591}
592
593status_t AudioFlinger::setMasterVolume(float value)
594{
Eric Laurenta1884f92011-08-23 08:25:03 -0700595 status_t ret = initCheck();
596 if (ret != NO_ERROR) {
597 return ret;
598 }
599
Mathias Agopian65ab4712010-07-14 17:59:35 -0700600 // check calling permissions
601 if (!settingsAllowed()) {
602 return PERMISSION_DENIED;
603 }
604
John Grossman4ff14ba2012-02-08 16:37:41 -0800605 float swmv = value;
606
Eric Laurenta4c5a552012-03-29 10:12:40 -0700607 Mutex::Autolock _l(mLock);
608
Mathias Agopian65ab4712010-07-14 17:59:35 -0700609 // when hw supports master volume, don't scale in sw mixer
John Grossman4ff14ba2012-02-08 16:37:41 -0800610 if (MVS_NONE != mMasterVolumeSupportLvl) {
611 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
612 AutoMutex lock(mHardwareLock);
Eric Laurenta4c5a552012-03-29 10:12:40 -0700613 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
John Grossman4ff14ba2012-02-08 16:37:41 -0800614
615 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
616 if (NULL != dev->set_master_volume) {
617 dev->set_master_volume(dev, value);
618 }
619 mHardwareStatus = AUDIO_HW_IDLE;
Eric Laurent93575202011-01-18 18:39:02 -0800620 }
John Grossman4ff14ba2012-02-08 16:37:41 -0800621
622 swmv = 1.0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700623 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700624
John Grossman4ff14ba2012-02-08 16:37:41 -0800625 mMasterVolume = value;
626 mMasterVolumeSW = swmv;
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800627 for (size_t i = 0; i < mPlaybackThreads.size(); i++)
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700628 mPlaybackThreads.valueAt(i)->setMasterVolume(swmv);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700629
630 return NO_ERROR;
631}
632
Glenn Kastenf78aee72012-01-04 11:00:47 -0800633status_t AudioFlinger::setMode(audio_mode_t mode)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700634{
Eric Laurenta1884f92011-08-23 08:25:03 -0700635 status_t ret = initCheck();
636 if (ret != NO_ERROR) {
637 return ret;
638 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700639
640 // check calling permissions
641 if (!settingsAllowed()) {
642 return PERMISSION_DENIED;
643 }
Glenn Kasten930f4ca2012-01-06 16:47:31 -0800644 if (uint32_t(mode) >= AUDIO_MODE_CNT) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000645 ALOGW("Illegal value: setMode(%d)", mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700646 return BAD_VALUE;
647 }
648
649 { // scope for the lock
650 AutoMutex lock(mHardwareLock);
651 mHardwareStatus = AUDIO_HW_SET_MODE;
Dima Zavin799a70e2011-04-18 16:57:27 -0700652 ret = mPrimaryHardwareDev->set_mode(mPrimaryHardwareDev, mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700653 mHardwareStatus = AUDIO_HW_IDLE;
654 }
655
656 if (NO_ERROR == ret) {
657 Mutex::Autolock _l(mLock);
658 mMode = mode;
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800659 for (size_t i = 0; i < mPlaybackThreads.size(); i++)
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700660 mPlaybackThreads.valueAt(i)->setMode(mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700661 }
662
663 return ret;
664}
665
666status_t AudioFlinger::setMicMute(bool state)
667{
Eric Laurenta1884f92011-08-23 08:25:03 -0700668 status_t ret = initCheck();
669 if (ret != NO_ERROR) {
670 return ret;
671 }
672
Mathias Agopian65ab4712010-07-14 17:59:35 -0700673 // check calling permissions
674 if (!settingsAllowed()) {
675 return PERMISSION_DENIED;
676 }
677
678 AutoMutex lock(mHardwareLock);
679 mHardwareStatus = AUDIO_HW_SET_MIC_MUTE;
Eric Laurenta1884f92011-08-23 08:25:03 -0700680 ret = mPrimaryHardwareDev->set_mic_mute(mPrimaryHardwareDev, state);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700681 mHardwareStatus = AUDIO_HW_IDLE;
682 return ret;
683}
684
685bool AudioFlinger::getMicMute() const
686{
Eric Laurenta1884f92011-08-23 08:25:03 -0700687 status_t ret = initCheck();
688 if (ret != NO_ERROR) {
689 return false;
690 }
691
Dima Zavinfce7a472011-04-19 22:30:36 -0700692 bool state = AUDIO_MODE_INVALID;
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800693 AutoMutex lock(mHardwareLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700694 mHardwareStatus = AUDIO_HW_GET_MIC_MUTE;
Dima Zavin799a70e2011-04-18 16:57:27 -0700695 mPrimaryHardwareDev->get_mic_mute(mPrimaryHardwareDev, &state);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700696 mHardwareStatus = AUDIO_HW_IDLE;
697 return state;
698}
699
700status_t AudioFlinger::setMasterMute(bool muted)
701{
702 // check calling permissions
703 if (!settingsAllowed()) {
704 return PERMISSION_DENIED;
705 }
706
Eric Laurent93575202011-01-18 18:39:02 -0800707 Mutex::Autolock _l(mLock);
Glenn Kasten99e53b82012-01-19 08:59:58 -0800708 // This is an optimization, so PlaybackThread doesn't have to look at the one from AudioFlinger
Mathias Agopian65ab4712010-07-14 17:59:35 -0700709 mMasterMute = muted;
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800710 for (size_t i = 0; i < mPlaybackThreads.size(); i++)
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700711 mPlaybackThreads.valueAt(i)->setMasterMute(muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700712
713 return NO_ERROR;
714}
715
716float AudioFlinger::masterVolume() const
717{
Glenn Kasten98067102011-12-13 11:47:54 -0800718 Mutex::Autolock _l(mLock);
719 return masterVolume_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700720}
721
John Grossman4ff14ba2012-02-08 16:37:41 -0800722float AudioFlinger::masterVolumeSW() const
723{
724 Mutex::Autolock _l(mLock);
725 return masterVolumeSW_l();
726}
727
Mathias Agopian65ab4712010-07-14 17:59:35 -0700728bool AudioFlinger::masterMute() const
729{
Glenn Kasten98067102011-12-13 11:47:54 -0800730 Mutex::Autolock _l(mLock);
731 return masterMute_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700732}
733
John Grossman4ff14ba2012-02-08 16:37:41 -0800734float AudioFlinger::masterVolume_l() const
735{
736 if (MVS_FULL == mMasterVolumeSupportLvl) {
737 float ret_val;
738 AutoMutex lock(mHardwareLock);
739
740 mHardwareStatus = AUDIO_HW_GET_MASTER_VOLUME;
Glenn Kasten5798d4e2012-03-08 12:18:35 -0800741 ALOG_ASSERT((NULL != mPrimaryHardwareDev) &&
742 (NULL != mPrimaryHardwareDev->get_master_volume),
743 "can't get master volume");
John Grossman4ff14ba2012-02-08 16:37:41 -0800744
745 mPrimaryHardwareDev->get_master_volume(mPrimaryHardwareDev, &ret_val);
746 mHardwareStatus = AUDIO_HW_IDLE;
747 return ret_val;
748 }
749
750 return mMasterVolume;
751}
752
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800753status_t AudioFlinger::setStreamVolume(audio_stream_type_t stream, float value,
754 audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700755{
756 // check calling permissions
757 if (!settingsAllowed()) {
758 return PERMISSION_DENIED;
759 }
760
Glenn Kasten263709e2012-01-06 08:40:01 -0800761 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Steve Block29357bc2012-01-06 19:20:56 +0000762 ALOGE("setStreamVolume() invalid stream %d", stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700763 return BAD_VALUE;
764 }
765
766 AutoMutex lock(mLock);
767 PlaybackThread *thread = NULL;
768 if (output) {
769 thread = checkPlaybackThread_l(output);
770 if (thread == NULL) {
771 return BAD_VALUE;
772 }
773 }
774
775 mStreamTypes[stream].volume = value;
776
777 if (thread == NULL) {
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800778 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700779 mPlaybackThreads.valueAt(i)->setStreamVolume(stream, value);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700780 }
781 } else {
782 thread->setStreamVolume(stream, value);
783 }
784
785 return NO_ERROR;
786}
787
Glenn Kastenfff6d712012-01-12 16:38:12 -0800788status_t AudioFlinger::setStreamMute(audio_stream_type_t stream, bool muted)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700789{
790 // check calling permissions
791 if (!settingsAllowed()) {
792 return PERMISSION_DENIED;
793 }
794
Glenn Kasten263709e2012-01-06 08:40:01 -0800795 if (uint32_t(stream) >= AUDIO_STREAM_CNT ||
Dima Zavinfce7a472011-04-19 22:30:36 -0700796 uint32_t(stream) == AUDIO_STREAM_ENFORCED_AUDIBLE) {
Steve Block29357bc2012-01-06 19:20:56 +0000797 ALOGE("setStreamMute() invalid stream %d", stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700798 return BAD_VALUE;
799 }
800
Eric Laurent93575202011-01-18 18:39:02 -0800801 AutoMutex lock(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700802 mStreamTypes[stream].mute = muted;
803 for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700804 mPlaybackThreads.valueAt(i)->setStreamMute(stream, muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700805
806 return NO_ERROR;
807}
808
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800809float AudioFlinger::streamVolume(audio_stream_type_t stream, audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700810{
Glenn Kasten263709e2012-01-06 08:40:01 -0800811 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700812 return 0.0f;
813 }
814
815 AutoMutex lock(mLock);
816 float volume;
817 if (output) {
818 PlaybackThread *thread = checkPlaybackThread_l(output);
819 if (thread == NULL) {
820 return 0.0f;
821 }
822 volume = thread->streamVolume(stream);
823 } else {
Glenn Kasten6637baa2012-01-09 09:40:36 -0800824 volume = streamVolume_l(stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700825 }
826
827 return volume;
828}
829
Glenn Kastenfff6d712012-01-12 16:38:12 -0800830bool AudioFlinger::streamMute(audio_stream_type_t stream) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700831{
Glenn Kasten263709e2012-01-06 08:40:01 -0800832 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700833 return true;
834 }
835
Glenn Kasten6637baa2012-01-09 09:40:36 -0800836 AutoMutex lock(mLock);
837 return streamMute_l(stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700838}
839
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800840status_t AudioFlinger::setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700841{
Glenn Kasten23d82a92012-02-03 11:10:00 -0800842 ALOGV("setParameters(): io %d, keyvalue %s, tid %d, calling pid %d",
Mathias Agopian65ab4712010-07-14 17:59:35 -0700843 ioHandle, keyValuePairs.string(), gettid(), IPCThreadState::self()->getCallingPid());
844 // check calling permissions
845 if (!settingsAllowed()) {
846 return PERMISSION_DENIED;
847 }
848
Mathias Agopian65ab4712010-07-14 17:59:35 -0700849 // ioHandle == 0 means the parameters are global to the audio hardware interface
850 if (ioHandle == 0) {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700851 Mutex::Autolock _l(mLock);
Dima Zavin799a70e2011-04-18 16:57:27 -0700852 status_t final_result = NO_ERROR;
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800853 {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700854 AutoMutex lock(mHardwareLock);
855 mHardwareStatus = AUDIO_HW_SET_PARAMETER;
856 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
857 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
858 status_t result = dev->set_parameters(dev, keyValuePairs.string());
859 final_result = result ?: final_result;
860 }
861 mHardwareStatus = AUDIO_HW_IDLE;
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800862 }
Eric Laurent59bd0da2011-08-01 09:52:20 -0700863 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
864 AudioParameter param = AudioParameter(keyValuePairs);
865 String8 value;
866 if (param.get(String8(AUDIO_PARAMETER_KEY_BT_NREC), value) == NO_ERROR) {
Eric Laurentbee53372011-08-29 12:42:48 -0700867 bool btNrecIsOff = (value == AUDIO_PARAMETER_VALUE_OFF);
868 if (mBtNrecIsOff != btNrecIsOff) {
Eric Laurent59bd0da2011-08-01 09:52:20 -0700869 for (size_t i = 0; i < mRecordThreads.size(); i++) {
870 sp<RecordThread> thread = mRecordThreads.valueAt(i);
Glenn Kasten510a3d62012-07-16 14:24:34 -0700871 audio_devices_t device = thread->device() & AUDIO_DEVICE_IN_ALL;
872 bool suspend = audio_is_bluetooth_sco_device(device) && btNrecIsOff;
873 // collect all of the thread's session IDs
874 KeyedVector<int, bool> ids = thread->sessionIds();
875 // suspend effects associated with those session IDs
876 for (size_t j = 0; j < ids.size(); ++j) {
877 int sessionId = ids.keyAt(j);
Eric Laurent59bd0da2011-08-01 09:52:20 -0700878 thread->setEffectSuspended(FX_IID_AEC,
879 suspend,
Glenn Kasten510a3d62012-07-16 14:24:34 -0700880 sessionId);
Eric Laurent59bd0da2011-08-01 09:52:20 -0700881 thread->setEffectSuspended(FX_IID_NS,
882 suspend,
Glenn Kasten510a3d62012-07-16 14:24:34 -0700883 sessionId);
Eric Laurent59bd0da2011-08-01 09:52:20 -0700884 }
885 }
Eric Laurentbee53372011-08-29 12:42:48 -0700886 mBtNrecIsOff = btNrecIsOff;
Eric Laurent59bd0da2011-08-01 09:52:20 -0700887 }
888 }
Glenn Kasten28ed2f92012-06-07 10:17:54 -0700889 String8 screenState;
890 if (param.get(String8(AudioParameter::keyScreenState), screenState) == NO_ERROR) {
891 bool isOff = screenState == "off";
892 if (isOff != (gScreenState & 1)) {
893 gScreenState = ((gScreenState & ~1) + 2) | isOff;
894 }
895 }
Dima Zavin799a70e2011-04-18 16:57:27 -0700896 return final_result;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700897 }
898
899 // hold a strong ref on thread in case closeOutput() or closeInput() is called
900 // and the thread is exited once the lock is released
901 sp<ThreadBase> thread;
902 {
903 Mutex::Autolock _l(mLock);
904 thread = checkPlaybackThread_l(ioHandle);
Glenn Kastend5903ec2012-03-18 10:33:27 -0700905 if (thread == 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700906 thread = checkRecordThread_l(ioHandle);
Glenn Kasten7fc9a6f2012-01-10 10:46:34 -0800907 } else if (thread == primaryPlaybackThread_l()) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700908 // indicate output device change to all input threads for pre processing
909 AudioParameter param = AudioParameter(keyValuePairs);
910 int value;
Eric Laurent89d94e72012-03-16 20:37:59 -0700911 if ((param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) &&
912 (value != 0)) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700913 for (size_t i = 0; i < mRecordThreads.size(); i++) {
914 mRecordThreads.valueAt(i)->setParameters(keyValuePairs);
915 }
916 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700917 }
918 }
Glenn Kasten7378ca52012-01-20 13:44:40 -0800919 if (thread != 0) {
920 return thread->setParameters(keyValuePairs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700921 }
922 return BAD_VALUE;
923}
924
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800925String8 AudioFlinger::getParameters(audio_io_handle_t ioHandle, const String8& keys) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700926{
Glenn Kasten23d82a92012-02-03 11:10:00 -0800927// ALOGV("getParameters() io %d, keys %s, tid %d, calling pid %d",
Mathias Agopian65ab4712010-07-14 17:59:35 -0700928// ioHandle, keys.string(), gettid(), IPCThreadState::self()->getCallingPid());
929
Eric Laurenta4c5a552012-03-29 10:12:40 -0700930 Mutex::Autolock _l(mLock);
931
Mathias Agopian65ab4712010-07-14 17:59:35 -0700932 if (ioHandle == 0) {
Dima Zavinfce7a472011-04-19 22:30:36 -0700933 String8 out_s8;
934
Dima Zavin799a70e2011-04-18 16:57:27 -0700935 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800936 char *s;
937 {
938 AutoMutex lock(mHardwareLock);
939 mHardwareStatus = AUDIO_HW_GET_PARAMETER;
Eric Laurenta4c5a552012-03-29 10:12:40 -0700940 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800941 s = dev->get_parameters(dev, keys.string());
942 mHardwareStatus = AUDIO_HW_IDLE;
943 }
John Grossmanef7740b2012-02-09 11:28:36 -0800944 out_s8 += String8(s ? s : "");
Dima Zavin799a70e2011-04-18 16:57:27 -0700945 free(s);
946 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700947 return out_s8;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700948 }
949
Mathias Agopian65ab4712010-07-14 17:59:35 -0700950 PlaybackThread *playbackThread = checkPlaybackThread_l(ioHandle);
951 if (playbackThread != NULL) {
952 return playbackThread->getParameters(keys);
953 }
954 RecordThread *recordThread = checkRecordThread_l(ioHandle);
955 if (recordThread != NULL) {
956 return recordThread->getParameters(keys);
957 }
958 return String8("");
959}
960
Glenn Kastendd8104c2012-07-02 12:42:44 -0700961size_t AudioFlinger::getInputBufferSize(uint32_t sampleRate, audio_format_t format,
962 audio_channel_mask_t channelMask) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700963{
Eric Laurenta1884f92011-08-23 08:25:03 -0700964 status_t ret = initCheck();
965 if (ret != NO_ERROR) {
966 return 0;
967 }
968
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800969 AutoMutex lock(mHardwareLock);
970 mHardwareStatus = AUDIO_HW_GET_INPUT_BUFFER_SIZE;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700971 struct audio_config config = {
972 sample_rate: sampleRate,
Glenn Kastendd8104c2012-07-02 12:42:44 -0700973 channel_mask: channelMask,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700974 format: format,
975 };
976 size_t size = mPrimaryHardwareDev->get_input_buffer_size(mPrimaryHardwareDev, &config);
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800977 mHardwareStatus = AUDIO_HW_IDLE;
978 return size;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700979}
980
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800981unsigned int AudioFlinger::getInputFramesLost(audio_io_handle_t ioHandle) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700982{
Mathias Agopian65ab4712010-07-14 17:59:35 -0700983 Mutex::Autolock _l(mLock);
984
985 RecordThread *recordThread = checkRecordThread_l(ioHandle);
986 if (recordThread != NULL) {
987 return recordThread->getInputFramesLost();
988 }
989 return 0;
990}
991
992status_t AudioFlinger::setVoiceVolume(float value)
993{
Eric Laurenta1884f92011-08-23 08:25:03 -0700994 status_t ret = initCheck();
995 if (ret != NO_ERROR) {
996 return ret;
997 }
998
Mathias Agopian65ab4712010-07-14 17:59:35 -0700999 // check calling permissions
1000 if (!settingsAllowed()) {
1001 return PERMISSION_DENIED;
1002 }
1003
1004 AutoMutex lock(mHardwareLock);
Glenn Kasten8abf44d2012-02-02 14:16:03 -08001005 mHardwareStatus = AUDIO_HW_SET_VOICE_VOLUME;
Eric Laurenta1884f92011-08-23 08:25:03 -07001006 ret = mPrimaryHardwareDev->set_voice_volume(mPrimaryHardwareDev, value);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001007 mHardwareStatus = AUDIO_HW_IDLE;
1008
1009 return ret;
1010}
1011
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001012status_t AudioFlinger::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
1013 audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07001014{
1015 status_t status;
1016
1017 Mutex::Autolock _l(mLock);
1018
1019 PlaybackThread *playbackThread = checkPlaybackThread_l(output);
1020 if (playbackThread != NULL) {
1021 return playbackThread->getRenderPosition(halFrames, dspFrames);
1022 }
1023
1024 return BAD_VALUE;
1025}
1026
1027void AudioFlinger::registerClient(const sp<IAudioFlingerClient>& client)
1028{
1029
1030 Mutex::Autolock _l(mLock);
1031
Glenn Kastenbb001922012-02-03 11:10:26 -08001032 pid_t pid = IPCThreadState::self()->getCallingPid();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001033 if (mNotificationClients.indexOfKey(pid) < 0) {
1034 sp<NotificationClient> notificationClient = new NotificationClient(this,
1035 client,
1036 pid);
Steve Block3856b092011-10-20 11:56:00 +01001037 ALOGV("registerClient() client %p, pid %d", notificationClient.get(), pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001038
1039 mNotificationClients.add(pid, notificationClient);
1040
1041 sp<IBinder> binder = client->asBinder();
1042 binder->linkToDeath(notificationClient);
1043
1044 // the config change is always sent from playback or record threads to avoid deadlock
1045 // with AudioSystem::gLock
1046 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
1047 mPlaybackThreads.valueAt(i)->sendConfigEvent(AudioSystem::OUTPUT_OPENED);
1048 }
1049
1050 for (size_t i = 0; i < mRecordThreads.size(); i++) {
1051 mRecordThreads.valueAt(i)->sendConfigEvent(AudioSystem::INPUT_OPENED);
1052 }
1053 }
1054}
1055
1056void AudioFlinger::removeNotificationClient(pid_t pid)
1057{
1058 Mutex::Autolock _l(mLock);
1059
Glenn Kastena3b09252012-01-20 09:19:01 -08001060 mNotificationClients.removeItem(pid);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001061
Steve Block3856b092011-10-20 11:56:00 +01001062 ALOGV("%d died, releasing its sessions", pid);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001063 size_t num = mAudioSessionRefs.size();
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001064 bool removed = false;
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001065 for (size_t i = 0; i< num; ) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001066 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08001067 ALOGV(" pid %d @ %d", ref->mPid, i);
1068 if (ref->mPid == pid) {
1069 ALOGV(" removing entry for pid %d session %d", pid, ref->mSessionid);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001070 mAudioSessionRefs.removeAt(i);
1071 delete ref;
1072 removed = true;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001073 num--;
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001074 } else {
1075 i++;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001076 }
1077 }
1078 if (removed) {
1079 purgeStaleEffects_l();
1080 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001081}
1082
1083// audioConfigChanged_l() must be called with AudioFlinger::mLock held
Glenn Kastenb81cc8c2012-03-01 09:14:51 -08001084void AudioFlinger::audioConfigChanged_l(int event, audio_io_handle_t ioHandle, const void *param2)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001085{
1086 size_t size = mNotificationClients.size();
1087 for (size_t i = 0; i < size; i++) {
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001088 mNotificationClients.valueAt(i)->audioFlingerClient()->ioConfigChanged(event, ioHandle,
1089 param2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001090 }
1091}
1092
1093// removeClient_l() must be called with AudioFlinger::mLock held
1094void AudioFlinger::removeClient_l(pid_t pid)
1095{
Steve Block3856b092011-10-20 11:56:00 +01001096 ALOGV("removeClient_l() pid %d, tid %d, calling tid %d", pid, gettid(), IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001097 mClients.removeItem(pid);
1098}
1099
Eric Laurent717e1282012-06-29 16:36:52 -07001100// getEffectThread_l() must be called with AudioFlinger::mLock held
1101sp<AudioFlinger::PlaybackThread> AudioFlinger::getEffectThread_l(int sessionId, int EffectId)
1102{
1103 sp<PlaybackThread> thread;
1104
1105 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
1106 if (mPlaybackThreads.valueAt(i)->getEffect(sessionId, EffectId) != 0) {
1107 ALOG_ASSERT(thread == 0);
1108 thread = mPlaybackThreads.valueAt(i);
1109 }
1110 }
1111
1112 return thread;
1113}
Mathias Agopian65ab4712010-07-14 17:59:35 -07001114
1115// ----------------------------------------------------------------------------
1116
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001117AudioFlinger::ThreadBase::ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
Glenn Kastenbb4350d2012-07-03 15:56:38 -07001118 audio_devices_t device, type_t type)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001119 : Thread(false),
Glenn Kasten23bb8be2012-01-26 10:38:26 -08001120 mType(type),
Glenn Kasten58912562012-04-03 10:45:00 -07001121 mAudioFlinger(audioFlinger), mSampleRate(0), mFrameCount(0), mNormalFrameCount(0),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001122 // mChannelMask
1123 mChannelCount(0),
1124 mFrameSize(1), mFormat(AUDIO_FORMAT_INVALID),
1125 mParamStatus(NO_ERROR),
Glenn Kasten5ad92f62012-07-19 10:02:15 -07001126 mStandby(false), mDevice(device), mId(id),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001127 mDeathRecipient(new PMDeathRecipient(this))
Mathias Agopian65ab4712010-07-14 17:59:35 -07001128{
1129}
1130
1131AudioFlinger::ThreadBase::~ThreadBase()
1132{
1133 mParamCond.broadcast();
Eric Laurentfeb0db62011-07-22 09:04:31 -07001134 // do not lock the mutex in destructor
1135 releaseWakeLock_l();
Eric Laurent9d18ec52011-09-27 12:07:15 -07001136 if (mPowerManager != 0) {
1137 sp<IBinder> binder = mPowerManager->asBinder();
1138 binder->unlinkToDeath(mDeathRecipient);
1139 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001140}
1141
1142void AudioFlinger::ThreadBase::exit()
1143{
Steve Block3856b092011-10-20 11:56:00 +01001144 ALOGV("ThreadBase::exit");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001145 {
Glenn Kastenb28686f2012-01-06 08:39:38 -08001146 // This lock prevents the following race in thread (uniprocessor for illustration):
1147 // if (!exitPending()) {
1148 // // context switch from here to exit()
1149 // // exit() calls requestExit(), what exitPending() observes
1150 // // exit() calls signal(), which is dropped since no waiters
1151 // // context switch back from exit() to here
1152 // mWaitWorkCV.wait(...);
1153 // // now thread is hung
1154 // }
Glenn Kastena7d8d6f2012-01-05 15:41:56 -08001155 AutoMutex lock(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001156 requestExit();
1157 mWaitWorkCV.signal();
1158 }
Glenn Kastenb28686f2012-01-06 08:39:38 -08001159 // When Thread::requestExitAndWait is made virtual and this method is renamed to
1160 // "virtual status_t requestExitAndWait()", replace by "return Thread::requestExitAndWait();"
Mathias Agopian65ab4712010-07-14 17:59:35 -07001161 requestExitAndWait();
1162}
1163
Mathias Agopian65ab4712010-07-14 17:59:35 -07001164status_t AudioFlinger::ThreadBase::setParameters(const String8& keyValuePairs)
1165{
1166 status_t status;
1167
Steve Block3856b092011-10-20 11:56:00 +01001168 ALOGV("ThreadBase::setParameters() %s", keyValuePairs.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001169 Mutex::Autolock _l(mLock);
1170
1171 mNewParameters.add(keyValuePairs);
1172 mWaitWorkCV.signal();
1173 // wait condition with timeout in case the thread loop has exited
1174 // before the request could be processed
Glenn Kasten7dede872011-12-13 11:04:14 -08001175 if (mParamCond.waitRelative(mLock, kSetParametersTimeoutNs) == NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001176 status = mParamStatus;
1177 mWaitWorkCV.signal();
1178 } else {
1179 status = TIMED_OUT;
1180 }
1181 return status;
1182}
1183
1184void AudioFlinger::ThreadBase::sendConfigEvent(int event, int param)
1185{
1186 Mutex::Autolock _l(mLock);
1187 sendConfigEvent_l(event, param);
1188}
1189
1190// sendConfigEvent_l() must be called with ThreadBase::mLock held
1191void AudioFlinger::ThreadBase::sendConfigEvent_l(int event, int param)
1192{
Glenn Kastenf3990f22011-12-13 11:50:00 -08001193 ConfigEvent configEvent;
1194 configEvent.mEvent = event;
1195 configEvent.mParam = param;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001196 mConfigEvents.add(configEvent);
Steve Block3856b092011-10-20 11:56:00 +01001197 ALOGV("sendConfigEvent() num events %d event %d, param %d", mConfigEvents.size(), event, param);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001198 mWaitWorkCV.signal();
1199}
1200
1201void AudioFlinger::ThreadBase::processConfigEvents()
1202{
1203 mLock.lock();
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001204 while (!mConfigEvents.isEmpty()) {
Steve Block3856b092011-10-20 11:56:00 +01001205 ALOGV("processConfigEvents() remaining events %d", mConfigEvents.size());
Glenn Kastenf3990f22011-12-13 11:50:00 -08001206 ConfigEvent configEvent = mConfigEvents[0];
Mathias Agopian65ab4712010-07-14 17:59:35 -07001207 mConfigEvents.removeAt(0);
1208 // release mLock before locking AudioFlinger mLock: lock order is always
1209 // AudioFlinger then ThreadBase to avoid cross deadlock
1210 mLock.unlock();
1211 mAudioFlinger->mLock.lock();
Glenn Kastenf3990f22011-12-13 11:50:00 -08001212 audioConfigChanged_l(configEvent.mEvent, configEvent.mParam);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001213 mAudioFlinger->mLock.unlock();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001214 mLock.lock();
1215 }
1216 mLock.unlock();
1217}
1218
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07001219void AudioFlinger::ThreadBase::dumpBase(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001220{
1221 const size_t SIZE = 256;
1222 char buffer[SIZE];
1223 String8 result;
1224
1225 bool locked = tryLock(mLock);
1226 if (!locked) {
1227 snprintf(buffer, SIZE, "thread %p maybe dead locked\n", this);
1228 write(fd, buffer, strlen(buffer));
1229 }
1230
Eric Laurent612bbb52012-03-14 15:03:26 -07001231 snprintf(buffer, SIZE, "io handle: %d\n", mId);
1232 result.append(buffer);
1233 snprintf(buffer, SIZE, "TID: %d\n", getTid());
1234 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001235 snprintf(buffer, SIZE, "standby: %d\n", mStandby);
1236 result.append(buffer);
1237 snprintf(buffer, SIZE, "Sample rate: %d\n", mSampleRate);
1238 result.append(buffer);
Glenn Kasten58912562012-04-03 10:45:00 -07001239 snprintf(buffer, SIZE, "HAL frame count: %d\n", mFrameCount);
1240 result.append(buffer);
1241 snprintf(buffer, SIZE, "Normal frame count: %d\n", mNormalFrameCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001242 result.append(buffer);
1243 snprintf(buffer, SIZE, "Channel Count: %d\n", mChannelCount);
1244 result.append(buffer);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001245 snprintf(buffer, SIZE, "Channel Mask: 0x%08x\n", mChannelMask);
1246 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001247 snprintf(buffer, SIZE, "Format: %d\n", mFormat);
1248 result.append(buffer);
Glenn Kastenb9980652012-01-11 09:48:27 -08001249 snprintf(buffer, SIZE, "Frame size: %u\n", mFrameSize);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001250 result.append(buffer);
1251
1252 snprintf(buffer, SIZE, "\nPending setParameters commands: \n");
1253 result.append(buffer);
1254 result.append(" Index Command");
1255 for (size_t i = 0; i < mNewParameters.size(); ++i) {
1256 snprintf(buffer, SIZE, "\n %02d ", i);
1257 result.append(buffer);
1258 result.append(mNewParameters[i]);
1259 }
1260
1261 snprintf(buffer, SIZE, "\n\nPending config events: \n");
1262 result.append(buffer);
1263 snprintf(buffer, SIZE, " Index event param\n");
1264 result.append(buffer);
1265 for (size_t i = 0; i < mConfigEvents.size(); i++) {
Glenn Kastenf3990f22011-12-13 11:50:00 -08001266 snprintf(buffer, SIZE, " %02d %02d %d\n", i, mConfigEvents[i].mEvent, mConfigEvents[i].mParam);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001267 result.append(buffer);
1268 }
1269 result.append("\n");
1270
1271 write(fd, result.string(), result.size());
1272
1273 if (locked) {
1274 mLock.unlock();
1275 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001276}
1277
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07001278void AudioFlinger::ThreadBase::dumpEffectChains(int fd, const Vector<String16>& args)
Eric Laurent1d2bff02011-07-24 17:49:51 -07001279{
1280 const size_t SIZE = 256;
1281 char buffer[SIZE];
1282 String8 result;
1283
1284 snprintf(buffer, SIZE, "\n- %d Effect Chains:\n", mEffectChains.size());
1285 write(fd, buffer, strlen(buffer));
1286
1287 for (size_t i = 0; i < mEffectChains.size(); ++i) {
1288 sp<EffectChain> chain = mEffectChains[i];
1289 if (chain != 0) {
1290 chain->dump(fd, args);
1291 }
1292 }
Eric Laurent1d2bff02011-07-24 17:49:51 -07001293}
1294
Eric Laurentfeb0db62011-07-22 09:04:31 -07001295void AudioFlinger::ThreadBase::acquireWakeLock()
1296{
1297 Mutex::Autolock _l(mLock);
1298 acquireWakeLock_l();
1299}
1300
1301void AudioFlinger::ThreadBase::acquireWakeLock_l()
1302{
1303 if (mPowerManager == 0) {
1304 // use checkService() to avoid blocking if power service is not up yet
1305 sp<IBinder> binder =
1306 defaultServiceManager()->checkService(String16("power"));
1307 if (binder == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001308 ALOGW("Thread %s cannot connect to the power manager service", mName);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001309 } else {
1310 mPowerManager = interface_cast<IPowerManager>(binder);
1311 binder->linkToDeath(mDeathRecipient);
1312 }
1313 }
1314 if (mPowerManager != 0) {
1315 sp<IBinder> binder = new BBinder();
1316 status_t status = mPowerManager->acquireWakeLock(POWERMANAGER_PARTIAL_WAKE_LOCK,
1317 binder,
1318 String16(mName));
1319 if (status == NO_ERROR) {
1320 mWakeLockToken = binder;
1321 }
Steve Block3856b092011-10-20 11:56:00 +01001322 ALOGV("acquireWakeLock_l() %s status %d", mName, status);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001323 }
1324}
1325
1326void AudioFlinger::ThreadBase::releaseWakeLock()
1327{
1328 Mutex::Autolock _l(mLock);
Eric Laurent6dbe8832011-07-28 13:59:02 -07001329 releaseWakeLock_l();
Eric Laurentfeb0db62011-07-22 09:04:31 -07001330}
1331
1332void AudioFlinger::ThreadBase::releaseWakeLock_l()
1333{
1334 if (mWakeLockToken != 0) {
Steve Block3856b092011-10-20 11:56:00 +01001335 ALOGV("releaseWakeLock_l() %s", mName);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001336 if (mPowerManager != 0) {
1337 mPowerManager->releaseWakeLock(mWakeLockToken, 0);
1338 }
1339 mWakeLockToken.clear();
1340 }
1341}
1342
1343void AudioFlinger::ThreadBase::clearPowerManager()
1344{
1345 Mutex::Autolock _l(mLock);
1346 releaseWakeLock_l();
1347 mPowerManager.clear();
1348}
1349
1350void AudioFlinger::ThreadBase::PMDeathRecipient::binderDied(const wp<IBinder>& who)
1351{
1352 sp<ThreadBase> thread = mThread.promote();
1353 if (thread != 0) {
1354 thread->clearPowerManager();
1355 }
Steve Block5ff1dd52012-01-05 23:22:43 +00001356 ALOGW("power manager service died !!!");
Eric Laurentfeb0db62011-07-22 09:04:31 -07001357}
Eric Laurent1d2bff02011-07-24 17:49:51 -07001358
Eric Laurent59255e42011-07-27 19:49:51 -07001359void AudioFlinger::ThreadBase::setEffectSuspended(
1360 const effect_uuid_t *type, bool suspend, int sessionId)
1361{
1362 Mutex::Autolock _l(mLock);
1363 setEffectSuspended_l(type, suspend, sessionId);
1364}
1365
1366void AudioFlinger::ThreadBase::setEffectSuspended_l(
1367 const effect_uuid_t *type, bool suspend, int sessionId)
1368{
Glenn Kasten090f0192012-01-30 13:00:02 -08001369 sp<EffectChain> chain = getEffectChain_l(sessionId);
Eric Laurent59255e42011-07-27 19:49:51 -07001370 if (chain != 0) {
1371 if (type != NULL) {
1372 chain->setEffectSuspended_l(type, suspend);
1373 } else {
1374 chain->setEffectSuspendedAll_l(suspend);
1375 }
1376 }
1377
1378 updateSuspendedSessions_l(type, suspend, sessionId);
1379}
1380
1381void AudioFlinger::ThreadBase::checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain)
1382{
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001383 ssize_t index = mSuspendedSessions.indexOfKey(chain->sessionId());
Eric Laurent59255e42011-07-27 19:49:51 -07001384 if (index < 0) {
1385 return;
1386 }
1387
Glenn Kasten0a7af182012-07-09 16:09:19 -07001388 const KeyedVector <int, sp<SuspendedSessionDesc> >& sessionEffects =
1389 mSuspendedSessions.valueAt(index);
Eric Laurent59255e42011-07-27 19:49:51 -07001390
1391 for (size_t i = 0; i < sessionEffects.size(); i++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001392 sp<SuspendedSessionDesc> desc = sessionEffects.valueAt(i);
Eric Laurent59255e42011-07-27 19:49:51 -07001393 for (int j = 0; j < desc->mRefCount; j++) {
1394 if (sessionEffects.keyAt(i) == EffectChain::kKeyForSuspendAll) {
1395 chain->setEffectSuspendedAll_l(true);
1396 } else {
Steve Block3856b092011-10-20 11:56:00 +01001397 ALOGV("checkSuspendOnAddEffectChain_l() suspending effects %08x",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001398 desc->mType.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07001399 chain->setEffectSuspended_l(&desc->mType, true);
1400 }
1401 }
1402 }
1403}
1404
Eric Laurent59255e42011-07-27 19:49:51 -07001405void AudioFlinger::ThreadBase::updateSuspendedSessions_l(const effect_uuid_t *type,
1406 bool suspend,
1407 int sessionId)
1408{
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001409 ssize_t index = mSuspendedSessions.indexOfKey(sessionId);
Eric Laurent59255e42011-07-27 19:49:51 -07001410
1411 KeyedVector <int, sp<SuspendedSessionDesc> > sessionEffects;
1412
1413 if (suspend) {
1414 if (index >= 0) {
Glenn Kasten0a7af182012-07-09 16:09:19 -07001415 sessionEffects = mSuspendedSessions.valueAt(index);
Eric Laurent59255e42011-07-27 19:49:51 -07001416 } else {
1417 mSuspendedSessions.add(sessionId, sessionEffects);
1418 }
1419 } else {
1420 if (index < 0) {
1421 return;
1422 }
Glenn Kasten0a7af182012-07-09 16:09:19 -07001423 sessionEffects = mSuspendedSessions.valueAt(index);
Eric Laurent59255e42011-07-27 19:49:51 -07001424 }
1425
1426
1427 int key = EffectChain::kKeyForSuspendAll;
1428 if (type != NULL) {
1429 key = type->timeLow;
1430 }
1431 index = sessionEffects.indexOfKey(key);
1432
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001433 sp<SuspendedSessionDesc> desc;
Eric Laurent59255e42011-07-27 19:49:51 -07001434 if (suspend) {
1435 if (index >= 0) {
1436 desc = sessionEffects.valueAt(index);
1437 } else {
1438 desc = new SuspendedSessionDesc();
1439 if (type != NULL) {
Glenn Kastena189a682012-02-20 12:16:30 -08001440 desc->mType = *type;
Eric Laurent59255e42011-07-27 19:49:51 -07001441 }
1442 sessionEffects.add(key, desc);
Steve Block3856b092011-10-20 11:56:00 +01001443 ALOGV("updateSuspendedSessions_l() suspend adding effect %08x", key);
Eric Laurent59255e42011-07-27 19:49:51 -07001444 }
1445 desc->mRefCount++;
1446 } else {
1447 if (index < 0) {
1448 return;
1449 }
1450 desc = sessionEffects.valueAt(index);
1451 if (--desc->mRefCount == 0) {
Steve Block3856b092011-10-20 11:56:00 +01001452 ALOGV("updateSuspendedSessions_l() restore removing effect %08x", key);
Eric Laurent59255e42011-07-27 19:49:51 -07001453 sessionEffects.removeItemsAt(index);
1454 if (sessionEffects.isEmpty()) {
Steve Block3856b092011-10-20 11:56:00 +01001455 ALOGV("updateSuspendedSessions_l() restore removing session %d",
Eric Laurent59255e42011-07-27 19:49:51 -07001456 sessionId);
1457 mSuspendedSessions.removeItem(sessionId);
1458 }
1459 }
1460 }
1461 if (!sessionEffects.isEmpty()) {
1462 mSuspendedSessions.replaceValueFor(sessionId, sessionEffects);
1463 }
1464}
1465
1466void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1467 bool enabled,
1468 int sessionId)
1469{
1470 Mutex::Autolock _l(mLock);
Eric Laurenta85a74a2011-10-19 11:44:54 -07001471 checkSuspendOnEffectEnabled_l(effect, enabled, sessionId);
1472}
Eric Laurent59255e42011-07-27 19:49:51 -07001473
Eric Laurenta85a74a2011-10-19 11:44:54 -07001474void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
1475 bool enabled,
1476 int sessionId)
1477{
Eric Laurentdb7c0792011-08-10 10:37:50 -07001478 if (mType != RECORD) {
1479 // suspend all effects in AUDIO_SESSION_OUTPUT_MIX when enabling any effect on
1480 // another session. This gives the priority to well behaved effect control panels
1481 // and applications not using global effects.
Eric Laurent808e7d12012-05-11 19:44:09 -07001482 // Enabling post processing in AUDIO_SESSION_OUTPUT_STAGE session does not affect
1483 // global effects
1484 if ((sessionId != AUDIO_SESSION_OUTPUT_MIX) && (sessionId != AUDIO_SESSION_OUTPUT_STAGE)) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07001485 setEffectSuspended_l(NULL, enabled, AUDIO_SESSION_OUTPUT_MIX);
1486 }
1487 }
Eric Laurent59255e42011-07-27 19:49:51 -07001488
1489 sp<EffectChain> chain = getEffectChain_l(sessionId);
1490 if (chain != 0) {
1491 chain->checkSuspendOnEffectEnabled(effect, enabled);
1492 }
1493}
1494
Mathias Agopian65ab4712010-07-14 17:59:35 -07001495// ----------------------------------------------------------------------------
1496
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001497AudioFlinger::PlaybackThread::PlaybackThread(const sp<AudioFlinger>& audioFlinger,
1498 AudioStreamOut* output,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001499 audio_io_handle_t id,
Glenn Kastenbb4350d2012-07-03 15:56:38 -07001500 audio_devices_t device,
Glenn Kasten23bb8be2012-01-26 10:38:26 -08001501 type_t type)
1502 : ThreadBase(audioFlinger, id, device, type),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001503 mMixBuffer(NULL), mSuspended(0), mBytesWritten(0),
1504 // Assumes constructor is called by AudioFlinger with it's mLock held,
1505 // but it would be safer to explicitly pass initial masterMute as parameter
1506 mMasterMute(audioFlinger->masterMute_l()),
1507 // mStreamTypes[] initialized in constructor body
1508 mOutput(output),
1509 // Assumes constructor is called by AudioFlinger with it's mLock held,
1510 // but it would be safer to explicitly pass initial masterVolume as parameter
John Grossman4ff14ba2012-02-08 16:37:41 -08001511 mMasterVolume(audioFlinger->masterVolumeSW_l()),
Glenn Kastenfec279f2012-03-08 07:47:15 -08001512 mLastWriteTime(0), mNumWrites(0), mNumDelayedWrites(0), mInWrite(false),
Glenn Kastenaa4397f2012-03-12 18:13:59 -07001513 mMixerStatus(MIXER_IDLE),
Glenn Kasten81028042012-04-30 18:15:12 -07001514 mMixerStatusIgnoringFastTracks(MIXER_IDLE),
Glenn Kasten58912562012-04-03 10:45:00 -07001515 standbyDelay(AudioFlinger::mStandbyTimeInNsecs),
Glenn Kasten28ed2f92012-06-07 10:17:54 -07001516 mScreenState(gScreenState),
Glenn Kasten288ed212012-04-25 17:52:27 -07001517 // index 0 is reserved for normal mixer's submix
1518 mFastTrackAvailMask(((1 << FastMixerState::kMaxFastTracks) - 1) & ~1)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001519{
Glenn Kasten480b4682012-02-28 12:30:08 -08001520 snprintf(mName, kNameLength, "AudioOut_%X", id);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001521
Mathias Agopian65ab4712010-07-14 17:59:35 -07001522 readOutputParameters();
1523
Glenn Kasten263709e2012-01-06 08:40:01 -08001524 // mStreamTypes[AUDIO_STREAM_CNT] is initialized by stream_type_t default constructor
Glenn Kastenfff6d712012-01-12 16:38:12 -08001525 // There is no AUDIO_STREAM_MIN, and ++ operator does not compile
1526 for (audio_stream_type_t stream = (audio_stream_type_t) 0; stream < AUDIO_STREAM_CNT;
1527 stream = (audio_stream_type_t) (stream + 1)) {
Glenn Kasten6637baa2012-01-09 09:40:36 -08001528 mStreamTypes[stream].volume = mAudioFlinger->streamVolume_l(stream);
1529 mStreamTypes[stream].mute = mAudioFlinger->streamMute_l(stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001530 }
Glenn Kasten6637baa2012-01-09 09:40:36 -08001531 // mStreamTypes[AUDIO_STREAM_CNT] exists but isn't explicitly initialized here,
1532 // because mAudioFlinger doesn't have one to copy from
Mathias Agopian65ab4712010-07-14 17:59:35 -07001533}
1534
1535AudioFlinger::PlaybackThread::~PlaybackThread()
1536{
1537 delete [] mMixBuffer;
1538}
1539
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07001540void AudioFlinger::PlaybackThread::dump(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001541{
1542 dumpInternals(fd, args);
1543 dumpTracks(fd, args);
1544 dumpEffectChains(fd, args);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001545}
1546
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07001547void AudioFlinger::PlaybackThread::dumpTracks(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001548{
1549 const size_t SIZE = 256;
1550 char buffer[SIZE];
1551 String8 result;
1552
Glenn Kasten58912562012-04-03 10:45:00 -07001553 result.appendFormat("Output thread %p stream volumes in dB:\n ", this);
1554 for (int i = 0; i < AUDIO_STREAM_CNT; ++i) {
1555 const stream_type_t *st = &mStreamTypes[i];
1556 if (i > 0) {
1557 result.appendFormat(", ");
1558 }
1559 result.appendFormat("%d:%.2g", i, 20.0 * log10(st->volume));
1560 if (st->mute) {
1561 result.append("M");
1562 }
1563 }
1564 result.append("\n");
1565 write(fd, result.string(), result.length());
1566 result.clear();
1567
Mathias Agopian65ab4712010-07-14 17:59:35 -07001568 snprintf(buffer, SIZE, "Output thread %p tracks\n", this);
1569 result.append(buffer);
Glenn Kasten288ed212012-04-25 17:52:27 -07001570 Track::appendDumpHeader(result);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001571 for (size_t i = 0; i < mTracks.size(); ++i) {
1572 sp<Track> track = mTracks[i];
1573 if (track != 0) {
1574 track->dump(buffer, SIZE);
1575 result.append(buffer);
1576 }
1577 }
1578
1579 snprintf(buffer, SIZE, "Output thread %p active tracks\n", this);
1580 result.append(buffer);
Glenn Kasten288ed212012-04-25 17:52:27 -07001581 Track::appendDumpHeader(result);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001582 for (size_t i = 0; i < mActiveTracks.size(); ++i) {
Glenn Kasten77c11192012-01-25 14:27:41 -08001583 sp<Track> track = mActiveTracks[i].promote();
1584 if (track != 0) {
1585 track->dump(buffer, SIZE);
1586 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001587 }
1588 }
1589 write(fd, result.string(), result.size());
Glenn Kasten88cbea82012-05-15 07:39:27 -07001590
1591 // These values are "raw"; they will wrap around. See prepareTracks_l() for a better way.
1592 FastTrackUnderruns underruns = getFastTrackUnderruns(0);
1593 fdprintf(fd, "Normal mixer raw underrun counters: partial=%u empty=%u\n",
1594 underruns.mBitFields.mPartial, underruns.mBitFields.mEmpty);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001595}
1596
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07001597void AudioFlinger::PlaybackThread::dumpInternals(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001598{
1599 const size_t SIZE = 256;
1600 char buffer[SIZE];
1601 String8 result;
1602
1603 snprintf(buffer, SIZE, "\nOutput thread %p internals\n", this);
1604 result.append(buffer);
1605 snprintf(buffer, SIZE, "last write occurred (msecs): %llu\n", ns2ms(systemTime() - mLastWriteTime));
1606 result.append(buffer);
1607 snprintf(buffer, SIZE, "total writes: %d\n", mNumWrites);
1608 result.append(buffer);
1609 snprintf(buffer, SIZE, "delayed writes: %d\n", mNumDelayedWrites);
1610 result.append(buffer);
1611 snprintf(buffer, SIZE, "blocked in write: %d\n", mInWrite);
1612 result.append(buffer);
1613 snprintf(buffer, SIZE, "suspend count: %d\n", mSuspended);
1614 result.append(buffer);
1615 snprintf(buffer, SIZE, "mix buffer : %p\n", mMixBuffer);
1616 result.append(buffer);
1617 write(fd, result.string(), result.size());
Glenn Kasten1295bb4d2012-05-31 07:43:43 -07001618 fdprintf(fd, "Fast track availMask=%#x\n", mFastTrackAvailMask);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001619
1620 dumpBase(fd, args);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001621}
1622
1623// Thread virtuals
1624status_t AudioFlinger::PlaybackThread::readyToRun()
1625{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001626 status_t status = initCheck();
1627 if (status == NO_ERROR) {
Steve Blockdf64d152012-01-04 20:05:49 +00001628 ALOGI("AudioFlinger's thread %p ready to run", this);
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001629 } else {
Steve Block29357bc2012-01-06 19:20:56 +00001630 ALOGE("No working audio driver found.");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001631 }
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001632 return status;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001633}
1634
1635void AudioFlinger::PlaybackThread::onFirstRef()
1636{
Eric Laurentfeb0db62011-07-22 09:04:31 -07001637 run(mName, ANDROID_PRIORITY_URGENT_AUDIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001638}
1639
1640// PlaybackThread::createTrack_l() must be called with AudioFlinger::mLock held
Glenn Kastenea7939a2012-03-14 12:56:26 -07001641sp<AudioFlinger::PlaybackThread::Track> AudioFlinger::PlaybackThread::createTrack_l(
Mathias Agopian65ab4712010-07-14 17:59:35 -07001642 const sp<AudioFlinger::Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -08001643 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001644 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08001645 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07001646 audio_channel_mask_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001647 int frameCount,
1648 const sp<IMemory>& sharedBuffer,
1649 int sessionId,
Glenn Kasten73d22752012-03-19 13:38:30 -07001650 IAudioFlinger::track_flags_t flags,
Glenn Kasten3acbd052012-02-28 10:39:56 -08001651 pid_t tid,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001652 status_t *status)
1653{
1654 sp<Track> track;
1655 status_t lStatus;
1656
Glenn Kasten73d22752012-03-19 13:38:30 -07001657 bool isTimed = (flags & IAudioFlinger::TRACK_TIMED) != 0;
1658
1659 // client expresses a preference for FAST, but we get the final say
Glenn Kastene0fa4672012-04-24 14:35:14 -07001660 if (flags & IAudioFlinger::TRACK_FAST) {
1661 if (
Glenn Kasten73d22752012-03-19 13:38:30 -07001662 // not timed
1663 (!isTimed) &&
1664 // either of these use cases:
1665 (
1666 // use case 1: shared buffer with any frame count
1667 (
1668 (sharedBuffer != 0)
1669 ) ||
Glenn Kastene0fa4672012-04-24 14:35:14 -07001670 // use case 2: callback handler and frame count is default or at least as large as HAL
Glenn Kasten73d22752012-03-19 13:38:30 -07001671 (
Glenn Kasten3acbd052012-02-28 10:39:56 -08001672 (tid != -1) &&
Glenn Kastene0fa4672012-04-24 14:35:14 -07001673 ((frameCount == 0) ||
Glenn Kasten300a2ee2012-04-25 13:47:36 -07001674 (frameCount >= (int) (mFrameCount * 2))) // * 2 is due to SRC jitter, see below
Glenn Kasten73d22752012-03-19 13:38:30 -07001675 )
1676 ) &&
1677 // PCM data
1678 audio_is_linear_pcm(format) &&
1679 // mono or stereo
1680 ( (channelMask == AUDIO_CHANNEL_OUT_MONO) ||
1681 (channelMask == AUDIO_CHANNEL_OUT_STEREO) ) &&
Glenn Kasten58912562012-04-03 10:45:00 -07001682#ifndef FAST_TRACKS_AT_NON_NATIVE_SAMPLE_RATE
Glenn Kasten73d22752012-03-19 13:38:30 -07001683 // hardware sample rate
Glenn Kasten58912562012-04-03 10:45:00 -07001684 (sampleRate == mSampleRate) &&
1685#endif
1686 // normal mixer has an associated fast mixer
1687 hasFastMixer() &&
1688 // there are sufficient fast track slots available
1689 (mFastTrackAvailMask != 0)
Glenn Kasten73d22752012-03-19 13:38:30 -07001690 // FIXME test that MixerThread for this fast track has a capable output HAL
1691 // FIXME add a permission test also?
Glenn Kastene0fa4672012-04-24 14:35:14 -07001692 ) {
Glenn Kastene0fa4672012-04-24 14:35:14 -07001693 // if frameCount not specified, then it defaults to fast mixer (HAL) frame count
1694 if (frameCount == 0) {
Glenn Kasten300a2ee2012-04-25 13:47:36 -07001695 frameCount = mFrameCount * 2; // FIXME * 2 is due to SRC jitter, should be computed
Glenn Kastene0fa4672012-04-24 14:35:14 -07001696 }
Glenn Kasten31dfd1d2012-05-01 11:07:08 -07001697 ALOGV("AUDIO_OUTPUT_FLAG_FAST accepted: frameCount=%d mFrameCount=%d",
Glenn Kasten300a2ee2012-04-25 13:47:36 -07001698 frameCount, mFrameCount);
Glenn Kastene0fa4672012-04-24 14:35:14 -07001699 } else {
Glenn Kasten852fca92012-05-24 08:44:00 -07001700 ALOGV("AUDIO_OUTPUT_FLAG_FAST denied: isTimed=%d sharedBuffer=%p frameCount=%d "
Glenn Kasten254af182012-07-03 14:59:05 -07001701 "mFrameCount=%d format=%d isLinear=%d channelMask=%#x sampleRate=%d mSampleRate=%d "
Glenn Kasten58912562012-04-03 10:45:00 -07001702 "hasFastMixer=%d tid=%d fastTrackAvailMask=%#x",
1703 isTimed, sharedBuffer.get(), frameCount, mFrameCount, format,
1704 audio_is_linear_pcm(format),
1705 channelMask, sampleRate, mSampleRate, hasFastMixer(), tid, mFastTrackAvailMask);
Glenn Kasten73d22752012-03-19 13:38:30 -07001706 flags &= ~IAudioFlinger::TRACK_FAST;
Glenn Kastene0fa4672012-04-24 14:35:14 -07001707 // For compatibility with AudioTrack calculation, buffer depth is forced
1708 // to be at least 2 x the normal mixer frame count and cover audio hardware latency.
1709 // This is probably too conservative, but legacy application code may depend on it.
1710 // If you change this calculation, also review the start threshold which is related.
1711 uint32_t latencyMs = mOutput->stream->get_latency(mOutput->stream);
1712 uint32_t minBufCount = latencyMs / ((1000 * mNormalFrameCount) / mSampleRate);
1713 if (minBufCount < 2) {
1714 minBufCount = 2;
Glenn Kasten58912562012-04-03 10:45:00 -07001715 }
Glenn Kastene0fa4672012-04-24 14:35:14 -07001716 int minFrameCount = mNormalFrameCount * minBufCount;
1717 if (frameCount < minFrameCount) {
1718 frameCount = minFrameCount;
1719 }
1720 }
Glenn Kasten73d22752012-03-19 13:38:30 -07001721 }
1722
Mathias Agopian65ab4712010-07-14 17:59:35 -07001723 if (mType == DIRECT) {
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001724 if ((format & AUDIO_FORMAT_MAIN_MASK) == AUDIO_FORMAT_PCM) {
1725 if (sampleRate != mSampleRate || format != mFormat || channelMask != mChannelMask) {
Steve Block29357bc2012-01-06 19:20:56 +00001726 ALOGE("createTrack_l() Bad parameter: sampleRate %d format %d, channelMask 0x%08x \""
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001727 "for output %p with format %d",
1728 sampleRate, format, channelMask, mOutput, mFormat);
1729 lStatus = BAD_VALUE;
1730 goto Exit;
1731 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001732 }
1733 } else {
1734 // Resampler implementation limits input sampling rate to 2 x output sampling rate.
1735 if (sampleRate > mSampleRate*2) {
Steve Block29357bc2012-01-06 19:20:56 +00001736 ALOGE("Sample rate out of range: %d mSampleRate %d", sampleRate, mSampleRate);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001737 lStatus = BAD_VALUE;
1738 goto Exit;
1739 }
1740 }
1741
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001742 lStatus = initCheck();
1743 if (lStatus != NO_ERROR) {
Steve Block29357bc2012-01-06 19:20:56 +00001744 ALOGE("Audio driver not initialized.");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001745 goto Exit;
1746 }
1747
1748 { // scope for mLock
1749 Mutex::Autolock _l(mLock);
Eric Laurentde070132010-07-13 04:45:46 -07001750
1751 // all tracks in same audio session must share the same routing strategy otherwise
1752 // conflicts will happen when tracks are moved from one output to another by audio policy
1753 // manager
Glenn Kasten02bbd202012-02-08 12:35:35 -08001754 uint32_t strategy = AudioSystem::getStrategyForStream(streamType);
Eric Laurentde070132010-07-13 04:45:46 -07001755 for (size_t i = 0; i < mTracks.size(); ++i) {
1756 sp<Track> t = mTracks[i];
Glenn Kasten639dbee2012-03-07 12:26:34 -08001757 if (t != 0 && !t->isOutputTrack()) {
Glenn Kasten02bbd202012-02-08 12:35:35 -08001758 uint32_t actual = AudioSystem::getStrategyForStream(t->streamType());
Glenn Kastend8796012011-10-28 10:31:42 -07001759 if (sessionId == t->sessionId() && strategy != actual) {
Steve Block29357bc2012-01-06 19:20:56 +00001760 ALOGE("createTrack_l() mismatched strategy; expected %u but found %u",
Glenn Kastend8796012011-10-28 10:31:42 -07001761 strategy, actual);
Eric Laurentde070132010-07-13 04:45:46 -07001762 lStatus = BAD_VALUE;
1763 goto Exit;
1764 }
1765 }
1766 }
1767
John Grossman4ff14ba2012-02-08 16:37:41 -08001768 if (!isTimed) {
1769 track = new Track(this, client, streamType, sampleRate, format,
Glenn Kasten73d22752012-03-19 13:38:30 -07001770 channelMask, frameCount, sharedBuffer, sessionId, flags);
John Grossman4ff14ba2012-02-08 16:37:41 -08001771 } else {
1772 track = TimedTrack::create(this, client, streamType, sampleRate, format,
1773 channelMask, frameCount, sharedBuffer, sessionId);
1774 }
Glenn Kastend5903ec2012-03-18 10:33:27 -07001775 if (track == 0 || track->getCblk() == NULL || track->name() < 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001776 lStatus = NO_MEMORY;
1777 goto Exit;
1778 }
1779 mTracks.add(track);
1780
1781 sp<EffectChain> chain = getEffectChain_l(sessionId);
1782 if (chain != 0) {
Steve Block3856b092011-10-20 11:56:00 +01001783 ALOGV("createTrack_l() setting main buffer %p", chain->inBuffer());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001784 track->setMainBuffer(chain->inBuffer());
Glenn Kasten02bbd202012-02-08 12:35:35 -08001785 chain->setStrategy(AudioSystem::getStrategyForStream(track->streamType()));
Eric Laurentb469b942011-05-09 12:09:06 -07001786 chain->incTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001787 }
1788 }
Glenn Kasten3acbd052012-02-28 10:39:56 -08001789
Glenn Kasten3acbd052012-02-28 10:39:56 -08001790 if ((flags & IAudioFlinger::TRACK_FAST) && (tid != -1)) {
1791 pid_t callingPid = IPCThreadState::self()->getCallingPid();
1792 // we don't have CAP_SYS_NICE, nor do we want to have it as it's too powerful,
1793 // so ask activity manager to do this on our behalf
Glenn Kastenfd4e20c2012-06-04 11:51:12 -07001794 int err = requestPriority(callingPid, tid, kPriorityAudioApp);
Glenn Kasten3acbd052012-02-28 10:39:56 -08001795 if (err != 0) {
1796 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
Glenn Kastenfd4e20c2012-06-04 11:51:12 -07001797 kPriorityAudioApp, callingPid, tid, err);
Glenn Kasten3acbd052012-02-28 10:39:56 -08001798 }
1799 }
Glenn Kasten3acbd052012-02-28 10:39:56 -08001800
Mathias Agopian65ab4712010-07-14 17:59:35 -07001801 lStatus = NO_ERROR;
1802
1803Exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001804 if (status) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001805 *status = lStatus;
1806 }
1807 return track;
1808}
1809
Eric Laurente737cda2012-05-22 18:55:44 -07001810uint32_t AudioFlinger::MixerThread::correctLatency(uint32_t latency) const
1811{
1812 if (mFastMixer != NULL) {
1813 MonoPipe *pipe = (MonoPipe *)mPipeSink.get();
1814 latency += (pipe->getAvgFrames() * 1000) / mSampleRate;
1815 }
1816 return latency;
1817}
1818
1819uint32_t AudioFlinger::PlaybackThread::correctLatency(uint32_t latency) const
1820{
1821 return latency;
1822}
1823
Mathias Agopian65ab4712010-07-14 17:59:35 -07001824uint32_t AudioFlinger::PlaybackThread::latency() const
1825{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001826 Mutex::Autolock _l(mLock);
Marco Nelissenf06c2ed2012-06-06 09:52:31 -07001827 return latency_l();
1828}
1829uint32_t AudioFlinger::PlaybackThread::latency_l() const
1830{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001831 if (initCheck() == NO_ERROR) {
Eric Laurente737cda2012-05-22 18:55:44 -07001832 return correctLatency(mOutput->stream->get_latency(mOutput->stream));
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001833 } else {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001834 return 0;
1835 }
1836}
1837
Glenn Kasten6637baa2012-01-09 09:40:36 -08001838void AudioFlinger::PlaybackThread::setMasterVolume(float value)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001839{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001840 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001841 mMasterVolume = value;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001842}
1843
Glenn Kasten6637baa2012-01-09 09:40:36 -08001844void AudioFlinger::PlaybackThread::setMasterMute(bool muted)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001845{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001846 Mutex::Autolock _l(mLock);
1847 setMasterMute_l(muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001848}
1849
Glenn Kasten6637baa2012-01-09 09:40:36 -08001850void AudioFlinger::PlaybackThread::setStreamVolume(audio_stream_type_t stream, float value)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001851{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001852 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001853 mStreamTypes[stream].volume = value;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001854}
1855
Glenn Kasten6637baa2012-01-09 09:40:36 -08001856void AudioFlinger::PlaybackThread::setStreamMute(audio_stream_type_t stream, bool muted)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001857{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001858 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001859 mStreamTypes[stream].mute = muted;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001860}
1861
Glenn Kastenfff6d712012-01-12 16:38:12 -08001862float AudioFlinger::PlaybackThread::streamVolume(audio_stream_type_t stream) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07001863{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001864 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001865 return mStreamTypes[stream].volume;
1866}
1867
Mathias Agopian65ab4712010-07-14 17:59:35 -07001868// addTrack_l() must be called with ThreadBase::mLock held
1869status_t AudioFlinger::PlaybackThread::addTrack_l(const sp<Track>& track)
1870{
1871 status_t status = ALREADY_EXISTS;
1872
1873 // set retry count for buffer fill
1874 track->mRetryCount = kMaxTrackStartupRetries;
1875 if (mActiveTracks.indexOf(track) < 0) {
1876 // the track is newly added, make sure it fills up all its
1877 // buffers before playing. This is to ensure the client will
1878 // effectively get the latency it requested.
1879 track->mFillingUpStatus = Track::FS_FILLING;
1880 track->mResetDone = false;
Eric Laurent29864602012-05-08 18:57:51 -07001881 track->mPresentationCompleteFrames = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001882 mActiveTracks.add(track);
1883 if (track->mainBuffer() != mMixBuffer) {
1884 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1885 if (chain != 0) {
Steve Block3856b092011-10-20 11:56:00 +01001886 ALOGV("addTrack_l() starting track on chain %p for session %d", chain.get(), track->sessionId());
Eric Laurentb469b942011-05-09 12:09:06 -07001887 chain->incActiveTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001888 }
1889 }
1890
1891 status = NO_ERROR;
1892 }
1893
Steve Block3856b092011-10-20 11:56:00 +01001894 ALOGV("mWaitWorkCV.broadcast");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001895 mWaitWorkCV.broadcast();
1896
1897 return status;
1898}
1899
1900// destroyTrack_l() must be called with ThreadBase::mLock held
1901void AudioFlinger::PlaybackThread::destroyTrack_l(const sp<Track>& track)
1902{
1903 track->mState = TrackBase::TERMINATED;
Glenn Kasten288ed212012-04-25 17:52:27 -07001904 // active tracks are removed by threadLoop()
Mathias Agopian65ab4712010-07-14 17:59:35 -07001905 if (mActiveTracks.indexOf(track) < 0) {
Eric Laurentb469b942011-05-09 12:09:06 -07001906 removeTrack_l(track);
1907 }
1908}
1909
1910void AudioFlinger::PlaybackThread::removeTrack_l(const sp<Track>& track)
1911{
Eric Laurent29864602012-05-08 18:57:51 -07001912 track->triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
Eric Laurentb469b942011-05-09 12:09:06 -07001913 mTracks.remove(track);
1914 deleteTrackName_l(track->name());
Glenn Kasten288ed212012-04-25 17:52:27 -07001915 // redundant as track is about to be destroyed, for dumpsys only
1916 track->mName = -1;
1917 if (track->isFastTrack()) {
1918 int index = track->mFastIndex;
Eric Laurent29864602012-05-08 18:57:51 -07001919 ALOG_ASSERT(0 < index && index < (int)FastMixerState::kMaxFastTracks);
Glenn Kasten288ed212012-04-25 17:52:27 -07001920 ALOG_ASSERT(!(mFastTrackAvailMask & (1 << index)));
1921 mFastTrackAvailMask |= 1 << index;
1922 // redundant as track is about to be destroyed, for dumpsys only
1923 track->mFastIndex = -1;
1924 }
Eric Laurentb469b942011-05-09 12:09:06 -07001925 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1926 if (chain != 0) {
1927 chain->decTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001928 }
1929}
1930
1931String8 AudioFlinger::PlaybackThread::getParameters(const String8& keys)
1932{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001933 String8 out_s8 = String8("");
Dima Zavinfce7a472011-04-19 22:30:36 -07001934 char *s;
1935
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001936 Mutex::Autolock _l(mLock);
1937 if (initCheck() != NO_ERROR) {
1938 return out_s8;
1939 }
1940
Dima Zavin799a70e2011-04-18 16:57:27 -07001941 s = mOutput->stream->common.get_parameters(&mOutput->stream->common, keys.string());
Dima Zavinfce7a472011-04-19 22:30:36 -07001942 out_s8 = String8(s);
1943 free(s);
1944 return out_s8;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001945}
1946
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001947// audioConfigChanged_l() must be called with AudioFlinger::mLock held
Mathias Agopian65ab4712010-07-14 17:59:35 -07001948void AudioFlinger::PlaybackThread::audioConfigChanged_l(int event, int param) {
1949 AudioSystem::OutputDescriptor desc;
Glenn Kastena0d68332012-01-27 16:47:15 -08001950 void *param2 = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001951
Steve Block3856b092011-10-20 11:56:00 +01001952 ALOGV("PlaybackThread::audioConfigChanged_l, thread %p, event %d, param %d", this, event, param);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001953
1954 switch (event) {
1955 case AudioSystem::OUTPUT_OPENED:
1956 case AudioSystem::OUTPUT_CONFIG_CHANGED:
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001957 desc.channels = mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001958 desc.samplingRate = mSampleRate;
1959 desc.format = mFormat;
Glenn Kasten58912562012-04-03 10:45:00 -07001960 desc.frameCount = mNormalFrameCount; // FIXME see AudioFlinger::frameCount(audio_io_handle_t)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001961 desc.latency = latency();
1962 param2 = &desc;
1963 break;
1964
1965 case AudioSystem::STREAM_CONFIG_CHANGED:
1966 param2 = &param;
1967 case AudioSystem::OUTPUT_CLOSED:
1968 default:
1969 break;
1970 }
1971 mAudioFlinger->audioConfigChanged_l(event, mId, param2);
1972}
1973
1974void AudioFlinger::PlaybackThread::readOutputParameters()
1975{
Dima Zavin799a70e2011-04-18 16:57:27 -07001976 mSampleRate = mOutput->stream->common.get_sample_rate(&mOutput->stream->common);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001977 mChannelMask = mOutput->stream->common.get_channels(&mOutput->stream->common);
1978 mChannelCount = (uint16_t)popcount(mChannelMask);
Dima Zavin799a70e2011-04-18 16:57:27 -07001979 mFormat = mOutput->stream->common.get_format(&mOutput->stream->common);
Glenn Kastenb9980652012-01-11 09:48:27 -08001980 mFrameSize = audio_stream_frame_size(&mOutput->stream->common);
Dima Zavin799a70e2011-04-18 16:57:27 -07001981 mFrameCount = mOutput->stream->common.get_buffer_size(&mOutput->stream->common) / mFrameSize;
Glenn Kasten58912562012-04-03 10:45:00 -07001982 if (mFrameCount & 15) {
1983 ALOGW("HAL output buffer size is %u frames but AudioMixer requires multiples of 16 frames",
1984 mFrameCount);
1985 }
1986
Glenn Kasten300a2ee2012-04-25 13:47:36 -07001987 // Calculate size of normal mix buffer relative to the HAL output buffer size
Glenn Kasten4adcede2012-05-14 12:26:02 -07001988 double multiplier = 1.0;
Glenn Kasten300a2ee2012-04-25 13:47:36 -07001989 if (mType == MIXER && (kUseFastMixer == FastMixer_Static || kUseFastMixer == FastMixer_Dynamic)) {
Glenn Kasten58912562012-04-03 10:45:00 -07001990 size_t minNormalFrameCount = (kMinNormalMixBufferSizeMs * mSampleRate) / 1000;
Glenn Kasten4adcede2012-05-14 12:26:02 -07001991 size_t maxNormalFrameCount = (kMaxNormalMixBufferSizeMs * mSampleRate) / 1000;
1992 // round up minimum and round down maximum to nearest 16 frames to satisfy AudioMixer
1993 minNormalFrameCount = (minNormalFrameCount + 15) & ~15;
1994 maxNormalFrameCount = maxNormalFrameCount & ~15;
1995 if (maxNormalFrameCount < minNormalFrameCount) {
1996 maxNormalFrameCount = minNormalFrameCount;
1997 }
1998 multiplier = (double) minNormalFrameCount / (double) mFrameCount;
1999 if (multiplier <= 1.0) {
2000 multiplier = 1.0;
2001 } else if (multiplier <= 2.0) {
2002 if (2 * mFrameCount <= maxNormalFrameCount) {
2003 multiplier = 2.0;
2004 } else {
2005 multiplier = (double) maxNormalFrameCount / (double) mFrameCount;
2006 }
2007 } else {
2008 // prefer an even multiplier, for compatibility with doubling of fast tracks due to HAL SRC
2009 // (it would be unusual for the normal mix buffer size to not be a multiple of fast
2010 // track, but we sometimes have to do this to satisfy the maximum frame count constraint)
2011 // FIXME this rounding up should not be done if no HAL SRC
2012 uint32_t truncMult = (uint32_t) multiplier;
2013 if ((truncMult & 1)) {
2014 if ((truncMult + 1) * mFrameCount <= maxNormalFrameCount) {
2015 ++truncMult;
2016 }
2017 }
2018 multiplier = (double) truncMult;
Glenn Kasten58912562012-04-03 10:45:00 -07002019 }
Glenn Kasten58912562012-04-03 10:45:00 -07002020 }
Glenn Kasten4adcede2012-05-14 12:26:02 -07002021 mNormalFrameCount = multiplier * mFrameCount;
2022 // round up to nearest 16 frames to satisfy AudioMixer
2023 mNormalFrameCount = (mNormalFrameCount + 15) & ~15;
Glenn Kasten58912562012-04-03 10:45:00 -07002024 ALOGI("HAL output buffer size %u frames, normal mix buffer size %u frames", mFrameCount, mNormalFrameCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002025
Glenn Kastene9dd0172012-01-27 18:08:45 -08002026 delete[] mMixBuffer;
Eric Laurent67c0a582012-05-01 19:31:12 -07002027 mMixBuffer = new int16_t[mNormalFrameCount * mChannelCount];
2028 memset(mMixBuffer, 0, mNormalFrameCount * mChannelCount * sizeof(int16_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07002029
Eric Laurentde070132010-07-13 04:45:46 -07002030 // force reconfiguration of effect chains and engines to take new buffer size and audio
2031 // parameters into account
2032 // Note that mLock is not held when readOutputParameters() is called from the constructor
2033 // but in this case nothing is done below as no audio sessions have effect yet so it doesn't
2034 // matter.
2035 // create a copy of mEffectChains as calling moveEffectChain_l() can reorder some effect chains
2036 Vector< sp<EffectChain> > effectChains = mEffectChains;
2037 for (size_t i = 0; i < effectChains.size(); i ++) {
Eric Laurent39e94f82010-07-28 01:32:47 -07002038 mAudioFlinger->moveEffectChain_l(effectChains[i]->sessionId(), this, this, false);
Eric Laurentde070132010-07-13 04:45:46 -07002039 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002040}
2041
Eric Laurente737cda2012-05-22 18:55:44 -07002042
Mathias Agopian65ab4712010-07-14 17:59:35 -07002043status_t AudioFlinger::PlaybackThread::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames)
2044{
Glenn Kastena0d68332012-01-27 16:47:15 -08002045 if (halFrames == NULL || dspFrames == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002046 return BAD_VALUE;
2047 }
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002048 Mutex::Autolock _l(mLock);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07002049 if (initCheck() != NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002050 return INVALID_OPERATION;
2051 }
Dima Zavin799a70e2011-04-18 16:57:27 -07002052 *halFrames = mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002053
Dima Zavin799a70e2011-04-18 16:57:27 -07002054 return mOutput->stream->get_render_position(mOutput->stream, dspFrames);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002055}
2056
Eric Laurent39e94f82010-07-28 01:32:47 -07002057uint32_t AudioFlinger::PlaybackThread::hasAudioSession(int sessionId)
Mathias Agopian65ab4712010-07-14 17:59:35 -07002058{
2059 Mutex::Autolock _l(mLock);
Eric Laurent39e94f82010-07-28 01:32:47 -07002060 uint32_t result = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002061 if (getEffectChain_l(sessionId) != 0) {
Eric Laurent39e94f82010-07-28 01:32:47 -07002062 result = EFFECT_SESSION;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002063 }
2064
2065 for (size_t i = 0; i < mTracks.size(); ++i) {
2066 sp<Track> track = mTracks[i];
Eric Laurentde070132010-07-13 04:45:46 -07002067 if (sessionId == track->sessionId() &&
2068 !(track->mCblk->flags & CBLK_INVALID_MSK)) {
Eric Laurent39e94f82010-07-28 01:32:47 -07002069 result |= TRACK_SESSION;
2070 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002071 }
2072 }
2073
Eric Laurent39e94f82010-07-28 01:32:47 -07002074 return result;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002075}
2076
Eric Laurentde070132010-07-13 04:45:46 -07002077uint32_t AudioFlinger::PlaybackThread::getStrategyForSession_l(int sessionId)
2078{
Dima Zavinfce7a472011-04-19 22:30:36 -07002079 // session AUDIO_SESSION_OUTPUT_MIX is placed in same strategy as MUSIC stream so that
Eric Laurentde070132010-07-13 04:45:46 -07002080 // it is moved to correct output by audio policy manager when A2DP is connected or disconnected
Dima Zavinfce7a472011-04-19 22:30:36 -07002081 if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
2082 return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Eric Laurentde070132010-07-13 04:45:46 -07002083 }
2084 for (size_t i = 0; i < mTracks.size(); i++) {
2085 sp<Track> track = mTracks[i];
2086 if (sessionId == track->sessionId() &&
2087 !(track->mCblk->flags & CBLK_INVALID_MSK)) {
Glenn Kasten02bbd202012-02-08 12:35:35 -08002088 return AudioSystem::getStrategyForStream(track->streamType());
Eric Laurentde070132010-07-13 04:45:46 -07002089 }
2090 }
Dima Zavinfce7a472011-04-19 22:30:36 -07002091 return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Eric Laurentde070132010-07-13 04:45:46 -07002092}
2093
Mathias Agopian65ab4712010-07-14 17:59:35 -07002094
Glenn Kastenaed850d2012-01-26 09:46:34 -08002095AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::getOutput() const
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002096{
2097 Mutex::Autolock _l(mLock);
2098 return mOutput;
2099}
2100
2101AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::clearOutput()
2102{
2103 Mutex::Autolock _l(mLock);
2104 AudioStreamOut *output = mOutput;
2105 mOutput = NULL;
Glenn Kasten58912562012-04-03 10:45:00 -07002106 // FIXME FastMixer might also have a raw ptr to mOutputSink;
2107 // must push a NULL and wait for ack
2108 mOutputSink.clear();
2109 mPipeSink.clear();
2110 mNormalSink.clear();
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002111 return output;
2112}
2113
2114// this method must always be called either with ThreadBase mLock held or inside the thread loop
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08002115audio_stream_t* AudioFlinger::PlaybackThread::stream() const
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002116{
2117 if (mOutput == NULL) {
2118 return NULL;
2119 }
2120 return &mOutput->stream->common;
2121}
2122
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08002123uint32_t AudioFlinger::PlaybackThread::activeSleepTimeUs() const
Eric Laurent162b40b2011-12-05 09:47:19 -08002124{
Eric Laurentab9071b2012-06-04 13:45:29 -07002125 return (uint32_t)((uint32_t)((mNormalFrameCount * 1000) / mSampleRate) * 1000);
Eric Laurent162b40b2011-12-05 09:47:19 -08002126}
2127
Eric Laurenta011e352012-03-29 15:51:43 -07002128status_t AudioFlinger::PlaybackThread::setSyncEvent(const sp<SyncEvent>& event)
2129{
2130 if (!isValidSyncEvent(event)) {
2131 return BAD_VALUE;
2132 }
2133
2134 Mutex::Autolock _l(mLock);
2135
2136 for (size_t i = 0; i < mTracks.size(); ++i) {
2137 sp<Track> track = mTracks[i];
2138 if (event->triggerSession() == track->sessionId()) {
2139 track->setSyncEvent(event);
2140 return NO_ERROR;
2141 }
2142 }
2143
2144 return NAME_NOT_FOUND;
2145}
2146
2147bool AudioFlinger::PlaybackThread::isValidSyncEvent(const sp<SyncEvent>& event)
2148{
2149 switch (event->type()) {
2150 case AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE:
2151 return true;
2152 default:
2153 break;
2154 }
2155 return false;
2156}
2157
Eric Laurent44a957f2012-05-15 15:26:05 -07002158void AudioFlinger::PlaybackThread::threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove)
2159{
2160 size_t count = tracksToRemove.size();
2161 if (CC_UNLIKELY(count)) {
2162 for (size_t i = 0 ; i < count ; i++) {
2163 const sp<Track>& track = tracksToRemove.itemAt(i);
2164 if ((track->sharedBuffer() != 0) &&
2165 (track->mState == TrackBase::ACTIVE || track->mState == TrackBase::RESUMING)) {
2166 AudioSystem::stopOutput(mId, track->streamType(), track->sessionId());
2167 }
2168 }
2169 }
2170
2171}
2172
Mathias Agopian65ab4712010-07-14 17:59:35 -07002173// ----------------------------------------------------------------------------
2174
Glenn Kasten23bb8be2012-01-26 10:38:26 -08002175AudioFlinger::MixerThread::MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
Glenn Kastenbb4350d2012-07-03 15:56:38 -07002176 audio_io_handle_t id, audio_devices_t device, type_t type)
Glenn Kasten58912562012-04-03 10:45:00 -07002177 : PlaybackThread(audioFlinger, output, id, device, type),
2178 // mAudioMixer below
Glenn Kasten58912562012-04-03 10:45:00 -07002179 // mFastMixer below
2180 mFastMixerFutex(0)
2181 // mOutputSink below
2182 // mPipeSink below
2183 // mNormalSink below
Mathias Agopian65ab4712010-07-14 17:59:35 -07002184{
Glenn Kastenbb4350d2012-07-03 15:56:38 -07002185 ALOGV("MixerThread() id=%d device=%#x type=%d", id, device, type);
Glenn Kasten254af182012-07-03 14:59:05 -07002186 ALOGV("mSampleRate=%d, mChannelMask=%#x, mChannelCount=%d, mFormat=%d, mFrameSize=%d, "
Glenn Kasten58912562012-04-03 10:45:00 -07002187 "mFrameCount=%d, mNormalFrameCount=%d",
2188 mSampleRate, mChannelMask, mChannelCount, mFormat, mFrameSize, mFrameCount,
2189 mNormalFrameCount);
2190 mAudioMixer = new AudioMixer(mNormalFrameCount, mSampleRate);
2191
Mathias Agopian65ab4712010-07-14 17:59:35 -07002192 // FIXME - Current mixer implementation only supports stereo output
Glenn Kasten4fe1ec42012-02-27 16:33:15 -08002193 if (mChannelCount != FCC_2) {
2194 ALOGE("Invalid audio hardware channel count %d", mChannelCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002195 }
Glenn Kasten58912562012-04-03 10:45:00 -07002196
2197 // create an NBAIO sink for the HAL output stream, and negotiate
2198 mOutputSink = new AudioStreamOutSink(output->stream);
2199 size_t numCounterOffers = 0;
2200 const NBAIO_Format offers[1] = {Format_from_SR_C(mSampleRate, mChannelCount)};
2201 ssize_t index = mOutputSink->negotiate(offers, 1, NULL, numCounterOffers);
2202 ALOG_ASSERT(index == 0);
2203
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002204 // initialize fast mixer depending on configuration
2205 bool initFastMixer;
2206 switch (kUseFastMixer) {
2207 case FastMixer_Never:
2208 initFastMixer = false;
2209 break;
2210 case FastMixer_Always:
2211 initFastMixer = true;
2212 break;
2213 case FastMixer_Static:
2214 case FastMixer_Dynamic:
2215 initFastMixer = mFrameCount < mNormalFrameCount;
2216 break;
2217 }
2218 if (initFastMixer) {
Glenn Kasten58912562012-04-03 10:45:00 -07002219
2220 // create a MonoPipe to connect our submix to FastMixer
2221 NBAIO_Format format = mOutputSink->format();
Glenn Kasten9017e5e2012-05-15 07:39:52 -07002222 // This pipe depth compensates for scheduling latency of the normal mixer thread.
2223 // When it wakes up after a maximum latency, it runs a few cycles quickly before
2224 // finally blocking. Note the pipe implementation rounds up the request to a power of 2.
2225 MonoPipe *monoPipe = new MonoPipe(mNormalFrameCount * 4, format, true /*writeCanBlock*/);
Glenn Kasten58912562012-04-03 10:45:00 -07002226 const NBAIO_Format offers[1] = {format};
2227 size_t numCounterOffers = 0;
2228 ssize_t index = monoPipe->negotiate(offers, 1, NULL, numCounterOffers);
2229 ALOG_ASSERT(index == 0);
Glenn Kasten28ed2f92012-06-07 10:17:54 -07002230 monoPipe->setAvgFrames((mScreenState & 1) ?
2231 (monoPipe->maxFrames() * 7) / 8 : mNormalFrameCount * 2);
Glenn Kasten58912562012-04-03 10:45:00 -07002232 mPipeSink = monoPipe;
2233
Glenn Kastenfbae5da2012-05-21 09:17:20 -07002234#ifdef TEE_SINK_FRAMES
2235 // create a Pipe to archive a copy of FastMixer's output for dumpsys
2236 Pipe *teeSink = new Pipe(TEE_SINK_FRAMES, format);
2237 numCounterOffers = 0;
2238 index = teeSink->negotiate(offers, 1, NULL, numCounterOffers);
2239 ALOG_ASSERT(index == 0);
2240 mTeeSink = teeSink;
2241 PipeReader *teeSource = new PipeReader(*teeSink);
2242 numCounterOffers = 0;
2243 index = teeSource->negotiate(offers, 1, NULL, numCounterOffers);
2244 ALOG_ASSERT(index == 0);
2245 mTeeSource = teeSource;
2246#endif
2247
Glenn Kasten58912562012-04-03 10:45:00 -07002248 // create fast mixer and configure it initially with just one fast track for our submix
2249 mFastMixer = new FastMixer();
2250 FastMixerStateQueue *sq = mFastMixer->sq();
Glenn Kasten39993082012-05-31 13:40:27 -07002251#ifdef STATE_QUEUE_DUMP
2252 sq->setObserverDump(&mStateQueueObserverDump);
2253 sq->setMutatorDump(&mStateQueueMutatorDump);
2254#endif
Glenn Kasten58912562012-04-03 10:45:00 -07002255 FastMixerState *state = sq->begin();
2256 FastTrack *fastTrack = &state->mFastTracks[0];
2257 // wrap the source side of the MonoPipe to make it an AudioBufferProvider
2258 fastTrack->mBufferProvider = new SourceAudioBufferProvider(new MonoPipeReader(monoPipe));
2259 fastTrack->mVolumeProvider = NULL;
2260 fastTrack->mGeneration++;
2261 state->mFastTracksGen++;
2262 state->mTrackMask = 1;
2263 // fast mixer will use the HAL output sink
2264 state->mOutputSink = mOutputSink.get();
2265 state->mOutputSinkGen++;
2266 state->mFrameCount = mFrameCount;
2267 state->mCommand = FastMixerState::COLD_IDLE;
2268 // already done in constructor initialization list
2269 //mFastMixerFutex = 0;
2270 state->mColdFutexAddr = &mFastMixerFutex;
2271 state->mColdGen++;
2272 state->mDumpState = &mFastMixerDumpState;
Glenn Kastenfbae5da2012-05-21 09:17:20 -07002273 state->mTeeSink = mTeeSink.get();
Glenn Kasten58912562012-04-03 10:45:00 -07002274 sq->end();
2275 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
2276
2277 // start the fast mixer
2278 mFastMixer->run("FastMixer", PRIORITY_URGENT_AUDIO);
Glenn Kasten58912562012-04-03 10:45:00 -07002279 pid_t tid = mFastMixer->getTid();
Glenn Kastenfd4e20c2012-06-04 11:51:12 -07002280 int err = requestPriority(getpid_cached, tid, kPriorityFastMixer);
Glenn Kasten58912562012-04-03 10:45:00 -07002281 if (err != 0) {
2282 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
Glenn Kastenfd4e20c2012-06-04 11:51:12 -07002283 kPriorityFastMixer, getpid_cached, tid, err);
Glenn Kasten58912562012-04-03 10:45:00 -07002284 }
Glenn Kasten58912562012-04-03 10:45:00 -07002285
Glenn Kastenc15d6652012-05-30 14:52:57 -07002286#ifdef AUDIO_WATCHDOG
2287 // create and start the watchdog
2288 mAudioWatchdog = new AudioWatchdog();
2289 mAudioWatchdog->setDump(&mAudioWatchdogDump);
2290 mAudioWatchdog->run("AudioWatchdog", PRIORITY_URGENT_AUDIO);
2291 tid = mAudioWatchdog->getTid();
Glenn Kastenfd4e20c2012-06-04 11:51:12 -07002292 err = requestPriority(getpid_cached, tid, kPriorityFastMixer);
Glenn Kastenc15d6652012-05-30 14:52:57 -07002293 if (err != 0) {
2294 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
Glenn Kastenfd4e20c2012-06-04 11:51:12 -07002295 kPriorityFastMixer, getpid_cached, tid, err);
Glenn Kastenc15d6652012-05-30 14:52:57 -07002296 }
2297#endif
2298
Glenn Kasten58912562012-04-03 10:45:00 -07002299 } else {
2300 mFastMixer = NULL;
2301 }
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002302
2303 switch (kUseFastMixer) {
2304 case FastMixer_Never:
2305 case FastMixer_Dynamic:
2306 mNormalSink = mOutputSink;
2307 break;
2308 case FastMixer_Always:
2309 mNormalSink = mPipeSink;
2310 break;
2311 case FastMixer_Static:
2312 mNormalSink = initFastMixer ? mPipeSink : mOutputSink;
2313 break;
2314 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002315}
2316
2317AudioFlinger::MixerThread::~MixerThread()
2318{
Glenn Kasten58912562012-04-03 10:45:00 -07002319 if (mFastMixer != NULL) {
2320 FastMixerStateQueue *sq = mFastMixer->sq();
2321 FastMixerState *state = sq->begin();
2322 if (state->mCommand == FastMixerState::COLD_IDLE) {
2323 int32_t old = android_atomic_inc(&mFastMixerFutex);
2324 if (old == -1) {
2325 __futex_syscall3(&mFastMixerFutex, FUTEX_WAKE_PRIVATE, 1);
2326 }
2327 }
2328 state->mCommand = FastMixerState::EXIT;
2329 sq->end();
2330 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
2331 mFastMixer->join();
2332 // Though the fast mixer thread has exited, it's state queue is still valid.
2333 // We'll use that extract the final state which contains one remaining fast track
2334 // corresponding to our sub-mix.
2335 state = sq->begin();
2336 ALOG_ASSERT(state->mTrackMask == 1);
2337 FastTrack *fastTrack = &state->mFastTracks[0];
2338 ALOG_ASSERT(fastTrack->mBufferProvider != NULL);
2339 delete fastTrack->mBufferProvider;
2340 sq->end(false /*didModify*/);
2341 delete mFastMixer;
Glenn Kastenc15d6652012-05-30 14:52:57 -07002342 if (mAudioWatchdog != 0) {
2343 mAudioWatchdog->requestExit();
2344 mAudioWatchdog->requestExitAndWait();
2345 mAudioWatchdog.clear();
2346 }
Glenn Kasten58912562012-04-03 10:45:00 -07002347 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002348 delete mAudioMixer;
2349}
2350
Glenn Kasten83efdd02012-02-24 07:21:32 -08002351class CpuStats {
2352public:
Glenn Kasten190a46f2012-03-06 11:27:10 -08002353 CpuStats();
2354 void sample(const String8 &title);
Glenn Kasten83efdd02012-02-24 07:21:32 -08002355#ifdef DEBUG_CPU_USAGE
2356private:
Glenn Kasten190a46f2012-03-06 11:27:10 -08002357 ThreadCpuUsage mCpuUsage; // instantaneous thread CPU usage in wall clock ns
2358 CentralTendencyStatistics mWcStats; // statistics on thread CPU usage in wall clock ns
2359
2360 CentralTendencyStatistics mHzStats; // statistics on thread CPU usage in cycles
2361
2362 int mCpuNum; // thread's current CPU number
2363 int mCpukHz; // frequency of thread's current CPU in kHz
Glenn Kasten83efdd02012-02-24 07:21:32 -08002364#endif
2365};
2366
Glenn Kasten190a46f2012-03-06 11:27:10 -08002367CpuStats::CpuStats()
Glenn Kasten83efdd02012-02-24 07:21:32 -08002368#ifdef DEBUG_CPU_USAGE
Glenn Kasten190a46f2012-03-06 11:27:10 -08002369 : mCpuNum(-1), mCpukHz(-1)
2370#endif
2371{
2372}
2373
2374void CpuStats::sample(const String8 &title) {
2375#ifdef DEBUG_CPU_USAGE
2376 // get current thread's delta CPU time in wall clock ns
2377 double wcNs;
2378 bool valid = mCpuUsage.sampleAndEnable(wcNs);
2379
2380 // record sample for wall clock statistics
2381 if (valid) {
2382 mWcStats.sample(wcNs);
2383 }
2384
2385 // get the current CPU number
2386 int cpuNum = sched_getcpu();
2387
2388 // get the current CPU frequency in kHz
2389 int cpukHz = mCpuUsage.getCpukHz(cpuNum);
2390
2391 // check if either CPU number or frequency changed
2392 if (cpuNum != mCpuNum || cpukHz != mCpukHz) {
2393 mCpuNum = cpuNum;
2394 mCpukHz = cpukHz;
2395 // ignore sample for purposes of cycles
2396 valid = false;
2397 }
2398
2399 // if no change in CPU number or frequency, then record sample for cycle statistics
2400 if (valid && mCpukHz > 0) {
2401 double cycles = wcNs * cpukHz * 0.000001;
2402 mHzStats.sample(cycles);
2403 }
2404
2405 unsigned n = mWcStats.n();
2406 // mCpuUsage.elapsed() is expensive, so don't call it every loop
Glenn Kasten83efdd02012-02-24 07:21:32 -08002407 if ((n & 127) == 1) {
Glenn Kasten190a46f2012-03-06 11:27:10 -08002408 long long elapsed = mCpuUsage.elapsed();
Glenn Kasten83efdd02012-02-24 07:21:32 -08002409 if (elapsed >= DEBUG_CPU_USAGE * 1000000000LL) {
2410 double perLoop = elapsed / (double) n;
2411 double perLoop100 = perLoop * 0.01;
Glenn Kasten190a46f2012-03-06 11:27:10 -08002412 double perLoop1k = perLoop * 0.001;
2413 double mean = mWcStats.mean();
2414 double stddev = mWcStats.stddev();
2415 double minimum = mWcStats.minimum();
2416 double maximum = mWcStats.maximum();
2417 double meanCycles = mHzStats.mean();
2418 double stddevCycles = mHzStats.stddev();
2419 double minCycles = mHzStats.minimum();
2420 double maxCycles = mHzStats.maximum();
2421 mCpuUsage.resetElapsed();
2422 mWcStats.reset();
2423 mHzStats.reset();
2424 ALOGD("CPU usage for %s over past %.1f secs\n"
2425 " (%u mixer loops at %.1f mean ms per loop):\n"
2426 " us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n"
2427 " %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f\n"
2428 " MHz: mean=%.1f, stddev=%.1f, min=%.1f max=%.1f",
2429 title.string(),
Glenn Kasten83efdd02012-02-24 07:21:32 -08002430 elapsed * .000000001, n, perLoop * .000001,
2431 mean * .001,
2432 stddev * .001,
2433 minimum * .001,
2434 maximum * .001,
2435 mean / perLoop100,
2436 stddev / perLoop100,
2437 minimum / perLoop100,
Glenn Kasten190a46f2012-03-06 11:27:10 -08002438 maximum / perLoop100,
2439 meanCycles / perLoop1k,
2440 stddevCycles / perLoop1k,
2441 minCycles / perLoop1k,
2442 maxCycles / perLoop1k);
2443
Glenn Kasten83efdd02012-02-24 07:21:32 -08002444 }
2445 }
2446#endif
2447};
2448
Glenn Kasten37d825e2012-02-24 07:21:48 -08002449void AudioFlinger::PlaybackThread::checkSilentMode_l()
2450{
2451 if (!mMasterMute) {
2452 char value[PROPERTY_VALUE_MAX];
2453 if (property_get("ro.audio.silent", value, "0") > 0) {
2454 char *endptr;
2455 unsigned long ul = strtoul(value, &endptr, 0);
2456 if (*endptr == '\0' && ul != 0) {
2457 ALOGD("Silence is golden");
2458 // The setprop command will not allow a property to be changed after
2459 // the first time it is set, so we don't have to worry about un-muting.
2460 setMasterMute_l(true);
2461 }
2462 }
2463 }
2464}
2465
Glenn Kasten000f0e32012-03-01 17:10:56 -08002466bool AudioFlinger::PlaybackThread::threadLoop()
Mathias Agopian65ab4712010-07-14 17:59:35 -07002467{
2468 Vector< sp<Track> > tracksToRemove;
Glenn Kasten688a6402012-02-29 07:57:06 -08002469
Glenn Kasten000f0e32012-03-01 17:10:56 -08002470 standbyTime = systemTime();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002471
2472 // MIXER
Mathias Agopian65ab4712010-07-14 17:59:35 -07002473 nsecs_t lastWarning = 0;
Glenn Kasten688a6402012-02-29 07:57:06 -08002474
Glenn Kasten000f0e32012-03-01 17:10:56 -08002475 // DUPLICATING
2476 // FIXME could this be made local to while loop?
2477 writeFrames = 0;
Glenn Kasten688a6402012-02-29 07:57:06 -08002478
Glenn Kasten66fcab92012-02-24 14:59:21 -08002479 cacheParameters_l();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002480 sleepTime = idleSleepTime;
2481
Glenn Kasten9f34a362012-03-20 16:46:41 -07002482 if (mType == MIXER) {
2483 sleepTimeShift = 0;
2484 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002485
Glenn Kasten83efdd02012-02-24 07:21:32 -08002486 CpuStats cpuStats;
Glenn Kasten190a46f2012-03-06 11:27:10 -08002487 const String8 myName(String8::format("thread %p type %d TID %d", this, mType, gettid()));
Mathias Agopian65ab4712010-07-14 17:59:35 -07002488
Eric Laurentfeb0db62011-07-22 09:04:31 -07002489 acquireWakeLock();
2490
Mathias Agopian65ab4712010-07-14 17:59:35 -07002491 while (!exitPending())
2492 {
Glenn Kasten190a46f2012-03-06 11:27:10 -08002493 cpuStats.sample(myName);
Glenn Kasten688a6402012-02-29 07:57:06 -08002494
Glenn Kasten73ca0f52012-02-29 07:56:15 -08002495 Vector< sp<EffectChain> > effectChains;
2496
Mathias Agopian65ab4712010-07-14 17:59:35 -07002497 processConfigEvents();
2498
Mathias Agopian65ab4712010-07-14 17:59:35 -07002499 { // scope for mLock
2500
2501 Mutex::Autolock _l(mLock);
2502
2503 if (checkForNewParameters_l()) {
Glenn Kasten66fcab92012-02-24 14:59:21 -08002504 cacheParameters_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002505 }
2506
Glenn Kastenfa26a852012-03-06 11:28:04 -08002507 saveOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002508
Mathias Agopian65ab4712010-07-14 17:59:35 -07002509 // put audio hardware into standby after short delay
Glenn Kasten3e074702012-02-28 18:40:35 -08002510 if (CC_UNLIKELY((!mActiveTracks.size() && systemTime() > standbyTime) ||
Glenn Kasten1ea6d232012-07-09 14:31:33 -07002511 isSuspended())) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002512 if (!mStandby) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002513
2514 threadLoop_standby();
2515
Mathias Agopian65ab4712010-07-14 17:59:35 -07002516 mStandby = true;
2517 mBytesWritten = 0;
2518 }
2519
Glenn Kasten3e074702012-02-28 18:40:35 -08002520 if (!mActiveTracks.size() && mConfigEvents.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002521 // we're about to wait, flush the binder command buffer
2522 IPCThreadState::self()->flushCommands();
2523
Glenn Kastenfa26a852012-03-06 11:28:04 -08002524 clearOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002525
Mathias Agopian65ab4712010-07-14 17:59:35 -07002526 if (exitPending()) break;
2527
Eric Laurentfeb0db62011-07-22 09:04:31 -07002528 releaseWakeLock_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002529 // wait until we have something to do...
Glenn Kasten190a46f2012-03-06 11:27:10 -08002530 ALOGV("%s going to sleep", myName.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002531 mWaitWorkCV.wait(mLock);
Glenn Kasten190a46f2012-03-06 11:27:10 -08002532 ALOGV("%s waking up", myName.string());
Eric Laurentfeb0db62011-07-22 09:04:31 -07002533 acquireWakeLock_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002534
Eric Laurentda747442012-04-25 18:53:13 -07002535 mMixerStatus = MIXER_IDLE;
Glenn Kasten81028042012-04-30 18:15:12 -07002536 mMixerStatusIgnoringFastTracks = MIXER_IDLE;
Glenn Kasten000f0e32012-03-01 17:10:56 -08002537
Glenn Kasten37d825e2012-02-24 07:21:48 -08002538 checkSilentMode_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002539
Glenn Kasten000f0e32012-03-01 17:10:56 -08002540 standbyTime = systemTime() + standbyDelay;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002541 sleepTime = idleSleepTime;
Glenn Kasten66fcab92012-02-24 14:59:21 -08002542 if (mType == MIXER) {
2543 sleepTimeShift = 0;
2544 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002545
Mathias Agopian65ab4712010-07-14 17:59:35 -07002546 continue;
2547 }
2548 }
2549
Glenn Kasten81028042012-04-30 18:15:12 -07002550 // mMixerStatusIgnoringFastTracks is also updated internally
Eric Laurentda747442012-04-25 18:53:13 -07002551 mMixerStatus = prepareTracks_l(&tracksToRemove);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002552
2553 // prevent any changes in effect chain list and in each effect chain
2554 // during mixing and effect process as the audio buffers could be deleted
2555 // or modified if an effect is created or deleted
Eric Laurentde070132010-07-13 04:45:46 -07002556 lockEffectChains_l(effectChains);
Glenn Kastenc5ac4cb2011-12-12 09:05:55 -08002557 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002558
Glenn Kastenfec279f2012-03-08 07:47:15 -08002559 if (CC_LIKELY(mMixerStatus == MIXER_TRACKS_READY)) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002560 threadLoop_mix();
2561 } else {
2562 threadLoop_sleepTime();
2563 }
2564
Glenn Kasten1ea6d232012-07-09 14:31:33 -07002565 if (isSuspended()) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002566 sleepTime = suspendSleepTimeUs();
2567 }
2568
2569 // only process effects if we're going to write
2570 if (sleepTime == 0) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002571 for (size_t i = 0; i < effectChains.size(); i ++) {
2572 effectChains[i]->process_l();
2573 }
2574 }
2575
2576 // enable changes in effect chain
2577 unlockEffectChains(effectChains);
2578
2579 // sleepTime == 0 means we must write to audio hardware
2580 if (sleepTime == 0) {
2581
2582 threadLoop_write();
2583
2584if (mType == MIXER) {
2585 // write blocked detection
2586 nsecs_t now = systemTime();
2587 nsecs_t delta = now - mLastWriteTime;
2588 if (!mStandby && delta > maxPeriod) {
2589 mNumDelayedWrites++;
2590 if ((now - lastWarning) > kWarningThrottleNs) {
Glenn Kasten99c99d02012-05-14 16:37:13 -07002591#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Glenn Kastend8e6fd32012-05-07 11:07:57 -07002592 ScopedTrace st(ATRACE_TAG, "underrun");
Glenn Kasten99c99d02012-05-14 16:37:13 -07002593#endif
Glenn Kasten000f0e32012-03-01 17:10:56 -08002594 ALOGW("write blocked for %llu msecs, %d delayed writes, thread %p",
2595 ns2ms(delta), mNumDelayedWrites, this);
2596 lastWarning = now;
2597 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002598 }
2599}
2600
2601 mStandby = false;
2602 } else {
2603 usleep(sleepTime);
2604 }
2605
Glenn Kasten58912562012-04-03 10:45:00 -07002606 // Finally let go of removed track(s), without the lock held
Glenn Kasten000f0e32012-03-01 17:10:56 -08002607 // since we can't guarantee the destructors won't acquire that
Glenn Kasten58912562012-04-03 10:45:00 -07002608 // same lock. This will also mutate and push a new fast mixer state.
2609 threadLoop_removeTracks(tracksToRemove);
Glenn Kasten1465f0c2012-03-06 11:23:32 -08002610 tracksToRemove.clear();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002611
Glenn Kastenfa26a852012-03-06 11:28:04 -08002612 // FIXME I don't understand the need for this here;
2613 // it was in the original code but maybe the
2614 // assignment in saveOutputTracks() makes this unnecessary?
2615 clearOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002616
2617 // Effect chains will be actually deleted here if they were removed from
2618 // mEffectChains list during mixing or effects processing
2619 effectChains.clear();
2620
2621 // FIXME Note that the above .clear() is no longer necessary since effectChains
2622 // is now local to this block, but will keep it for now (at least until merge done).
2623 }
2624
Glenn Kasten9f34a362012-03-20 16:46:41 -07002625 // for DuplicatingThread, standby mode is handled by the outputTracks, otherwise ...
2626 if (mType == MIXER || mType == DIRECT) {
2627 // put output stream into standby mode
2628 if (!mStandby) {
2629 mOutput->stream->common.standby(&mOutput->stream->common);
2630 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002631 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002632
2633 releaseWakeLock();
2634
2635 ALOGV("Thread %p type %d exiting", this, mType);
2636 return false;
2637}
2638
Glenn Kasten58912562012-04-03 10:45:00 -07002639void AudioFlinger::MixerThread::threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove)
2640{
Glenn Kasten58912562012-04-03 10:45:00 -07002641 PlaybackThread::threadLoop_removeTracks(tracksToRemove);
2642}
2643
2644void AudioFlinger::MixerThread::threadLoop_write()
2645{
2646 // FIXME we should only do one push per cycle; confirm this is true
2647 // Start the fast mixer if it's not already running
2648 if (mFastMixer != NULL) {
2649 FastMixerStateQueue *sq = mFastMixer->sq();
2650 FastMixerState *state = sq->begin();
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002651 if (state->mCommand != FastMixerState::MIX_WRITE &&
2652 (kUseFastMixer != FastMixer_Dynamic || state->mTrackMask > 1)) {
Glenn Kasten58912562012-04-03 10:45:00 -07002653 if (state->mCommand == FastMixerState::COLD_IDLE) {
2654 int32_t old = android_atomic_inc(&mFastMixerFutex);
2655 if (old == -1) {
2656 __futex_syscall3(&mFastMixerFutex, FUTEX_WAKE_PRIVATE, 1);
2657 }
Glenn Kastenc15d6652012-05-30 14:52:57 -07002658 if (mAudioWatchdog != 0) {
2659 mAudioWatchdog->resume();
2660 }
Glenn Kasten58912562012-04-03 10:45:00 -07002661 }
2662 state->mCommand = FastMixerState::MIX_WRITE;
2663 sq->end();
2664 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002665 if (kUseFastMixer == FastMixer_Dynamic) {
2666 mNormalSink = mPipeSink;
2667 }
Glenn Kasten58912562012-04-03 10:45:00 -07002668 } else {
2669 sq->end(false /*didModify*/);
2670 }
2671 }
2672 PlaybackThread::threadLoop_write();
2673}
2674
Glenn Kasten000f0e32012-03-01 17:10:56 -08002675// shared by MIXER and DIRECT, overridden by DUPLICATING
2676void AudioFlinger::PlaybackThread::threadLoop_write()
2677{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002678 // FIXME rewrite to reduce number of system calls
2679 mLastWriteTime = systemTime();
2680 mInWrite = true;
Eric Laurent67c0a582012-05-01 19:31:12 -07002681 int bytesWritten;
Glenn Kasten58912562012-04-03 10:45:00 -07002682
Eric Laurent67c0a582012-05-01 19:31:12 -07002683 // If an NBAIO sink is present, use it to write the normal mixer's submix
2684 if (mNormalSink != 0) {
Glenn Kasten58912562012-04-03 10:45:00 -07002685#define mBitShift 2 // FIXME
Eric Laurent67c0a582012-05-01 19:31:12 -07002686 size_t count = mixBufferSize >> mBitShift;
Glenn Kasten99c99d02012-05-14 16:37:13 -07002687#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Eric Laurent67c0a582012-05-01 19:31:12 -07002688 Tracer::traceBegin(ATRACE_TAG, "write");
Glenn Kasten99c99d02012-05-14 16:37:13 -07002689#endif
Glenn Kasten28ed2f92012-06-07 10:17:54 -07002690 // update the setpoint when gScreenState changes
2691 uint32_t screenState = gScreenState;
2692 if (screenState != mScreenState) {
2693 mScreenState = screenState;
2694 MonoPipe *pipe = (MonoPipe *)mPipeSink.get();
2695 if (pipe != NULL) {
2696 pipe->setAvgFrames((mScreenState & 1) ?
2697 (pipe->maxFrames() * 7) / 8 : mNormalFrameCount * 2);
2698 }
2699 }
Eric Laurent67c0a582012-05-01 19:31:12 -07002700 ssize_t framesWritten = mNormalSink->write(mMixBuffer, count);
Glenn Kasten99c99d02012-05-14 16:37:13 -07002701#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Eric Laurent67c0a582012-05-01 19:31:12 -07002702 Tracer::traceEnd(ATRACE_TAG);
Glenn Kasten99c99d02012-05-14 16:37:13 -07002703#endif
Eric Laurent67c0a582012-05-01 19:31:12 -07002704 if (framesWritten > 0) {
2705 bytesWritten = framesWritten << mBitShift;
2706 } else {
2707 bytesWritten = framesWritten;
2708 }
2709 // otherwise use the HAL / AudioStreamOut directly
2710 } else {
2711 // Direct output thread.
2712 bytesWritten = (int)mOutput->stream->write(mOutput->stream, mMixBuffer, mixBufferSize);
Glenn Kasten58912562012-04-03 10:45:00 -07002713 }
2714
Eric Laurent67c0a582012-05-01 19:31:12 -07002715 if (bytesWritten > 0) mBytesWritten += mixBufferSize;
Glenn Kasten952eeb22012-03-06 11:30:57 -08002716 mNumWrites++;
2717 mInWrite = false;
Glenn Kasten000f0e32012-03-01 17:10:56 -08002718}
2719
Glenn Kasten58912562012-04-03 10:45:00 -07002720void AudioFlinger::MixerThread::threadLoop_standby()
2721{
2722 // Idle the fast mixer if it's currently running
2723 if (mFastMixer != NULL) {
2724 FastMixerStateQueue *sq = mFastMixer->sq();
2725 FastMixerState *state = sq->begin();
2726 if (!(state->mCommand & FastMixerState::IDLE)) {
2727 state->mCommand = FastMixerState::COLD_IDLE;
2728 state->mColdFutexAddr = &mFastMixerFutex;
2729 state->mColdGen++;
2730 mFastMixerFutex = 0;
2731 sq->end();
2732 // BLOCK_UNTIL_PUSHED would be insufficient, as we need it to stop doing I/O now
2733 sq->push(FastMixerStateQueue::BLOCK_UNTIL_ACKED);
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002734 if (kUseFastMixer == FastMixer_Dynamic) {
2735 mNormalSink = mOutputSink;
2736 }
Glenn Kastenc15d6652012-05-30 14:52:57 -07002737 if (mAudioWatchdog != 0) {
2738 mAudioWatchdog->pause();
2739 }
Glenn Kasten58912562012-04-03 10:45:00 -07002740 } else {
2741 sq->end(false /*didModify*/);
2742 }
2743 }
2744 PlaybackThread::threadLoop_standby();
2745}
2746
Glenn Kasten000f0e32012-03-01 17:10:56 -08002747// shared by MIXER and DIRECT, overridden by DUPLICATING
2748void AudioFlinger::PlaybackThread::threadLoop_standby()
2749{
Glenn Kasten1ea6d232012-07-09 14:31:33 -07002750 ALOGV("Audio hardware entering standby, mixer %p, suspend count %d", this, mSuspended);
Glenn Kasten952eeb22012-03-06 11:30:57 -08002751 mOutput->stream->common.standby(&mOutput->stream->common);
Glenn Kasten000f0e32012-03-01 17:10:56 -08002752}
2753
2754void AudioFlinger::MixerThread::threadLoop_mix()
2755{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002756 // obtain the presentation timestamp of the next output buffer
2757 int64_t pts;
2758 status_t status = INVALID_OPERATION;
John Grossman4ff14ba2012-02-08 16:37:41 -08002759
Glenn Kasten952eeb22012-03-06 11:30:57 -08002760 if (NULL != mOutput->stream->get_next_write_timestamp) {
2761 status = mOutput->stream->get_next_write_timestamp(
2762 mOutput->stream, &pts);
2763 }
John Grossman4ff14ba2012-02-08 16:37:41 -08002764
Glenn Kasten952eeb22012-03-06 11:30:57 -08002765 if (status != NO_ERROR) {
2766 pts = AudioBufferProvider::kInvalidPTS;
2767 }
John Grossman4ff14ba2012-02-08 16:37:41 -08002768
Glenn Kasten952eeb22012-03-06 11:30:57 -08002769 // mix buffers...
2770 mAudioMixer->process(pts);
2771 // increase sleep time progressively when application underrun condition clears.
2772 // Only increase sleep time if the mixer is ready for two consecutive times to avoid
2773 // that a steady state of alternating ready/not ready conditions keeps the sleep time
2774 // such that we would underrun the audio HAL.
2775 if ((sleepTime == 0) && (sleepTimeShift > 0)) {
2776 sleepTimeShift--;
2777 }
2778 sleepTime = 0;
Glenn Kasten66fcab92012-02-24 14:59:21 -08002779 standbyTime = systemTime() + standbyDelay;
Glenn Kasten952eeb22012-03-06 11:30:57 -08002780 //TODO: delay standby when effects have a tail
Glenn Kasten000f0e32012-03-01 17:10:56 -08002781}
2782
2783void AudioFlinger::MixerThread::threadLoop_sleepTime()
2784{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002785 // If no tracks are ready, sleep once for the duration of an output
2786 // buffer size, then write 0s to the output
2787 if (sleepTime == 0) {
Glenn Kastenfec279f2012-03-08 07:47:15 -08002788 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08002789 sleepTime = activeSleepTime >> sleepTimeShift;
2790 if (sleepTime < kMinThreadSleepTimeUs) {
2791 sleepTime = kMinThreadSleepTimeUs;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002792 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08002793 // reduce sleep time in case of consecutive application underruns to avoid
2794 // starving the audio HAL. As activeSleepTimeUs() is larger than a buffer
2795 // duration we would end up writing less data than needed by the audio HAL if
2796 // the condition persists.
2797 if (sleepTimeShift < kMaxThreadSleepTimeShift) {
2798 sleepTimeShift++;
2799 }
2800 } else {
2801 sleepTime = idleSleepTime;
2802 }
Glenn Kastenf1da96d2012-07-02 16:10:16 -07002803 } else if (mBytesWritten != 0 || (mMixerStatus == MIXER_TRACKS_ENABLED)) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08002804 memset (mMixBuffer, 0, mixBufferSize);
2805 sleepTime = 0;
Glenn Kastenf1da96d2012-07-02 16:10:16 -07002806 ALOGV_IF((mBytesWritten == 0 && (mMixerStatus == MIXER_TRACKS_ENABLED)), "anticipated start");
Glenn Kasten952eeb22012-03-06 11:30:57 -08002807 }
2808 // TODO add standby time extension fct of effect tail
Mathias Agopian65ab4712010-07-14 17:59:35 -07002809}
2810
2811// prepareTracks_l() must be called with ThreadBase::mLock held
Glenn Kasten29c23c32012-01-26 13:37:52 -08002812AudioFlinger::PlaybackThread::mixer_state AudioFlinger::MixerThread::prepareTracks_l(
Glenn Kasten3e074702012-02-28 18:40:35 -08002813 Vector< sp<Track> > *tracksToRemove)
Mathias Agopian65ab4712010-07-14 17:59:35 -07002814{
2815
Glenn Kasten29c23c32012-01-26 13:37:52 -08002816 mixer_state mixerStatus = MIXER_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002817 // find out which tracks need to be processed
Glenn Kasten3e074702012-02-28 18:40:35 -08002818 size_t count = mActiveTracks.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002819 size_t mixedTracks = 0;
2820 size_t tracksWithEffect = 0;
Glenn Kasten288ed212012-04-25 17:52:27 -07002821 // counts only _active_ fast tracks
Glenn Kasten58912562012-04-03 10:45:00 -07002822 size_t fastTracks = 0;
Glenn Kasten288ed212012-04-25 17:52:27 -07002823 uint32_t resetMask = 0; // bit mask of fast tracks that need to be reset
Mathias Agopian65ab4712010-07-14 17:59:35 -07002824
2825 float masterVolume = mMasterVolume;
Glenn Kastenea7939a2012-03-14 12:56:26 -07002826 bool masterMute = mMasterMute;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002827
Eric Laurent571d49c2010-08-11 05:20:11 -07002828 if (masterMute) {
2829 masterVolume = 0;
2830 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002831 // Delegate master volume control to effect in output mix effect chain if needed
Dima Zavinfce7a472011-04-19 22:30:36 -07002832 sp<EffectChain> chain = getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002833 if (chain != 0) {
Eric Laurent571d49c2010-08-11 05:20:11 -07002834 uint32_t v = (uint32_t)(masterVolume * (1 << 24));
Eric Laurentcab11242010-07-15 12:50:15 -07002835 chain->setVolume_l(&v, &v);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002836 masterVolume = (float)((v + (1 << 23)) >> 24);
2837 chain.clear();
2838 }
2839
Glenn Kasten288ed212012-04-25 17:52:27 -07002840 // prepare a new state to push
2841 FastMixerStateQueue *sq = NULL;
2842 FastMixerState *state = NULL;
2843 bool didModify = false;
2844 FastMixerStateQueue::block_t block = FastMixerStateQueue::BLOCK_UNTIL_PUSHED;
2845 if (mFastMixer != NULL) {
2846 sq = mFastMixer->sq();
2847 state = sq->begin();
2848 }
2849
Mathias Agopian65ab4712010-07-14 17:59:35 -07002850 for (size_t i=0 ; i<count ; i++) {
Glenn Kasten3e074702012-02-28 18:40:35 -08002851 sp<Track> t = mActiveTracks[i].promote();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002852 if (t == 0) continue;
2853
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002854 // this const just means the local variable doesn't change
Mathias Agopian65ab4712010-07-14 17:59:35 -07002855 Track* const track = t.get();
Glenn Kasten58912562012-04-03 10:45:00 -07002856
Glenn Kasten288ed212012-04-25 17:52:27 -07002857 // process fast tracks
Glenn Kasten58912562012-04-03 10:45:00 -07002858 if (track->isFastTrack()) {
Glenn Kasten288ed212012-04-25 17:52:27 -07002859
2860 // It's theoretically possible (though unlikely) for a fast track to be created
2861 // and then removed within the same normal mix cycle. This is not a problem, as
2862 // the track never becomes active so it's fast mixer slot is never touched.
2863 // The converse, of removing an (active) track and then creating a new track
2864 // at the identical fast mixer slot within the same normal mix cycle,
2865 // is impossible because the slot isn't marked available until the end of each cycle.
2866 int j = track->mFastIndex;
Glenn Kasten893a0542012-05-30 10:32:06 -07002867 ALOG_ASSERT(0 < j && j < (int)FastMixerState::kMaxFastTracks);
2868 ALOG_ASSERT(!(mFastTrackAvailMask & (1 << j)));
Glenn Kasten288ed212012-04-25 17:52:27 -07002869 FastTrack *fastTrack = &state->mFastTracks[j];
2870
2871 // Determine whether the track is currently in underrun condition,
2872 // and whether it had a recent underrun.
Glenn Kasten1295bb4d2012-05-31 07:43:43 -07002873 FastTrackDump *ftDump = &mFastMixerDumpState.mTracks[j];
2874 FastTrackUnderruns underruns = ftDump->mUnderruns;
Glenn Kasten09474df2012-05-10 14:48:07 -07002875 uint32_t recentFull = (underruns.mBitFields.mFull -
2876 track->mObservedUnderruns.mBitFields.mFull) & UNDERRUN_MASK;
2877 uint32_t recentPartial = (underruns.mBitFields.mPartial -
2878 track->mObservedUnderruns.mBitFields.mPartial) & UNDERRUN_MASK;
2879 uint32_t recentEmpty = (underruns.mBitFields.mEmpty -
2880 track->mObservedUnderruns.mBitFields.mEmpty) & UNDERRUN_MASK;
2881 uint32_t recentUnderruns = recentPartial + recentEmpty;
2882 track->mObservedUnderruns = underruns;
Glenn Kasten288ed212012-04-25 17:52:27 -07002883 // don't count underruns that occur while stopping or pausing
Glenn Kastend08f48c2012-05-01 18:14:02 -07002884 // or stopped which can occur when flush() is called while active
2885 if (!(track->isStopping() || track->isPausing() || track->isStopped())) {
Glenn Kasten288ed212012-04-25 17:52:27 -07002886 track->mUnderrunCount += recentUnderruns;
2887 }
Glenn Kasten288ed212012-04-25 17:52:27 -07002888
Glenn Kastend08f48c2012-05-01 18:14:02 -07002889 // This is similar to the state machine for normal tracks,
Glenn Kasten288ed212012-04-25 17:52:27 -07002890 // with a few modifications for fast tracks.
Glenn Kastend08f48c2012-05-01 18:14:02 -07002891 bool isActive = true;
2892 switch (track->mState) {
2893 case TrackBase::STOPPING_1:
2894 // track stays active in STOPPING_1 state until first underrun
2895 if (recentUnderruns > 0) {
2896 track->mState = TrackBase::STOPPING_2;
2897 }
2898 break;
2899 case TrackBase::PAUSING:
Glenn Kasten288ed212012-04-25 17:52:27 -07002900 // ramp down is not yet implemented
Glenn Kasten288ed212012-04-25 17:52:27 -07002901 track->setPaused();
Glenn Kastend08f48c2012-05-01 18:14:02 -07002902 break;
2903 case TrackBase::RESUMING:
Glenn Kasten288ed212012-04-25 17:52:27 -07002904 // ramp up is not yet implemented
Glenn Kasten288ed212012-04-25 17:52:27 -07002905 track->mState = TrackBase::ACTIVE;
Glenn Kastend08f48c2012-05-01 18:14:02 -07002906 break;
2907 case TrackBase::ACTIVE:
Glenn Kasten09474df2012-05-10 14:48:07 -07002908 if (recentFull > 0 || recentPartial > 0) {
2909 // track has provided at least some frames recently: reset retry count
2910 track->mRetryCount = kMaxTrackRetries;
2911 }
2912 if (recentUnderruns == 0) {
2913 // no recent underruns: stay active
2914 break;
2915 }
2916 // there has recently been an underrun of some kind
2917 if (track->sharedBuffer() == 0) {
2918 // were any of the recent underruns "empty" (no frames available)?
2919 if (recentEmpty == 0) {
2920 // no, then ignore the partial underruns as they are allowed indefinitely
2921 break;
2922 }
2923 // there has recently been an "empty" underrun: decrement the retry counter
2924 if (--(track->mRetryCount) > 0) {
2925 break;
2926 }
2927 // indicate to client process that the track was disabled because of underrun;
2928 // it will then automatically call start() when data is available
2929 android_atomic_or(CBLK_DISABLED_ON, &track->mCblk->flags);
2930 // remove from active list, but state remains ACTIVE [confusing but true]
2931 isActive = false;
Glenn Kastend08f48c2012-05-01 18:14:02 -07002932 break;
2933 }
2934 // fall through
2935 case TrackBase::STOPPING_2:
2936 case TrackBase::PAUSED:
2937 case TrackBase::TERMINATED:
Eric Laurent29864602012-05-08 18:57:51 -07002938 case TrackBase::STOPPED:
2939 case TrackBase::FLUSHED: // flush() while active
Glenn Kastend08f48c2012-05-01 18:14:02 -07002940 // Check for presentation complete if track is inactive
2941 // We have consumed all the buffers of this track.
2942 // This would be incomplete if we auto-paused on underrun
2943 {
2944 size_t audioHALFrames =
2945 (mOutput->stream->get_latency(mOutput->stream)*mSampleRate) / 1000;
2946 size_t framesWritten =
2947 mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
2948 if (!track->presentationComplete(framesWritten, audioHALFrames)) {
2949 // track stays in active list until presentation is complete
2950 break;
2951 }
2952 }
2953 if (track->isStopping_2()) {
2954 track->mState = TrackBase::STOPPED;
2955 }
2956 if (track->isStopped()) {
2957 // Can't reset directly, as fast mixer is still polling this track
2958 // track->reset();
2959 // So instead mark this track as needing to be reset after push with ack
2960 resetMask |= 1 << i;
2961 }
2962 isActive = false;
2963 break;
2964 case TrackBase::IDLE:
2965 default:
2966 LOG_FATAL("unexpected track state %d", track->mState);
Glenn Kasten288ed212012-04-25 17:52:27 -07002967 }
2968
2969 if (isActive) {
2970 // was it previously inactive?
2971 if (!(state->mTrackMask & (1 << j))) {
2972 ExtendedAudioBufferProvider *eabp = track;
2973 VolumeProvider *vp = track;
2974 fastTrack->mBufferProvider = eabp;
2975 fastTrack->mVolumeProvider = vp;
2976 fastTrack->mSampleRate = track->mSampleRate;
2977 fastTrack->mChannelMask = track->mChannelMask;
2978 fastTrack->mGeneration++;
2979 state->mTrackMask |= 1 << j;
2980 didModify = true;
2981 // no acknowledgement required for newly active tracks
2982 }
2983 // cache the combined master volume and stream type volume for fast mixer; this
2984 // lacks any synchronization or barrier so VolumeProvider may read a stale value
2985 track->mCachedVolume = track->isMuted() ?
2986 0 : masterVolume * mStreamTypes[track->streamType()].volume;
2987 ++fastTracks;
2988 } else {
2989 // was it previously active?
2990 if (state->mTrackMask & (1 << j)) {
2991 fastTrack->mBufferProvider = NULL;
2992 fastTrack->mGeneration++;
2993 state->mTrackMask &= ~(1 << j);
2994 didModify = true;
2995 // If any fast tracks were removed, we must wait for acknowledgement
2996 // because we're about to decrement the last sp<> on those tracks.
2997 block = FastMixerStateQueue::BLOCK_UNTIL_ACKED;
Glenn Kastend08f48c2012-05-01 18:14:02 -07002998 } else {
2999 LOG_FATAL("fast track %d should have been active", j);
Glenn Kasten288ed212012-04-25 17:52:27 -07003000 }
Glenn Kastend08f48c2012-05-01 18:14:02 -07003001 tracksToRemove->add(track);
Glenn Kasten288ed212012-04-25 17:52:27 -07003002 // Avoids a misleading display in dumpsys
Glenn Kasten09474df2012-05-10 14:48:07 -07003003 track->mObservedUnderruns.mBitFields.mMostRecent = UNDERRUN_FULL;
Glenn Kasten58912562012-04-03 10:45:00 -07003004 }
3005 continue;
3006 }
3007
3008 { // local variable scope to avoid goto warning
3009
Mathias Agopian65ab4712010-07-14 17:59:35 -07003010 audio_track_cblk_t* cblk = track->cblk();
3011
3012 // The first time a track is added we wait
3013 // for all its buffers to be filled before processing it
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003014 int name = track->name();
Eric Laurenta47b69c2011-11-08 18:10:16 -08003015 // make sure that we have enough frames to mix one full buffer.
3016 // enforce this condition only once to enable draining the buffer in case the client
3017 // app does not call stop() and relies on underrun to stop:
Eric Laurentda747442012-04-25 18:53:13 -07003018 // hence the test on (mMixerStatus == MIXER_TRACKS_READY) meaning the track was mixed
Eric Laurenta47b69c2011-11-08 18:10:16 -08003019 // during last round
Eric Laurent3dbe3202011-11-03 12:16:05 -07003020 uint32_t minFrames = 1;
Eric Laurent83faee02012-04-27 18:24:29 -07003021 if ((track->sharedBuffer() == 0) && !track->isStopped() && !track->isPausing() &&
Glenn Kasten81028042012-04-30 18:15:12 -07003022 (mMixerStatusIgnoringFastTracks == MIXER_TRACKS_READY)) {
Eric Laurent3dbe3202011-11-03 12:16:05 -07003023 if (t->sampleRate() == (int)mSampleRate) {
Glenn Kasten58912562012-04-03 10:45:00 -07003024 minFrames = mNormalFrameCount;
Eric Laurent3dbe3202011-11-03 12:16:05 -07003025 } else {
Eric Laurent071ccd52011-12-22 16:08:41 -08003026 // +1 for rounding and +1 for additional sample needed for interpolation
Glenn Kasten58912562012-04-03 10:45:00 -07003027 minFrames = (mNormalFrameCount * t->sampleRate()) / mSampleRate + 1 + 1;
Eric Laurent071ccd52011-12-22 16:08:41 -08003028 // add frames already consumed but not yet released by the resampler
Glenn Kastenea7939a2012-03-14 12:56:26 -07003029 // because cblk->framesReady() will include these frames
Eric Laurent071ccd52011-12-22 16:08:41 -08003030 minFrames += mAudioMixer->getUnreleasedFrames(track->name());
3031 // the minimum track buffer size is normally twice the number of frames necessary
3032 // to fill one buffer and the resampler should not leave more than one buffer worth
3033 // of unreleased frames after each pass, but just in case...
Steve Blockc1dc1cb2012-01-09 18:35:44 +00003034 ALOG_ASSERT(minFrames <= cblk->frameCount);
Eric Laurent3dbe3202011-11-03 12:16:05 -07003035 }
3036 }
John Grossman4ff14ba2012-02-08 16:37:41 -08003037 if ((track->framesReady() >= minFrames) && track->isReady() &&
Mathias Agopian65ab4712010-07-14 17:59:35 -07003038 !track->isPaused() && !track->isTerminated())
3039 {
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003040 //ALOGV("track %d u=%08x, s=%08x [OK] on thread %p", name, cblk->user, cblk->server, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003041
3042 mixedTracks++;
3043
3044 // track->mainBuffer() != mMixBuffer means there is an effect chain
3045 // connected to the track
3046 chain.clear();
3047 if (track->mainBuffer() != mMixBuffer) {
3048 chain = getEffectChain_l(track->sessionId());
3049 // Delegate volume control to effect in track effect chain if needed
3050 if (chain != 0) {
3051 tracksWithEffect++;
3052 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00003053 ALOGW("prepareTracks_l(): track %d attached to effect but no chain found on session %d",
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003054 name, track->sessionId());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003055 }
3056 }
3057
3058
3059 int param = AudioMixer::VOLUME;
3060 if (track->mFillingUpStatus == Track::FS_FILLED) {
3061 // no ramp for the first volume setting
3062 track->mFillingUpStatus = Track::FS_ACTIVE;
3063 if (track->mState == TrackBase::RESUMING) {
3064 track->mState = TrackBase::ACTIVE;
3065 param = AudioMixer::RAMP_VOLUME;
3066 }
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003067 mAudioMixer->setParameter(name, AudioMixer::RESAMPLE, AudioMixer::RESET, NULL);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003068 } else if (cblk->server != 0) {
3069 // If the track is stopped before the first frame was mixed,
3070 // do not apply ramp
3071 param = AudioMixer::RAMP_VOLUME;
3072 }
3073
3074 // compute volume for this track
Eric Laurente0aed6d2010-09-10 17:44:44 -07003075 uint32_t vl, vr, va;
Eric Laurent8569f0d2010-07-29 23:43:43 -07003076 if (track->isMuted() || track->isPausing() ||
Glenn Kasten02bbd202012-02-08 12:35:35 -08003077 mStreamTypes[track->streamType()].mute) {
Eric Laurente0aed6d2010-09-10 17:44:44 -07003078 vl = vr = va = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003079 if (track->isPausing()) {
3080 track->setPaused();
3081 }
3082 } else {
Eric Laurente0aed6d2010-09-10 17:44:44 -07003083
Mathias Agopian65ab4712010-07-14 17:59:35 -07003084 // read original volumes with volume control
Glenn Kasten02bbd202012-02-08 12:35:35 -08003085 float typeVolume = mStreamTypes[track->streamType()].volume;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003086 float v = masterVolume * typeVolume;
Glenn Kasten83d86532012-01-17 14:39:34 -08003087 uint32_t vlr = cblk->getVolumeLR();
Glenn Kastenb1cf75c2012-01-17 12:20:54 -08003088 vl = vlr & 0xFFFF;
3089 vr = vlr >> 16;
3090 // track volumes come from shared memory, so can't be trusted and must be clamped
3091 if (vl > MAX_GAIN_INT) {
3092 ALOGV("Track left volume out of range: %04X", vl);
3093 vl = MAX_GAIN_INT;
3094 }
3095 if (vr > MAX_GAIN_INT) {
3096 ALOGV("Track right volume out of range: %04X", vr);
3097 vr = MAX_GAIN_INT;
3098 }
3099 // now apply the master volume and stream type volume
3100 vl = (uint32_t)(v * vl) << 12;
3101 vr = (uint32_t)(v * vr) << 12;
3102 // assuming master volume and stream type volume each go up to 1.0,
3103 // vl and vr are now in 8.24 format
Mathias Agopian65ab4712010-07-14 17:59:35 -07003104
Glenn Kasten05632a52012-01-03 14:22:33 -08003105 uint16_t sendLevel = cblk->getSendLevel_U4_12();
3106 // send level comes from shared memory and so may be corrupt
Glenn Kasten3b81aca2012-01-27 15:26:23 -08003107 if (sendLevel > MAX_GAIN_INT) {
Glenn Kasten05632a52012-01-03 14:22:33 -08003108 ALOGV("Track send level out of range: %04X", sendLevel);
Glenn Kastenb1cf75c2012-01-17 12:20:54 -08003109 sendLevel = MAX_GAIN_INT;
Glenn Kasten05632a52012-01-03 14:22:33 -08003110 }
3111 va = (uint32_t)(v * sendLevel);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003112 }
Eric Laurente0aed6d2010-09-10 17:44:44 -07003113 // Delegate volume control to effect in track effect chain if needed
3114 if (chain != 0 && chain->setVolume_l(&vl, &vr)) {
3115 // Do not ramp volume if volume is controlled by effect
3116 param = AudioMixer::VOLUME;
3117 track->mHasVolumeController = true;
3118 } else {
3119 // force no volume ramp when volume controller was just disabled or removed
3120 // from effect chain to avoid volume spike
3121 if (track->mHasVolumeController) {
3122 param = AudioMixer::VOLUME;
3123 }
3124 track->mHasVolumeController = false;
3125 }
3126
3127 // Convert volumes from 8.24 to 4.12 format
Glenn Kastenb1cf75c2012-01-17 12:20:54 -08003128 // This additional clamping is needed in case chain->setVolume_l() overshot
Glenn Kasten3b81aca2012-01-27 15:26:23 -08003129 vl = (vl + (1 << 11)) >> 12;
3130 if (vl > MAX_GAIN_INT) vl = MAX_GAIN_INT;
3131 vr = (vr + (1 << 11)) >> 12;
3132 if (vr > MAX_GAIN_INT) vr = MAX_GAIN_INT;
Eric Laurente0aed6d2010-09-10 17:44:44 -07003133
Glenn Kasten3b81aca2012-01-27 15:26:23 -08003134 if (va > MAX_GAIN_INT) va = MAX_GAIN_INT; // va is uint32_t, so no need to check for -
Mathias Agopian65ab4712010-07-14 17:59:35 -07003135
Mathias Agopian65ab4712010-07-14 17:59:35 -07003136 // XXX: these things DON'T need to be done each time
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003137 mAudioMixer->setBufferProvider(name, track);
3138 mAudioMixer->enable(name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003139
Glenn Kasten3b81aca2012-01-27 15:26:23 -08003140 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME0, (void *)vl);
3141 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME1, (void *)vr);
3142 mAudioMixer->setParameter(name, param, AudioMixer::AUXLEVEL, (void *)va);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003143 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003144 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003145 AudioMixer::TRACK,
3146 AudioMixer::FORMAT, (void *)track->format());
3147 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003148 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003149 AudioMixer::TRACK,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07003150 AudioMixer::CHANNEL_MASK, (void *)track->channelMask());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003151 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003152 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003153 AudioMixer::RESAMPLE,
3154 AudioMixer::SAMPLE_RATE,
3155 (void *)(cblk->sampleRate));
3156 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003157 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003158 AudioMixer::TRACK,
3159 AudioMixer::MAIN_BUFFER, (void *)track->mainBuffer());
3160 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003161 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003162 AudioMixer::TRACK,
3163 AudioMixer::AUX_BUFFER, (void *)track->auxBuffer());
3164
3165 // reset retry count
3166 track->mRetryCount = kMaxTrackRetries;
Glenn Kastenea7939a2012-03-14 12:56:26 -07003167
Eric Laurent27741442012-01-17 19:20:12 -08003168 // If one track is ready, set the mixer ready if:
3169 // - the mixer was not ready during previous round OR
3170 // - no other track is not ready
Glenn Kasten81028042012-04-30 18:15:12 -07003171 if (mMixerStatusIgnoringFastTracks != MIXER_TRACKS_READY ||
Eric Laurent27741442012-01-17 19:20:12 -08003172 mixerStatus != MIXER_TRACKS_ENABLED) {
3173 mixerStatus = MIXER_TRACKS_READY;
3174 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003175 } else {
Eric Laurent91b14c42012-05-30 12:30:29 -07003176 // clear effect chain input buffer if an active track underruns to avoid sending
3177 // previous audio buffer again to effects
3178 chain = getEffectChain_l(track->sessionId());
3179 if (chain != 0) {
3180 chain->clearInputBuffer();
3181 }
3182
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003183 //ALOGV("track %d u=%08x, s=%08x [NOT READY] on thread %p", name, cblk->user, cblk->server, this);
Eric Laurent83faee02012-04-27 18:24:29 -07003184 if ((track->sharedBuffer() != 0) || track->isTerminated() ||
3185 track->isStopped() || track->isPaused()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003186 // We have consumed all the buffers of this track.
3187 // Remove it from the list of active tracks.
Eric Laurenta011e352012-03-29 15:51:43 -07003188 // TODO: use actual buffer filling status instead of latency when available from
3189 // audio HAL
3190 size_t audioHALFrames =
3191 (mOutput->stream->get_latency(mOutput->stream)*mSampleRate) / 1000;
3192 size_t framesWritten =
3193 mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
3194 if (track->presentationComplete(framesWritten, audioHALFrames)) {
Eric Laurent29864602012-05-08 18:57:51 -07003195 if (track->isStopped()) {
3196 track->reset();
3197 }
Eric Laurenta011e352012-03-29 15:51:43 -07003198 tracksToRemove->add(track);
3199 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003200 } else {
Glenn Kastenbf0d21f2012-05-31 14:59:29 -07003201 track->mUnderrunCount++;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003202 // No buffers for this track. Give it a few chances to
3203 // fill a buffer, then remove it from active list.
3204 if (--(track->mRetryCount) <= 0) {
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003205 ALOGV("BUFFER TIMEOUT: remove(%d) from active list on thread %p", name, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003206 tracksToRemove->add(track);
Glenn Kasten288ed212012-04-25 17:52:27 -07003207 // indicate to client process that the track was disabled because of underrun;
3208 // it will then automatically call start() when data is available
Eric Laurent38ccae22011-03-28 18:37:07 -07003209 android_atomic_or(CBLK_DISABLED_ON, &cblk->flags);
Eric Laurent27741442012-01-17 19:20:12 -08003210 // If one track is not ready, mark the mixer also not ready if:
3211 // - the mixer was ready during previous round OR
3212 // - no other track is ready
Glenn Kasten81028042012-04-30 18:15:12 -07003213 } else if (mMixerStatusIgnoringFastTracks == MIXER_TRACKS_READY ||
Eric Laurent27741442012-01-17 19:20:12 -08003214 mixerStatus != MIXER_TRACKS_READY) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003215 mixerStatus = MIXER_TRACKS_ENABLED;
3216 }
3217 }
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003218 mAudioMixer->disable(name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003219 }
Glenn Kasten58912562012-04-03 10:45:00 -07003220
3221 } // local variable scope to avoid goto warning
3222track_is_ready: ;
3223
Mathias Agopian65ab4712010-07-14 17:59:35 -07003224 }
3225
Glenn Kasten288ed212012-04-25 17:52:27 -07003226 // Push the new FastMixer state if necessary
Glenn Kastenc15d6652012-05-30 14:52:57 -07003227 bool pauseAudioWatchdog = false;
Glenn Kasten288ed212012-04-25 17:52:27 -07003228 if (didModify) {
3229 state->mFastTracksGen++;
3230 // if the fast mixer was active, but now there are no fast tracks, then put it in cold idle
3231 if (kUseFastMixer == FastMixer_Dynamic &&
3232 state->mCommand == FastMixerState::MIX_WRITE && state->mTrackMask <= 1) {
3233 state->mCommand = FastMixerState::COLD_IDLE;
3234 state->mColdFutexAddr = &mFastMixerFutex;
3235 state->mColdGen++;
3236 mFastMixerFutex = 0;
3237 if (kUseFastMixer == FastMixer_Dynamic) {
3238 mNormalSink = mOutputSink;
3239 }
3240 // If we go into cold idle, need to wait for acknowledgement
3241 // so that fast mixer stops doing I/O.
3242 block = FastMixerStateQueue::BLOCK_UNTIL_ACKED;
Glenn Kastenc15d6652012-05-30 14:52:57 -07003243 pauseAudioWatchdog = true;
Glenn Kasten288ed212012-04-25 17:52:27 -07003244 }
3245 sq->end();
3246 }
3247 if (sq != NULL) {
3248 sq->end(didModify);
3249 sq->push(block);
3250 }
Glenn Kastenc15d6652012-05-30 14:52:57 -07003251 if (pauseAudioWatchdog && mAudioWatchdog != 0) {
3252 mAudioWatchdog->pause();
3253 }
Glenn Kasten288ed212012-04-25 17:52:27 -07003254
3255 // Now perform the deferred reset on fast tracks that have stopped
3256 while (resetMask != 0) {
3257 size_t i = __builtin_ctz(resetMask);
3258 ALOG_ASSERT(i < count);
3259 resetMask &= ~(1 << i);
3260 sp<Track> t = mActiveTracks[i].promote();
3261 if (t == 0) continue;
3262 Track* track = t.get();
3263 ALOG_ASSERT(track->isFastTrack() && track->isStopped());
3264 track->reset();
3265 }
Glenn Kasten58912562012-04-03 10:45:00 -07003266
Mathias Agopian65ab4712010-07-14 17:59:35 -07003267 // remove all the tracks that need to be...
3268 count = tracksToRemove->size();
Glenn Kastenf6b16782011-12-15 09:51:17 -08003269 if (CC_UNLIKELY(count)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003270 for (size_t i=0 ; i<count ; i++) {
3271 const sp<Track>& track = tracksToRemove->itemAt(i);
3272 mActiveTracks.remove(track);
3273 if (track->mainBuffer() != mMixBuffer) {
3274 chain = getEffectChain_l(track->sessionId());
3275 if (chain != 0) {
Steve Block3856b092011-10-20 11:56:00 +01003276 ALOGV("stopping track on chain %p for session Id: %d", chain.get(), track->sessionId());
Eric Laurentb469b942011-05-09 12:09:06 -07003277 chain->decActiveTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003278 }
3279 }
3280 if (track->isTerminated()) {
Eric Laurentb469b942011-05-09 12:09:06 -07003281 removeTrack_l(track);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003282 }
3283 }
3284 }
3285
3286 // mix buffer must be cleared if all tracks are connected to an
3287 // effect chain as in this case the mixer will not write to
3288 // mix buffer and track effects will accumulate into it
Glenn Kasten58912562012-04-03 10:45:00 -07003289 if ((mixedTracks != 0 && mixedTracks == tracksWithEffect) || (mixedTracks == 0 && fastTracks > 0)) {
3290 // FIXME as a performance optimization, should remember previous zero status
3291 memset(mMixBuffer, 0, mNormalFrameCount * mChannelCount * sizeof(int16_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07003292 }
3293
Glenn Kasten58912562012-04-03 10:45:00 -07003294 // if any fast tracks, then status is ready
Glenn Kasten81028042012-04-30 18:15:12 -07003295 mMixerStatusIgnoringFastTracks = mixerStatus;
Glenn Kasten58912562012-04-03 10:45:00 -07003296 if (fastTracks > 0) {
3297 mixerStatus = MIXER_TRACKS_READY;
3298 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003299 return mixerStatus;
3300}
3301
Glenn Kasten66fcab92012-02-24 14:59:21 -08003302/*
3303The derived values that are cached:
3304 - mixBufferSize from frame count * frame size
3305 - activeSleepTime from activeSleepTimeUs()
3306 - idleSleepTime from idleSleepTimeUs()
3307 - standbyDelay from mActiveSleepTimeUs (DIRECT only)
3308 - maxPeriod from frame count and sample rate (MIXER only)
3309
3310The parameters that affect these derived values are:
3311 - frame count
3312 - frame size
3313 - sample rate
3314 - device type: A2DP or not
3315 - device latency
3316 - format: PCM or not
3317 - active sleep time
3318 - idle sleep time
3319*/
3320
3321void AudioFlinger::PlaybackThread::cacheParameters_l()
3322{
Glenn Kasten58912562012-04-03 10:45:00 -07003323 mixBufferSize = mNormalFrameCount * mFrameSize;
Glenn Kasten66fcab92012-02-24 14:59:21 -08003324 activeSleepTime = activeSleepTimeUs();
3325 idleSleepTime = idleSleepTimeUs();
3326}
3327
Eric Laurent22167852012-06-20 12:26:32 -07003328void AudioFlinger::PlaybackThread::invalidateTracks(audio_stream_type_t streamType)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003329{
Steve Block3856b092011-10-20 11:56:00 +01003330 ALOGV ("MixerThread::invalidateTracks() mixer %p, streamType %d, mTracks.size %d",
Eric Laurentde070132010-07-13 04:45:46 -07003331 this, streamType, mTracks.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003332 Mutex::Autolock _l(mLock);
Eric Laurentde070132010-07-13 04:45:46 -07003333
Mathias Agopian65ab4712010-07-14 17:59:35 -07003334 size_t size = mTracks.size();
3335 for (size_t i = 0; i < size; i++) {
3336 sp<Track> t = mTracks[i];
Glenn Kasten02bbd202012-02-08 12:35:35 -08003337 if (t->streamType() == streamType) {
Eric Laurent38ccae22011-03-28 18:37:07 -07003338 android_atomic_or(CBLK_INVALID_ON, &t->mCblk->flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003339 t->mCblk->cv.signal();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003340 }
3341 }
3342}
3343
Mathias Agopian65ab4712010-07-14 17:59:35 -07003344// getTrackName_l() must be called with ThreadBase::mLock held
Jean-Michel Trivi7d5b2622012-04-04 18:54:36 -07003345int AudioFlinger::MixerThread::getTrackName_l(audio_channel_mask_t channelMask)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003346{
Jean-Michel Trivi9bd23222012-04-16 13:43:48 -07003347 return mAudioMixer->getTrackName(channelMask);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003348}
3349
3350// deleteTrackName_l() must be called with ThreadBase::mLock held
3351void AudioFlinger::MixerThread::deleteTrackName_l(int name)
3352{
Steve Block3856b092011-10-20 11:56:00 +01003353 ALOGV("remove track (%d) and delete from mixer", name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003354 mAudioMixer->deleteTrackName(name);
3355}
3356
3357// checkForNewParameters_l() must be called with ThreadBase::mLock held
3358bool AudioFlinger::MixerThread::checkForNewParameters_l()
3359{
Glenn Kasten58912562012-04-03 10:45:00 -07003360 // if !&IDLE, holds the FastMixer state to restore after new parameters processed
3361 FastMixerState::Command previousCommand = FastMixerState::HOT_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003362 bool reconfig = false;
3363
3364 while (!mNewParameters.isEmpty()) {
Glenn Kasten58912562012-04-03 10:45:00 -07003365
3366 if (mFastMixer != NULL) {
3367 FastMixerStateQueue *sq = mFastMixer->sq();
3368 FastMixerState *state = sq->begin();
3369 if (!(state->mCommand & FastMixerState::IDLE)) {
3370 previousCommand = state->mCommand;
3371 state->mCommand = FastMixerState::HOT_IDLE;
3372 sq->end();
3373 sq->push(FastMixerStateQueue::BLOCK_UNTIL_ACKED);
3374 } else {
3375 sq->end(false /*didModify*/);
3376 }
3377 }
3378
Mathias Agopian65ab4712010-07-14 17:59:35 -07003379 status_t status = NO_ERROR;
3380 String8 keyValuePair = mNewParameters[0];
3381 AudioParameter param = AudioParameter(keyValuePair);
3382 int value;
3383
3384 if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
3385 reconfig = true;
3386 }
3387 if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
Glenn Kasten58f30212012-01-12 12:27:51 -08003388 if ((audio_format_t) value != AUDIO_FORMAT_PCM_16_BIT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003389 status = BAD_VALUE;
3390 } else {
3391 reconfig = true;
3392 }
3393 }
3394 if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
Dima Zavinfce7a472011-04-19 22:30:36 -07003395 if (value != AUDIO_CHANNEL_OUT_STEREO) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003396 status = BAD_VALUE;
3397 } else {
3398 reconfig = true;
3399 }
3400 }
3401 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
3402 // do not accept frame count changes if tracks are open as the track buffer
Glenn Kasten362c4e62011-12-14 10:28:06 -08003403 // size depends on frame count and correct behavior would not be guaranteed
Mathias Agopian65ab4712010-07-14 17:59:35 -07003404 // if frame count is changed after track creation
3405 if (!mTracks.isEmpty()) {
3406 status = INVALID_OPERATION;
3407 } else {
3408 reconfig = true;
3409 }
3410 }
3411 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003412#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08003413 // when changing the audio output device, call addBatteryData to notify
3414 // the change
Glenn Kasten5ad92f62012-07-19 10:02:15 -07003415 if (mDevice != value) {
Gloria Wang9ee159b2011-02-24 14:51:45 -08003416 uint32_t params = 0;
3417 // check whether speaker is on
Dima Zavinfce7a472011-04-19 22:30:36 -07003418 if (value & AUDIO_DEVICE_OUT_SPEAKER) {
Gloria Wang9ee159b2011-02-24 14:51:45 -08003419 params |= IMediaPlayerService::kBatteryDataSpeakerOn;
3420 }
3421
Glenn Kastenbb4350d2012-07-03 15:56:38 -07003422 audio_devices_t deviceWithoutSpeaker
Dima Zavinfce7a472011-04-19 22:30:36 -07003423 = AUDIO_DEVICE_OUT_ALL & ~AUDIO_DEVICE_OUT_SPEAKER;
Gloria Wang9ee159b2011-02-24 14:51:45 -08003424 // check if any other device (except speaker) is on
3425 if (value & deviceWithoutSpeaker ) {
3426 params |= IMediaPlayerService::kBatteryDataOtherAudioDeviceOn;
3427 }
3428
3429 if (params != 0) {
3430 addBatteryData(params);
3431 }
3432 }
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003433#endif
Gloria Wang9ee159b2011-02-24 14:51:45 -08003434
Mathias Agopian65ab4712010-07-14 17:59:35 -07003435 // forward device change to effects that have requested to be
3436 // aware of attached audio device.
Glenn Kasten5ad92f62012-07-19 10:02:15 -07003437 mDevice = value;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003438 for (size_t i = 0; i < mEffectChains.size(); i++) {
Eric Laurentcab11242010-07-15 12:50:15 -07003439 mEffectChains[i]->setDevice_l(mDevice);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003440 }
3441 }
3442
3443 if (status == NO_ERROR) {
Dima Zavin799a70e2011-04-18 16:57:27 -07003444 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07003445 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003446 if (!mStandby && status == INVALID_OPERATION) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003447 mOutput->stream->common.standby(&mOutput->stream->common);
3448 mStandby = true;
3449 mBytesWritten = 0;
3450 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07003451 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003452 }
3453 if (status == NO_ERROR && reconfig) {
3454 delete mAudioMixer;
Glenn Kastene9dd0172012-01-27 18:08:45 -08003455 // for safety in case readOutputParameters() accesses mAudioMixer (it doesn't)
3456 mAudioMixer = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003457 readOutputParameters();
Glenn Kasten58912562012-04-03 10:45:00 -07003458 mAudioMixer = new AudioMixer(mNormalFrameCount, mSampleRate);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003459 for (size_t i = 0; i < mTracks.size() ; i++) {
Glenn Kasten254af182012-07-03 14:59:05 -07003460 int name = getTrackName_l(mTracks[i]->mChannelMask);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003461 if (name < 0) break;
3462 mTracks[i]->mName = name;
3463 // limit track sample rate to 2 x new output sample rate
3464 if (mTracks[i]->mCblk->sampleRate > 2 * sampleRate()) {
3465 mTracks[i]->mCblk->sampleRate = 2 * sampleRate();
3466 }
3467 }
3468 sendConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
3469 }
3470 }
3471
3472 mNewParameters.removeAt(0);
3473
3474 mParamStatus = status;
3475 mParamCond.signal();
Eric Laurent60cd0a02011-09-13 11:40:21 -07003476 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
3477 // already timed out waiting for the status and will never signal the condition.
Glenn Kasten7dede872011-12-13 11:04:14 -08003478 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003479 }
Glenn Kasten58912562012-04-03 10:45:00 -07003480
3481 if (!(previousCommand & FastMixerState::IDLE)) {
3482 ALOG_ASSERT(mFastMixer != NULL);
3483 FastMixerStateQueue *sq = mFastMixer->sq();
3484 FastMixerState *state = sq->begin();
3485 ALOG_ASSERT(state->mCommand == FastMixerState::HOT_IDLE);
3486 state->mCommand = previousCommand;
3487 sq->end();
3488 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
3489 }
3490
Mathias Agopian65ab4712010-07-14 17:59:35 -07003491 return reconfig;
3492}
3493
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07003494void AudioFlinger::MixerThread::dumpInternals(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003495{
3496 const size_t SIZE = 256;
3497 char buffer[SIZE];
3498 String8 result;
3499
3500 PlaybackThread::dumpInternals(fd, args);
3501
3502 snprintf(buffer, SIZE, "AudioMixer tracks: %08x\n", mAudioMixer->trackNames());
3503 result.append(buffer);
3504 write(fd, result.string(), result.size());
Glenn Kasten58912562012-04-03 10:45:00 -07003505
3506 // Make a non-atomic copy of fast mixer dump state so it won't change underneath us
3507 FastMixerDumpState copy = mFastMixerDumpState;
3508 copy.dump(fd);
3509
Glenn Kasten39993082012-05-31 13:40:27 -07003510#ifdef STATE_QUEUE_DUMP
3511 // Similar for state queue
3512 StateQueueObserverDump observerCopy = mStateQueueObserverDump;
3513 observerCopy.dump(fd);
3514 StateQueueMutatorDump mutatorCopy = mStateQueueMutatorDump;
3515 mutatorCopy.dump(fd);
3516#endif
3517
Glenn Kastenfbae5da2012-05-21 09:17:20 -07003518 // Write the tee output to a .wav file
3519 NBAIO_Source *teeSource = mTeeSource.get();
3520 if (teeSource != NULL) {
3521 char teePath[64];
3522 struct timeval tv;
3523 gettimeofday(&tv, NULL);
3524 struct tm tm;
3525 localtime_r(&tv.tv_sec, &tm);
3526 strftime(teePath, sizeof(teePath), "/data/misc/media/%T.wav", &tm);
3527 int teeFd = open(teePath, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR);
3528 if (teeFd >= 0) {
3529 char wavHeader[44];
3530 memcpy(wavHeader,
3531 "RIFF\0\0\0\0WAVEfmt \20\0\0\0\1\0\2\0\104\254\0\0\0\0\0\0\4\0\20\0data\0\0\0\0",
3532 sizeof(wavHeader));
3533 NBAIO_Format format = teeSource->format();
3534 unsigned channelCount = Format_channelCount(format);
3535 ALOG_ASSERT(channelCount <= FCC_2);
3536 unsigned sampleRate = Format_sampleRate(format);
3537 wavHeader[22] = channelCount; // number of channels
3538 wavHeader[24] = sampleRate; // sample rate
3539 wavHeader[25] = sampleRate >> 8;
3540 wavHeader[32] = channelCount * 2; // block alignment
3541 write(teeFd, wavHeader, sizeof(wavHeader));
3542 size_t total = 0;
3543 bool firstRead = true;
3544 for (;;) {
3545#define TEE_SINK_READ 1024
3546 short buffer[TEE_SINK_READ * FCC_2];
3547 size_t count = TEE_SINK_READ;
3548 ssize_t actual = teeSource->read(buffer, count);
3549 bool wasFirstRead = firstRead;
3550 firstRead = false;
3551 if (actual <= 0) {
3552 if (actual == (ssize_t) OVERRUN && wasFirstRead) {
3553 continue;
3554 }
3555 break;
3556 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07003557 ALOG_ASSERT(actual <= (ssize_t)count);
Glenn Kastenfbae5da2012-05-21 09:17:20 -07003558 write(teeFd, buffer, actual * channelCount * sizeof(short));
3559 total += actual;
3560 }
3561 lseek(teeFd, (off_t) 4, SEEK_SET);
3562 uint32_t temp = 44 + total * channelCount * sizeof(short) - 8;
3563 write(teeFd, &temp, sizeof(temp));
3564 lseek(teeFd, (off_t) 40, SEEK_SET);
3565 temp = total * channelCount * sizeof(short);
3566 write(teeFd, &temp, sizeof(temp));
3567 close(teeFd);
3568 fdprintf(fd, "FastMixer tee copied to %s\n", teePath);
3569 } else {
3570 fdprintf(fd, "FastMixer unable to create tee %s: \n", strerror(errno));
3571 }
3572 }
3573
Glenn Kastenc15d6652012-05-30 14:52:57 -07003574 if (mAudioWatchdog != 0) {
3575 // Make a non-atomic copy of audio watchdog dump so it won't change underneath us
3576 AudioWatchdogDump wdCopy = mAudioWatchdogDump;
3577 wdCopy.dump(fd);
3578 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003579}
3580
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003581uint32_t AudioFlinger::MixerThread::idleSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07003582{
Glenn Kasten58912562012-04-03 10:45:00 -07003583 return (uint32_t)(((mNormalFrameCount * 1000) / mSampleRate) * 1000) / 2;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003584}
3585
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003586uint32_t AudioFlinger::MixerThread::suspendSleepTimeUs() const
Eric Laurent25cbe0e2010-08-18 18:13:17 -07003587{
Glenn Kasten58912562012-04-03 10:45:00 -07003588 return (uint32_t)(((mNormalFrameCount * 1000) / mSampleRate) * 1000);
Eric Laurent25cbe0e2010-08-18 18:13:17 -07003589}
3590
Glenn Kasten66fcab92012-02-24 14:59:21 -08003591void AudioFlinger::MixerThread::cacheParameters_l()
3592{
3593 PlaybackThread::cacheParameters_l();
3594
3595 // FIXME: Relaxed timing because of a certain device that can't meet latency
3596 // Should be reduced to 2x after the vendor fixes the driver issue
3597 // increase threshold again due to low power audio mode. The way this warning
3598 // threshold is calculated and its usefulness should be reconsidered anyway.
Glenn Kasten58912562012-04-03 10:45:00 -07003599 maxPeriod = seconds(mNormalFrameCount) / mSampleRate * 15;
Glenn Kasten66fcab92012-02-24 14:59:21 -08003600}
3601
Mathias Agopian65ab4712010-07-14 17:59:35 -07003602// ----------------------------------------------------------------------------
Glenn Kasten72ef00d2012-01-17 11:09:42 -08003603AudioFlinger::DirectOutputThread::DirectOutputThread(const sp<AudioFlinger>& audioFlinger,
Glenn Kastenbb4350d2012-07-03 15:56:38 -07003604 AudioStreamOut* output, audio_io_handle_t id, audio_devices_t device)
Glenn Kasten23bb8be2012-01-26 10:38:26 -08003605 : PlaybackThread(audioFlinger, output, id, device, DIRECT)
Glenn Kasten84afa3b2012-01-25 15:28:08 -08003606 // mLeftVolFloat, mRightVolFloat
Mathias Agopian65ab4712010-07-14 17:59:35 -07003607{
Mathias Agopian65ab4712010-07-14 17:59:35 -07003608}
3609
3610AudioFlinger::DirectOutputThread::~DirectOutputThread()
3611{
3612}
3613
Glenn Kasten1465f0c2012-03-06 11:23:32 -08003614AudioFlinger::PlaybackThread::mixer_state AudioFlinger::DirectOutputThread::prepareTracks_l(
3615 Vector< sp<Track> > *tracksToRemove
Glenn Kasten000f0e32012-03-01 17:10:56 -08003616)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003617{
Glenn Kasten1465f0c2012-03-06 11:23:32 -08003618 sp<Track> trackToRemove;
3619
Glenn Kastenfec279f2012-03-08 07:47:15 -08003620 mixer_state mixerStatus = MIXER_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003621
Glenn Kasten952eeb22012-03-06 11:30:57 -08003622 // find out which tracks need to be processed
3623 if (mActiveTracks.size() != 0) {
3624 sp<Track> t = mActiveTracks[0].promote();
Glenn Kastenfec279f2012-03-08 07:47:15 -08003625 // The track died recently
3626 if (t == 0) return MIXER_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003627
Glenn Kasten952eeb22012-03-06 11:30:57 -08003628 Track* const track = t.get();
3629 audio_track_cblk_t* cblk = track->cblk();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003630
Glenn Kasten952eeb22012-03-06 11:30:57 -08003631 // The first time a track is added we wait
3632 // for all its buffers to be filled before processing it
Eric Laurent67c0a582012-05-01 19:31:12 -07003633 uint32_t minFrames;
3634 if ((track->sharedBuffer() == 0) && !track->isStopped() && !track->isPausing()) {
3635 minFrames = mNormalFrameCount;
3636 } else {
3637 minFrames = 1;
3638 }
3639 if ((track->framesReady() >= minFrames) && track->isReady() &&
Glenn Kasten952eeb22012-03-06 11:30:57 -08003640 !track->isPaused() && !track->isTerminated())
3641 {
3642 //ALOGV("track %d u=%08x, s=%08x [OK]", track->name(), cblk->user, cblk->server);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003643
Glenn Kasten952eeb22012-03-06 11:30:57 -08003644 if (track->mFillingUpStatus == Track::FS_FILLED) {
3645 track->mFillingUpStatus = Track::FS_ACTIVE;
3646 mLeftVolFloat = mRightVolFloat = 0;
Glenn Kasten952eeb22012-03-06 11:30:57 -08003647 if (track->mState == TrackBase::RESUMING) {
3648 track->mState = TrackBase::ACTIVE;
Glenn Kasten952eeb22012-03-06 11:30:57 -08003649 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08003650 }
Eric Laurent67c0a582012-05-01 19:31:12 -07003651
Glenn Kasten952eeb22012-03-06 11:30:57 -08003652 // compute volume for this track
3653 float left, right;
3654 if (track->isMuted() || mMasterMute || track->isPausing() ||
3655 mStreamTypes[track->streamType()].mute) {
3656 left = right = 0;
3657 if (track->isPausing()) {
3658 track->setPaused();
3659 }
3660 } else {
3661 float typeVolume = mStreamTypes[track->streamType()].volume;
3662 float v = mMasterVolume * typeVolume;
3663 uint32_t vlr = cblk->getVolumeLR();
3664 float v_clamped = v * (vlr & 0xFFFF);
3665 if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
3666 left = v_clamped/MAX_GAIN;
3667 v_clamped = v * (vlr >> 16);
3668 if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
3669 right = v_clamped/MAX_GAIN;
3670 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003671
Glenn Kasten952eeb22012-03-06 11:30:57 -08003672 if (left != mLeftVolFloat || right != mRightVolFloat) {
3673 mLeftVolFloat = left;
3674 mRightVolFloat = right;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003675
Glenn Kasten952eeb22012-03-06 11:30:57 -08003676 // Convert volumes from float to 8.24
3677 uint32_t vl = (uint32_t)(left * (1 << 24));
3678 uint32_t vr = (uint32_t)(right * (1 << 24));
Mathias Agopian65ab4712010-07-14 17:59:35 -07003679
Glenn Kasten952eeb22012-03-06 11:30:57 -08003680 // Delegate volume control to effect in track effect chain if needed
3681 // only one effect chain can be present on DirectOutputThread, so if
3682 // there is one, the track is connected to it
3683 if (!mEffectChains.isEmpty()) {
3684 // Do not ramp volume if volume is controlled by effect
Eric Laurent67c0a582012-05-01 19:31:12 -07003685 mEffectChains[0]->setVolume_l(&vl, &vr);
3686 left = (float)vl / (1 << 24);
3687 right = (float)vr / (1 << 24);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003688 }
Eric Laurent67c0a582012-05-01 19:31:12 -07003689 mOutput->stream->set_volume(mOutput->stream, left, right);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003690 }
3691
3692 // reset retry count
3693 track->mRetryCount = kMaxTrackRetriesDirect;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08003694 mActiveTrack = t;
Glenn Kastenfec279f2012-03-08 07:47:15 -08003695 mixerStatus = MIXER_TRACKS_READY;
Glenn Kasten952eeb22012-03-06 11:30:57 -08003696 } else {
Eric Laurent91b14c42012-05-30 12:30:29 -07003697 // clear effect chain input buffer if an active track underruns to avoid sending
3698 // previous audio buffer again to effects
3699 if (!mEffectChains.isEmpty()) {
3700 mEffectChains[0]->clearInputBuffer();
3701 }
3702
Glenn Kasten952eeb22012-03-06 11:30:57 -08003703 //ALOGV("track %d u=%08x, s=%08x [NOT READY]", track->name(), cblk->user, cblk->server);
Eric Laurent67c0a582012-05-01 19:31:12 -07003704 if ((track->sharedBuffer() != 0) || track->isTerminated() ||
3705 track->isStopped() || track->isPaused()) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08003706 // We have consumed all the buffers of this track.
3707 // Remove it from the list of active tracks.
Eric Laurenta011e352012-03-29 15:51:43 -07003708 // TODO: implement behavior for compressed audio
3709 size_t audioHALFrames =
3710 (mOutput->stream->get_latency(mOutput->stream)*mSampleRate) / 1000;
3711 size_t framesWritten =
3712 mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
3713 if (track->presentationComplete(framesWritten, audioHALFrames)) {
Eric Laurent29864602012-05-08 18:57:51 -07003714 if (track->isStopped()) {
3715 track->reset();
3716 }
Eric Laurenta011e352012-03-29 15:51:43 -07003717 trackToRemove = track;
3718 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08003719 } else {
3720 // No buffers for this track. Give it a few chances to
3721 // fill a buffer, then remove it from active list.
3722 if (--(track->mRetryCount) <= 0) {
3723 ALOGV("BUFFER TIMEOUT: remove(%d) from active list", track->name());
3724 trackToRemove = track;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003725 } else {
Glenn Kastenfec279f2012-03-08 07:47:15 -08003726 mixerStatus = MIXER_TRACKS_ENABLED;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003727 }
3728 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08003729 }
3730 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003731
Glenn Kasten1465f0c2012-03-06 11:23:32 -08003732 // FIXME merge this with similar code for removing multiple tracks
Glenn Kasten952eeb22012-03-06 11:30:57 -08003733 // remove all the tracks that need to be...
3734 if (CC_UNLIKELY(trackToRemove != 0)) {
Glenn Kasten1465f0c2012-03-06 11:23:32 -08003735 tracksToRemove->add(trackToRemove);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003736 mActiveTracks.remove(trackToRemove);
3737 if (!mEffectChains.isEmpty()) {
Glenn Kasten5798d4e2012-03-08 12:18:35 -08003738 ALOGV("stopping track on chain %p for session Id: %d", mEffectChains[0].get(),
Glenn Kasten952eeb22012-03-06 11:30:57 -08003739 trackToRemove->sessionId());
3740 mEffectChains[0]->decActiveTrackCnt();
3741 }
3742 if (trackToRemove->isTerminated()) {
3743 removeTrack_l(trackToRemove);
3744 }
3745 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003746
Glenn Kastenfec279f2012-03-08 07:47:15 -08003747 return mixerStatus;
Glenn Kasten000f0e32012-03-01 17:10:56 -08003748}
Mathias Agopian65ab4712010-07-14 17:59:35 -07003749
Glenn Kasten000f0e32012-03-01 17:10:56 -08003750void AudioFlinger::DirectOutputThread::threadLoop_mix()
3751{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003752 AudioBufferProvider::Buffer buffer;
3753 size_t frameCount = mFrameCount;
3754 int8_t *curBuf = (int8_t *)mMixBuffer;
3755 // output audio to hardware
3756 while (frameCount) {
3757 buffer.frameCount = frameCount;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08003758 mActiveTrack->getNextBuffer(&buffer);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003759 if (CC_UNLIKELY(buffer.raw == NULL)) {
3760 memset(curBuf, 0, frameCount * mFrameSize);
3761 break;
3762 }
3763 memcpy(curBuf, buffer.raw, buffer.frameCount * mFrameSize);
3764 frameCount -= buffer.frameCount;
3765 curBuf += buffer.frameCount * mFrameSize;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08003766 mActiveTrack->releaseBuffer(&buffer);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003767 }
3768 sleepTime = 0;
3769 standbyTime = systemTime() + standbyDelay;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08003770 mActiveTrack.clear();
Glenn Kasten73f4bc32012-03-09 12:08:48 -08003771
Glenn Kasten000f0e32012-03-01 17:10:56 -08003772}
3773
3774void AudioFlinger::DirectOutputThread::threadLoop_sleepTime()
3775{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003776 if (sleepTime == 0) {
Glenn Kastenfec279f2012-03-08 07:47:15 -08003777 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08003778 sleepTime = activeSleepTime;
3779 } else {
3780 sleepTime = idleSleepTime;
3781 }
3782 } else if (mBytesWritten != 0 && audio_is_linear_pcm(mFormat)) {
Glenn Kasten58912562012-04-03 10:45:00 -07003783 memset(mMixBuffer, 0, mFrameCount * mFrameSize);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003784 sleepTime = 0;
3785 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003786}
3787
3788// getTrackName_l() must be called with ThreadBase::mLock held
Jean-Michel Trivi7d5b2622012-04-04 18:54:36 -07003789int AudioFlinger::DirectOutputThread::getTrackName_l(audio_channel_mask_t channelMask)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003790{
3791 return 0;
3792}
3793
3794// deleteTrackName_l() must be called with ThreadBase::mLock held
3795void AudioFlinger::DirectOutputThread::deleteTrackName_l(int name)
3796{
3797}
3798
3799// checkForNewParameters_l() must be called with ThreadBase::mLock held
3800bool AudioFlinger::DirectOutputThread::checkForNewParameters_l()
3801{
3802 bool reconfig = false;
3803
3804 while (!mNewParameters.isEmpty()) {
3805 status_t status = NO_ERROR;
3806 String8 keyValuePair = mNewParameters[0];
3807 AudioParameter param = AudioParameter(keyValuePair);
3808 int value;
3809
3810 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
3811 // do not accept frame count changes if tracks are open as the track buffer
3812 // size depends on frame count and correct behavior would not be garantied
3813 // if frame count is changed after track creation
3814 if (!mTracks.isEmpty()) {
3815 status = INVALID_OPERATION;
3816 } else {
3817 reconfig = true;
3818 }
3819 }
3820 if (status == NO_ERROR) {
Dima Zavin799a70e2011-04-18 16:57:27 -07003821 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07003822 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003823 if (!mStandby && status == INVALID_OPERATION) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003824 mOutput->stream->common.standby(&mOutput->stream->common);
3825 mStandby = true;
3826 mBytesWritten = 0;
3827 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07003828 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003829 }
3830 if (status == NO_ERROR && reconfig) {
3831 readOutputParameters();
3832 sendConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
3833 }
3834 }
3835
3836 mNewParameters.removeAt(0);
3837
3838 mParamStatus = status;
3839 mParamCond.signal();
Eric Laurent60cd0a02011-09-13 11:40:21 -07003840 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
3841 // already timed out waiting for the status and will never signal the condition.
Glenn Kasten7dede872011-12-13 11:04:14 -08003842 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003843 }
3844 return reconfig;
3845}
3846
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003847uint32_t AudioFlinger::DirectOutputThread::activeSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07003848{
3849 uint32_t time;
Dima Zavinfce7a472011-04-19 22:30:36 -07003850 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent162b40b2011-12-05 09:47:19 -08003851 time = PlaybackThread::activeSleepTimeUs();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003852 } else {
3853 time = 10000;
3854 }
3855 return time;
3856}
3857
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003858uint32_t AudioFlinger::DirectOutputThread::idleSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07003859{
3860 uint32_t time;
Dima Zavinfce7a472011-04-19 22:30:36 -07003861 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent60e18242010-07-29 06:50:24 -07003862 time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000) / 2;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003863 } else {
3864 time = 10000;
3865 }
3866 return time;
3867}
3868
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003869uint32_t AudioFlinger::DirectOutputThread::suspendSleepTimeUs() const
Eric Laurent25cbe0e2010-08-18 18:13:17 -07003870{
3871 uint32_t time;
Dima Zavinfce7a472011-04-19 22:30:36 -07003872 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent25cbe0e2010-08-18 18:13:17 -07003873 time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000);
3874 } else {
3875 time = 10000;
3876 }
3877 return time;
3878}
3879
Glenn Kasten66fcab92012-02-24 14:59:21 -08003880void AudioFlinger::DirectOutputThread::cacheParameters_l()
3881{
3882 PlaybackThread::cacheParameters_l();
3883
3884 // use shorter standby delay as on normal output to release
3885 // hardware resources as soon as possible
3886 standbyDelay = microseconds(activeSleepTime*2);
3887}
Eric Laurent25cbe0e2010-08-18 18:13:17 -07003888
Mathias Agopian65ab4712010-07-14 17:59:35 -07003889// ----------------------------------------------------------------------------
3890
Glenn Kasten23bb8be2012-01-26 10:38:26 -08003891AudioFlinger::DuplicatingThread::DuplicatingThread(const sp<AudioFlinger>& audioFlinger,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08003892 AudioFlinger::MixerThread* mainThread, audio_io_handle_t id)
Glenn Kasten23bb8be2012-01-26 10:38:26 -08003893 : MixerThread(audioFlinger, mainThread->getOutput(), id, mainThread->device(), DUPLICATING),
3894 mWaitTimeMs(UINT_MAX)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003895{
Mathias Agopian65ab4712010-07-14 17:59:35 -07003896 addOutputTrack(mainThread);
3897}
3898
3899AudioFlinger::DuplicatingThread::~DuplicatingThread()
3900{
3901 for (size_t i = 0; i < mOutputTracks.size(); i++) {
3902 mOutputTracks[i]->destroy();
3903 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003904}
3905
Glenn Kasten000f0e32012-03-01 17:10:56 -08003906void AudioFlinger::DuplicatingThread::threadLoop_mix()
Mathias Agopian65ab4712010-07-14 17:59:35 -07003907{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003908 // mix buffers...
3909 if (outputsReady(outputTracks)) {
3910 mAudioMixer->process(AudioBufferProvider::kInvalidPTS);
3911 } else {
3912 memset(mMixBuffer, 0, mixBufferSize);
3913 }
3914 sleepTime = 0;
Glenn Kasten58912562012-04-03 10:45:00 -07003915 writeFrames = mNormalFrameCount;
Eric Laurenta4f7e0e2012-06-07 17:16:09 -07003916 standbyTime = systemTime() + standbyDelay;
Glenn Kasten000f0e32012-03-01 17:10:56 -08003917}
3918
3919void AudioFlinger::DuplicatingThread::threadLoop_sleepTime()
3920{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003921 if (sleepTime == 0) {
Glenn Kastenfec279f2012-03-08 07:47:15 -08003922 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08003923 sleepTime = activeSleepTime;
3924 } else {
3925 sleepTime = idleSleepTime;
3926 }
3927 } else if (mBytesWritten != 0) {
Eric Laurenta4f7e0e2012-06-07 17:16:09 -07003928 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
3929 writeFrames = mNormalFrameCount;
3930 memset(mMixBuffer, 0, mixBufferSize);
3931 } else {
3932 // flush remaining overflow buffers in output tracks
3933 writeFrames = 0;
Glenn Kasten952eeb22012-03-06 11:30:57 -08003934 }
Eric Laurenta4f7e0e2012-06-07 17:16:09 -07003935 sleepTime = 0;
Glenn Kasten952eeb22012-03-06 11:30:57 -08003936 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08003937}
Mathias Agopian65ab4712010-07-14 17:59:35 -07003938
Glenn Kasten000f0e32012-03-01 17:10:56 -08003939void AudioFlinger::DuplicatingThread::threadLoop_write()
3940{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003941 for (size_t i = 0; i < outputTracks.size(); i++) {
3942 outputTracks[i]->write(mMixBuffer, writeFrames);
3943 }
3944 mBytesWritten += mixBufferSize;
Glenn Kasten000f0e32012-03-01 17:10:56 -08003945}
Glenn Kasten688a6402012-02-29 07:57:06 -08003946
Glenn Kasten000f0e32012-03-01 17:10:56 -08003947void AudioFlinger::DuplicatingThread::threadLoop_standby()
3948{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003949 // DuplicatingThread implements standby by stopping all tracks
3950 for (size_t i = 0; i < outputTracks.size(); i++) {
3951 outputTracks[i]->stop();
3952 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003953}
3954
Glenn Kastenfa26a852012-03-06 11:28:04 -08003955void AudioFlinger::DuplicatingThread::saveOutputTracks()
3956{
3957 outputTracks = mOutputTracks;
3958}
3959
3960void AudioFlinger::DuplicatingThread::clearOutputTracks()
3961{
3962 outputTracks.clear();
3963}
3964
Mathias Agopian65ab4712010-07-14 17:59:35 -07003965void AudioFlinger::DuplicatingThread::addOutputTrack(MixerThread *thread)
3966{
Glenn Kastenb6b74062012-02-24 14:12:20 -08003967 Mutex::Autolock _l(mLock);
Glenn Kasten99e53b82012-01-19 08:59:58 -08003968 // FIXME explain this formula
Glenn Kasten58912562012-04-03 10:45:00 -07003969 int frameCount = (3 * mNormalFrameCount * mSampleRate) / thread->sampleRate();
Glenn Kasten9eaa5572012-01-20 13:32:16 -08003970 OutputTrack *outputTrack = new OutputTrack(thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003971 this,
3972 mSampleRate,
3973 mFormat,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07003974 mChannelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003975 frameCount);
3976 if (outputTrack->cblk() != NULL) {
Dima Zavinfce7a472011-04-19 22:30:36 -07003977 thread->setStreamVolume(AUDIO_STREAM_CNT, 1.0f);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003978 mOutputTracks.add(outputTrack);
Steve Block3856b092011-10-20 11:56:00 +01003979 ALOGV("addOutputTrack() track %p, on thread %p", outputTrack, thread);
Glenn Kasten438b0362012-03-06 11:24:48 -08003980 updateWaitTime_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003981 }
3982}
3983
3984void AudioFlinger::DuplicatingThread::removeOutputTrack(MixerThread *thread)
3985{
3986 Mutex::Autolock _l(mLock);
3987 for (size_t i = 0; i < mOutputTracks.size(); i++) {
Glenn Kastena1117922012-01-26 10:53:32 -08003988 if (mOutputTracks[i]->thread() == thread) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003989 mOutputTracks[i]->destroy();
3990 mOutputTracks.removeAt(i);
Glenn Kasten438b0362012-03-06 11:24:48 -08003991 updateWaitTime_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003992 return;
3993 }
3994 }
Steve Block3856b092011-10-20 11:56:00 +01003995 ALOGV("removeOutputTrack(): unkonwn thread: %p", thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003996}
3997
Glenn Kasten438b0362012-03-06 11:24:48 -08003998// caller must hold mLock
3999void AudioFlinger::DuplicatingThread::updateWaitTime_l()
Mathias Agopian65ab4712010-07-14 17:59:35 -07004000{
4001 mWaitTimeMs = UINT_MAX;
4002 for (size_t i = 0; i < mOutputTracks.size(); i++) {
4003 sp<ThreadBase> strong = mOutputTracks[i]->thread().promote();
Glenn Kasten7378ca52012-01-20 13:44:40 -08004004 if (strong != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004005 uint32_t waitTimeMs = (strong->frameCount() * 2 * 1000) / strong->sampleRate();
4006 if (waitTimeMs < mWaitTimeMs) {
4007 mWaitTimeMs = waitTimeMs;
4008 }
4009 }
4010 }
4011}
4012
4013
Glenn Kasten02fe1bf2012-02-24 15:42:17 -08004014bool AudioFlinger::DuplicatingThread::outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004015{
4016 for (size_t i = 0; i < outputTracks.size(); i++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004017 sp<ThreadBase> thread = outputTracks[i]->thread().promote();
Mathias Agopian65ab4712010-07-14 17:59:35 -07004018 if (thread == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00004019 ALOGW("DuplicatingThread::outputsReady() could not promote thread on output track %p", outputTracks[i].get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004020 return false;
4021 }
4022 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
Glenn Kasten01542f22012-07-02 12:46:15 -07004023 // see note at standby() declaration
Mathias Agopian65ab4712010-07-14 17:59:35 -07004024 if (playbackThread->standby() && !playbackThread->isSuspended()) {
Steve Block3856b092011-10-20 11:56:00 +01004025 ALOGV("DuplicatingThread output track %p on thread %p Not Ready", outputTracks[i].get(), thread.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004026 return false;
4027 }
4028 }
4029 return true;
4030}
4031
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08004032uint32_t AudioFlinger::DuplicatingThread::activeSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07004033{
4034 return (mWaitTimeMs * 1000) / 2;
4035}
4036
Glenn Kasten66fcab92012-02-24 14:59:21 -08004037void AudioFlinger::DuplicatingThread::cacheParameters_l()
4038{
4039 // updateWaitTime_l() sets mWaitTimeMs, which affects activeSleepTimeUs(), so call it first
4040 updateWaitTime_l();
4041
4042 MixerThread::cacheParameters_l();
4043}
4044
Mathias Agopian65ab4712010-07-14 17:59:35 -07004045// ----------------------------------------------------------------------------
4046
4047// TrackBase constructor must be called with AudioFlinger::mLock held
4048AudioFlinger::ThreadBase::TrackBase::TrackBase(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004049 ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004050 const sp<Client>& client,
4051 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08004052 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07004053 audio_channel_mask_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004054 int frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004055 const sp<IMemory>& sharedBuffer,
4056 int sessionId)
4057 : RefBase(),
4058 mThread(thread),
4059 mClient(client),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08004060 mCblk(NULL),
4061 // mBuffer
4062 // mBufferEnd
Mathias Agopian65ab4712010-07-14 17:59:35 -07004063 mFrameCount(0),
4064 mState(IDLE),
Glenn Kasten58912562012-04-03 10:45:00 -07004065 mSampleRate(sampleRate),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004066 mFormat(format),
Glenn Kasten5cf034d2012-02-21 10:35:56 -08004067 mStepServerFailed(false),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004068 mSessionId(sessionId)
Glenn Kasten84afa3b2012-01-25 15:28:08 -08004069 // mChannelCount
4070 // mChannelMask
Mathias Agopian65ab4712010-07-14 17:59:35 -07004071{
Steve Block3856b092011-10-20 11:56:00 +01004072 ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(), sharedBuffer->size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004073
Steve Blockb8a80522011-12-20 16:23:08 +00004074 // ALOGD("Creating track with %d buffers @ %d bytes", bufferCount, bufferSize);
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004075 size_t size = sizeof(audio_track_cblk_t);
4076 uint8_t channelCount = popcount(channelMask);
4077 size_t bufferSize = frameCount*channelCount*sizeof(int16_t);
4078 if (sharedBuffer == 0) {
4079 size += bufferSize;
4080 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004081
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004082 if (client != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004083 mCblkMemory = client->heap()->allocate(size);
4084 if (mCblkMemory != 0) {
4085 mCblk = static_cast<audio_track_cblk_t *>(mCblkMemory->pointer());
Glenn Kastena0d68332012-01-27 16:47:15 -08004086 if (mCblk != NULL) { // construct the shared structure in-place.
Mathias Agopian65ab4712010-07-14 17:59:35 -07004087 new(mCblk) audio_track_cblk_t();
4088 // clear all buffers
4089 mCblk->frameCount = frameCount;
4090 mCblk->sampleRate = sampleRate;
Marco Nelissena1472d92012-03-30 14:36:54 -07004091// uncomment the following lines to quickly test 32-bit wraparound
4092// mCblk->user = 0xffff0000;
4093// mCblk->server = 0xffff0000;
4094// mCblk->userBase = 0xffff0000;
4095// mCblk->serverBase = 0xffff0000;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004096 mChannelCount = channelCount;
4097 mChannelMask = channelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004098 if (sharedBuffer == 0) {
4099 mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
4100 memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
4101 // Force underrun condition to avoid false underrun callback until first data is
Eric Laurent44d98482010-09-30 16:12:31 -07004102 // written to buffer (other flags are cleared)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004103 mCblk->flags = CBLK_UNDERRUN_ON;
4104 } else {
4105 mBuffer = sharedBuffer->pointer();
4106 }
4107 mBufferEnd = (uint8_t *)mBuffer + bufferSize;
4108 }
4109 } else {
Steve Block29357bc2012-01-06 19:20:56 +00004110 ALOGE("not enough memory for AudioTrack size=%u", size);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004111 client->heap()->dump("AudioTrack");
4112 return;
4113 }
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004114 } else {
4115 mCblk = (audio_track_cblk_t *)(new uint8_t[size]);
Glenn Kastenea7939a2012-03-14 12:56:26 -07004116 // construct the shared structure in-place.
4117 new(mCblk) audio_track_cblk_t();
4118 // clear all buffers
4119 mCblk->frameCount = frameCount;
4120 mCblk->sampleRate = sampleRate;
Marco Nelissena1472d92012-03-30 14:36:54 -07004121// uncomment the following lines to quickly test 32-bit wraparound
4122// mCblk->user = 0xffff0000;
4123// mCblk->server = 0xffff0000;
4124// mCblk->userBase = 0xffff0000;
4125// mCblk->serverBase = 0xffff0000;
Glenn Kastenea7939a2012-03-14 12:56:26 -07004126 mChannelCount = channelCount;
4127 mChannelMask = channelMask;
4128 mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
4129 memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
4130 // Force underrun condition to avoid false underrun callback until first data is
4131 // written to buffer (other flags are cleared)
4132 mCblk->flags = CBLK_UNDERRUN_ON;
4133 mBufferEnd = (uint8_t *)mBuffer + bufferSize;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004134 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004135}
4136
4137AudioFlinger::ThreadBase::TrackBase::~TrackBase()
4138{
Glenn Kastena0d68332012-01-27 16:47:15 -08004139 if (mCblk != NULL) {
Glenn Kasten1a0ae5b2012-02-03 10:24:48 -08004140 if (mClient == 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004141 delete mCblk;
Glenn Kasten1a0ae5b2012-02-03 10:24:48 -08004142 } else {
4143 mCblk->~audio_track_cblk_t(); // destroy our shared-structure.
Mathias Agopian65ab4712010-07-14 17:59:35 -07004144 }
4145 }
Glenn Kastendbfafaf2012-01-25 15:27:15 -08004146 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Glenn Kasten7378ca52012-01-20 13:44:40 -08004147 if (mClient != 0) {
Glenn Kasten84afa3b2012-01-25 15:28:08 -08004148 // Client destructor must run with AudioFlinger mutex locked
Mathias Agopian65ab4712010-07-14 17:59:35 -07004149 Mutex::Autolock _l(mClient->audioFlinger()->mLock);
Glenn Kasten7378ca52012-01-20 13:44:40 -08004150 // If the client's reference count drops to zero, the associated destructor
4151 // must run with AudioFlinger lock held. Thus the explicit clear() rather than
4152 // relying on the automatic clear() at end of scope.
Mathias Agopian65ab4712010-07-14 17:59:35 -07004153 mClient.clear();
4154 }
4155}
4156
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08004157// AudioBufferProvider interface
4158// getNextBuffer() = 0;
4159// This implementation of releaseBuffer() is used by Track and RecordTrack, but not TimedTrack
Mathias Agopian65ab4712010-07-14 17:59:35 -07004160void AudioFlinger::ThreadBase::TrackBase::releaseBuffer(AudioBufferProvider::Buffer* buffer)
4161{
Glenn Kastene0feee32011-12-13 11:53:26 -08004162 buffer->raw = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004163 mFrameCount = buffer->frameCount;
Glenn Kasten288ed212012-04-25 17:52:27 -07004164 // FIXME See note at getNextBuffer()
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08004165 (void) step(); // ignore return value of step()
Mathias Agopian65ab4712010-07-14 17:59:35 -07004166 buffer->frameCount = 0;
4167}
4168
4169bool AudioFlinger::ThreadBase::TrackBase::step() {
4170 bool result;
4171 audio_track_cblk_t* cblk = this->cblk();
4172
4173 result = cblk->stepServer(mFrameCount);
4174 if (!result) {
Steve Block3856b092011-10-20 11:56:00 +01004175 ALOGV("stepServer failed acquiring cblk mutex");
Glenn Kasten5cf034d2012-02-21 10:35:56 -08004176 mStepServerFailed = true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004177 }
4178 return result;
4179}
4180
4181void AudioFlinger::ThreadBase::TrackBase::reset() {
4182 audio_track_cblk_t* cblk = this->cblk();
4183
4184 cblk->user = 0;
4185 cblk->server = 0;
4186 cblk->userBase = 0;
4187 cblk->serverBase = 0;
Glenn Kasten5cf034d2012-02-21 10:35:56 -08004188 mStepServerFailed = false;
Steve Block3856b092011-10-20 11:56:00 +01004189 ALOGV("TrackBase::reset");
Mathias Agopian65ab4712010-07-14 17:59:35 -07004190}
4191
Mathias Agopian65ab4712010-07-14 17:59:35 -07004192int AudioFlinger::ThreadBase::TrackBase::sampleRate() const {
4193 return (int)mCblk->sampleRate;
4194}
4195
Mathias Agopian65ab4712010-07-14 17:59:35 -07004196void* AudioFlinger::ThreadBase::TrackBase::getBuffer(uint32_t offset, uint32_t frames) const {
4197 audio_track_cblk_t* cblk = this->cblk();
Glenn Kastenb9980652012-01-11 09:48:27 -08004198 size_t frameSize = cblk->frameSize;
4199 int8_t *bufferStart = (int8_t *)mBuffer + (offset-cblk->serverBase)*frameSize;
4200 int8_t *bufferEnd = bufferStart + frames * frameSize;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004201
4202 // Check validity of returned pointer in case the track control block would have been corrupted.
Jean-Michel Triviacb86cc2012-04-16 12:43:57 -07004203 ALOG_ASSERT(!(bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd),
4204 "TrackBase::getBuffer buffer out of range:\n"
4205 " start: %p, end %p , mBuffer %p mBufferEnd %p\n"
4206 " server %u, serverBase %u, user %u, userBase %u, frameSize %d",
Mathias Agopian65ab4712010-07-14 17:59:35 -07004207 bufferStart, bufferEnd, mBuffer, mBufferEnd,
Jean-Michel Triviacb86cc2012-04-16 12:43:57 -07004208 cblk->server, cblk->serverBase, cblk->user, cblk->userBase, frameSize);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004209
4210 return bufferStart;
4211}
4212
Eric Laurenta011e352012-03-29 15:51:43 -07004213status_t AudioFlinger::ThreadBase::TrackBase::setSyncEvent(const sp<SyncEvent>& event)
4214{
4215 mSyncEvents.add(event);
4216 return NO_ERROR;
4217}
4218
Mathias Agopian65ab4712010-07-14 17:59:35 -07004219// ----------------------------------------------------------------------------
4220
4221// Track constructor must be called with AudioFlinger::mLock and ThreadBase::mLock held
4222AudioFlinger::PlaybackThread::Track::Track(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004223 PlaybackThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004224 const sp<Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -08004225 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004226 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08004227 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07004228 audio_channel_mask_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004229 int frameCount,
4230 const sp<IMemory>& sharedBuffer,
Glenn Kasten73d22752012-03-19 13:38:30 -07004231 int sessionId,
4232 IAudioFlinger::track_flags_t flags)
Glenn Kasten5cf034d2012-02-21 10:35:56 -08004233 : TrackBase(thread, client, sampleRate, format, channelMask, frameCount, sharedBuffer, sessionId),
Glenn Kastenf9959012012-03-19 11:14:37 -07004234 mMute(false),
Glenn Kasten58912562012-04-03 10:45:00 -07004235 mFillingUpStatus(FS_INVALID),
Glenn Kastenf9959012012-03-19 11:14:37 -07004236 // mRetryCount initialized later when needed
4237 mSharedBuffer(sharedBuffer),
4238 mStreamType(streamType),
4239 mName(-1), // see note below
4240 mMainBuffer(thread->mixBuffer()),
4241 mAuxBuffer(NULL),
Eric Laurenta011e352012-03-29 15:51:43 -07004242 mAuxEffectId(0), mHasVolumeController(false),
Glenn Kasten73d22752012-03-19 13:38:30 -07004243 mPresentationCompleteFrames(0),
Glenn Kasten58912562012-04-03 10:45:00 -07004244 mFlags(flags),
4245 mFastIndex(-1),
Glenn Kasten288ed212012-04-25 17:52:27 -07004246 mUnderrunCount(0),
Glenn Kasten58912562012-04-03 10:45:00 -07004247 mCachedVolume(1.0)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004248{
4249 if (mCblk != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004250 // NOTE: audio_track_cblk_t::frameSize for 8 bit PCM data is based on a sample size of
4251 // 16 bit because data is converted to 16 bit before being stored in buffer by AudioTrack
Eric Laurentedc15ad2011-07-21 19:35:01 -07004252 mCblk->frameSize = audio_is_linear_pcm(format) ? mChannelCount * sizeof(int16_t) : sizeof(uint8_t);
Glenn Kasten893a0542012-05-30 10:32:06 -07004253 // to avoid leaking a track name, do not allocate one unless there is an mCblk
Glenn Kasten254af182012-07-03 14:59:05 -07004254 mName = thread->getTrackName_l(channelMask);
Glenn Kasten0c9d26d2012-05-31 14:35:01 -07004255 mCblk->mName = mName;
Glenn Kasten893a0542012-05-30 10:32:06 -07004256 if (mName < 0) {
4257 ALOGE("no more track names available");
4258 return;
4259 }
4260 // only allocate a fast track index if we were able to allocate a normal track name
Glenn Kasten58912562012-04-03 10:45:00 -07004261 if (flags & IAudioFlinger::TRACK_FAST) {
4262 mCblk->flags |= CBLK_FAST; // atomic op not needed yet
4263 ALOG_ASSERT(thread->mFastTrackAvailMask != 0);
4264 int i = __builtin_ctz(thread->mFastTrackAvailMask);
Eric Laurent29864602012-05-08 18:57:51 -07004265 ALOG_ASSERT(0 < i && i < (int)FastMixerState::kMaxFastTracks);
Glenn Kasten288ed212012-04-25 17:52:27 -07004266 // FIXME This is too eager. We allocate a fast track index before the
4267 // fast track becomes active. Since fast tracks are a scarce resource,
4268 // this means we are potentially denying other more important fast tracks from
4269 // being created. It would be better to allocate the index dynamically.
Glenn Kasten58912562012-04-03 10:45:00 -07004270 mFastIndex = i;
Glenn Kasten0c9d26d2012-05-31 14:35:01 -07004271 mCblk->mName = i;
Glenn Kasten288ed212012-04-25 17:52:27 -07004272 // Read the initial underruns because this field is never cleared by the fast mixer
Glenn Kasten09474df2012-05-10 14:48:07 -07004273 mObservedUnderruns = thread->getFastTrackUnderruns(i);
Glenn Kasten58912562012-04-03 10:45:00 -07004274 thread->mFastTrackAvailMask &= ~(1 << i);
Glenn Kasten58912562012-04-03 10:45:00 -07004275 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004276 }
Glenn Kastenf9959012012-03-19 11:14:37 -07004277 ALOGV("Track constructor name %d, calling pid %d", mName, IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004278}
4279
4280AudioFlinger::PlaybackThread::Track::~Track()
4281{
Steve Block3856b092011-10-20 11:56:00 +01004282 ALOGV("PlaybackThread::Track destructor");
Mathias Agopian65ab4712010-07-14 17:59:35 -07004283}
4284
4285void AudioFlinger::PlaybackThread::Track::destroy()
4286{
4287 // NOTE: destroyTrack_l() can remove a strong reference to this Track
4288 // by removing it from mTracks vector, so there is a risk that this Tracks's
Glenn Kasten99e53b82012-01-19 08:59:58 -08004289 // destructor is called. As the destructor needs to lock mLock,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004290 // we must acquire a strong reference on this Track before locking mLock
4291 // here so that the destructor is called only when exiting this function.
4292 // On the other hand, as long as Track::destroy() is only called by
4293 // TrackHandle destructor, the TrackHandle still holds a strong ref on
4294 // this Track with its member mTrack.
4295 sp<Track> keep(this);
4296 { // scope for mLock
4297 sp<ThreadBase> thread = mThread.promote();
4298 if (thread != 0) {
4299 if (!isOutputTrack()) {
4300 if (mState == ACTIVE || mState == RESUMING) {
Glenn Kasten02bbd202012-02-08 12:35:35 -08004301 AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
Gloria Wang9ee159b2011-02-24 14:51:45 -08004302
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004303#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08004304 // to track the speaker usage
4305 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004306#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07004307 }
4308 AudioSystem::releaseOutput(thread->id());
4309 }
4310 Mutex::Autolock _l(thread->mLock);
4311 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
4312 playbackThread->destroyTrack_l(this);
4313 }
4314 }
4315}
4316
Glenn Kasten288ed212012-04-25 17:52:27 -07004317/*static*/ void AudioFlinger::PlaybackThread::Track::appendDumpHeader(String8& result)
4318{
Glenn Kastene213c862012-04-25 13:46:15 -07004319 result.append(" Name Client Type Fmt Chn mask Session mFrCnt fCount S M F SRate L dB R dB "
Glenn Kastenbf0d21f2012-05-31 14:59:29 -07004320 " Server User Main buf Aux Buf Flags Underruns\n");
Glenn Kasten288ed212012-04-25 17:52:27 -07004321}
4322
Mathias Agopian65ab4712010-07-14 17:59:35 -07004323void AudioFlinger::PlaybackThread::Track::dump(char* buffer, size_t size)
4324{
Glenn Kasten83d86532012-01-17 14:39:34 -08004325 uint32_t vlr = mCblk->getVolumeLR();
Glenn Kasten58912562012-04-03 10:45:00 -07004326 if (isFastTrack()) {
Glenn Kasten288ed212012-04-25 17:52:27 -07004327 sprintf(buffer, " F %2d", mFastIndex);
Glenn Kasten58912562012-04-03 10:45:00 -07004328 } else {
4329 sprintf(buffer, " %4d", mName - AudioMixer::TRACK0);
4330 }
Glenn Kasten288ed212012-04-25 17:52:27 -07004331 track_state state = mState;
4332 char stateChar;
4333 switch (state) {
4334 case IDLE:
4335 stateChar = 'I';
4336 break;
4337 case TERMINATED:
4338 stateChar = 'T';
4339 break;
Glenn Kastend08f48c2012-05-01 18:14:02 -07004340 case STOPPING_1:
4341 stateChar = 's';
4342 break;
4343 case STOPPING_2:
4344 stateChar = '5';
4345 break;
Glenn Kasten288ed212012-04-25 17:52:27 -07004346 case STOPPED:
4347 stateChar = 'S';
4348 break;
4349 case RESUMING:
4350 stateChar = 'R';
4351 break;
4352 case ACTIVE:
4353 stateChar = 'A';
4354 break;
4355 case PAUSING:
4356 stateChar = 'p';
4357 break;
4358 case PAUSED:
4359 stateChar = 'P';
4360 break;
Eric Laurent29864602012-05-08 18:57:51 -07004361 case FLUSHED:
4362 stateChar = 'F';
4363 break;
Glenn Kasten288ed212012-04-25 17:52:27 -07004364 default:
4365 stateChar = '?';
4366 break;
4367 }
Glenn Kasten09474df2012-05-10 14:48:07 -07004368 char nowInUnderrun;
4369 switch (mObservedUnderruns.mBitFields.mMostRecent) {
4370 case UNDERRUN_FULL:
4371 nowInUnderrun = ' ';
4372 break;
4373 case UNDERRUN_PARTIAL:
4374 nowInUnderrun = '<';
4375 break;
4376 case UNDERRUN_EMPTY:
4377 nowInUnderrun = '*';
4378 break;
4379 default:
4380 nowInUnderrun = '?';
4381 break;
4382 }
Glenn Kastene213c862012-04-25 13:46:15 -07004383 snprintf(&buffer[7], size-7, " %6d %4u %3u 0x%08x %7u %6u %6u %1c %1d %1d %5u %5.2g %5.2g "
4384 "0x%08x 0x%08x 0x%08x 0x%08x %#5x %9u%c\n",
Glenn Kasten44deb052012-02-05 18:09:08 -08004385 (mClient == 0) ? getpid_cached : mClient->pid(),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004386 mStreamType,
4387 mFormat,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004388 mChannelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004389 mSessionId,
4390 mFrameCount,
Glenn Kastene213c862012-04-25 13:46:15 -07004391 mCblk->frameCount,
Glenn Kasten288ed212012-04-25 17:52:27 -07004392 stateChar,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004393 mMute,
4394 mFillingUpStatus,
4395 mCblk->sampleRate,
Glenn Kasten58912562012-04-03 10:45:00 -07004396 20.0 * log10((vlr & 0xFFFF) / 4096.0),
4397 20.0 * log10((vlr >> 16) / 4096.0),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004398 mCblk->server,
4399 mCblk->user,
4400 (int)mMainBuffer,
Glenn Kasten288ed212012-04-25 17:52:27 -07004401 (int)mAuxBuffer,
Glenn Kastene213c862012-04-25 13:46:15 -07004402 mCblk->flags,
Glenn Kasten288ed212012-04-25 17:52:27 -07004403 mUnderrunCount,
Glenn Kasten09474df2012-05-10 14:48:07 -07004404 nowInUnderrun);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004405}
4406
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08004407// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08004408status_t AudioFlinger::PlaybackThread::Track::getNextBuffer(
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004409 AudioBufferProvider::Buffer* buffer, int64_t pts)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004410{
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004411 audio_track_cblk_t* cblk = this->cblk();
4412 uint32_t framesReady;
4413 uint32_t framesReq = buffer->frameCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004414
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004415 // Check if last stepServer failed, try to step now
4416 if (mStepServerFailed) {
Glenn Kasten288ed212012-04-25 17:52:27 -07004417 // FIXME When called by fast mixer, this takes a mutex with tryLock().
4418 // Since the fast mixer is higher priority than client callback thread,
4419 // it does not result in priority inversion for client.
4420 // But a non-blocking solution would be preferable to avoid
4421 // fast mixer being unable to tryLock(), and
4422 // to avoid the extra context switches if the client wakes up,
4423 // discovers the mutex is locked, then has to wait for fast mixer to unlock.
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004424 if (!step()) goto getNextBuffer_exit;
4425 ALOGV("stepServer recovered");
4426 mStepServerFailed = false;
4427 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004428
Glenn Kasten288ed212012-04-25 17:52:27 -07004429 // FIXME Same as above
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004430 framesReady = cblk->framesReady();
Mathias Agopian65ab4712010-07-14 17:59:35 -07004431
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004432 if (CC_LIKELY(framesReady)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004433 uint32_t s = cblk->server;
4434 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
4435
4436 bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
4437 if (framesReq > framesReady) {
4438 framesReq = framesReady;
4439 }
Marco Nelissena1472d92012-03-30 14:36:54 -07004440 if (framesReq > bufferEnd - s) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004441 framesReq = bufferEnd - s;
4442 }
4443
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004444 buffer->raw = getBuffer(s, framesReq);
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004445 buffer->frameCount = framesReq;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004446 return NO_ERROR;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004447 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004448
4449getNextBuffer_exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004450 buffer->raw = NULL;
4451 buffer->frameCount = 0;
4452 ALOGV("getNextBuffer() no more data for track %d on thread %p", mName, mThread.unsafe_get());
4453 return NOT_ENOUGH_DATA;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004454}
4455
Glenn Kasten288ed212012-04-25 17:52:27 -07004456// Note that framesReady() takes a mutex on the control block using tryLock().
4457// This could result in priority inversion if framesReady() is called by the normal mixer,
4458// as the normal mixer thread runs at lower
4459// priority than the client's callback thread: there is a short window within framesReady()
4460// during which the normal mixer could be preempted, and the client callback would block.
4461// Another problem can occur if framesReady() is called by the fast mixer:
4462// the tryLock() could block for up to 1 ms, and a sequence of these could delay fast mixer.
4463// FIXME Replace AudioTrackShared control block implementation by a non-blocking FIFO queue.
4464size_t AudioFlinger::PlaybackThread::Track::framesReady() const {
John Grossman4ff14ba2012-02-08 16:37:41 -08004465 return mCblk->framesReady();
4466}
4467
Glenn Kasten288ed212012-04-25 17:52:27 -07004468// Don't call for fast tracks; the framesReady() could result in priority inversion
Mathias Agopian65ab4712010-07-14 17:59:35 -07004469bool AudioFlinger::PlaybackThread::Track::isReady() const {
Eric Laurentaf59ce22010-10-05 14:41:42 -07004470 if (mFillingUpStatus != FS_FILLING || isStopped() || isPausing()) return true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004471
John Grossman4ff14ba2012-02-08 16:37:41 -08004472 if (framesReady() >= mCblk->frameCount ||
Mathias Agopian65ab4712010-07-14 17:59:35 -07004473 (mCblk->flags & CBLK_FORCEREADY_MSK)) {
4474 mFillingUpStatus = FS_FILLED;
Eric Laurent38ccae22011-03-28 18:37:07 -07004475 android_atomic_and(~CBLK_FORCEREADY_MSK, &mCblk->flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004476 return true;
4477 }
4478 return false;
4479}
4480
Glenn Kasten3acbd052012-02-28 10:39:56 -08004481status_t AudioFlinger::PlaybackThread::Track::start(AudioSystem::sync_event_t event,
Eric Laurenta011e352012-03-29 15:51:43 -07004482 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004483{
4484 status_t status = NO_ERROR;
Glenn Kasten58912562012-04-03 10:45:00 -07004485 ALOGV("start(%d), calling pid %d session %d",
4486 mName, IPCThreadState::self()->getCallingPid(), mSessionId);
Glenn Kasten3acbd052012-02-28 10:39:56 -08004487
Mathias Agopian65ab4712010-07-14 17:59:35 -07004488 sp<ThreadBase> thread = mThread.promote();
4489 if (thread != 0) {
4490 Mutex::Autolock _l(thread->mLock);
Glenn Kastenb853e982012-01-26 13:39:18 -08004491 track_state state = mState;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004492 // here the track could be either new, or restarted
4493 // in both cases "unstop" the track
4494 if (mState == PAUSED) {
4495 mState = TrackBase::RESUMING;
Steve Block3856b092011-10-20 11:56:00 +01004496 ALOGV("PAUSED => RESUMING (%d) on thread %p", mName, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004497 } else {
4498 mState = TrackBase::ACTIVE;
Steve Block3856b092011-10-20 11:56:00 +01004499 ALOGV("? => ACTIVE (%d) on thread %p", mName, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004500 }
4501
4502 if (!isOutputTrack() && state != ACTIVE && state != RESUMING) {
4503 thread->mLock.unlock();
Glenn Kasten02bbd202012-02-08 12:35:35 -08004504 status = AudioSystem::startOutput(thread->id(), mStreamType, mSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004505 thread->mLock.lock();
Gloria Wang9ee159b2011-02-24 14:51:45 -08004506
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004507#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08004508 // to track the speaker usage
4509 if (status == NO_ERROR) {
4510 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStart);
4511 }
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004512#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07004513 }
4514 if (status == NO_ERROR) {
4515 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
4516 playbackThread->addTrack_l(this);
4517 } else {
4518 mState = state;
Eric Laurent29864602012-05-08 18:57:51 -07004519 triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004520 }
4521 } else {
4522 status = BAD_VALUE;
4523 }
4524 return status;
4525}
4526
4527void AudioFlinger::PlaybackThread::Track::stop()
4528{
Glenn Kasten23d82a92012-02-03 11:10:00 -08004529 ALOGV("stop(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004530 sp<ThreadBase> thread = mThread.promote();
4531 if (thread != 0) {
4532 Mutex::Autolock _l(thread->mLock);
Glenn Kastenb853e982012-01-26 13:39:18 -08004533 track_state state = mState;
Glenn Kastend08f48c2012-05-01 18:14:02 -07004534 if (state == RESUMING || state == ACTIVE || state == PAUSING || state == PAUSED) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004535 // If the track is not active (PAUSED and buffers full), flush buffers
4536 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
4537 if (playbackThread->mActiveTracks.indexOf(this) < 0) {
4538 reset();
Glenn Kastend08f48c2012-05-01 18:14:02 -07004539 mState = STOPPED;
4540 } else if (!isFastTrack()) {
4541 mState = STOPPED;
4542 } else {
4543 // prepareTracks_l() will set state to STOPPING_2 after next underrun,
4544 // and then to STOPPED and reset() when presentation is complete
4545 mState = STOPPING_1;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004546 }
Glenn Kastend08f48c2012-05-01 18:14:02 -07004547 ALOGV("not stopping/stopped => stopping/stopped (%d) on thread %p", mName, playbackThread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004548 }
4549 if (!isOutputTrack() && (state == ACTIVE || state == RESUMING)) {
4550 thread->mLock.unlock();
Glenn Kasten02bbd202012-02-08 12:35:35 -08004551 AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004552 thread->mLock.lock();
Gloria Wang9ee159b2011-02-24 14:51:45 -08004553
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004554#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08004555 // to track the speaker usage
4556 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004557#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07004558 }
4559 }
4560}
4561
4562void AudioFlinger::PlaybackThread::Track::pause()
4563{
Glenn Kasten23d82a92012-02-03 11:10:00 -08004564 ALOGV("pause(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004565 sp<ThreadBase> thread = mThread.promote();
4566 if (thread != 0) {
4567 Mutex::Autolock _l(thread->mLock);
4568 if (mState == ACTIVE || mState == RESUMING) {
4569 mState = PAUSING;
Steve Block3856b092011-10-20 11:56:00 +01004570 ALOGV("ACTIVE/RESUMING => PAUSING (%d) on thread %p", mName, thread.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004571 if (!isOutputTrack()) {
4572 thread->mLock.unlock();
Glenn Kasten02bbd202012-02-08 12:35:35 -08004573 AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004574 thread->mLock.lock();
Gloria Wang9ee159b2011-02-24 14:51:45 -08004575
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004576#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08004577 // to track the speaker usage
4578 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004579#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07004580 }
4581 }
4582 }
4583}
4584
4585void AudioFlinger::PlaybackThread::Track::flush()
4586{
Steve Block3856b092011-10-20 11:56:00 +01004587 ALOGV("flush(%d)", mName);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004588 sp<ThreadBase> thread = mThread.promote();
4589 if (thread != 0) {
4590 Mutex::Autolock _l(thread->mLock);
Glenn Kastend08f48c2012-05-01 18:14:02 -07004591 if (mState != STOPPING_1 && mState != STOPPING_2 && mState != STOPPED && mState != PAUSED &&
4592 mState != PAUSING) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004593 return;
4594 }
4595 // No point remaining in PAUSED state after a flush => go to
Eric Laurent29864602012-05-08 18:57:51 -07004596 // FLUSHED state
4597 mState = FLUSHED;
Eric Laurent38ccae22011-03-28 18:37:07 -07004598 // do not reset the track if it is still in the process of being stopped or paused.
4599 // this will be done by prepareTracks_l() when the track is stopped.
Eric Laurent29864602012-05-08 18:57:51 -07004600 // prepareTracks_l() will see mState == FLUSHED, then
Glenn Kastend08f48c2012-05-01 18:14:02 -07004601 // remove from active track list, reset(), and trigger presentation complete
Eric Laurent38ccae22011-03-28 18:37:07 -07004602 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
4603 if (playbackThread->mActiveTracks.indexOf(this) < 0) {
4604 reset();
4605 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004606 }
4607}
4608
4609void AudioFlinger::PlaybackThread::Track::reset()
4610{
4611 // Do not reset twice to avoid discarding data written just after a flush and before
4612 // the audioflinger thread detects the track is stopped.
4613 if (!mResetDone) {
4614 TrackBase::reset();
4615 // Force underrun condition to avoid false underrun callback until first data is
4616 // written to buffer
Eric Laurent38ccae22011-03-28 18:37:07 -07004617 android_atomic_and(~CBLK_FORCEREADY_MSK, &mCblk->flags);
4618 android_atomic_or(CBLK_UNDERRUN_ON, &mCblk->flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004619 mFillingUpStatus = FS_FILLING;
4620 mResetDone = true;
Eric Laurent29864602012-05-08 18:57:51 -07004621 if (mState == FLUSHED) {
4622 mState = IDLE;
4623 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004624 }
4625}
4626
4627void AudioFlinger::PlaybackThread::Track::mute(bool muted)
4628{
4629 mMute = muted;
4630}
4631
Mathias Agopian65ab4712010-07-14 17:59:35 -07004632status_t AudioFlinger::PlaybackThread::Track::attachAuxEffect(int EffectId)
4633{
4634 status_t status = DEAD_OBJECT;
4635 sp<ThreadBase> thread = mThread.promote();
4636 if (thread != 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004637 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
Eric Laurent717e1282012-06-29 16:36:52 -07004638 sp<AudioFlinger> af = mClient->audioFlinger();
4639
4640 Mutex::Autolock _l(af->mLock);
4641
4642 sp<PlaybackThread> srcThread = af->getEffectThread_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
Eric Laurent717e1282012-06-29 16:36:52 -07004643
Eric Laurent109347d2012-07-02 12:31:03 -07004644 if (EffectId != 0 && srcThread != 0 && playbackThread != srcThread.get()) {
Eric Laurent717e1282012-06-29 16:36:52 -07004645 Mutex::Autolock _dl(playbackThread->mLock);
4646 Mutex::Autolock _sl(srcThread->mLock);
4647 sp<EffectChain> chain = srcThread->getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
4648 if (chain == 0) {
4649 return INVALID_OPERATION;
4650 }
4651
4652 sp<EffectModule> effect = chain->getEffectFromId_l(EffectId);
4653 if (effect == 0) {
4654 return INVALID_OPERATION;
4655 }
4656 srcThread->removeEffect_l(effect);
4657 playbackThread->addEffect_l(effect);
4658 // removeEffect_l() has stopped the effect if it was active so it must be restarted
4659 if (effect->state() == EffectModule::ACTIVE ||
4660 effect->state() == EffectModule::STOPPING) {
4661 effect->start();
4662 }
4663
4664 sp<EffectChain> dstChain = effect->chain().promote();
4665 if (dstChain == 0) {
4666 srcThread->addEffect_l(effect);
4667 return INVALID_OPERATION;
4668 }
4669 AudioSystem::unregisterEffect(effect->id());
4670 AudioSystem::registerEffect(&effect->desc(),
4671 srcThread->id(),
4672 dstChain->strategy(),
4673 AUDIO_SESSION_OUTPUT_MIX,
4674 effect->id());
4675 }
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004676 status = playbackThread->attachAuxEffect(this, EffectId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004677 }
4678 return status;
4679}
4680
4681void AudioFlinger::PlaybackThread::Track::setAuxBuffer(int EffectId, int32_t *buffer)
4682{
4683 mAuxEffectId = EffectId;
4684 mAuxBuffer = buffer;
4685}
4686
Eric Laurenta011e352012-03-29 15:51:43 -07004687bool AudioFlinger::PlaybackThread::Track::presentationComplete(size_t framesWritten,
4688 size_t audioHalFrames)
4689{
4690 // a track is considered presented when the total number of frames written to audio HAL
4691 // corresponds to the number of frames written when presentationComplete() is called for the
4692 // first time (mPresentationCompleteFrames == 0) plus the buffer filling status at that time.
4693 if (mPresentationCompleteFrames == 0) {
4694 mPresentationCompleteFrames = framesWritten + audioHalFrames;
4695 ALOGV("presentationComplete() reset: mPresentationCompleteFrames %d audioHalFrames %d",
4696 mPresentationCompleteFrames, audioHalFrames);
4697 }
4698 if (framesWritten >= mPresentationCompleteFrames) {
4699 ALOGV("presentationComplete() session %d complete: framesWritten %d",
4700 mSessionId, framesWritten);
4701 triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
Eric Laurenta011e352012-03-29 15:51:43 -07004702 return true;
4703 }
4704 return false;
4705}
4706
4707void AudioFlinger::PlaybackThread::Track::triggerEvents(AudioSystem::sync_event_t type)
4708{
4709 for (int i = 0; i < (int)mSyncEvents.size(); i++) {
4710 if (mSyncEvents[i]->type() == type) {
4711 mSyncEvents[i]->trigger();
4712 mSyncEvents.removeAt(i);
4713 i--;
4714 }
4715 }
4716}
4717
Glenn Kasten58912562012-04-03 10:45:00 -07004718// implement VolumeBufferProvider interface
4719
4720uint32_t AudioFlinger::PlaybackThread::Track::getVolumeLR()
4721{
4722 // called by FastMixer, so not allowed to take any locks, block, or do I/O including logs
4723 ALOG_ASSERT(isFastTrack() && (mCblk != NULL));
4724 uint32_t vlr = mCblk->getVolumeLR();
4725 uint32_t vl = vlr & 0xFFFF;
4726 uint32_t vr = vlr >> 16;
4727 // track volumes come from shared memory, so can't be trusted and must be clamped
4728 if (vl > MAX_GAIN_INT) {
4729 vl = MAX_GAIN_INT;
4730 }
4731 if (vr > MAX_GAIN_INT) {
4732 vr = MAX_GAIN_INT;
4733 }
4734 // now apply the cached master volume and stream type volume;
4735 // this is trusted but lacks any synchronization or barrier so may be stale
4736 float v = mCachedVolume;
4737 vl *= v;
4738 vr *= v;
4739 // re-combine into U4.16
4740 vlr = (vr << 16) | (vl & 0xFFFF);
4741 // FIXME look at mute, pause, and stop flags
4742 return vlr;
4743}
Eric Laurenta011e352012-03-29 15:51:43 -07004744
Eric Laurent29864602012-05-08 18:57:51 -07004745status_t AudioFlinger::PlaybackThread::Track::setSyncEvent(const sp<SyncEvent>& event)
4746{
4747 if (mState == TERMINATED || mState == PAUSED ||
4748 ((framesReady() == 0) && ((mSharedBuffer != 0) ||
4749 (mState == STOPPED)))) {
4750 ALOGW("Track::setSyncEvent() in invalid state %d on session %d %s mode, framesReady %d ",
4751 mState, mSessionId, (mSharedBuffer != 0) ? "static" : "stream", framesReady());
4752 event->cancel();
4753 return INVALID_OPERATION;
4754 }
4755 TrackBase::setSyncEvent(event);
4756 return NO_ERROR;
4757}
4758
John Grossman4ff14ba2012-02-08 16:37:41 -08004759// timed audio tracks
4760
4761sp<AudioFlinger::PlaybackThread::TimedTrack>
4762AudioFlinger::PlaybackThread::TimedTrack::create(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004763 PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -08004764 const sp<Client>& client,
4765 audio_stream_type_t streamType,
4766 uint32_t sampleRate,
4767 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07004768 audio_channel_mask_t channelMask,
John Grossman4ff14ba2012-02-08 16:37:41 -08004769 int frameCount,
4770 const sp<IMemory>& sharedBuffer,
4771 int sessionId) {
4772 if (!client->reserveTimedTrack())
Glenn Kastend5903ec2012-03-18 10:33:27 -07004773 return 0;
John Grossman4ff14ba2012-02-08 16:37:41 -08004774
Glenn Kastena0356762012-03-19 10:38:51 -07004775 return new TimedTrack(
John Grossman4ff14ba2012-02-08 16:37:41 -08004776 thread, client, streamType, sampleRate, format, channelMask, frameCount,
4777 sharedBuffer, sessionId);
John Grossman4ff14ba2012-02-08 16:37:41 -08004778}
4779
4780AudioFlinger::PlaybackThread::TimedTrack::TimedTrack(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004781 PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -08004782 const sp<Client>& client,
4783 audio_stream_type_t streamType,
4784 uint32_t sampleRate,
4785 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07004786 audio_channel_mask_t channelMask,
John Grossman4ff14ba2012-02-08 16:37:41 -08004787 int frameCount,
4788 const sp<IMemory>& sharedBuffer,
4789 int sessionId)
4790 : Track(thread, client, streamType, sampleRate, format, channelMask,
Glenn Kasten73d22752012-03-19 13:38:30 -07004791 frameCount, sharedBuffer, sessionId, IAudioFlinger::TRACK_TIMED),
John Grossman9fbdee12012-03-26 17:51:46 -07004792 mQueueHeadInFlight(false),
4793 mTrimQueueHeadOnRelease(false),
John Grossman1c345192012-03-27 14:00:17 -07004794 mFramesPendingInQueue(0),
John Grossman4ff14ba2012-02-08 16:37:41 -08004795 mTimedSilenceBuffer(NULL),
4796 mTimedSilenceBufferSize(0),
4797 mTimedAudioOutputOnTime(false),
4798 mMediaTimeTransformValid(false)
4799{
4800 LocalClock lc;
4801 mLocalTimeFreq = lc.getLocalFreq();
4802
4803 mLocalTimeToSampleTransform.a_zero = 0;
4804 mLocalTimeToSampleTransform.b_zero = 0;
4805 mLocalTimeToSampleTransform.a_to_b_numer = sampleRate;
4806 mLocalTimeToSampleTransform.a_to_b_denom = mLocalTimeFreq;
4807 LinearTransform::reduce(&mLocalTimeToSampleTransform.a_to_b_numer,
4808 &mLocalTimeToSampleTransform.a_to_b_denom);
John Grossman9fbdee12012-03-26 17:51:46 -07004809
4810 mMediaTimeToSampleTransform.a_zero = 0;
4811 mMediaTimeToSampleTransform.b_zero = 0;
4812 mMediaTimeToSampleTransform.a_to_b_numer = sampleRate;
4813 mMediaTimeToSampleTransform.a_to_b_denom = 1000000;
4814 LinearTransform::reduce(&mMediaTimeToSampleTransform.a_to_b_numer,
4815 &mMediaTimeToSampleTransform.a_to_b_denom);
John Grossman4ff14ba2012-02-08 16:37:41 -08004816}
4817
4818AudioFlinger::PlaybackThread::TimedTrack::~TimedTrack() {
4819 mClient->releaseTimedTrack();
4820 delete [] mTimedSilenceBuffer;
4821}
4822
4823status_t AudioFlinger::PlaybackThread::TimedTrack::allocateTimedBuffer(
4824 size_t size, sp<IMemory>* buffer) {
4825
4826 Mutex::Autolock _l(mTimedBufferQueueLock);
4827
4828 trimTimedBufferQueue_l();
4829
4830 // lazily initialize the shared memory heap for timed buffers
4831 if (mTimedMemoryDealer == NULL) {
4832 const int kTimedBufferHeapSize = 512 << 10;
4833
4834 mTimedMemoryDealer = new MemoryDealer(kTimedBufferHeapSize,
4835 "AudioFlingerTimed");
4836 if (mTimedMemoryDealer == NULL)
4837 return NO_MEMORY;
4838 }
4839
4840 sp<IMemory> newBuffer = mTimedMemoryDealer->allocate(size);
4841 if (newBuffer == NULL) {
4842 newBuffer = mTimedMemoryDealer->allocate(size);
4843 if (newBuffer == NULL)
4844 return NO_MEMORY;
4845 }
4846
4847 *buffer = newBuffer;
4848 return NO_ERROR;
4849}
4850
4851// caller must hold mTimedBufferQueueLock
4852void AudioFlinger::PlaybackThread::TimedTrack::trimTimedBufferQueue_l() {
4853 int64_t mediaTimeNow;
4854 {
4855 Mutex::Autolock mttLock(mMediaTimeTransformLock);
4856 if (!mMediaTimeTransformValid)
4857 return;
4858
4859 int64_t targetTimeNow;
4860 status_t res = (mMediaTimeTransformTarget == TimedAudioTrack::COMMON_TIME)
4861 ? mCCHelper.getCommonTime(&targetTimeNow)
4862 : mCCHelper.getLocalTime(&targetTimeNow);
4863
4864 if (OK != res)
4865 return;
4866
4867 if (!mMediaTimeTransform.doReverseTransform(targetTimeNow,
4868 &mediaTimeNow)) {
4869 return;
4870 }
4871 }
4872
John Grossman1c345192012-03-27 14:00:17 -07004873 size_t trimEnd;
4874 for (trimEnd = 0; trimEnd < mTimedBufferQueue.size(); trimEnd++) {
John Grossman9fbdee12012-03-26 17:51:46 -07004875 int64_t bufEnd;
4876
John Grossmanc95cfbb2012-04-12 11:53:11 -07004877 if ((trimEnd + 1) < mTimedBufferQueue.size()) {
4878 // We have a next buffer. Just use its PTS as the PTS of the frame
4879 // following the last frame in this buffer. If the stream is sparse
4880 // (ie, there are deliberate gaps left in the stream which should be
4881 // filled with silence by the TimedAudioTrack), then this can result
4882 // in one extra buffer being left un-trimmed when it could have
4883 // been. In general, this is not typical, and we would rather
4884 // optimized away the TS calculation below for the more common case
4885 // where PTSes are contiguous.
4886 bufEnd = mTimedBufferQueue[trimEnd + 1].pts();
4887 } else {
4888 // We have no next buffer. Compute the PTS of the frame following
4889 // the last frame in this buffer by computing the duration of of
4890 // this frame in media time units and adding it to the PTS of the
4891 // buffer.
4892 int64_t frameCount = mTimedBufferQueue[trimEnd].buffer()->size()
4893 / mCblk->frameSize;
4894
4895 if (!mMediaTimeToSampleTransform.doReverseTransform(frameCount,
4896 &bufEnd)) {
4897 ALOGE("Failed to convert frame count of %lld to media time"
4898 " duration" " (scale factor %d/%u) in %s",
4899 frameCount,
4900 mMediaTimeToSampleTransform.a_to_b_numer,
4901 mMediaTimeToSampleTransform.a_to_b_denom,
4902 __PRETTY_FUNCTION__);
4903 break;
4904 }
4905 bufEnd += mTimedBufferQueue[trimEnd].pts();
John Grossman9fbdee12012-03-26 17:51:46 -07004906 }
John Grossman9fbdee12012-03-26 17:51:46 -07004907
4908 if (bufEnd > mediaTimeNow)
4909 break;
4910
4911 // Is the buffer we want to use in the middle of a mix operation right
4912 // now? If so, don't actually trim it. Just wait for the releaseBuffer
4913 // from the mixer which should be coming back shortly.
John Grossman1c345192012-03-27 14:00:17 -07004914 if (!trimEnd && mQueueHeadInFlight) {
John Grossman9fbdee12012-03-26 17:51:46 -07004915 mTrimQueueHeadOnRelease = true;
4916 }
John Grossman4ff14ba2012-02-08 16:37:41 -08004917 }
4918
John Grossman9fbdee12012-03-26 17:51:46 -07004919 size_t trimStart = mTrimQueueHeadOnRelease ? 1 : 0;
John Grossman1c345192012-03-27 14:00:17 -07004920 if (trimStart < trimEnd) {
4921 // Update the bookkeeping for framesReady()
4922 for (size_t i = trimStart; i < trimEnd; ++i) {
4923 updateFramesPendingAfterTrim_l(mTimedBufferQueue[i], "trim");
4924 }
4925
4926 // Now actually remove the buffers from the queue.
4927 mTimedBufferQueue.removeItemsAt(trimStart, trimEnd);
John Grossman4ff14ba2012-02-08 16:37:41 -08004928 }
4929}
4930
John Grossman1c345192012-03-27 14:00:17 -07004931void AudioFlinger::PlaybackThread::TimedTrack::trimTimedBufferQueueHead_l(
4932 const char* logTag) {
John Grossmand3030da2012-04-12 11:56:36 -07004933 ALOG_ASSERT(mTimedBufferQueue.size() > 0,
4934 "%s called (reason \"%s\"), but timed buffer queue has no"
4935 " elements to trim.", __FUNCTION__, logTag);
John Grossman1c345192012-03-27 14:00:17 -07004936
4937 updateFramesPendingAfterTrim_l(mTimedBufferQueue[0], logTag);
4938 mTimedBufferQueue.removeAt(0);
4939}
4940
4941void AudioFlinger::PlaybackThread::TimedTrack::updateFramesPendingAfterTrim_l(
4942 const TimedBuffer& buf,
4943 const char* logTag) {
4944 uint32_t bufBytes = buf.buffer()->size();
4945 uint32_t consumedAlready = buf.position();
4946
Eric Laurentb388e532012-04-14 13:32:48 -07004947 ALOG_ASSERT(consumedAlready <= bufBytes,
John Grossmand3030da2012-04-12 11:56:36 -07004948 "Bad bookkeeping while updating frames pending. Timed buffer is"
4949 " only %u bytes long, but claims to have consumed %u"
4950 " bytes. (update reason: \"%s\")",
Eric Laurentb388e532012-04-14 13:32:48 -07004951 bufBytes, consumedAlready, logTag);
John Grossman1c345192012-03-27 14:00:17 -07004952
4953 uint32_t bufFrames = (bufBytes - consumedAlready) / mCblk->frameSize;
John Grossmand3030da2012-04-12 11:56:36 -07004954 ALOG_ASSERT(mFramesPendingInQueue >= bufFrames,
4955 "Bad bookkeeping while updating frames pending. Should have at"
4956 " least %u queued frames, but we think we have only %u. (update"
4957 " reason: \"%s\")",
4958 bufFrames, mFramesPendingInQueue, logTag);
John Grossman1c345192012-03-27 14:00:17 -07004959
4960 mFramesPendingInQueue -= bufFrames;
4961}
4962
John Grossman4ff14ba2012-02-08 16:37:41 -08004963status_t AudioFlinger::PlaybackThread::TimedTrack::queueTimedBuffer(
4964 const sp<IMemory>& buffer, int64_t pts) {
4965
4966 {
4967 Mutex::Autolock mttLock(mMediaTimeTransformLock);
4968 if (!mMediaTimeTransformValid)
4969 return INVALID_OPERATION;
4970 }
4971
4972 Mutex::Autolock _l(mTimedBufferQueueLock);
4973
John Grossman1c345192012-03-27 14:00:17 -07004974 uint32_t bufFrames = buffer->size() / mCblk->frameSize;
4975 mFramesPendingInQueue += bufFrames;
John Grossman4ff14ba2012-02-08 16:37:41 -08004976 mTimedBufferQueue.add(TimedBuffer(buffer, pts));
4977
4978 return NO_ERROR;
4979}
4980
4981status_t AudioFlinger::PlaybackThread::TimedTrack::setMediaTimeTransform(
4982 const LinearTransform& xform, TimedAudioTrack::TargetTimeline target) {
4983
John Grossman1c345192012-03-27 14:00:17 -07004984 ALOGVV("setMediaTimeTransform az=%lld bz=%lld n=%d d=%u tgt=%d",
4985 xform.a_zero, xform.b_zero, xform.a_to_b_numer, xform.a_to_b_denom,
4986 target);
John Grossman4ff14ba2012-02-08 16:37:41 -08004987
4988 if (!(target == TimedAudioTrack::LOCAL_TIME ||
4989 target == TimedAudioTrack::COMMON_TIME)) {
4990 return BAD_VALUE;
4991 }
4992
4993 Mutex::Autolock lock(mMediaTimeTransformLock);
4994 mMediaTimeTransform = xform;
4995 mMediaTimeTransformTarget = target;
4996 mMediaTimeTransformValid = true;
4997
4998 return NO_ERROR;
4999}
5000
5001#define min(a, b) ((a) < (b) ? (a) : (b))
5002
5003// implementation of getNextBuffer for tracks whose buffers have timestamps
5004status_t AudioFlinger::PlaybackThread::TimedTrack::getNextBuffer(
5005 AudioBufferProvider::Buffer* buffer, int64_t pts)
5006{
5007 if (pts == AudioBufferProvider::kInvalidPTS) {
Glenn Kastend5903ec2012-03-18 10:33:27 -07005008 buffer->raw = NULL;
John Grossman4ff14ba2012-02-08 16:37:41 -08005009 buffer->frameCount = 0;
John Grossman8d314b72012-04-19 12:08:17 -07005010 mTimedAudioOutputOnTime = false;
John Grossman4ff14ba2012-02-08 16:37:41 -08005011 return INVALID_OPERATION;
5012 }
5013
John Grossman4ff14ba2012-02-08 16:37:41 -08005014 Mutex::Autolock _l(mTimedBufferQueueLock);
5015
John Grossman9fbdee12012-03-26 17:51:46 -07005016 ALOG_ASSERT(!mQueueHeadInFlight,
5017 "getNextBuffer called without releaseBuffer!");
5018
John Grossman4ff14ba2012-02-08 16:37:41 -08005019 while (true) {
5020
5021 // if we have no timed buffers, then fail
5022 if (mTimedBufferQueue.isEmpty()) {
Glenn Kastend5903ec2012-03-18 10:33:27 -07005023 buffer->raw = NULL;
John Grossman4ff14ba2012-02-08 16:37:41 -08005024 buffer->frameCount = 0;
5025 return NOT_ENOUGH_DATA;
5026 }
5027
5028 TimedBuffer& head = mTimedBufferQueue.editItemAt(0);
5029
5030 // calculate the PTS of the head of the timed buffer queue expressed in
5031 // local time
5032 int64_t headLocalPTS;
5033 {
5034 Mutex::Autolock mttLock(mMediaTimeTransformLock);
5035
Glenn Kasten5798d4e2012-03-08 12:18:35 -08005036 ALOG_ASSERT(mMediaTimeTransformValid, "media time transform invalid");
John Grossman4ff14ba2012-02-08 16:37:41 -08005037
5038 if (mMediaTimeTransform.a_to_b_denom == 0) {
5039 // the transform represents a pause, so yield silence
John Grossman9fbdee12012-03-26 17:51:46 -07005040 timedYieldSilence_l(buffer->frameCount, buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08005041 return NO_ERROR;
5042 }
5043
5044 int64_t transformedPTS;
5045 if (!mMediaTimeTransform.doForwardTransform(head.pts(),
5046 &transformedPTS)) {
5047 // the transform failed. this shouldn't happen, but if it does
5048 // then just drop this buffer
5049 ALOGW("timedGetNextBuffer transform failed");
Glenn Kastend5903ec2012-03-18 10:33:27 -07005050 buffer->raw = NULL;
John Grossman4ff14ba2012-02-08 16:37:41 -08005051 buffer->frameCount = 0;
John Grossman1c345192012-03-27 14:00:17 -07005052 trimTimedBufferQueueHead_l("getNextBuffer; no transform");
John Grossman4ff14ba2012-02-08 16:37:41 -08005053 return NO_ERROR;
5054 }
5055
5056 if (mMediaTimeTransformTarget == TimedAudioTrack::COMMON_TIME) {
5057 if (OK != mCCHelper.commonTimeToLocalTime(transformedPTS,
5058 &headLocalPTS)) {
Glenn Kastend5903ec2012-03-18 10:33:27 -07005059 buffer->raw = NULL;
John Grossman4ff14ba2012-02-08 16:37:41 -08005060 buffer->frameCount = 0;
5061 return INVALID_OPERATION;
5062 }
5063 } else {
5064 headLocalPTS = transformedPTS;
5065 }
5066 }
5067
5068 // adjust the head buffer's PTS to reflect the portion of the head buffer
5069 // that has already been consumed
5070 int64_t effectivePTS = headLocalPTS +
5071 ((head.position() / mCblk->frameSize) * mLocalTimeFreq / sampleRate());
5072
5073 // Calculate the delta in samples between the head of the input buffer
5074 // queue and the start of the next output buffer that will be written.
5075 // If the transformation fails because of over or underflow, it means
5076 // that the sample's position in the output stream is so far out of
5077 // whack that it should just be dropped.
5078 int64_t sampleDelta;
5079 if (llabs(effectivePTS - pts) >= (static_cast<int64_t>(1) << 31)) {
5080 ALOGV("*** head buffer is too far from PTS: dropped buffer");
John Grossman1c345192012-03-27 14:00:17 -07005081 trimTimedBufferQueueHead_l("getNextBuffer, buf pts too far from"
5082 " mix");
John Grossman4ff14ba2012-02-08 16:37:41 -08005083 continue;
5084 }
5085 if (!mLocalTimeToSampleTransform.doForwardTransform(
5086 (effectivePTS - pts) << 32, &sampleDelta)) {
John Grossmand3030da2012-04-12 11:56:36 -07005087 ALOGV("*** too late during sample rate transform: dropped buffer");
John Grossman1c345192012-03-27 14:00:17 -07005088 trimTimedBufferQueueHead_l("getNextBuffer, bad local to sample");
John Grossman4ff14ba2012-02-08 16:37:41 -08005089 continue;
5090 }
5091
John Grossman1c345192012-03-27 14:00:17 -07005092 ALOGVV("*** getNextBuffer head.pts=%lld head.pos=%d pts=%lld"
5093 " sampleDelta=[%d.%08x]",
5094 head.pts(), head.position(), pts,
5095 static_cast<int32_t>((sampleDelta >= 0 ? 0 : 1)
5096 + (sampleDelta >> 32)),
5097 static_cast<uint32_t>(sampleDelta & 0xFFFFFFFF));
John Grossman4ff14ba2012-02-08 16:37:41 -08005098
5099 // if the delta between the ideal placement for the next input sample and
5100 // the current output position is within this threshold, then we will
5101 // concatenate the next input samples to the previous output
5102 const int64_t kSampleContinuityThreshold =
John Grossman8d314b72012-04-19 12:08:17 -07005103 (static_cast<int64_t>(sampleRate()) << 32) / 250;
John Grossman4ff14ba2012-02-08 16:37:41 -08005104
5105 // if this is the first buffer of audio that we're emitting from this track
5106 // then it should be almost exactly on time.
5107 const int64_t kSampleStartupThreshold = 1LL << 32;
5108
5109 if ((mTimedAudioOutputOnTime && llabs(sampleDelta) <= kSampleContinuityThreshold) ||
John Grossman8d314b72012-04-19 12:08:17 -07005110 (!mTimedAudioOutputOnTime && llabs(sampleDelta) <= kSampleStartupThreshold)) {
John Grossman4ff14ba2012-02-08 16:37:41 -08005111 // the next input is close enough to being on time, so concatenate it
5112 // with the last output
John Grossman9fbdee12012-03-26 17:51:46 -07005113 timedYieldSamples_l(buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08005114
John Grossman1c345192012-03-27 14:00:17 -07005115 ALOGVV("*** on time: head.pos=%d frameCount=%u",
5116 head.position(), buffer->frameCount);
John Grossman4ff14ba2012-02-08 16:37:41 -08005117 return NO_ERROR;
John Grossman8d314b72012-04-19 12:08:17 -07005118 }
5119
5120 // Looks like our output is not on time. Reset our on timed status.
5121 // Next time we mix samples from our input queue, then should be within
5122 // the StartupThreshold.
5123 mTimedAudioOutputOnTime = false;
5124 if (sampleDelta > 0) {
John Grossman4ff14ba2012-02-08 16:37:41 -08005125 // the gap between the current output position and the proper start of
5126 // the next input sample is too big, so fill it with silence
5127 uint32_t framesUntilNextInput = (sampleDelta + 0x80000000) >> 32;
5128
John Grossman9fbdee12012-03-26 17:51:46 -07005129 timedYieldSilence_l(framesUntilNextInput, buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08005130 ALOGV("*** silence: frameCount=%u", buffer->frameCount);
5131 return NO_ERROR;
5132 } else {
5133 // the next input sample is late
5134 uint32_t lateFrames = static_cast<uint32_t>(-((sampleDelta + 0x80000000) >> 32));
5135 size_t onTimeSamplePosition =
5136 head.position() + lateFrames * mCblk->frameSize;
5137
5138 if (onTimeSamplePosition > head.buffer()->size()) {
5139 // all the remaining samples in the head are too late, so
5140 // drop it and move on
5141 ALOGV("*** too late: dropped buffer");
John Grossman1c345192012-03-27 14:00:17 -07005142 trimTimedBufferQueueHead_l("getNextBuffer, dropped late buffer");
John Grossman4ff14ba2012-02-08 16:37:41 -08005143 continue;
5144 } else {
5145 // skip over the late samples
5146 head.setPosition(onTimeSamplePosition);
5147
5148 // yield the available samples
John Grossman9fbdee12012-03-26 17:51:46 -07005149 timedYieldSamples_l(buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08005150
5151 ALOGV("*** late: head.pos=%d frameCount=%u", head.position(), buffer->frameCount);
5152 return NO_ERROR;
5153 }
5154 }
5155 }
5156}
5157
5158// Yield samples from the timed buffer queue head up to the given output
5159// buffer's capacity.
5160//
5161// Caller must hold mTimedBufferQueueLock
John Grossman9fbdee12012-03-26 17:51:46 -07005162void AudioFlinger::PlaybackThread::TimedTrack::timedYieldSamples_l(
John Grossman4ff14ba2012-02-08 16:37:41 -08005163 AudioBufferProvider::Buffer* buffer) {
5164
5165 const TimedBuffer& head = mTimedBufferQueue[0];
5166
5167 buffer->raw = (static_cast<uint8_t*>(head.buffer()->pointer()) +
5168 head.position());
5169
5170 uint32_t framesLeftInHead = ((head.buffer()->size() - head.position()) /
5171 mCblk->frameSize);
5172 size_t framesRequested = buffer->frameCount;
5173 buffer->frameCount = min(framesLeftInHead, framesRequested);
5174
John Grossman9fbdee12012-03-26 17:51:46 -07005175 mQueueHeadInFlight = true;
John Grossman4ff14ba2012-02-08 16:37:41 -08005176 mTimedAudioOutputOnTime = true;
5177}
5178
5179// Yield samples of silence up to the given output buffer's capacity
5180//
5181// Caller must hold mTimedBufferQueueLock
John Grossman9fbdee12012-03-26 17:51:46 -07005182void AudioFlinger::PlaybackThread::TimedTrack::timedYieldSilence_l(
John Grossman4ff14ba2012-02-08 16:37:41 -08005183 uint32_t numFrames, AudioBufferProvider::Buffer* buffer) {
5184
5185 // lazily allocate a buffer filled with silence
5186 if (mTimedSilenceBufferSize < numFrames * mCblk->frameSize) {
5187 delete [] mTimedSilenceBuffer;
5188 mTimedSilenceBufferSize = numFrames * mCblk->frameSize;
5189 mTimedSilenceBuffer = new uint8_t[mTimedSilenceBufferSize];
5190 memset(mTimedSilenceBuffer, 0, mTimedSilenceBufferSize);
5191 }
5192
5193 buffer->raw = mTimedSilenceBuffer;
5194 size_t framesRequested = buffer->frameCount;
5195 buffer->frameCount = min(numFrames, framesRequested);
5196
5197 mTimedAudioOutputOnTime = false;
5198}
5199
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08005200// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08005201void AudioFlinger::PlaybackThread::TimedTrack::releaseBuffer(
5202 AudioBufferProvider::Buffer* buffer) {
5203
5204 Mutex::Autolock _l(mTimedBufferQueueLock);
5205
John Grossmanfe5b3ba2012-02-12 17:51:21 -08005206 // If the buffer which was just released is part of the buffer at the head
5207 // of the queue, be sure to update the amt of the buffer which has been
5208 // consumed. If the buffer being returned is not part of the head of the
5209 // queue, its either because the buffer is part of the silence buffer, or
5210 // because the head of the timed queue was trimmed after the mixer called
5211 // getNextBuffer but before the mixer called releaseBuffer.
John Grossman9fbdee12012-03-26 17:51:46 -07005212 if (buffer->raw == mTimedSilenceBuffer) {
5213 ALOG_ASSERT(!mQueueHeadInFlight,
5214 "Queue head in flight during release of silence buffer!");
5215 goto done;
5216 }
5217
5218 ALOG_ASSERT(mQueueHeadInFlight,
5219 "TimedTrack::releaseBuffer of non-silence buffer, but no queue"
5220 " head in flight.");
5221
5222 if (mTimedBufferQueue.size()) {
John Grossman4ff14ba2012-02-08 16:37:41 -08005223 TimedBuffer& head = mTimedBufferQueue.editItemAt(0);
John Grossmanfe5b3ba2012-02-12 17:51:21 -08005224
5225 void* start = head.buffer()->pointer();
John Grossman9fbdee12012-03-26 17:51:46 -07005226 void* end = reinterpret_cast<void*>(
5227 reinterpret_cast<uint8_t*>(head.buffer()->pointer())
5228 + head.buffer()->size());
John Grossmanfe5b3ba2012-02-12 17:51:21 -08005229
John Grossman9fbdee12012-03-26 17:51:46 -07005230 ALOG_ASSERT((buffer->raw >= start) && (buffer->raw < end),
5231 "released buffer not within the head of the timed buffer"
5232 " queue; qHead = [%p, %p], released buffer = %p",
5233 start, end, buffer->raw);
5234
5235 head.setPosition(head.position() +
5236 (buffer->frameCount * mCblk->frameSize));
5237 mQueueHeadInFlight = false;
5238
John Grossman1c345192012-03-27 14:00:17 -07005239 ALOG_ASSERT(mFramesPendingInQueue >= buffer->frameCount,
5240 "Bad bookkeeping during releaseBuffer! Should have at"
5241 " least %u queued frames, but we think we have only %u",
5242 buffer->frameCount, mFramesPendingInQueue);
5243
5244 mFramesPendingInQueue -= buffer->frameCount;
5245
John Grossman9fbdee12012-03-26 17:51:46 -07005246 if ((static_cast<size_t>(head.position()) >= head.buffer()->size())
5247 || mTrimQueueHeadOnRelease) {
John Grossman1c345192012-03-27 14:00:17 -07005248 trimTimedBufferQueueHead_l("releaseBuffer");
John Grossman9fbdee12012-03-26 17:51:46 -07005249 mTrimQueueHeadOnRelease = false;
John Grossman4ff14ba2012-02-08 16:37:41 -08005250 }
John Grossman9fbdee12012-03-26 17:51:46 -07005251 } else {
5252 LOG_FATAL("TimedTrack::releaseBuffer of non-silence buffer with no"
5253 " buffers in the timed buffer queue");
John Grossman4ff14ba2012-02-08 16:37:41 -08005254 }
5255
John Grossman9fbdee12012-03-26 17:51:46 -07005256done:
John Grossman4ff14ba2012-02-08 16:37:41 -08005257 buffer->raw = 0;
5258 buffer->frameCount = 0;
5259}
5260
Glenn Kasten288ed212012-04-25 17:52:27 -07005261size_t AudioFlinger::PlaybackThread::TimedTrack::framesReady() const {
John Grossman4ff14ba2012-02-08 16:37:41 -08005262 Mutex::Autolock _l(mTimedBufferQueueLock);
John Grossman1c345192012-03-27 14:00:17 -07005263 return mFramesPendingInQueue;
John Grossman4ff14ba2012-02-08 16:37:41 -08005264}
5265
5266AudioFlinger::PlaybackThread::TimedTrack::TimedBuffer::TimedBuffer()
5267 : mPTS(0), mPosition(0) {}
5268
5269AudioFlinger::PlaybackThread::TimedTrack::TimedBuffer::TimedBuffer(
5270 const sp<IMemory>& buffer, int64_t pts)
5271 : mBuffer(buffer), mPTS(pts), mPosition(0) {}
5272
Mathias Agopian65ab4712010-07-14 17:59:35 -07005273// ----------------------------------------------------------------------------
5274
5275// RecordTrack constructor must be called with AudioFlinger::mLock held
5276AudioFlinger::RecordThread::RecordTrack::RecordTrack(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08005277 RecordThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005278 const sp<Client>& client,
5279 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08005280 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07005281 audio_channel_mask_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005282 int frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005283 int sessionId)
5284 : TrackBase(thread, client, sampleRate, format,
Glenn Kasten5cf034d2012-02-21 10:35:56 -08005285 channelMask, frameCount, 0 /*sharedBuffer*/, sessionId),
Mathias Agopian65ab4712010-07-14 17:59:35 -07005286 mOverflow(false)
5287{
5288 if (mCblk != NULL) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07005289 ALOGV("RecordTrack constructor, size %d", (int)mBufferEnd - (int)mBuffer);
5290 if (format == AUDIO_FORMAT_PCM_16_BIT) {
5291 mCblk->frameSize = mChannelCount * sizeof(int16_t);
5292 } else if (format == AUDIO_FORMAT_PCM_8_BIT) {
5293 mCblk->frameSize = mChannelCount * sizeof(int8_t);
5294 } else {
5295 mCblk->frameSize = sizeof(int8_t);
5296 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07005297 }
5298}
5299
5300AudioFlinger::RecordThread::RecordTrack::~RecordTrack()
5301{
Glenn Kasten510a3d62012-07-16 14:24:34 -07005302 ALOGV("%s", __func__);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005303}
5304
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08005305// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08005306status_t AudioFlinger::RecordThread::RecordTrack::getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005307{
5308 audio_track_cblk_t* cblk = this->cblk();
5309 uint32_t framesAvail;
5310 uint32_t framesReq = buffer->frameCount;
5311
Glenn Kastene53b9ea2012-03-12 16:29:55 -07005312 // Check if last stepServer failed, try to step now
Glenn Kasten5cf034d2012-02-21 10:35:56 -08005313 if (mStepServerFailed) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005314 if (!step()) goto getNextBuffer_exit;
Steve Block3856b092011-10-20 11:56:00 +01005315 ALOGV("stepServer recovered");
Glenn Kasten5cf034d2012-02-21 10:35:56 -08005316 mStepServerFailed = false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005317 }
5318
5319 framesAvail = cblk->framesAvailable_l();
5320
Glenn Kastenf6b16782011-12-15 09:51:17 -08005321 if (CC_LIKELY(framesAvail)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005322 uint32_t s = cblk->server;
5323 uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
5324
5325 if (framesReq > framesAvail) {
5326 framesReq = framesAvail;
5327 }
Marco Nelissena1472d92012-03-30 14:36:54 -07005328 if (framesReq > bufferEnd - s) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005329 framesReq = bufferEnd - s;
5330 }
5331
5332 buffer->raw = getBuffer(s, framesReq);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005333 buffer->frameCount = framesReq;
5334 return NO_ERROR;
5335 }
5336
5337getNextBuffer_exit:
Glenn Kastene0feee32011-12-13 11:53:26 -08005338 buffer->raw = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005339 buffer->frameCount = 0;
5340 return NOT_ENOUGH_DATA;
5341}
5342
Glenn Kasten3acbd052012-02-28 10:39:56 -08005343status_t AudioFlinger::RecordThread::RecordTrack::start(AudioSystem::sync_event_t event,
Eric Laurenta011e352012-03-29 15:51:43 -07005344 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005345{
5346 sp<ThreadBase> thread = mThread.promote();
5347 if (thread != 0) {
5348 RecordThread *recordThread = (RecordThread *)thread.get();
Glenn Kasten3acbd052012-02-28 10:39:56 -08005349 return recordThread->start(this, event, triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005350 } else {
5351 return BAD_VALUE;
5352 }
5353}
5354
5355void AudioFlinger::RecordThread::RecordTrack::stop()
5356{
5357 sp<ThreadBase> thread = mThread.promote();
5358 if (thread != 0) {
5359 RecordThread *recordThread = (RecordThread *)thread.get();
Glenn Kasten1d491ff2012-07-16 14:28:13 -07005360 recordThread->mLock.lock();
5361 bool doStop = recordThread->stop_l(this);
5362 if (doStop) {
5363 TrackBase::reset();
5364 // Force overrun condition to avoid false overrun callback until first data is
5365 // read from buffer
5366 android_atomic_or(CBLK_UNDERRUN_ON, &mCblk->flags);
5367 }
5368 recordThread->mLock.unlock();
5369 if (doStop) {
5370 AudioSystem::stopInput(recordThread->id());
5371 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07005372 }
5373}
5374
Glenn Kasten510a3d62012-07-16 14:24:34 -07005375/*static*/ void AudioFlinger::RecordThread::RecordTrack::appendDumpHeader(String8& result)
5376{
5377 result.append(" Clien Fmt Chn mask Session Buf S SRate Serv User\n");
5378}
5379
Mathias Agopian65ab4712010-07-14 17:59:35 -07005380void AudioFlinger::RecordThread::RecordTrack::dump(char* buffer, size_t size)
5381{
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07005382 snprintf(buffer, size, " %05d %03u 0x%08x %05d %04u %01d %05u %08x %08x\n",
Glenn Kasten44deb052012-02-05 18:09:08 -08005383 (mClient == 0) ? getpid_cached : mClient->pid(),
Mathias Agopian65ab4712010-07-14 17:59:35 -07005384 mFormat,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07005385 mChannelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005386 mSessionId,
5387 mFrameCount,
5388 mState,
5389 mCblk->sampleRate,
5390 mCblk->server,
5391 mCblk->user);
5392}
5393
5394
5395// ----------------------------------------------------------------------------
5396
5397AudioFlinger::PlaybackThread::OutputTrack::OutputTrack(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08005398 PlaybackThread *playbackThread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005399 DuplicatingThread *sourceThread,
5400 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08005401 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07005402 audio_channel_mask_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005403 int frameCount)
Glenn Kasten73d22752012-03-19 13:38:30 -07005404 : Track(playbackThread, NULL, AUDIO_STREAM_CNT, sampleRate, format, channelMask, frameCount,
5405 NULL, 0, IAudioFlinger::TRACK_DEFAULT),
Mathias Agopian65ab4712010-07-14 17:59:35 -07005406 mActive(false), mSourceThread(sourceThread)
5407{
5408
Mathias Agopian65ab4712010-07-14 17:59:35 -07005409 if (mCblk != NULL) {
5410 mCblk->flags |= CBLK_DIRECTION_OUT;
5411 mCblk->buffers = (char*)mCblk + sizeof(audio_track_cblk_t);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005412 mOutBuffer.frameCount = 0;
5413 playbackThread->mTracks.add(this);
Steve Block3856b092011-10-20 11:56:00 +01005414 ALOGV("OutputTrack constructor mCblk %p, mBuffer %p, mCblk->buffers %p, " \
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07005415 "mCblk->frameCount %d, mCblk->sampleRate %d, mChannelMask 0x%08x mBufferEnd %p",
5416 mCblk, mBuffer, mCblk->buffers,
5417 mCblk->frameCount, mCblk->sampleRate, mChannelMask, mBufferEnd);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005418 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00005419 ALOGW("Error creating output track on thread %p", playbackThread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005420 }
5421}
5422
5423AudioFlinger::PlaybackThread::OutputTrack::~OutputTrack()
5424{
5425 clearBufferQueue();
5426}
5427
Glenn Kasten3acbd052012-02-28 10:39:56 -08005428status_t AudioFlinger::PlaybackThread::OutputTrack::start(AudioSystem::sync_event_t event,
Eric Laurenta011e352012-03-29 15:51:43 -07005429 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005430{
Glenn Kasten3acbd052012-02-28 10:39:56 -08005431 status_t status = Track::start(event, triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005432 if (status != NO_ERROR) {
5433 return status;
5434 }
5435
5436 mActive = true;
5437 mRetryCount = 127;
5438 return status;
5439}
5440
5441void AudioFlinger::PlaybackThread::OutputTrack::stop()
5442{
5443 Track::stop();
5444 clearBufferQueue();
5445 mOutBuffer.frameCount = 0;
5446 mActive = false;
5447}
5448
5449bool AudioFlinger::PlaybackThread::OutputTrack::write(int16_t* data, uint32_t frames)
5450{
5451 Buffer *pInBuffer;
5452 Buffer inBuffer;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07005453 uint32_t channelCount = mChannelCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005454 bool outputBufferFull = false;
5455 inBuffer.frameCount = frames;
5456 inBuffer.i16 = data;
5457
5458 uint32_t waitTimeLeftMs = mSourceThread->waitTimeMs();
5459
5460 if (!mActive && frames != 0) {
Glenn Kasten3acbd052012-02-28 10:39:56 -08005461 start();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005462 sp<ThreadBase> thread = mThread.promote();
5463 if (thread != 0) {
5464 MixerThread *mixerThread = (MixerThread *)thread.get();
5465 if (mCblk->frameCount > frames){
5466 if (mBufferQueue.size() < kMaxOverFlowBuffers) {
5467 uint32_t startFrames = (mCblk->frameCount - frames);
5468 pInBuffer = new Buffer;
5469 pInBuffer->mBuffer = new int16_t[startFrames * channelCount];
5470 pInBuffer->frameCount = startFrames;
5471 pInBuffer->i16 = pInBuffer->mBuffer;
5472 memset(pInBuffer->raw, 0, startFrames * channelCount * sizeof(int16_t));
5473 mBufferQueue.add(pInBuffer);
5474 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00005475 ALOGW ("OutputTrack::write() %p no more buffers in queue", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005476 }
5477 }
5478 }
5479 }
5480
5481 while (waitTimeLeftMs) {
5482 // First write pending buffers, then new data
5483 if (mBufferQueue.size()) {
5484 pInBuffer = mBufferQueue.itemAt(0);
5485 } else {
5486 pInBuffer = &inBuffer;
5487 }
5488
5489 if (pInBuffer->frameCount == 0) {
5490 break;
5491 }
5492
5493 if (mOutBuffer.frameCount == 0) {
5494 mOutBuffer.frameCount = pInBuffer->frameCount;
5495 nsecs_t startTime = systemTime();
Glenn Kasten335787f2012-01-20 17:00:00 -08005496 if (obtainBuffer(&mOutBuffer, waitTimeLeftMs) == (status_t)NO_MORE_BUFFERS) {
Steve Block3856b092011-10-20 11:56:00 +01005497 ALOGV ("OutputTrack::write() %p thread %p no more output buffers", this, mThread.unsafe_get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07005498 outputBufferFull = true;
5499 break;
5500 }
5501 uint32_t waitTimeMs = (uint32_t)ns2ms(systemTime() - startTime);
5502 if (waitTimeLeftMs >= waitTimeMs) {
5503 waitTimeLeftMs -= waitTimeMs;
5504 } else {
5505 waitTimeLeftMs = 0;
5506 }
5507 }
5508
5509 uint32_t outFrames = pInBuffer->frameCount > mOutBuffer.frameCount ? mOutBuffer.frameCount : pInBuffer->frameCount;
5510 memcpy(mOutBuffer.raw, pInBuffer->raw, outFrames * channelCount * sizeof(int16_t));
5511 mCblk->stepUser(outFrames);
5512 pInBuffer->frameCount -= outFrames;
5513 pInBuffer->i16 += outFrames * channelCount;
5514 mOutBuffer.frameCount -= outFrames;
5515 mOutBuffer.i16 += outFrames * channelCount;
5516
5517 if (pInBuffer->frameCount == 0) {
5518 if (mBufferQueue.size()) {
5519 mBufferQueue.removeAt(0);
5520 delete [] pInBuffer->mBuffer;
5521 delete pInBuffer;
Steve Block3856b092011-10-20 11:56:00 +01005522 ALOGV("OutputTrack::write() %p thread %p released overflow buffer %d", this, mThread.unsafe_get(), mBufferQueue.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07005523 } else {
5524 break;
5525 }
5526 }
5527 }
5528
5529 // If we could not write all frames, allocate a buffer and queue it for next time.
5530 if (inBuffer.frameCount) {
5531 sp<ThreadBase> thread = mThread.promote();
5532 if (thread != 0 && !thread->standby()) {
5533 if (mBufferQueue.size() < kMaxOverFlowBuffers) {
5534 pInBuffer = new Buffer;
5535 pInBuffer->mBuffer = new int16_t[inBuffer.frameCount * channelCount];
5536 pInBuffer->frameCount = inBuffer.frameCount;
5537 pInBuffer->i16 = pInBuffer->mBuffer;
5538 memcpy(pInBuffer->raw, inBuffer.raw, inBuffer.frameCount * channelCount * sizeof(int16_t));
5539 mBufferQueue.add(pInBuffer);
Steve Block3856b092011-10-20 11:56:00 +01005540 ALOGV("OutputTrack::write() %p thread %p adding overflow buffer %d", this, mThread.unsafe_get(), mBufferQueue.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07005541 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00005542 ALOGW("OutputTrack::write() %p thread %p no more overflow buffers", mThread.unsafe_get(), this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005543 }
5544 }
5545 }
5546
5547 // Calling write() with a 0 length buffer, means that no more data will be written:
5548 // If no more buffers are pending, fill output track buffer to make sure it is started
5549 // by output mixer.
5550 if (frames == 0 && mBufferQueue.size() == 0) {
5551 if (mCblk->user < mCblk->frameCount) {
5552 frames = mCblk->frameCount - mCblk->user;
5553 pInBuffer = new Buffer;
5554 pInBuffer->mBuffer = new int16_t[frames * channelCount];
5555 pInBuffer->frameCount = frames;
5556 pInBuffer->i16 = pInBuffer->mBuffer;
5557 memset(pInBuffer->raw, 0, frames * channelCount * sizeof(int16_t));
5558 mBufferQueue.add(pInBuffer);
5559 } else if (mActive) {
5560 stop();
5561 }
5562 }
5563
5564 return outputBufferFull;
5565}
5566
5567status_t AudioFlinger::PlaybackThread::OutputTrack::obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs)
5568{
5569 int active;
5570 status_t result;
5571 audio_track_cblk_t* cblk = mCblk;
5572 uint32_t framesReq = buffer->frameCount;
5573
Steve Block3856b092011-10-20 11:56:00 +01005574// ALOGV("OutputTrack::obtainBuffer user %d, server %d", cblk->user, cblk->server);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005575 buffer->frameCount = 0;
5576
5577 uint32_t framesAvail = cblk->framesAvailable();
5578
5579
5580 if (framesAvail == 0) {
5581 Mutex::Autolock _l(cblk->lock);
5582 goto start_loop_here;
5583 while (framesAvail == 0) {
5584 active = mActive;
Glenn Kastenf6b16782011-12-15 09:51:17 -08005585 if (CC_UNLIKELY(!active)) {
Steve Block3856b092011-10-20 11:56:00 +01005586 ALOGV("Not active and NO_MORE_BUFFERS");
Glenn Kasten335787f2012-01-20 17:00:00 -08005587 return NO_MORE_BUFFERS;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005588 }
5589 result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs));
5590 if (result != NO_ERROR) {
Glenn Kasten335787f2012-01-20 17:00:00 -08005591 return NO_MORE_BUFFERS;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005592 }
5593 // read the server count again
5594 start_loop_here:
5595 framesAvail = cblk->framesAvailable_l();
5596 }
5597 }
5598
5599// if (framesAvail < framesReq) {
Glenn Kasten335787f2012-01-20 17:00:00 -08005600// return NO_MORE_BUFFERS;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005601// }
5602
5603 if (framesReq > framesAvail) {
5604 framesReq = framesAvail;
5605 }
5606
5607 uint32_t u = cblk->user;
5608 uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
5609
Marco Nelissena1472d92012-03-30 14:36:54 -07005610 if (framesReq > bufferEnd - u) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005611 framesReq = bufferEnd - u;
5612 }
5613
5614 buffer->frameCount = framesReq;
5615 buffer->raw = (void *)cblk->buffer(u);
5616 return NO_ERROR;
5617}
5618
5619
5620void AudioFlinger::PlaybackThread::OutputTrack::clearBufferQueue()
5621{
5622 size_t size = mBufferQueue.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005623
5624 for (size_t i = 0; i < size; i++) {
Glenn Kastena1117922012-01-26 10:53:32 -08005625 Buffer *pBuffer = mBufferQueue.itemAt(i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005626 delete [] pBuffer->mBuffer;
5627 delete pBuffer;
5628 }
5629 mBufferQueue.clear();
5630}
5631
5632// ----------------------------------------------------------------------------
5633
5634AudioFlinger::Client::Client(const sp<AudioFlinger>& audioFlinger, pid_t pid)
5635 : RefBase(),
5636 mAudioFlinger(audioFlinger),
Glenn Kasten99e53b82012-01-19 08:59:58 -08005637 // FIXME should be a "k" constant not hard-coded, in .h or ro. property, see 4 lines below
Mathias Agopian65ab4712010-07-14 17:59:35 -07005638 mMemoryDealer(new MemoryDealer(1024*1024, "AudioFlinger::Client")),
John Grossman4ff14ba2012-02-08 16:37:41 -08005639 mPid(pid),
5640 mTimedTrackCount(0)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005641{
5642 // 1 MB of address space is good for 32 tracks, 8 buffers each, 4 KB/buffer
5643}
5644
5645// Client destructor must be called with AudioFlinger::mLock held
5646AudioFlinger::Client::~Client()
5647{
5648 mAudioFlinger->removeClient_l(mPid);
5649}
5650
Glenn Kasten435dbe62012-01-30 10:15:48 -08005651sp<MemoryDealer> AudioFlinger::Client::heap() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07005652{
5653 return mMemoryDealer;
5654}
5655
John Grossman4ff14ba2012-02-08 16:37:41 -08005656// Reserve one of the limited slots for a timed audio track associated
5657// with this client
5658bool AudioFlinger::Client::reserveTimedTrack()
5659{
5660 const int kMaxTimedTracksPerClient = 4;
5661
5662 Mutex::Autolock _l(mTimedTrackLock);
5663
5664 if (mTimedTrackCount >= kMaxTimedTracksPerClient) {
5665 ALOGW("can not create timed track - pid %d has exceeded the limit",
5666 mPid);
5667 return false;
5668 }
5669
5670 mTimedTrackCount++;
5671 return true;
5672}
5673
5674// Release a slot for a timed audio track
5675void AudioFlinger::Client::releaseTimedTrack()
5676{
5677 Mutex::Autolock _l(mTimedTrackLock);
5678 mTimedTrackCount--;
5679}
5680
Mathias Agopian65ab4712010-07-14 17:59:35 -07005681// ----------------------------------------------------------------------------
5682
5683AudioFlinger::NotificationClient::NotificationClient(const sp<AudioFlinger>& audioFlinger,
5684 const sp<IAudioFlingerClient>& client,
5685 pid_t pid)
Glenn Kasten84afa3b2012-01-25 15:28:08 -08005686 : mAudioFlinger(audioFlinger), mPid(pid), mAudioFlingerClient(client)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005687{
5688}
5689
5690AudioFlinger::NotificationClient::~NotificationClient()
5691{
Mathias Agopian65ab4712010-07-14 17:59:35 -07005692}
5693
5694void AudioFlinger::NotificationClient::binderDied(const wp<IBinder>& who)
5695{
5696 sp<NotificationClient> keep(this);
Glenn Kastena1117922012-01-26 10:53:32 -08005697 mAudioFlinger->removeNotificationClient(mPid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005698}
5699
5700// ----------------------------------------------------------------------------
5701
5702AudioFlinger::TrackHandle::TrackHandle(const sp<AudioFlinger::PlaybackThread::Track>& track)
5703 : BnAudioTrack(),
5704 mTrack(track)
5705{
5706}
5707
5708AudioFlinger::TrackHandle::~TrackHandle() {
5709 // just stop the track on deletion, associated resources
5710 // will be freed from the main thread once all pending buffers have
5711 // been played. Unless it's not in the active track list, in which
5712 // case we free everything now...
5713 mTrack->destroy();
5714}
5715
Glenn Kasten90716c52012-01-26 13:40:12 -08005716sp<IMemory> AudioFlinger::TrackHandle::getCblk() const {
5717 return mTrack->getCblk();
5718}
5719
Glenn Kasten3acbd052012-02-28 10:39:56 -08005720status_t AudioFlinger::TrackHandle::start() {
5721 return mTrack->start();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005722}
5723
5724void AudioFlinger::TrackHandle::stop() {
5725 mTrack->stop();
5726}
5727
5728void AudioFlinger::TrackHandle::flush() {
5729 mTrack->flush();
5730}
5731
5732void AudioFlinger::TrackHandle::mute(bool e) {
5733 mTrack->mute(e);
5734}
5735
5736void AudioFlinger::TrackHandle::pause() {
5737 mTrack->pause();
5738}
5739
Mathias Agopian65ab4712010-07-14 17:59:35 -07005740status_t AudioFlinger::TrackHandle::attachAuxEffect(int EffectId)
5741{
5742 return mTrack->attachAuxEffect(EffectId);
5743}
5744
John Grossman4ff14ba2012-02-08 16:37:41 -08005745status_t AudioFlinger::TrackHandle::allocateTimedBuffer(size_t size,
5746 sp<IMemory>* buffer) {
5747 if (!mTrack->isTimedTrack())
5748 return INVALID_OPERATION;
5749
5750 PlaybackThread::TimedTrack* tt =
5751 reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
5752 return tt->allocateTimedBuffer(size, buffer);
5753}
5754
5755status_t AudioFlinger::TrackHandle::queueTimedBuffer(const sp<IMemory>& buffer,
5756 int64_t pts) {
5757 if (!mTrack->isTimedTrack())
5758 return INVALID_OPERATION;
5759
5760 PlaybackThread::TimedTrack* tt =
5761 reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
5762 return tt->queueTimedBuffer(buffer, pts);
5763}
5764
5765status_t AudioFlinger::TrackHandle::setMediaTimeTransform(
5766 const LinearTransform& xform, int target) {
5767
5768 if (!mTrack->isTimedTrack())
5769 return INVALID_OPERATION;
5770
5771 PlaybackThread::TimedTrack* tt =
5772 reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
5773 return tt->setMediaTimeTransform(
5774 xform, static_cast<TimedAudioTrack::TargetTimeline>(target));
5775}
5776
Mathias Agopian65ab4712010-07-14 17:59:35 -07005777status_t AudioFlinger::TrackHandle::onTransact(
5778 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
5779{
5780 return BnAudioTrack::onTransact(code, data, reply, flags);
5781}
5782
5783// ----------------------------------------------------------------------------
5784
5785sp<IAudioRecord> AudioFlinger::openRecord(
5786 pid_t pid,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08005787 audio_io_handle_t input,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005788 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08005789 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07005790 audio_channel_mask_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005791 int frameCount,
Glenn Kastena075db42012-03-06 11:22:44 -08005792 IAudioFlinger::track_flags_t flags,
Glenn Kasten1879fff2012-07-11 15:36:59 -07005793 pid_t tid,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005794 int *sessionId,
5795 status_t *status)
5796{
5797 sp<RecordThread::RecordTrack> recordTrack;
5798 sp<RecordHandle> recordHandle;
5799 sp<Client> client;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005800 status_t lStatus;
5801 RecordThread *thread;
5802 size_t inFrameCount;
5803 int lSessionId;
5804
5805 // check calling permissions
5806 if (!recordingAllowed()) {
5807 lStatus = PERMISSION_DENIED;
5808 goto Exit;
5809 }
5810
5811 // add client to list
5812 { // scope for mLock
5813 Mutex::Autolock _l(mLock);
5814 thread = checkRecordThread_l(input);
5815 if (thread == NULL) {
5816 lStatus = BAD_VALUE;
5817 goto Exit;
5818 }
5819
Glenn Kasten98ec94c2012-01-25 14:28:29 -08005820 client = registerPid_l(pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005821
5822 // If no audio session id is provided, create one here
Dima Zavinfce7a472011-04-19 22:30:36 -07005823 if (sessionId != NULL && *sessionId != AUDIO_SESSION_OUTPUT_MIX) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005824 lSessionId = *sessionId;
5825 } else {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005826 lSessionId = nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005827 if (sessionId != NULL) {
5828 *sessionId = lSessionId;
5829 }
5830 }
5831 // create new record track. The record track uses one track in mHardwareMixerThread by convention.
Glenn Kasten1879fff2012-07-11 15:36:59 -07005832 recordTrack = thread->createRecordTrack_l(client, sampleRate, format, channelMask,
5833 frameCount, lSessionId, flags, tid, &lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005834 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005835 if (lStatus != NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005836 // remove local strong reference to Client before deleting the RecordTrack so that the Client
5837 // destructor is called by the TrackBase destructor with mLock held
5838 client.clear();
5839 recordTrack.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005840 goto Exit;
5841 }
5842
5843 // return to handle to client
5844 recordHandle = new RecordHandle(recordTrack);
5845 lStatus = NO_ERROR;
5846
5847Exit:
5848 if (status) {
5849 *status = lStatus;
5850 }
5851 return recordHandle;
5852}
5853
5854// ----------------------------------------------------------------------------
5855
5856AudioFlinger::RecordHandle::RecordHandle(const sp<AudioFlinger::RecordThread::RecordTrack>& recordTrack)
5857 : BnAudioRecord(),
5858 mRecordTrack(recordTrack)
5859{
5860}
5861
5862AudioFlinger::RecordHandle::~RecordHandle() {
Glenn Kastend96c5722012-04-25 13:44:49 -07005863 stop_nonvirtual();
Glenn Kasten510a3d62012-07-16 14:24:34 -07005864 mRecordTrack->destroy();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005865}
5866
Glenn Kasten90716c52012-01-26 13:40:12 -08005867sp<IMemory> AudioFlinger::RecordHandle::getCblk() const {
5868 return mRecordTrack->getCblk();
5869}
5870
Glenn Kasten0ec23ce2012-07-10 12:56:08 -07005871status_t AudioFlinger::RecordHandle::start(int /*AudioSystem::sync_event_t*/ event, int triggerSession) {
Steve Block3856b092011-10-20 11:56:00 +01005872 ALOGV("RecordHandle::start()");
Glenn Kasten3acbd052012-02-28 10:39:56 -08005873 return mRecordTrack->start((AudioSystem::sync_event_t)event, triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005874}
5875
5876void AudioFlinger::RecordHandle::stop() {
Glenn Kastend96c5722012-04-25 13:44:49 -07005877 stop_nonvirtual();
5878}
5879
5880void AudioFlinger::RecordHandle::stop_nonvirtual() {
Steve Block3856b092011-10-20 11:56:00 +01005881 ALOGV("RecordHandle::stop()");
Mathias Agopian65ab4712010-07-14 17:59:35 -07005882 mRecordTrack->stop();
5883}
5884
Mathias Agopian65ab4712010-07-14 17:59:35 -07005885status_t AudioFlinger::RecordHandle::onTransact(
5886 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
5887{
5888 return BnAudioRecord::onTransact(code, data, reply, flags);
5889}
5890
5891// ----------------------------------------------------------------------------
5892
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005893AudioFlinger::RecordThread::RecordThread(const sp<AudioFlinger>& audioFlinger,
5894 AudioStreamIn *input,
5895 uint32_t sampleRate,
Glenn Kasten254af182012-07-03 14:59:05 -07005896 audio_channel_mask_t channelMask,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08005897 audio_io_handle_t id,
Glenn Kastenbb4350d2012-07-03 15:56:38 -07005898 audio_devices_t device) :
Glenn Kasten23bb8be2012-01-26 10:38:26 -08005899 ThreadBase(audioFlinger, id, device, RECORD),
Glenn Kasten510a3d62012-07-16 14:24:34 -07005900 mInput(input), mResampler(NULL), mRsmpOutBuffer(NULL), mRsmpInBuffer(NULL),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08005901 // mRsmpInIndex and mInputBytes set by readInputParameters()
Glenn Kasten254af182012-07-03 14:59:05 -07005902 mReqChannelCount(popcount(channelMask)),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08005903 mReqSampleRate(sampleRate)
5904 // mBytesRead is only meaningful while active, and so is cleared in start()
5905 // (but might be better to also clear here for dump?)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005906{
Glenn Kasten480b4682012-02-28 12:30:08 -08005907 snprintf(mName, kNameLength, "AudioIn_%X", id);
Eric Laurentfeb0db62011-07-22 09:04:31 -07005908
Mathias Agopian65ab4712010-07-14 17:59:35 -07005909 readInputParameters();
5910}
5911
5912
5913AudioFlinger::RecordThread::~RecordThread()
5914{
5915 delete[] mRsmpInBuffer;
Glenn Kastene9dd0172012-01-27 18:08:45 -08005916 delete mResampler;
5917 delete[] mRsmpOutBuffer;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005918}
5919
5920void AudioFlinger::RecordThread::onFirstRef()
5921{
Eric Laurentfeb0db62011-07-22 09:04:31 -07005922 run(mName, PRIORITY_URGENT_AUDIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005923}
5924
Eric Laurentb8ba0a92011-08-07 16:32:26 -07005925status_t AudioFlinger::RecordThread::readyToRun()
5926{
5927 status_t status = initCheck();
Steve Block5ff1dd52012-01-05 23:22:43 +00005928 ALOGW_IF(status != NO_ERROR,"RecordThread %p could not initialize", this);
Eric Laurentb8ba0a92011-08-07 16:32:26 -07005929 return status;
5930}
5931
Mathias Agopian65ab4712010-07-14 17:59:35 -07005932bool AudioFlinger::RecordThread::threadLoop()
5933{
5934 AudioBufferProvider::Buffer buffer;
5935 sp<RecordTrack> activeTrack;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005936 Vector< sp<EffectChain> > effectChains;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005937
Eric Laurent44d98482010-09-30 16:12:31 -07005938 nsecs_t lastWarning = 0;
5939
Glenn Kastene4e2a372012-07-23 12:55:09 -07005940 inputStandBy();
Eric Laurentfeb0db62011-07-22 09:04:31 -07005941 acquireWakeLock();
5942
Mathias Agopian65ab4712010-07-14 17:59:35 -07005943 // start recording
5944 while (!exitPending()) {
5945
5946 processConfigEvents();
5947
5948 { // scope for mLock
5949 Mutex::Autolock _l(mLock);
5950 checkForNewParameters_l();
5951 if (mActiveTrack == 0 && mConfigEvents.isEmpty()) {
Glenn Kastene4e2a372012-07-23 12:55:09 -07005952 standby();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005953
5954 if (exitPending()) break;
5955
Eric Laurentfeb0db62011-07-22 09:04:31 -07005956 releaseWakeLock_l();
Steve Block3856b092011-10-20 11:56:00 +01005957 ALOGV("RecordThread: loop stopping");
Mathias Agopian65ab4712010-07-14 17:59:35 -07005958 // go to sleep
5959 mWaitWorkCV.wait(mLock);
Steve Block3856b092011-10-20 11:56:00 +01005960 ALOGV("RecordThread: loop starting");
Eric Laurentfeb0db62011-07-22 09:04:31 -07005961 acquireWakeLock_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005962 continue;
5963 }
5964 if (mActiveTrack != 0) {
5965 if (mActiveTrack->mState == TrackBase::PAUSING) {
Glenn Kastene4e2a372012-07-23 12:55:09 -07005966 standby();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005967 mActiveTrack.clear();
5968 mStartStopCond.broadcast();
5969 } else if (mActiveTrack->mState == TrackBase::RESUMING) {
5970 if (mReqChannelCount != mActiveTrack->channelCount()) {
5971 mActiveTrack.clear();
5972 mStartStopCond.broadcast();
5973 } else if (mBytesRead != 0) {
5974 // record start succeeds only if first read from audio input
5975 // succeeds
5976 if (mBytesRead > 0) {
5977 mActiveTrack->mState = TrackBase::ACTIVE;
5978 } else {
5979 mActiveTrack.clear();
5980 }
5981 mStartStopCond.broadcast();
5982 }
5983 mStandby = false;
Glenn Kasten510a3d62012-07-16 14:24:34 -07005984 } else if (mActiveTrack->mState == TrackBase::TERMINATED) {
5985 removeTrack_l(mActiveTrack);
5986 mActiveTrack.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005987 }
5988 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005989 lockEffectChains_l(effectChains);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005990 }
5991
5992 if (mActiveTrack != 0) {
5993 if (mActiveTrack->mState != TrackBase::ACTIVE &&
5994 mActiveTrack->mState != TrackBase::RESUMING) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005995 unlockEffectChains(effectChains);
5996 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005997 continue;
5998 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005999 for (size_t i = 0; i < effectChains.size(); i ++) {
6000 effectChains[i]->process_l();
6001 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006002
Mathias Agopian65ab4712010-07-14 17:59:35 -07006003 buffer.frameCount = mFrameCount;
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08006004 if (CC_LIKELY(mActiveTrack->getNextBuffer(&buffer) == NO_ERROR)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006005 size_t framesOut = buffer.frameCount;
Glenn Kastene0feee32011-12-13 11:53:26 -08006006 if (mResampler == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006007 // no resampling
6008 while (framesOut) {
6009 size_t framesIn = mFrameCount - mRsmpInIndex;
6010 if (framesIn) {
6011 int8_t *src = (int8_t *)mRsmpInBuffer + mRsmpInIndex * mFrameSize;
6012 int8_t *dst = buffer.i8 + (buffer.frameCount - framesOut) * mActiveTrack->mCblk->frameSize;
6013 if (framesIn > framesOut)
6014 framesIn = framesOut;
6015 mRsmpInIndex += framesIn;
6016 framesOut -= framesIn;
6017 if ((int)mChannelCount == mReqChannelCount ||
Dima Zavinfce7a472011-04-19 22:30:36 -07006018 mFormat != AUDIO_FORMAT_PCM_16_BIT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006019 memcpy(dst, src, framesIn * mFrameSize);
6020 } else {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006021 if (mChannelCount == 1) {
Glenn Kasten69d79962012-07-19 14:02:22 -07006022 upmix_to_stereo_i16_from_mono_i16((int16_t *)dst,
6023 (int16_t *)src, framesIn);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006024 } else {
Glenn Kasten69d79962012-07-19 14:02:22 -07006025 downmix_to_mono_i16_from_stereo_i16((int16_t *)dst,
6026 (int16_t *)src, framesIn);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006027 }
6028 }
6029 }
6030 if (framesOut && mFrameCount == mRsmpInIndex) {
6031 if (framesOut == mFrameCount &&
Dima Zavinfce7a472011-04-19 22:30:36 -07006032 ((int)mChannelCount == mReqChannelCount || mFormat != AUDIO_FORMAT_PCM_16_BIT)) {
Dima Zavin799a70e2011-04-18 16:57:27 -07006033 mBytesRead = mInput->stream->read(mInput->stream, buffer.raw, mInputBytes);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006034 framesOut = 0;
6035 } else {
Dima Zavin799a70e2011-04-18 16:57:27 -07006036 mBytesRead = mInput->stream->read(mInput->stream, mRsmpInBuffer, mInputBytes);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006037 mRsmpInIndex = 0;
6038 }
6039 if (mBytesRead < 0) {
Steve Block29357bc2012-01-06 19:20:56 +00006040 ALOGE("Error reading audio input");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006041 if (mActiveTrack->mState == TrackBase::ACTIVE) {
6042 // Force input into standby so that it tries to
6043 // recover at next read attempt
Glenn Kastene4e2a372012-07-23 12:55:09 -07006044 inputStandBy();
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006045 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006046 }
6047 mRsmpInIndex = mFrameCount;
6048 framesOut = 0;
6049 buffer.frameCount = 0;
6050 }
6051 }
6052 }
6053 } else {
6054 // resampling
6055
6056 memset(mRsmpOutBuffer, 0, framesOut * 2 * sizeof(int32_t));
6057 // alter output frame count as if we were expecting stereo samples
6058 if (mChannelCount == 1 && mReqChannelCount == 1) {
6059 framesOut >>= 1;
6060 }
6061 mResampler->resample(mRsmpOutBuffer, framesOut, this);
6062 // ditherAndClamp() works as long as all buffers returned by mActiveTrack->getNextBuffer()
6063 // are 32 bit aligned which should be always true.
6064 if (mChannelCount == 2 && mReqChannelCount == 1) {
Glenn Kasten3b21c502011-12-15 09:52:39 -08006065 ditherAndClamp(mRsmpOutBuffer, mRsmpOutBuffer, framesOut);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006066 // the resampler always outputs stereo samples: do post stereo to mono conversion
Glenn Kasten69d79962012-07-19 14:02:22 -07006067 downmix_to_mono_i16_from_stereo_i16(buffer.i16, (int16_t *)mRsmpOutBuffer,
6068 framesOut);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006069 } else {
Glenn Kasten3b21c502011-12-15 09:52:39 -08006070 ditherAndClamp((int32_t *)buffer.raw, mRsmpOutBuffer, framesOut);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006071 }
6072
6073 }
Eric Laurenta011e352012-03-29 15:51:43 -07006074 if (mFramestoDrop == 0) {
6075 mActiveTrack->releaseBuffer(&buffer);
6076 } else {
6077 if (mFramestoDrop > 0) {
6078 mFramestoDrop -= buffer.frameCount;
Eric Laurent29864602012-05-08 18:57:51 -07006079 if (mFramestoDrop <= 0) {
6080 clearSyncStartEvent();
6081 }
6082 } else {
6083 mFramestoDrop += buffer.frameCount;
6084 if (mFramestoDrop >= 0 || mSyncStartEvent == 0 ||
6085 mSyncStartEvent->isCancelled()) {
6086 ALOGW("Synced record %s, session %d, trigger session %d",
6087 (mFramestoDrop >= 0) ? "timed out" : "cancelled",
6088 mActiveTrack->sessionId(),
6089 (mSyncStartEvent != 0) ? mSyncStartEvent->triggerSession() : 0);
6090 clearSyncStartEvent();
Eric Laurenta011e352012-03-29 15:51:43 -07006091 }
6092 }
6093 }
Glenn Kasten04270da2012-07-10 12:55:49 -07006094 mActiveTrack->clearOverflow();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006095 }
6096 // client isn't retrieving buffers fast enough
6097 else {
Eric Laurent44d98482010-09-30 16:12:31 -07006098 if (!mActiveTrack->setOverflow()) {
6099 nsecs_t now = systemTime();
Glenn Kasten7dede872011-12-13 11:04:14 -08006100 if ((now - lastWarning) > kWarningThrottleNs) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006101 ALOGW("RecordThread: buffer overflow");
Eric Laurent44d98482010-09-30 16:12:31 -07006102 lastWarning = now;
6103 }
6104 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006105 // Release the processor for a while before asking for a new buffer.
6106 // This will give the application more chance to read from the buffer and
6107 // clear the overflow.
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006108 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006109 }
6110 }
Eric Laurentec437d82011-07-26 20:54:46 -07006111 // enable changes in effect chain
6112 unlockEffectChains(effectChains);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006113 effectChains.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006114 }
6115
Glenn Kastene4e2a372012-07-23 12:55:09 -07006116 standby();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006117
Glenn Kasten33e6e352012-07-16 15:56:57 -07006118 {
6119 Mutex::Autolock _l(mLock);
6120 mActiveTrack.clear();
6121 mStartStopCond.broadcast();
6122 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006123
Eric Laurentfeb0db62011-07-22 09:04:31 -07006124 releaseWakeLock();
6125
Steve Block3856b092011-10-20 11:56:00 +01006126 ALOGV("RecordThread %p exiting", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006127 return false;
6128}
6129
Glenn Kastene4e2a372012-07-23 12:55:09 -07006130void AudioFlinger::RecordThread::standby()
6131{
6132 if (!mStandby) {
6133 inputStandBy();
6134 mStandby = true;
6135 }
6136}
6137
6138void AudioFlinger::RecordThread::inputStandBy()
6139{
6140 mInput->stream->common.standby(&mInput->stream->common);
6141}
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006142
6143sp<AudioFlinger::RecordThread::RecordTrack> AudioFlinger::RecordThread::createRecordTrack_l(
6144 const sp<AudioFlinger::Client>& client,
6145 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08006146 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07006147 audio_channel_mask_t channelMask,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006148 int frameCount,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006149 int sessionId,
Glenn Kasten1879fff2012-07-11 15:36:59 -07006150 IAudioFlinger::track_flags_t flags,
6151 pid_t tid,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006152 status_t *status)
6153{
6154 sp<RecordTrack> track;
6155 status_t lStatus;
6156
6157 lStatus = initCheck();
6158 if (lStatus != NO_ERROR) {
Steve Block29357bc2012-01-06 19:20:56 +00006159 ALOGE("Audio driver not initialized.");
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006160 goto Exit;
6161 }
6162
Glenn Kasten1879fff2012-07-11 15:36:59 -07006163 // FIXME use flags and tid similar to createTrack_l()
6164
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006165 { // scope for mLock
6166 Mutex::Autolock _l(mLock);
6167
6168 track = new RecordTrack(this, client, sampleRate,
Glenn Kasten5cf034d2012-02-21 10:35:56 -08006169 format, channelMask, frameCount, sessionId);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006170
Glenn Kasten7378ca52012-01-20 13:44:40 -08006171 if (track->getCblk() == 0) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006172 lStatus = NO_MEMORY;
6173 goto Exit;
6174 }
Glenn Kasten510a3d62012-07-16 14:24:34 -07006175 mTracks.add(track);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006176
Eric Laurent59bd0da2011-08-01 09:52:20 -07006177 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
Glenn Kastenbb4350d2012-07-03 15:56:38 -07006178 bool suspend = audio_is_bluetooth_sco_device(mDevice & AUDIO_DEVICE_IN_ALL) &&
6179 mAudioFlinger->btNrecIsOff();
Eric Laurent59bd0da2011-08-01 09:52:20 -07006180 setEffectSuspended_l(FX_IID_AEC, suspend, sessionId);
6181 setEffectSuspended_l(FX_IID_NS, suspend, sessionId);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006182 }
6183 lStatus = NO_ERROR;
6184
6185Exit:
6186 if (status) {
6187 *status = lStatus;
6188 }
6189 return track;
6190}
6191
Eric Laurenta011e352012-03-29 15:51:43 -07006192status_t AudioFlinger::RecordThread::start(RecordThread::RecordTrack* recordTrack,
Glenn Kasten3acbd052012-02-28 10:39:56 -08006193 AudioSystem::sync_event_t event,
Eric Laurenta011e352012-03-29 15:51:43 -07006194 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006195{
Glenn Kasten58912562012-04-03 10:45:00 -07006196 ALOGV("RecordThread::start event %d, triggerSession %d", event, triggerSession);
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006197 sp<ThreadBase> strongMe = this;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006198 status_t status = NO_ERROR;
Eric Laurenta011e352012-03-29 15:51:43 -07006199
6200 if (event == AudioSystem::SYNC_EVENT_NONE) {
Eric Laurent29864602012-05-08 18:57:51 -07006201 clearSyncStartEvent();
Eric Laurenta011e352012-03-29 15:51:43 -07006202 } else if (event != AudioSystem::SYNC_EVENT_SAME) {
6203 mSyncStartEvent = mAudioFlinger->createSyncEvent(event,
6204 triggerSession,
6205 recordTrack->sessionId(),
6206 syncStartEventCallback,
6207 this);
Eric Laurent29864602012-05-08 18:57:51 -07006208 // Sync event can be cancelled by the trigger session if the track is not in a
6209 // compatible state in which case we start record immediately
6210 if (mSyncStartEvent->isCancelled()) {
6211 clearSyncStartEvent();
6212 } else {
6213 // do not wait for the event for more than AudioSystem::kSyncRecordStartTimeOutMs
6214 mFramestoDrop = - ((AudioSystem::kSyncRecordStartTimeOutMs * mReqSampleRate) / 1000);
6215 }
Eric Laurenta011e352012-03-29 15:51:43 -07006216 }
6217
Mathias Agopian65ab4712010-07-14 17:59:35 -07006218 {
Glenn Kastena7d8d6f2012-01-05 15:41:56 -08006219 AutoMutex lock(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006220 if (mActiveTrack != 0) {
6221 if (recordTrack != mActiveTrack.get()) {
6222 status = -EBUSY;
6223 } else if (mActiveTrack->mState == TrackBase::PAUSING) {
6224 mActiveTrack->mState = TrackBase::ACTIVE;
6225 }
6226 return status;
6227 }
6228
6229 recordTrack->mState = TrackBase::IDLE;
6230 mActiveTrack = recordTrack;
6231 mLock.unlock();
6232 status_t status = AudioSystem::startInput(mId);
6233 mLock.lock();
6234 if (status != NO_ERROR) {
6235 mActiveTrack.clear();
Eric Laurenta011e352012-03-29 15:51:43 -07006236 clearSyncStartEvent();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006237 return status;
6238 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006239 mRsmpInIndex = mFrameCount;
6240 mBytesRead = 0;
Eric Laurent243f5f92011-02-28 16:52:51 -08006241 if (mResampler != NULL) {
6242 mResampler->reset();
6243 }
6244 mActiveTrack->mState = TrackBase::RESUMING;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006245 // signal thread to start
Steve Block3856b092011-10-20 11:56:00 +01006246 ALOGV("Signal record thread");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006247 mWaitWorkCV.signal();
6248 // do not wait for mStartStopCond if exiting
Glenn Kastenb28686f2012-01-06 08:39:38 -08006249 if (exitPending()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006250 mActiveTrack.clear();
6251 status = INVALID_OPERATION;
6252 goto startError;
6253 }
6254 mStartStopCond.wait(mLock);
6255 if (mActiveTrack == 0) {
Steve Block3856b092011-10-20 11:56:00 +01006256 ALOGV("Record failed to start");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006257 status = BAD_VALUE;
6258 goto startError;
6259 }
Steve Block3856b092011-10-20 11:56:00 +01006260 ALOGV("Record started OK");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006261 return status;
6262 }
6263startError:
6264 AudioSystem::stopInput(mId);
Eric Laurenta011e352012-03-29 15:51:43 -07006265 clearSyncStartEvent();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006266 return status;
6267}
6268
Eric Laurenta011e352012-03-29 15:51:43 -07006269void AudioFlinger::RecordThread::clearSyncStartEvent()
6270{
6271 if (mSyncStartEvent != 0) {
6272 mSyncStartEvent->cancel();
6273 }
6274 mSyncStartEvent.clear();
Eric Laurent29864602012-05-08 18:57:51 -07006275 mFramestoDrop = 0;
Eric Laurenta011e352012-03-29 15:51:43 -07006276}
6277
6278void AudioFlinger::RecordThread::syncStartEventCallback(const wp<SyncEvent>& event)
6279{
6280 sp<SyncEvent> strongEvent = event.promote();
6281
6282 if (strongEvent != 0) {
6283 RecordThread *me = (RecordThread *)strongEvent->cookie();
6284 me->handleSyncStartEvent(strongEvent);
6285 }
6286}
6287
6288void AudioFlinger::RecordThread::handleSyncStartEvent(const sp<SyncEvent>& event)
6289{
Eric Laurent29864602012-05-08 18:57:51 -07006290 if (event == mSyncStartEvent) {
Eric Laurenta011e352012-03-29 15:51:43 -07006291 // TODO: use actual buffer filling status instead of 2 buffers when info is available
6292 // from audio HAL
6293 mFramestoDrop = mFrameCount * 2;
Eric Laurenta011e352012-03-29 15:51:43 -07006294 }
6295}
6296
Glenn Kasten1d491ff2012-07-16 14:28:13 -07006297bool AudioFlinger::RecordThread::stop_l(RecordThread::RecordTrack* recordTrack) {
Steve Block3856b092011-10-20 11:56:00 +01006298 ALOGV("RecordThread::stop");
Glenn Kasten1d491ff2012-07-16 14:28:13 -07006299 if (recordTrack != mActiveTrack.get() || recordTrack->mState == TrackBase::PAUSING) {
6300 return false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006301 }
Glenn Kasten1d491ff2012-07-16 14:28:13 -07006302 recordTrack->mState = TrackBase::PAUSING;
6303 // do not wait for mStartStopCond if exiting
6304 if (exitPending()) {
6305 return true;
6306 }
6307 mStartStopCond.wait(mLock);
6308 // if we have been restarted, recordTrack == mActiveTrack.get() here
6309 if (exitPending() || recordTrack != mActiveTrack.get()) {
6310 ALOGV("Record stopped OK");
6311 return true;
6312 }
6313 return false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006314}
6315
Eric Laurenta011e352012-03-29 15:51:43 -07006316bool AudioFlinger::RecordThread::isValidSyncEvent(const sp<SyncEvent>& event)
6317{
6318 return false;
6319}
6320
6321status_t AudioFlinger::RecordThread::setSyncEvent(const sp<SyncEvent>& event)
6322{
6323 if (!isValidSyncEvent(event)) {
6324 return BAD_VALUE;
6325 }
6326
Glenn Kasten510a3d62012-07-16 14:24:34 -07006327 int eventSession = event->triggerSession();
6328 status_t ret = NAME_NOT_FOUND;
6329
Eric Laurenta011e352012-03-29 15:51:43 -07006330 Mutex::Autolock _l(mLock);
6331
Glenn Kasten510a3d62012-07-16 14:24:34 -07006332 for (size_t i = 0; i < mTracks.size(); i++) {
6333 sp<RecordTrack> track = mTracks[i];
6334 if (eventSession == track->sessionId()) {
6335 track->setSyncEvent(event);
6336 ret = NO_ERROR;
6337 }
Eric Laurenta011e352012-03-29 15:51:43 -07006338 }
Glenn Kasten510a3d62012-07-16 14:24:34 -07006339 return ret;
6340}
6341
6342void AudioFlinger::RecordThread::RecordTrack::destroy()
6343{
6344 // see comments at AudioFlinger::PlaybackThread::Track::destroy()
6345 sp<RecordTrack> keep(this);
6346 {
6347 sp<ThreadBase> thread = mThread.promote();
6348 if (thread != 0) {
6349 if (mState == ACTIVE || mState == RESUMING) {
6350 AudioSystem::stopInput(thread->id());
6351 }
6352 AudioSystem::releaseInput(thread->id());
6353 Mutex::Autolock _l(thread->mLock);
6354 RecordThread *recordThread = (RecordThread *) thread.get();
6355 recordThread->destroyTrack_l(this);
6356 }
6357 }
6358}
6359
6360// destroyTrack_l() must be called with ThreadBase::mLock held
6361void AudioFlinger::RecordThread::destroyTrack_l(const sp<RecordTrack>& track)
6362{
6363 track->mState = TrackBase::TERMINATED;
6364 // active tracks are removed by threadLoop()
6365 if (mActiveTrack != track) {
6366 removeTrack_l(track);
6367 }
6368}
6369
6370void AudioFlinger::RecordThread::removeTrack_l(const sp<RecordTrack>& track)
6371{
6372 mTracks.remove(track);
6373 // need anything related to effects here?
Eric Laurenta011e352012-03-29 15:51:43 -07006374}
6375
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07006376void AudioFlinger::RecordThread::dump(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006377{
Glenn Kasten510a3d62012-07-16 14:24:34 -07006378 dumpInternals(fd, args);
6379 dumpTracks(fd, args);
6380 dumpEffectChains(fd, args);
6381}
6382
6383void AudioFlinger::RecordThread::dumpInternals(int fd, const Vector<String16>& args)
6384{
Mathias Agopian65ab4712010-07-14 17:59:35 -07006385 const size_t SIZE = 256;
6386 char buffer[SIZE];
6387 String8 result;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006388
6389 snprintf(buffer, SIZE, "\nInput thread %p internals\n", this);
6390 result.append(buffer);
6391
6392 if (mActiveTrack != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006393 snprintf(buffer, SIZE, "In index: %d\n", mRsmpInIndex);
6394 result.append(buffer);
6395 snprintf(buffer, SIZE, "In size: %d\n", mInputBytes);
6396 result.append(buffer);
Glenn Kastene0feee32011-12-13 11:53:26 -08006397 snprintf(buffer, SIZE, "Resampling: %d\n", (mResampler != NULL));
Mathias Agopian65ab4712010-07-14 17:59:35 -07006398 result.append(buffer);
6399 snprintf(buffer, SIZE, "Out channel count: %d\n", mReqChannelCount);
6400 result.append(buffer);
6401 snprintf(buffer, SIZE, "Out sample rate: %d\n", mReqSampleRate);
6402 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006403 } else {
Glenn Kasten510a3d62012-07-16 14:24:34 -07006404 result.append("No active record client\n");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006405 }
Glenn Kasten510a3d62012-07-16 14:24:34 -07006406
Mathias Agopian65ab4712010-07-14 17:59:35 -07006407 write(fd, result.string(), result.size());
6408
6409 dumpBase(fd, args);
Glenn Kasten510a3d62012-07-16 14:24:34 -07006410}
6411
6412void AudioFlinger::RecordThread::dumpTracks(int fd, const Vector<String16>& args)
6413{
6414 const size_t SIZE = 256;
6415 char buffer[SIZE];
6416 String8 result;
6417
6418 snprintf(buffer, SIZE, "Input thread %p tracks\n", this);
6419 result.append(buffer);
6420 RecordTrack::appendDumpHeader(result);
6421 for (size_t i = 0; i < mTracks.size(); ++i) {
6422 sp<RecordTrack> track = mTracks[i];
6423 if (track != 0) {
6424 track->dump(buffer, SIZE);
6425 result.append(buffer);
6426 }
6427 }
6428
6429 if (mActiveTrack != 0) {
6430 snprintf(buffer, SIZE, "\nInput thread %p active tracks\n", this);
6431 result.append(buffer);
6432 RecordTrack::appendDumpHeader(result);
6433 mActiveTrack->dump(buffer, SIZE);
6434 result.append(buffer);
6435
6436 }
6437 write(fd, result.string(), result.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07006438}
6439
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08006440// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08006441status_t AudioFlinger::RecordThread::getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006442{
6443 size_t framesReq = buffer->frameCount;
6444 size_t framesReady = mFrameCount - mRsmpInIndex;
6445 int channelCount;
6446
6447 if (framesReady == 0) {
Dima Zavin799a70e2011-04-18 16:57:27 -07006448 mBytesRead = mInput->stream->read(mInput->stream, mRsmpInBuffer, mInputBytes);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006449 if (mBytesRead < 0) {
Steve Block29357bc2012-01-06 19:20:56 +00006450 ALOGE("RecordThread::getNextBuffer() Error reading audio input");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006451 if (mActiveTrack->mState == TrackBase::ACTIVE) {
6452 // Force input into standby so that it tries to
6453 // recover at next read attempt
Glenn Kastene4e2a372012-07-23 12:55:09 -07006454 inputStandBy();
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006455 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006456 }
Glenn Kastene0feee32011-12-13 11:53:26 -08006457 buffer->raw = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006458 buffer->frameCount = 0;
6459 return NOT_ENOUGH_DATA;
6460 }
6461 mRsmpInIndex = 0;
6462 framesReady = mFrameCount;
6463 }
6464
6465 if (framesReq > framesReady) {
6466 framesReq = framesReady;
6467 }
6468
6469 if (mChannelCount == 1 && mReqChannelCount == 2) {
6470 channelCount = 1;
6471 } else {
6472 channelCount = 2;
6473 }
6474 buffer->raw = mRsmpInBuffer + mRsmpInIndex * channelCount;
6475 buffer->frameCount = framesReq;
6476 return NO_ERROR;
6477}
6478
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08006479// AudioBufferProvider interface
Mathias Agopian65ab4712010-07-14 17:59:35 -07006480void AudioFlinger::RecordThread::releaseBuffer(AudioBufferProvider::Buffer* buffer)
6481{
6482 mRsmpInIndex += buffer->frameCount;
6483 buffer->frameCount = 0;
6484}
6485
6486bool AudioFlinger::RecordThread::checkForNewParameters_l()
6487{
6488 bool reconfig = false;
6489
6490 while (!mNewParameters.isEmpty()) {
6491 status_t status = NO_ERROR;
6492 String8 keyValuePair = mNewParameters[0];
6493 AudioParameter param = AudioParameter(keyValuePair);
6494 int value;
Glenn Kasten58f30212012-01-12 12:27:51 -08006495 audio_format_t reqFormat = mFormat;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006496 int reqSamplingRate = mReqSampleRate;
6497 int reqChannelCount = mReqChannelCount;
6498
6499 if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
6500 reqSamplingRate = value;
6501 reconfig = true;
6502 }
6503 if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
Glenn Kasten58f30212012-01-12 12:27:51 -08006504 reqFormat = (audio_format_t) value;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006505 reconfig = true;
6506 }
6507 if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
Dima Zavinfce7a472011-04-19 22:30:36 -07006508 reqChannelCount = popcount(value);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006509 reconfig = true;
6510 }
6511 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
6512 // do not accept frame count changes if tracks are open as the track buffer
Glenn Kasten99e53b82012-01-19 08:59:58 -08006513 // size depends on frame count and correct behavior would not be guaranteed
Mathias Agopian65ab4712010-07-14 17:59:35 -07006514 // if frame count is changed after track creation
6515 if (mActiveTrack != 0) {
6516 status = INVALID_OPERATION;
6517 } else {
6518 reconfig = true;
6519 }
6520 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006521 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
6522 // forward device change to effects that have requested to be
6523 // aware of attached audio device.
6524 for (size_t i = 0; i < mEffectChains.size(); i++) {
6525 mEffectChains[i]->setDevice_l(value);
6526 }
6527 // store input device and output device but do not forward output device to audio HAL.
6528 // Note that status is ignored by the caller for output device
6529 // (see AudioFlinger::setParameters()
Glenn Kasten5ad92f62012-07-19 10:02:15 -07006530 audio_devices_t newDevice = mDevice;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006531 if (value & AUDIO_DEVICE_OUT_ALL) {
Glenn Kasten5ad92f62012-07-19 10:02:15 -07006532 newDevice &= ~(value & AUDIO_DEVICE_OUT_ALL);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006533 status = BAD_VALUE;
6534 } else {
Glenn Kasten5ad92f62012-07-19 10:02:15 -07006535 newDevice &= ~(value & AUDIO_DEVICE_IN_ALL);
Eric Laurent59bd0da2011-08-01 09:52:20 -07006536 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
Glenn Kasten510a3d62012-07-16 14:24:34 -07006537 if (mTracks.size() > 0) {
Eric Laurent59bd0da2011-08-01 09:52:20 -07006538 bool suspend = audio_is_bluetooth_sco_device(
Eric Laurentbee53372011-08-29 12:42:48 -07006539 (audio_devices_t)value) && mAudioFlinger->btNrecIsOff();
Glenn Kasten510a3d62012-07-16 14:24:34 -07006540 for (size_t i = 0; i < mTracks.size(); i++) {
6541 sp<RecordTrack> track = mTracks[i];
6542 setEffectSuspended_l(FX_IID_AEC, suspend, track->sessionId());
6543 setEffectSuspended_l(FX_IID_NS, suspend, track->sessionId());
6544 }
Eric Laurent59bd0da2011-08-01 09:52:20 -07006545 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006546 }
Glenn Kasten01542f22012-07-02 12:46:15 -07006547 newDevice |= value;
Glenn Kasten5ad92f62012-07-19 10:02:15 -07006548 mDevice = newDevice; // since mDevice is read by other threads, only write to it once
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006549 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006550 if (status == NO_ERROR) {
Dima Zavin799a70e2011-04-18 16:57:27 -07006551 status = mInput->stream->common.set_parameters(&mInput->stream->common, keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07006552 if (status == INVALID_OPERATION) {
Glenn Kastene4e2a372012-07-23 12:55:09 -07006553 inputStandBy();
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006554 status = mInput->stream->common.set_parameters(&mInput->stream->common,
6555 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07006556 }
6557 if (reconfig) {
6558 if (status == BAD_VALUE &&
Dima Zavin799a70e2011-04-18 16:57:27 -07006559 reqFormat == mInput->stream->common.get_format(&mInput->stream->common) &&
Dima Zavinfce7a472011-04-19 22:30:36 -07006560 reqFormat == AUDIO_FORMAT_PCM_16_BIT &&
Dima Zavin799a70e2011-04-18 16:57:27 -07006561 ((int)mInput->stream->common.get_sample_rate(&mInput->stream->common) <= (2 * reqSamplingRate)) &&
Glenn Kasten53d76db2012-03-08 12:32:47 -08006562 popcount(mInput->stream->common.get_channels(&mInput->stream->common)) <= FCC_2 &&
6563 (reqChannelCount <= FCC_2)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006564 status = NO_ERROR;
6565 }
6566 if (status == NO_ERROR) {
6567 readInputParameters();
6568 sendConfigEvent_l(AudioSystem::INPUT_CONFIG_CHANGED);
6569 }
6570 }
6571 }
6572
6573 mNewParameters.removeAt(0);
6574
6575 mParamStatus = status;
6576 mParamCond.signal();
Eric Laurent60cd0a02011-09-13 11:40:21 -07006577 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
6578 // already timed out waiting for the status and will never signal the condition.
Glenn Kasten7dede872011-12-13 11:04:14 -08006579 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006580 }
6581 return reconfig;
6582}
6583
6584String8 AudioFlinger::RecordThread::getParameters(const String8& keys)
6585{
Dima Zavinfce7a472011-04-19 22:30:36 -07006586 char *s;
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006587 String8 out_s8 = String8();
6588
6589 Mutex::Autolock _l(mLock);
6590 if (initCheck() != NO_ERROR) {
6591 return out_s8;
6592 }
Dima Zavinfce7a472011-04-19 22:30:36 -07006593
Dima Zavin799a70e2011-04-18 16:57:27 -07006594 s = mInput->stream->common.get_parameters(&mInput->stream->common, keys.string());
Dima Zavinfce7a472011-04-19 22:30:36 -07006595 out_s8 = String8(s);
6596 free(s);
6597 return out_s8;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006598}
6599
6600void AudioFlinger::RecordThread::audioConfigChanged_l(int event, int param) {
6601 AudioSystem::OutputDescriptor desc;
Glenn Kastena0d68332012-01-27 16:47:15 -08006602 void *param2 = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006603
6604 switch (event) {
6605 case AudioSystem::INPUT_OPENED:
6606 case AudioSystem::INPUT_CONFIG_CHANGED:
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07006607 desc.channels = mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006608 desc.samplingRate = mSampleRate;
6609 desc.format = mFormat;
6610 desc.frameCount = mFrameCount;
6611 desc.latency = 0;
6612 param2 = &desc;
6613 break;
6614
6615 case AudioSystem::INPUT_CLOSED:
6616 default:
6617 break;
6618 }
6619 mAudioFlinger->audioConfigChanged_l(event, mId, param2);
6620}
6621
6622void AudioFlinger::RecordThread::readInputParameters()
6623{
Glenn Kastene9dd0172012-01-27 18:08:45 -08006624 delete mRsmpInBuffer;
6625 // mRsmpInBuffer is always assigned a new[] below
6626 delete mRsmpOutBuffer;
6627 mRsmpOutBuffer = NULL;
6628 delete mResampler;
Glenn Kastene0feee32011-12-13 11:53:26 -08006629 mResampler = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006630
Dima Zavin799a70e2011-04-18 16:57:27 -07006631 mSampleRate = mInput->stream->common.get_sample_rate(&mInput->stream->common);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07006632 mChannelMask = mInput->stream->common.get_channels(&mInput->stream->common);
6633 mChannelCount = (uint16_t)popcount(mChannelMask);
Dima Zavin799a70e2011-04-18 16:57:27 -07006634 mFormat = mInput->stream->common.get_format(&mInput->stream->common);
Glenn Kastenb9980652012-01-11 09:48:27 -08006635 mFrameSize = audio_stream_frame_size(&mInput->stream->common);
Dima Zavin799a70e2011-04-18 16:57:27 -07006636 mInputBytes = mInput->stream->common.get_buffer_size(&mInput->stream->common);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006637 mFrameCount = mInputBytes / mFrameSize;
Glenn Kasten58912562012-04-03 10:45:00 -07006638 mNormalFrameCount = mFrameCount; // not used by record, but used by input effects
Mathias Agopian65ab4712010-07-14 17:59:35 -07006639 mRsmpInBuffer = new int16_t[mFrameCount * mChannelCount];
6640
Glenn Kasten53d76db2012-03-08 12:32:47 -08006641 if (mSampleRate != mReqSampleRate && mChannelCount <= FCC_2 && mReqChannelCount <= FCC_2)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006642 {
6643 int channelCount;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006644 // optimization: if mono to mono, use the resampler in stereo to stereo mode to avoid
6645 // stereo to mono post process as the resampler always outputs stereo.
Mathias Agopian65ab4712010-07-14 17:59:35 -07006646 if (mChannelCount == 1 && mReqChannelCount == 2) {
6647 channelCount = 1;
6648 } else {
6649 channelCount = 2;
6650 }
6651 mResampler = AudioResampler::create(16, channelCount, mReqSampleRate);
6652 mResampler->setSampleRate(mSampleRate);
6653 mResampler->setVolume(AudioMixer::UNITY_GAIN, AudioMixer::UNITY_GAIN);
6654 mRsmpOutBuffer = new int32_t[mFrameCount * 2];
6655
6656 // optmization: if mono to mono, alter input frame count as if we were inputing stereo samples
6657 if (mChannelCount == 1 && mReqChannelCount == 1) {
6658 mFrameCount >>= 1;
6659 }
6660
6661 }
6662 mRsmpInIndex = mFrameCount;
6663}
6664
6665unsigned int AudioFlinger::RecordThread::getInputFramesLost()
6666{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006667 Mutex::Autolock _l(mLock);
6668 if (initCheck() != NO_ERROR) {
6669 return 0;
6670 }
6671
Dima Zavin799a70e2011-04-18 16:57:27 -07006672 return mInput->stream->get_input_frames_lost(mInput->stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006673}
6674
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006675uint32_t AudioFlinger::RecordThread::hasAudioSession(int sessionId)
6676{
6677 Mutex::Autolock _l(mLock);
6678 uint32_t result = 0;
6679 if (getEffectChain_l(sessionId) != 0) {
6680 result = EFFECT_SESSION;
6681 }
6682
Glenn Kasten510a3d62012-07-16 14:24:34 -07006683 for (size_t i = 0; i < mTracks.size(); ++i) {
6684 if (sessionId == mTracks[i]->sessionId()) {
6685 result |= TRACK_SESSION;
6686 break;
6687 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006688 }
6689
6690 return result;
6691}
6692
Glenn Kasten510a3d62012-07-16 14:24:34 -07006693KeyedVector<int, bool> AudioFlinger::RecordThread::sessionIds()
Eric Laurent59bd0da2011-08-01 09:52:20 -07006694{
Glenn Kasten510a3d62012-07-16 14:24:34 -07006695 KeyedVector<int, bool> ids;
Eric Laurent59bd0da2011-08-01 09:52:20 -07006696 Mutex::Autolock _l(mLock);
Glenn Kasten510a3d62012-07-16 14:24:34 -07006697 for (size_t j = 0; j < mTracks.size(); ++j) {
6698 sp<RecordThread::RecordTrack> track = mTracks[j];
6699 int sessionId = track->sessionId();
6700 if (ids.indexOfKey(sessionId) < 0) {
6701 ids.add(sessionId, true);
6702 }
6703 }
6704 return ids;
Eric Laurent59bd0da2011-08-01 09:52:20 -07006705}
6706
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006707AudioFlinger::AudioStreamIn* AudioFlinger::RecordThread::clearInput()
6708{
6709 Mutex::Autolock _l(mLock);
6710 AudioStreamIn *input = mInput;
6711 mInput = NULL;
6712 return input;
6713}
6714
6715// this method must always be called either with ThreadBase mLock held or inside the thread loop
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08006716audio_stream_t* AudioFlinger::RecordThread::stream() const
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006717{
6718 if (mInput == NULL) {
6719 return NULL;
6720 }
6721 return &mInput->stream->common;
6722}
6723
6724
Mathias Agopian65ab4712010-07-14 17:59:35 -07006725// ----------------------------------------------------------------------------
6726
Eric Laurenta4c5a552012-03-29 10:12:40 -07006727audio_module_handle_t AudioFlinger::loadHwModule(const char *name)
6728{
6729 if (!settingsAllowed()) {
6730 return 0;
6731 }
6732 Mutex::Autolock _l(mLock);
6733 return loadHwModule_l(name);
6734}
6735
6736// loadHwModule_l() must be called with AudioFlinger::mLock held
6737audio_module_handle_t AudioFlinger::loadHwModule_l(const char *name)
6738{
6739 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
6740 if (strncmp(mAudioHwDevs.valueAt(i)->moduleName(), name, strlen(name)) == 0) {
6741 ALOGW("loadHwModule() module %s already loaded", name);
6742 return mAudioHwDevs.keyAt(i);
6743 }
6744 }
6745
Eric Laurenta4c5a552012-03-29 10:12:40 -07006746 audio_hw_device_t *dev;
6747
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006748 int rc = load_audio_interface(name, &dev);
Eric Laurenta4c5a552012-03-29 10:12:40 -07006749 if (rc) {
6750 ALOGI("loadHwModule() error %d loading module %s ", rc, name);
6751 return 0;
6752 }
6753
6754 mHardwareStatus = AUDIO_HW_INIT;
6755 rc = dev->init_check(dev);
6756 mHardwareStatus = AUDIO_HW_IDLE;
6757 if (rc) {
6758 ALOGI("loadHwModule() init check error %d for module %s ", rc, name);
6759 return 0;
6760 }
6761
6762 if ((mMasterVolumeSupportLvl != MVS_NONE) &&
6763 (NULL != dev->set_master_volume)) {
6764 AutoMutex lock(mHardwareLock);
6765 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
6766 dev->set_master_volume(dev, mMasterVolume);
6767 mHardwareStatus = AUDIO_HW_IDLE;
6768 }
6769
6770 audio_module_handle_t handle = nextUniqueId();
6771 mAudioHwDevs.add(handle, new AudioHwDevice(name, dev));
6772
6773 ALOGI("loadHwModule() Loaded %s audio interface from %s (%s) handle %d",
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006774 name, dev->common.module->name, dev->common.module->id, handle);
Eric Laurenta4c5a552012-03-29 10:12:40 -07006775
6776 return handle;
6777
6778}
6779
6780audio_io_handle_t AudioFlinger::openOutput(audio_module_handle_t module,
6781 audio_devices_t *pDevices,
6782 uint32_t *pSamplingRate,
6783 audio_format_t *pFormat,
6784 audio_channel_mask_t *pChannelMask,
6785 uint32_t *pLatencyMs,
Eric Laurent0ca3cf92012-04-18 09:24:29 -07006786 audio_output_flags_t flags)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006787{
6788 status_t status;
6789 PlaybackThread *thread = NULL;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006790 struct audio_config config = {
6791 sample_rate: pSamplingRate ? *pSamplingRate : 0,
6792 channel_mask: pChannelMask ? *pChannelMask : 0,
6793 format: pFormat ? *pFormat : AUDIO_FORMAT_DEFAULT,
6794 };
6795 audio_stream_out_t *outStream = NULL;
Dima Zavin799a70e2011-04-18 16:57:27 -07006796 audio_hw_device_t *outHwDev;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006797
Eric Laurenta4c5a552012-03-29 10:12:40 -07006798 ALOGV("openOutput(), module %d Device %x, SamplingRate %d, Format %d, Channels %x, flags %x",
6799 module,
Glenn Kastenbb4350d2012-07-03 15:56:38 -07006800 (pDevices != NULL) ? *pDevices : 0,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006801 config.sample_rate,
6802 config.format,
6803 config.channel_mask,
Eric Laurenta4c5a552012-03-29 10:12:40 -07006804 flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006805
6806 if (pDevices == NULL || *pDevices == 0) {
6807 return 0;
6808 }
Dima Zavin799a70e2011-04-18 16:57:27 -07006809
Mathias Agopian65ab4712010-07-14 17:59:35 -07006810 Mutex::Autolock _l(mLock);
6811
Eric Laurenta4c5a552012-03-29 10:12:40 -07006812 outHwDev = findSuitableHwDev_l(module, *pDevices);
Dima Zavin799a70e2011-04-18 16:57:27 -07006813 if (outHwDev == NULL)
6814 return 0;
6815
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006816 audio_io_handle_t id = nextUniqueId();
6817
Glenn Kasten8abf44d2012-02-02 14:16:03 -08006818 mHardwareStatus = AUDIO_HW_OUTPUT_OPEN;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006819
6820 status = outHwDev->open_output_stream(outHwDev,
6821 id,
6822 *pDevices,
6823 (audio_output_flags_t)flags,
6824 &config,
6825 &outStream);
6826
Glenn Kasten8abf44d2012-02-02 14:16:03 -08006827 mHardwareStatus = AUDIO_HW_IDLE;
Steve Block3856b092011-10-20 11:56:00 +01006828 ALOGV("openOutput() openOutputStream returned output %p, SamplingRate %d, Format %d, Channels %x, status %d",
Dima Zavin799a70e2011-04-18 16:57:27 -07006829 outStream,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006830 config.sample_rate,
6831 config.format,
6832 config.channel_mask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07006833 status);
6834
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006835 if (status == NO_ERROR && outStream != NULL) {
Dima Zavin799a70e2011-04-18 16:57:27 -07006836 AudioStreamOut *output = new AudioStreamOut(outHwDev, outStream);
Dima Zavin799a70e2011-04-18 16:57:27 -07006837
Eric Laurent0ca3cf92012-04-18 09:24:29 -07006838 if ((flags & AUDIO_OUTPUT_FLAG_DIRECT) ||
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006839 (config.format != AUDIO_FORMAT_PCM_16_BIT) ||
6840 (config.channel_mask != AUDIO_CHANNEL_OUT_STEREO)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006841 thread = new DirectOutputThread(this, output, id, *pDevices);
Steve Block3856b092011-10-20 11:56:00 +01006842 ALOGV("openOutput() created direct output: ID %d thread %p", id, thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006843 } else {
6844 thread = new MixerThread(this, output, id, *pDevices);
Steve Block3856b092011-10-20 11:56:00 +01006845 ALOGV("openOutput() created mixer output: ID %d thread %p", id, thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006846 }
6847 mPlaybackThreads.add(id, thread);
6848
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006849 if (pSamplingRate != NULL) *pSamplingRate = config.sample_rate;
6850 if (pFormat != NULL) *pFormat = config.format;
6851 if (pChannelMask != NULL) *pChannelMask = config.channel_mask;
Glenn Kastena0d68332012-01-27 16:47:15 -08006852 if (pLatencyMs != NULL) *pLatencyMs = thread->latency();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006853
6854 // notify client processes of the new output creation
6855 thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
Eric Laurenta4c5a552012-03-29 10:12:40 -07006856
6857 // the first primary output opened designates the primary hw device
Eric Laurent0ca3cf92012-04-18 09:24:29 -07006858 if ((mPrimaryHardwareDev == NULL) && (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
Eric Laurenta4c5a552012-03-29 10:12:40 -07006859 ALOGI("Using module %d has the primary audio interface", module);
6860 mPrimaryHardwareDev = outHwDev;
6861
6862 AutoMutex lock(mHardwareLock);
6863 mHardwareStatus = AUDIO_HW_SET_MODE;
6864 outHwDev->set_mode(outHwDev, mMode);
6865
6866 // Determine the level of master volume support the primary audio HAL has,
6867 // and set the initial master volume at the same time.
6868 float initialVolume = 1.0;
6869 mMasterVolumeSupportLvl = MVS_NONE;
6870
6871 mHardwareStatus = AUDIO_HW_GET_MASTER_VOLUME;
6872 if ((NULL != outHwDev->get_master_volume) &&
6873 (NO_ERROR == outHwDev->get_master_volume(outHwDev, &initialVolume))) {
6874 mMasterVolumeSupportLvl = MVS_FULL;
6875 } else {
6876 mMasterVolumeSupportLvl = MVS_SETONLY;
6877 initialVolume = 1.0;
6878 }
6879
6880 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
6881 if ((NULL == outHwDev->set_master_volume) ||
6882 (NO_ERROR != outHwDev->set_master_volume(outHwDev, initialVolume))) {
6883 mMasterVolumeSupportLvl = MVS_NONE;
6884 }
6885 // now that we have a primary device, initialize master volume on other devices
6886 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
6887 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
6888
6889 if ((dev != mPrimaryHardwareDev) &&
6890 (NULL != dev->set_master_volume)) {
6891 dev->set_master_volume(dev, initialVolume);
6892 }
6893 }
6894 mHardwareStatus = AUDIO_HW_IDLE;
6895 mMasterVolumeSW = (MVS_NONE == mMasterVolumeSupportLvl)
6896 ? initialVolume
6897 : 1.0;
6898 mMasterVolume = initialVolume;
6899 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006900 return id;
6901 }
6902
6903 return 0;
6904}
6905
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006906audio_io_handle_t AudioFlinger::openDuplicateOutput(audio_io_handle_t output1,
6907 audio_io_handle_t output2)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006908{
6909 Mutex::Autolock _l(mLock);
6910 MixerThread *thread1 = checkMixerThread_l(output1);
6911 MixerThread *thread2 = checkMixerThread_l(output2);
6912
6913 if (thread1 == NULL || thread2 == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006914 ALOGW("openDuplicateOutput() wrong output mixer type for output %d or %d", output1, output2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006915 return 0;
6916 }
6917
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006918 audio_io_handle_t id = nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006919 DuplicatingThread *thread = new DuplicatingThread(this, thread1, id);
6920 thread->addOutputTrack(thread2);
6921 mPlaybackThreads.add(id, thread);
6922 // notify client processes of the new output creation
6923 thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
6924 return id;
6925}
6926
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006927status_t AudioFlinger::closeOutput(audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006928{
Glenn Kastend96c5722012-04-25 13:44:49 -07006929 return closeOutput_nonvirtual(output);
6930}
6931
6932status_t AudioFlinger::closeOutput_nonvirtual(audio_io_handle_t output)
6933{
Mathias Agopian65ab4712010-07-14 17:59:35 -07006934 // keep strong reference on the playback thread so that
6935 // it is not destroyed while exit() is executed
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006936 sp<PlaybackThread> thread;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006937 {
6938 Mutex::Autolock _l(mLock);
6939 thread = checkPlaybackThread_l(output);
6940 if (thread == NULL) {
6941 return BAD_VALUE;
6942 }
6943
Steve Block3856b092011-10-20 11:56:00 +01006944 ALOGV("closeOutput() %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006945
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006946 if (thread->type() == ThreadBase::MIXER) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006947 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006948 if (mPlaybackThreads.valueAt(i)->type() == ThreadBase::DUPLICATING) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006949 DuplicatingThread *dupThread = (DuplicatingThread *)mPlaybackThreads.valueAt(i).get();
6950 dupThread->removeOutputTrack((MixerThread *)thread.get());
6951 }
6952 }
6953 }
Glenn Kastena1117922012-01-26 10:53:32 -08006954 audioConfigChanged_l(AudioSystem::OUTPUT_CLOSED, output, NULL);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006955 mPlaybackThreads.removeItem(output);
6956 }
6957 thread->exit();
Glenn Kastenb28686f2012-01-06 08:39:38 -08006958 // The thread entity (active unit of execution) is no longer running here,
6959 // but the ThreadBase container still exists.
Mathias Agopian65ab4712010-07-14 17:59:35 -07006960
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006961 if (thread->type() != ThreadBase::DUPLICATING) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006962 AudioStreamOut *out = thread->clearOutput();
Glenn Kasten5798d4e2012-03-08 12:18:35 -08006963 ALOG_ASSERT(out != NULL, "out shouldn't be NULL");
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006964 // from now on thread->mOutput is NULL
Dima Zavin799a70e2011-04-18 16:57:27 -07006965 out->hwDev->close_output_stream(out->hwDev, out->stream);
6966 delete out;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006967 }
6968 return NO_ERROR;
6969}
6970
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006971status_t AudioFlinger::suspendOutput(audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006972{
6973 Mutex::Autolock _l(mLock);
6974 PlaybackThread *thread = checkPlaybackThread_l(output);
6975
6976 if (thread == NULL) {
6977 return BAD_VALUE;
6978 }
6979
Steve Block3856b092011-10-20 11:56:00 +01006980 ALOGV("suspendOutput() %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006981 thread->suspend();
6982
6983 return NO_ERROR;
6984}
6985
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006986status_t AudioFlinger::restoreOutput(audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006987{
6988 Mutex::Autolock _l(mLock);
6989 PlaybackThread *thread = checkPlaybackThread_l(output);
6990
6991 if (thread == NULL) {
6992 return BAD_VALUE;
6993 }
6994
Steve Block3856b092011-10-20 11:56:00 +01006995 ALOGV("restoreOutput() %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006996
6997 thread->restore();
6998
6999 return NO_ERROR;
7000}
7001
Eric Laurenta4c5a552012-03-29 10:12:40 -07007002audio_io_handle_t AudioFlinger::openInput(audio_module_handle_t module,
7003 audio_devices_t *pDevices,
7004 uint32_t *pSamplingRate,
7005 audio_format_t *pFormat,
Glenn Kasten254af182012-07-03 14:59:05 -07007006 audio_channel_mask_t *pChannelMask)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007007{
7008 status_t status;
7009 RecordThread *thread = NULL;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007010 struct audio_config config = {
7011 sample_rate: pSamplingRate ? *pSamplingRate : 0,
7012 channel_mask: pChannelMask ? *pChannelMask : 0,
7013 format: pFormat ? *pFormat : AUDIO_FORMAT_DEFAULT,
7014 };
7015 uint32_t reqSamplingRate = config.sample_rate;
7016 audio_format_t reqFormat = config.format;
7017 audio_channel_mask_t reqChannels = config.channel_mask;
7018 audio_stream_in_t *inStream = NULL;
Dima Zavin799a70e2011-04-18 16:57:27 -07007019 audio_hw_device_t *inHwDev;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007020
7021 if (pDevices == NULL || *pDevices == 0) {
7022 return 0;
7023 }
Dima Zavin799a70e2011-04-18 16:57:27 -07007024
Mathias Agopian65ab4712010-07-14 17:59:35 -07007025 Mutex::Autolock _l(mLock);
7026
Eric Laurenta4c5a552012-03-29 10:12:40 -07007027 inHwDev = findSuitableHwDev_l(module, *pDevices);
Dima Zavin799a70e2011-04-18 16:57:27 -07007028 if (inHwDev == NULL)
7029 return 0;
7030
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007031 audio_io_handle_t id = nextUniqueId();
7032
7033 status = inHwDev->open_input_stream(inHwDev, id, *pDevices, &config,
Dima Zavin799a70e2011-04-18 16:57:27 -07007034 &inStream);
Eric Laurenta4c5a552012-03-29 10:12:40 -07007035 ALOGV("openInput() openInputStream returned input %p, SamplingRate %d, Format %d, Channels %x, status %d",
Dima Zavin799a70e2011-04-18 16:57:27 -07007036 inStream,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007037 config.sample_rate,
7038 config.format,
7039 config.channel_mask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07007040 status);
7041
7042 // If the input could not be opened with the requested parameters and we can handle the conversion internally,
7043 // try to open again with the proposed parameters. The AudioFlinger can resample the input and do mono to stereo
7044 // or stereo to mono conversions on 16 bit PCM inputs.
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007045 if (status == BAD_VALUE &&
7046 reqFormat == config.format && config.format == AUDIO_FORMAT_PCM_16_BIT &&
7047 (config.sample_rate <= 2 * reqSamplingRate) &&
7048 (popcount(config.channel_mask) <= FCC_2) && (popcount(reqChannels) <= FCC_2)) {
Glenn Kasten254af182012-07-03 14:59:05 -07007049 ALOGV("openInput() reopening with proposed sampling rate and channel mask");
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007050 inStream = NULL;
7051 status = inHwDev->open_input_stream(inHwDev, id, *pDevices, &config, &inStream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007052 }
7053
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007054 if (status == NO_ERROR && inStream != NULL) {
Dima Zavin799a70e2011-04-18 16:57:27 -07007055 AudioStreamIn *input = new AudioStreamIn(inHwDev, inStream);
7056
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007057 // Start record thread
7058 // RecorThread require both input and output device indication to forward to audio
7059 // pre processing modules
Glenn Kastenbb4350d2012-07-03 15:56:38 -07007060 audio_devices_t device = (*pDevices) | primaryOutputDevice_l();
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007061 thread = new RecordThread(this,
7062 input,
7063 reqSamplingRate,
7064 reqChannels,
7065 id,
7066 device);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007067 mRecordThreads.add(id, thread);
Steve Block3856b092011-10-20 11:56:00 +01007068 ALOGV("openInput() created record thread: ID %d thread %p", id, thread);
Glenn Kastena0d68332012-01-27 16:47:15 -08007069 if (pSamplingRate != NULL) *pSamplingRate = reqSamplingRate;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007070 if (pFormat != NULL) *pFormat = config.format;
Eric Laurenta4c5a552012-03-29 10:12:40 -07007071 if (pChannelMask != NULL) *pChannelMask = reqChannels;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007072
Mathias Agopian65ab4712010-07-14 17:59:35 -07007073 // notify client processes of the new input creation
7074 thread->audioConfigChanged_l(AudioSystem::INPUT_OPENED);
7075 return id;
7076 }
7077
7078 return 0;
7079}
7080
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007081status_t AudioFlinger::closeInput(audio_io_handle_t input)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007082{
Glenn Kastend96c5722012-04-25 13:44:49 -07007083 return closeInput_nonvirtual(input);
7084}
7085
7086status_t AudioFlinger::closeInput_nonvirtual(audio_io_handle_t input)
7087{
Mathias Agopian65ab4712010-07-14 17:59:35 -07007088 // keep strong reference on the record thread so that
7089 // it is not destroyed while exit() is executed
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007090 sp<RecordThread> thread;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007091 {
7092 Mutex::Autolock _l(mLock);
7093 thread = checkRecordThread_l(input);
Glenn Kastend5903ec2012-03-18 10:33:27 -07007094 if (thread == 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007095 return BAD_VALUE;
7096 }
7097
Steve Block3856b092011-10-20 11:56:00 +01007098 ALOGV("closeInput() %d", input);
Glenn Kastena1117922012-01-26 10:53:32 -08007099 audioConfigChanged_l(AudioSystem::INPUT_CLOSED, input, NULL);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007100 mRecordThreads.removeItem(input);
7101 }
7102 thread->exit();
Glenn Kastenb28686f2012-01-06 08:39:38 -08007103 // The thread entity (active unit of execution) is no longer running here,
7104 // but the ThreadBase container still exists.
Mathias Agopian65ab4712010-07-14 17:59:35 -07007105
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007106 AudioStreamIn *in = thread->clearInput();
Glenn Kasten5798d4e2012-03-08 12:18:35 -08007107 ALOG_ASSERT(in != NULL, "in shouldn't be NULL");
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007108 // from now on thread->mInput is NULL
Dima Zavin799a70e2011-04-18 16:57:27 -07007109 in->hwDev->close_input_stream(in->hwDev, in->stream);
7110 delete in;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007111
7112 return NO_ERROR;
7113}
7114
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007115status_t AudioFlinger::setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007116{
7117 Mutex::Autolock _l(mLock);
Steve Block3856b092011-10-20 11:56:00 +01007118 ALOGV("setStreamOutput() stream %d to output %d", stream, output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007119
7120 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
7121 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
Eric Laurent22167852012-06-20 12:26:32 -07007122 thread->invalidateTracks(stream);
Eric Laurentde070132010-07-13 04:45:46 -07007123 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007124
7125 return NO_ERROR;
7126}
7127
7128
7129int AudioFlinger::newAudioSessionId()
7130{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007131 return nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007132}
7133
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007134void AudioFlinger::acquireAudioSessionId(int audioSession)
7135{
7136 Mutex::Autolock _l(mLock);
Glenn Kastenbb001922012-02-03 11:10:26 -08007137 pid_t caller = IPCThreadState::self()->getCallingPid();
Steve Block3856b092011-10-20 11:56:00 +01007138 ALOGV("acquiring %d from %d", audioSession, caller);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08007139 size_t num = mAudioSessionRefs.size();
7140 for (size_t i = 0; i< num; i++) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007141 AudioSessionRef *ref = mAudioSessionRefs.editItemAt(i);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08007142 if (ref->mSessionid == audioSession && ref->mPid == caller) {
7143 ref->mCnt++;
7144 ALOGV(" incremented refcount to %d", ref->mCnt);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007145 return;
7146 }
7147 }
Glenn Kasten84afa3b2012-01-25 15:28:08 -08007148 mAudioSessionRefs.push(new AudioSessionRef(audioSession, caller));
7149 ALOGV(" added new entry for %d", audioSession);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007150}
7151
7152void AudioFlinger::releaseAudioSessionId(int audioSession)
7153{
7154 Mutex::Autolock _l(mLock);
Glenn Kastenbb001922012-02-03 11:10:26 -08007155 pid_t caller = IPCThreadState::self()->getCallingPid();
Steve Block3856b092011-10-20 11:56:00 +01007156 ALOGV("releasing %d from %d", audioSession, caller);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08007157 size_t num = mAudioSessionRefs.size();
7158 for (size_t i = 0; i< num; i++) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007159 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08007160 if (ref->mSessionid == audioSession && ref->mPid == caller) {
7161 ref->mCnt--;
7162 ALOGV(" decremented refcount to %d", ref->mCnt);
7163 if (ref->mCnt == 0) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007164 mAudioSessionRefs.removeAt(i);
7165 delete ref;
7166 purgeStaleEffects_l();
7167 }
7168 return;
7169 }
7170 }
Steve Block5ff1dd52012-01-05 23:22:43 +00007171 ALOGW("session id %d not found for pid %d", audioSession, caller);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007172}
7173
7174void AudioFlinger::purgeStaleEffects_l() {
7175
Steve Block3856b092011-10-20 11:56:00 +01007176 ALOGV("purging stale effects");
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007177
7178 Vector< sp<EffectChain> > chains;
7179
7180 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
7181 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
7182 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
7183 sp<EffectChain> ec = t->mEffectChains[j];
Marco Nelissen0270b182011-08-12 14:14:39 -07007184 if (ec->sessionId() > AUDIO_SESSION_OUTPUT_MIX) {
7185 chains.push(ec);
7186 }
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007187 }
7188 }
7189 for (size_t i = 0; i < mRecordThreads.size(); i++) {
7190 sp<RecordThread> t = mRecordThreads.valueAt(i);
7191 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
7192 sp<EffectChain> ec = t->mEffectChains[j];
7193 chains.push(ec);
7194 }
7195 }
7196
7197 for (size_t i = 0; i < chains.size(); i++) {
7198 sp<EffectChain> ec = chains[i];
7199 int sessionid = ec->sessionId();
7200 sp<ThreadBase> t = ec->mThread.promote();
7201 if (t == 0) {
7202 continue;
7203 }
7204 size_t numsessionrefs = mAudioSessionRefs.size();
7205 bool found = false;
7206 for (size_t k = 0; k < numsessionrefs; k++) {
7207 AudioSessionRef *ref = mAudioSessionRefs.itemAt(k);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08007208 if (ref->mSessionid == sessionid) {
Steve Block3856b092011-10-20 11:56:00 +01007209 ALOGV(" session %d still exists for %d with %d refs",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007210 sessionid, ref->mPid, ref->mCnt);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007211 found = true;
7212 break;
7213 }
7214 }
7215 if (!found) {
Eric Laurenta5f44eb2012-06-25 11:38:29 -07007216 Mutex::Autolock _l (t->mLock);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007217 // remove all effects from the chain
7218 while (ec->mEffects.size()) {
7219 sp<EffectModule> effect = ec->mEffects[0];
7220 effect->unPin();
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007221 t->removeEffect_l(effect);
Eric Laurenta5f44eb2012-06-25 11:38:29 -07007222 if (effect->purgeHandles()) {
7223 t->checkSuspendOnEffectEnabled_l(effect, false, effect->sessionId());
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007224 }
7225 AudioSystem::unregisterEffect(effect->id());
7226 }
7227 }
7228 }
7229 return;
7230}
7231
Mathias Agopian65ab4712010-07-14 17:59:35 -07007232// checkPlaybackThread_l() must be called with AudioFlinger::mLock held
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007233AudioFlinger::PlaybackThread *AudioFlinger::checkPlaybackThread_l(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007234{
Glenn Kastena1117922012-01-26 10:53:32 -08007235 return mPlaybackThreads.valueFor(output).get();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007236}
7237
7238// checkMixerThread_l() must be called with AudioFlinger::mLock held
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007239AudioFlinger::MixerThread *AudioFlinger::checkMixerThread_l(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007240{
7241 PlaybackThread *thread = checkPlaybackThread_l(output);
Glenn Kastena1117922012-01-26 10:53:32 -08007242 return thread != NULL && thread->type() != ThreadBase::DIRECT ? (MixerThread *) thread : NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007243}
7244
7245// checkRecordThread_l() must be called with AudioFlinger::mLock held
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007246AudioFlinger::RecordThread *AudioFlinger::checkRecordThread_l(audio_io_handle_t input) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007247{
Glenn Kastena1117922012-01-26 10:53:32 -08007248 return mRecordThreads.valueFor(input).get();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007249}
7250
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007251uint32_t AudioFlinger::nextUniqueId()
Mathias Agopian65ab4712010-07-14 17:59:35 -07007252{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007253 return android_atomic_inc(&mNextUniqueId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007254}
7255
Glenn Kasten02fe1bf2012-02-24 15:42:17 -08007256AudioFlinger::PlaybackThread *AudioFlinger::primaryPlaybackThread_l() const
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007257{
7258 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
7259 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007260 AudioStreamOut *output = thread->getOutput();
7261 if (output != NULL && output->hwDev == mPrimaryHardwareDev) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007262 return thread;
7263 }
7264 }
7265 return NULL;
7266}
7267
Glenn Kastenbb4350d2012-07-03 15:56:38 -07007268audio_devices_t AudioFlinger::primaryOutputDevice_l() const
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007269{
7270 PlaybackThread *thread = primaryPlaybackThread_l();
7271
7272 if (thread == NULL) {
7273 return 0;
7274 }
7275
7276 return thread->device();
7277}
7278
Eric Laurenta011e352012-03-29 15:51:43 -07007279sp<AudioFlinger::SyncEvent> AudioFlinger::createSyncEvent(AudioSystem::sync_event_t type,
7280 int triggerSession,
7281 int listenerSession,
7282 sync_event_callback_t callBack,
7283 void *cookie)
7284{
7285 Mutex::Autolock _l(mLock);
7286
7287 sp<SyncEvent> event = new SyncEvent(type, triggerSession, listenerSession, callBack, cookie);
7288 status_t playStatus = NAME_NOT_FOUND;
7289 status_t recStatus = NAME_NOT_FOUND;
7290 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
7291 playStatus = mPlaybackThreads.valueAt(i)->setSyncEvent(event);
7292 if (playStatus == NO_ERROR) {
7293 return event;
7294 }
7295 }
7296 for (size_t i = 0; i < mRecordThreads.size(); i++) {
7297 recStatus = mRecordThreads.valueAt(i)->setSyncEvent(event);
7298 if (recStatus == NO_ERROR) {
7299 return event;
7300 }
7301 }
7302 if (playStatus == NAME_NOT_FOUND || recStatus == NAME_NOT_FOUND) {
7303 mPendingSyncEvents.add(event);
7304 } else {
7305 ALOGV("createSyncEvent() invalid event %d", event->type());
7306 event.clear();
7307 }
7308 return event;
7309}
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007310
Mathias Agopian65ab4712010-07-14 17:59:35 -07007311// ----------------------------------------------------------------------------
7312// Effect management
7313// ----------------------------------------------------------------------------
7314
7315
Glenn Kastenf587ba52012-01-26 16:25:10 -08007316status_t AudioFlinger::queryNumberEffects(uint32_t *numEffects) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007317{
7318 Mutex::Autolock _l(mLock);
7319 return EffectQueryNumberEffects(numEffects);
7320}
7321
Glenn Kastenf587ba52012-01-26 16:25:10 -08007322status_t AudioFlinger::queryEffect(uint32_t index, effect_descriptor_t *descriptor) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007323{
7324 Mutex::Autolock _l(mLock);
7325 return EffectQueryEffect(index, descriptor);
7326}
7327
Glenn Kasten5e92a782012-01-30 07:40:52 -08007328status_t AudioFlinger::getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kastenf587ba52012-01-26 16:25:10 -08007329 effect_descriptor_t *descriptor) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007330{
7331 Mutex::Autolock _l(mLock);
7332 return EffectGetDescriptor(pUuid, descriptor);
7333}
7334
7335
Mathias Agopian65ab4712010-07-14 17:59:35 -07007336sp<IEffect> AudioFlinger::createEffect(pid_t pid,
7337 effect_descriptor_t *pDesc,
7338 const sp<IEffectClient>& effectClient,
7339 int32_t priority,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007340 audio_io_handle_t io,
Mathias Agopian65ab4712010-07-14 17:59:35 -07007341 int sessionId,
7342 status_t *status,
7343 int *id,
7344 int *enabled)
7345{
7346 status_t lStatus = NO_ERROR;
7347 sp<EffectHandle> handle;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007348 effect_descriptor_t desc;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007349
Glenn Kasten98ec94c2012-01-25 14:28:29 -08007350 ALOGV("createEffect pid %d, effectClient %p, priority %d, sessionId %d, io %d",
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007351 pid, effectClient.get(), priority, sessionId, io);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007352
7353 if (pDesc == NULL) {
7354 lStatus = BAD_VALUE;
7355 goto Exit;
7356 }
7357
Eric Laurent84e9a102010-09-23 16:10:16 -07007358 // check audio settings permission for global effects
Dima Zavinfce7a472011-04-19 22:30:36 -07007359 if (sessionId == AUDIO_SESSION_OUTPUT_MIX && !settingsAllowed()) {
Eric Laurent84e9a102010-09-23 16:10:16 -07007360 lStatus = PERMISSION_DENIED;
7361 goto Exit;
7362 }
7363
Dima Zavinfce7a472011-04-19 22:30:36 -07007364 // Session AUDIO_SESSION_OUTPUT_STAGE is reserved for output stage effects
Eric Laurent84e9a102010-09-23 16:10:16 -07007365 // that can only be created by audio policy manager (running in same process)
Glenn Kasten44deb052012-02-05 18:09:08 -08007366 if (sessionId == AUDIO_SESSION_OUTPUT_STAGE && getpid_cached != pid) {
Eric Laurent84e9a102010-09-23 16:10:16 -07007367 lStatus = PERMISSION_DENIED;
7368 goto Exit;
7369 }
7370
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007371 if (io == 0) {
Dima Zavinfce7a472011-04-19 22:30:36 -07007372 if (sessionId == AUDIO_SESSION_OUTPUT_STAGE) {
Eric Laurent84e9a102010-09-23 16:10:16 -07007373 // output must be specified by AudioPolicyManager when using session
Dima Zavinfce7a472011-04-19 22:30:36 -07007374 // AUDIO_SESSION_OUTPUT_STAGE
Eric Laurent84e9a102010-09-23 16:10:16 -07007375 lStatus = BAD_VALUE;
7376 goto Exit;
Dima Zavinfce7a472011-04-19 22:30:36 -07007377 } else if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
Eric Laurent84e9a102010-09-23 16:10:16 -07007378 // if the output returned by getOutputForEffect() is removed before we lock the
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007379 // mutex below, the call to checkPlaybackThread_l(io) below will detect it
Eric Laurent84e9a102010-09-23 16:10:16 -07007380 // and we will exit safely
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007381 io = AudioSystem::getOutputForEffect(&desc);
Eric Laurent84e9a102010-09-23 16:10:16 -07007382 }
7383 }
7384
Mathias Agopian65ab4712010-07-14 17:59:35 -07007385 {
7386 Mutex::Autolock _l(mLock);
7387
Mathias Agopian65ab4712010-07-14 17:59:35 -07007388
7389 if (!EffectIsNullUuid(&pDesc->uuid)) {
7390 // if uuid is specified, request effect descriptor
7391 lStatus = EffectGetDescriptor(&pDesc->uuid, &desc);
7392 if (lStatus < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007393 ALOGW("createEffect() error %d from EffectGetDescriptor", lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007394 goto Exit;
7395 }
7396 } else {
7397 // if uuid is not specified, look for an available implementation
7398 // of the required type in effect factory
7399 if (EffectIsNullUuid(&pDesc->type)) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007400 ALOGW("createEffect() no effect type");
Mathias Agopian65ab4712010-07-14 17:59:35 -07007401 lStatus = BAD_VALUE;
7402 goto Exit;
7403 }
7404 uint32_t numEffects = 0;
7405 effect_descriptor_t d;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007406 d.flags = 0; // prevent compiler warning
Mathias Agopian65ab4712010-07-14 17:59:35 -07007407 bool found = false;
7408
7409 lStatus = EffectQueryNumberEffects(&numEffects);
7410 if (lStatus < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007411 ALOGW("createEffect() error %d from EffectQueryNumberEffects", lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007412 goto Exit;
7413 }
7414 for (uint32_t i = 0; i < numEffects; i++) {
7415 lStatus = EffectQueryEffect(i, &desc);
7416 if (lStatus < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007417 ALOGW("createEffect() error %d from EffectQueryEffect", lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007418 continue;
7419 }
7420 if (memcmp(&desc.type, &pDesc->type, sizeof(effect_uuid_t)) == 0) {
7421 // If matching type found save effect descriptor. If the session is
7422 // 0 and the effect is not auxiliary, continue enumeration in case
7423 // an auxiliary version of this effect type is available
7424 found = true;
Glenn Kastena189a682012-02-20 12:16:30 -08007425 d = desc;
Dima Zavinfce7a472011-04-19 22:30:36 -07007426 if (sessionId != AUDIO_SESSION_OUTPUT_MIX ||
Mathias Agopian65ab4712010-07-14 17:59:35 -07007427 (desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
7428 break;
7429 }
7430 }
7431 }
7432 if (!found) {
7433 lStatus = BAD_VALUE;
Steve Block5ff1dd52012-01-05 23:22:43 +00007434 ALOGW("createEffect() effect not found");
Mathias Agopian65ab4712010-07-14 17:59:35 -07007435 goto Exit;
7436 }
7437 // For same effect type, chose auxiliary version over insert version if
7438 // connect to output mix (Compliance to OpenSL ES)
Dima Zavinfce7a472011-04-19 22:30:36 -07007439 if (sessionId == AUDIO_SESSION_OUTPUT_MIX &&
Mathias Agopian65ab4712010-07-14 17:59:35 -07007440 (d.flags & EFFECT_FLAG_TYPE_MASK) != EFFECT_FLAG_TYPE_AUXILIARY) {
Glenn Kastena189a682012-02-20 12:16:30 -08007441 desc = d;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007442 }
7443 }
7444
7445 // Do not allow auxiliary effects on a session different from 0 (output mix)
Dima Zavinfce7a472011-04-19 22:30:36 -07007446 if (sessionId != AUDIO_SESSION_OUTPUT_MIX &&
Mathias Agopian65ab4712010-07-14 17:59:35 -07007447 (desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
7448 lStatus = INVALID_OPERATION;
7449 goto Exit;
7450 }
7451
Eric Laurent59255e42011-07-27 19:49:51 -07007452 // check recording permission for visualizer
7453 if ((memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) &&
7454 !recordingAllowed()) {
7455 lStatus = PERMISSION_DENIED;
7456 goto Exit;
7457 }
7458
Mathias Agopian65ab4712010-07-14 17:59:35 -07007459 // return effect descriptor
Glenn Kastena189a682012-02-20 12:16:30 -08007460 *pDesc = desc;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007461
7462 // If output is not specified try to find a matching audio session ID in one of the
7463 // output threads.
Eric Laurent84e9a102010-09-23 16:10:16 -07007464 // If output is 0 here, sessionId is neither SESSION_OUTPUT_STAGE nor SESSION_OUTPUT_MIX
7465 // because of code checking output when entering the function.
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007466 // Note: io is never 0 when creating an effect on an input
7467 if (io == 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007468 // look for the thread where the specified audio session is present
Eric Laurent84e9a102010-09-23 16:10:16 -07007469 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
7470 if (mPlaybackThreads.valueAt(i)->hasAudioSession(sessionId) != 0) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007471 io = mPlaybackThreads.keyAt(i);
Eric Laurent84e9a102010-09-23 16:10:16 -07007472 break;
Eric Laurent39e94f82010-07-28 01:32:47 -07007473 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007474 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007475 if (io == 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007476 for (size_t i = 0; i < mRecordThreads.size(); i++) {
7477 if (mRecordThreads.valueAt(i)->hasAudioSession(sessionId) != 0) {
7478 io = mRecordThreads.keyAt(i);
7479 break;
7480 }
7481 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007482 }
Eric Laurent84e9a102010-09-23 16:10:16 -07007483 // If no output thread contains the requested session ID, default to
7484 // first output. The effect chain will be moved to the correct output
7485 // thread when a track with the same session ID is created
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007486 if (io == 0 && mPlaybackThreads.size()) {
7487 io = mPlaybackThreads.keyAt(0);
7488 }
Steve Block3856b092011-10-20 11:56:00 +01007489 ALOGV("createEffect() got io %d for effect %s", io, desc.name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007490 }
7491 ThreadBase *thread = checkRecordThread_l(io);
7492 if (thread == NULL) {
7493 thread = checkPlaybackThread_l(io);
7494 if (thread == NULL) {
Steve Block29357bc2012-01-06 19:20:56 +00007495 ALOGE("createEffect() unknown output thread");
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007496 lStatus = BAD_VALUE;
7497 goto Exit;
Eric Laurent84e9a102010-09-23 16:10:16 -07007498 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007499 }
Eric Laurent84e9a102010-09-23 16:10:16 -07007500
Glenn Kasten98ec94c2012-01-25 14:28:29 -08007501 sp<Client> client = registerPid_l(pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007502
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007503 // create effect on selected output thread
Eric Laurentde070132010-07-13 04:45:46 -07007504 handle = thread->createEffect_l(client, effectClient, priority, sessionId,
7505 &desc, enabled, &lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007506 if (handle != 0 && id != NULL) {
7507 *id = handle->id();
7508 }
7509 }
7510
7511Exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007512 if (status != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007513 *status = lStatus;
7514 }
7515 return handle;
7516}
7517
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007518status_t AudioFlinger::moveEffects(int sessionId, audio_io_handle_t srcOutput,
7519 audio_io_handle_t dstOutput)
Eric Laurentde070132010-07-13 04:45:46 -07007520{
Steve Block3856b092011-10-20 11:56:00 +01007521 ALOGV("moveEffects() session %d, srcOutput %d, dstOutput %d",
Eric Laurent59255e42011-07-27 19:49:51 -07007522 sessionId, srcOutput, dstOutput);
Eric Laurentde070132010-07-13 04:45:46 -07007523 Mutex::Autolock _l(mLock);
7524 if (srcOutput == dstOutput) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007525 ALOGW("moveEffects() same dst and src outputs %d", dstOutput);
Eric Laurentde070132010-07-13 04:45:46 -07007526 return NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007527 }
Eric Laurentde070132010-07-13 04:45:46 -07007528 PlaybackThread *srcThread = checkPlaybackThread_l(srcOutput);
7529 if (srcThread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007530 ALOGW("moveEffects() bad srcOutput %d", srcOutput);
Eric Laurentde070132010-07-13 04:45:46 -07007531 return BAD_VALUE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007532 }
Eric Laurentde070132010-07-13 04:45:46 -07007533 PlaybackThread *dstThread = checkPlaybackThread_l(dstOutput);
7534 if (dstThread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007535 ALOGW("moveEffects() bad dstOutput %d", dstOutput);
Eric Laurentde070132010-07-13 04:45:46 -07007536 return BAD_VALUE;
7537 }
7538
7539 Mutex::Autolock _dl(dstThread->mLock);
7540 Mutex::Autolock _sl(srcThread->mLock);
Eric Laurent59255e42011-07-27 19:49:51 -07007541 moveEffectChain_l(sessionId, srcThread, dstThread, false);
Eric Laurentde070132010-07-13 04:45:46 -07007542
Mathias Agopian65ab4712010-07-14 17:59:35 -07007543 return NO_ERROR;
7544}
7545
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007546// moveEffectChain_l must be called with both srcThread and dstThread mLocks held
Eric Laurent59255e42011-07-27 19:49:51 -07007547status_t AudioFlinger::moveEffectChain_l(int sessionId,
Eric Laurentde070132010-07-13 04:45:46 -07007548 AudioFlinger::PlaybackThread *srcThread,
Eric Laurent39e94f82010-07-28 01:32:47 -07007549 AudioFlinger::PlaybackThread *dstThread,
7550 bool reRegister)
Eric Laurentde070132010-07-13 04:45:46 -07007551{
Steve Block3856b092011-10-20 11:56:00 +01007552 ALOGV("moveEffectChain_l() session %d from thread %p to thread %p",
Eric Laurent59255e42011-07-27 19:49:51 -07007553 sessionId, srcThread, dstThread);
Eric Laurentde070132010-07-13 04:45:46 -07007554
Eric Laurent59255e42011-07-27 19:49:51 -07007555 sp<EffectChain> chain = srcThread->getEffectChain_l(sessionId);
Eric Laurentde070132010-07-13 04:45:46 -07007556 if (chain == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007557 ALOGW("moveEffectChain_l() effect chain for session %d not on source thread %p",
Eric Laurent59255e42011-07-27 19:49:51 -07007558 sessionId, srcThread);
Eric Laurentde070132010-07-13 04:45:46 -07007559 return INVALID_OPERATION;
7560 }
7561
Eric Laurent39e94f82010-07-28 01:32:47 -07007562 // remove chain first. This is useful only if reconfiguring effect chain on same output thread,
Eric Laurentde070132010-07-13 04:45:46 -07007563 // so that a new chain is created with correct parameters when first effect is added. This is
Eric Laurentec35a142011-10-05 17:42:25 -07007564 // otherwise unnecessary as removeEffect_l() will remove the chain when last effect is
Eric Laurentde070132010-07-13 04:45:46 -07007565 // removed.
7566 srcThread->removeEffectChain_l(chain);
7567
7568 // transfer all effects one by one so that new effect chain is created on new thread with
7569 // correct buffer sizes and audio parameters and effect engines reconfigured accordingly
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007570 audio_io_handle_t dstOutput = dstThread->id();
Eric Laurent39e94f82010-07-28 01:32:47 -07007571 sp<EffectChain> dstChain;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007572 uint32_t strategy = 0; // prevent compiler warning
Eric Laurentde070132010-07-13 04:45:46 -07007573 sp<EffectModule> effect = chain->getEffectFromId_l(0);
7574 while (effect != 0) {
7575 srcThread->removeEffect_l(effect);
7576 dstThread->addEffect_l(effect);
Eric Laurentec35a142011-10-05 17:42:25 -07007577 // removeEffect_l() has stopped the effect if it was active so it must be restarted
7578 if (effect->state() == EffectModule::ACTIVE ||
7579 effect->state() == EffectModule::STOPPING) {
7580 effect->start();
7581 }
Eric Laurent39e94f82010-07-28 01:32:47 -07007582 // if the move request is not received from audio policy manager, the effect must be
7583 // re-registered with the new strategy and output
7584 if (dstChain == 0) {
7585 dstChain = effect->chain().promote();
7586 if (dstChain == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007587 ALOGW("moveEffectChain_l() cannot get chain from effect %p", effect.get());
Eric Laurent39e94f82010-07-28 01:32:47 -07007588 srcThread->addEffect_l(effect);
7589 return NO_INIT;
7590 }
7591 strategy = dstChain->strategy();
7592 }
7593 if (reRegister) {
7594 AudioSystem::unregisterEffect(effect->id());
7595 AudioSystem::registerEffect(&effect->desc(),
7596 dstOutput,
7597 strategy,
Eric Laurent59255e42011-07-27 19:49:51 -07007598 sessionId,
Eric Laurent39e94f82010-07-28 01:32:47 -07007599 effect->id());
7600 }
Eric Laurentde070132010-07-13 04:45:46 -07007601 effect = chain->getEffectFromId_l(0);
7602 }
7603
7604 return NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007605}
7606
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007607
Mathias Agopian65ab4712010-07-14 17:59:35 -07007608// PlaybackThread::createEffect_l() must be called with AudioFlinger::mLock held
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007609sp<AudioFlinger::EffectHandle> AudioFlinger::ThreadBase::createEffect_l(
Mathias Agopian65ab4712010-07-14 17:59:35 -07007610 const sp<AudioFlinger::Client>& client,
7611 const sp<IEffectClient>& effectClient,
7612 int32_t priority,
7613 int sessionId,
7614 effect_descriptor_t *desc,
7615 int *enabled,
7616 status_t *status
7617 )
7618{
7619 sp<EffectModule> effect;
7620 sp<EffectHandle> handle;
7621 status_t lStatus;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007622 sp<EffectChain> chain;
Eric Laurentde070132010-07-13 04:45:46 -07007623 bool chainCreated = false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007624 bool effectCreated = false;
7625 bool effectRegistered = false;
7626
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007627 lStatus = initCheck();
7628 if (lStatus != NO_ERROR) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007629 ALOGW("createEffect_l() Audio driver not initialized.");
Mathias Agopian65ab4712010-07-14 17:59:35 -07007630 goto Exit;
7631 }
7632
7633 // Do not allow effects with session ID 0 on direct output or duplicating threads
7634 // TODO: add rule for hw accelerated effects on direct outputs with non PCM format
Dima Zavinfce7a472011-04-19 22:30:36 -07007635 if (sessionId == AUDIO_SESSION_OUTPUT_MIX && mType != MIXER) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007636 ALOGW("createEffect_l() Cannot add auxiliary effect %s to session %d",
Eric Laurentde070132010-07-13 04:45:46 -07007637 desc->name, sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007638 lStatus = BAD_VALUE;
7639 goto Exit;
7640 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007641 // Only Pre processor effects are allowed on input threads and only on input threads
Glenn Kastena1117922012-01-26 10:53:32 -08007642 if ((mType == RECORD) != ((desc->flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC)) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007643 ALOGW("createEffect_l() effect %s (flags %08x) created on wrong thread type %d",
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007644 desc->name, desc->flags, mType);
7645 lStatus = BAD_VALUE;
7646 goto Exit;
7647 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007648
Steve Block3856b092011-10-20 11:56:00 +01007649 ALOGV("createEffect_l() thread %p effect %s on session %d", this, desc->name, sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007650
7651 { // scope for mLock
7652 Mutex::Autolock _l(mLock);
7653
7654 // check for existing effect chain with the requested audio session
7655 chain = getEffectChain_l(sessionId);
7656 if (chain == 0) {
7657 // create a new chain for this session
Steve Block3856b092011-10-20 11:56:00 +01007658 ALOGV("createEffect_l() new effect chain for session %d", sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007659 chain = new EffectChain(this, sessionId);
7660 addEffectChain_l(chain);
Eric Laurentde070132010-07-13 04:45:46 -07007661 chain->setStrategy(getStrategyForSession_l(sessionId));
7662 chainCreated = true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007663 } else {
Eric Laurentcab11242010-07-15 12:50:15 -07007664 effect = chain->getEffectFromDesc_l(desc);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007665 }
7666
Glenn Kasten7fc9a6f2012-01-10 10:46:34 -08007667 ALOGV("createEffect_l() got effect %p on chain %p", effect.get(), chain.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07007668
7669 if (effect == 0) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007670 int id = mAudioFlinger->nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007671 // Check CPU and memory usage
Eric Laurentde070132010-07-13 04:45:46 -07007672 lStatus = AudioSystem::registerEffect(desc, mId, chain->strategy(), sessionId, id);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007673 if (lStatus != NO_ERROR) {
7674 goto Exit;
7675 }
7676 effectRegistered = true;
7677 // create a new effect module if none present in the chain
Eric Laurentde070132010-07-13 04:45:46 -07007678 effect = new EffectModule(this, chain, desc, id, sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007679 lStatus = effect->status();
7680 if (lStatus != NO_ERROR) {
7681 goto Exit;
7682 }
Eric Laurentcab11242010-07-15 12:50:15 -07007683 lStatus = chain->addEffect_l(effect);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007684 if (lStatus != NO_ERROR) {
7685 goto Exit;
7686 }
7687 effectCreated = true;
7688
7689 effect->setDevice(mDevice);
7690 effect->setMode(mAudioFlinger->getMode());
7691 }
7692 // create effect handle and connect it to effect module
7693 handle = new EffectHandle(effect, client, effectClient, priority);
Eric Laurenta5f44eb2012-06-25 11:38:29 -07007694 lStatus = effect->addHandle(handle.get());
Glenn Kastena0d68332012-01-27 16:47:15 -08007695 if (enabled != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007696 *enabled = (int)effect->isEnabled();
7697 }
7698 }
7699
7700Exit:
7701 if (lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) {
Eric Laurentde070132010-07-13 04:45:46 -07007702 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007703 if (effectCreated) {
Eric Laurentde070132010-07-13 04:45:46 -07007704 chain->removeEffect_l(effect);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007705 }
7706 if (effectRegistered) {
Eric Laurentde070132010-07-13 04:45:46 -07007707 AudioSystem::unregisterEffect(effect->id());
7708 }
7709 if (chainCreated) {
7710 removeEffectChain_l(chain);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007711 }
7712 handle.clear();
7713 }
7714
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007715 if (status != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007716 *status = lStatus;
7717 }
7718 return handle;
7719}
7720
Eric Laurent717e1282012-06-29 16:36:52 -07007721sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect(int sessionId, int effectId)
7722{
7723 Mutex::Autolock _l(mLock);
7724 return getEffect_l(sessionId, effectId);
7725}
7726
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007727sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId)
7728{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007729 sp<EffectChain> chain = getEffectChain_l(sessionId);
Glenn Kasten090f0192012-01-30 13:00:02 -08007730 return chain != 0 ? chain->getEffectFromId_l(effectId) : 0;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007731}
7732
Eric Laurentde070132010-07-13 04:45:46 -07007733// PlaybackThread::addEffect_l() must be called with AudioFlinger::mLock and
7734// PlaybackThread::mLock held
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007735status_t AudioFlinger::ThreadBase::addEffect_l(const sp<EffectModule>& effect)
Eric Laurentde070132010-07-13 04:45:46 -07007736{
7737 // check for existing effect chain with the requested audio session
7738 int sessionId = effect->sessionId();
7739 sp<EffectChain> chain = getEffectChain_l(sessionId);
7740 bool chainCreated = false;
7741
7742 if (chain == 0) {
7743 // create a new chain for this session
Steve Block3856b092011-10-20 11:56:00 +01007744 ALOGV("addEffect_l() new effect chain for session %d", sessionId);
Eric Laurentde070132010-07-13 04:45:46 -07007745 chain = new EffectChain(this, sessionId);
7746 addEffectChain_l(chain);
7747 chain->setStrategy(getStrategyForSession_l(sessionId));
7748 chainCreated = true;
7749 }
Steve Block3856b092011-10-20 11:56:00 +01007750 ALOGV("addEffect_l() %p chain %p effect %p", this, chain.get(), effect.get());
Eric Laurentde070132010-07-13 04:45:46 -07007751
7752 if (chain->getEffectFromId_l(effect->id()) != 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007753 ALOGW("addEffect_l() %p effect %s already present in chain %p",
Eric Laurentde070132010-07-13 04:45:46 -07007754 this, effect->desc().name, chain.get());
7755 return BAD_VALUE;
7756 }
7757
7758 status_t status = chain->addEffect_l(effect);
7759 if (status != NO_ERROR) {
7760 if (chainCreated) {
7761 removeEffectChain_l(chain);
7762 }
7763 return status;
7764 }
7765
7766 effect->setDevice(mDevice);
7767 effect->setMode(mAudioFlinger->getMode());
7768 return NO_ERROR;
7769}
7770
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007771void AudioFlinger::ThreadBase::removeEffect_l(const sp<EffectModule>& effect) {
Eric Laurentde070132010-07-13 04:45:46 -07007772
Steve Block3856b092011-10-20 11:56:00 +01007773 ALOGV("removeEffect_l() %p effect %p", this, effect.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07007774 effect_descriptor_t desc = effect->desc();
Eric Laurentde070132010-07-13 04:45:46 -07007775 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
7776 detachAuxEffect_l(effect->id());
7777 }
7778
7779 sp<EffectChain> chain = effect->chain().promote();
7780 if (chain != 0) {
7781 // remove effect chain if removing last effect
7782 if (chain->removeEffect_l(effect) == 0) {
7783 removeEffectChain_l(chain);
7784 }
7785 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00007786 ALOGW("removeEffect_l() %p cannot promote chain for effect %p", this, effect.get());
Eric Laurentde070132010-07-13 04:45:46 -07007787 }
7788}
7789
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007790void AudioFlinger::ThreadBase::lockEffectChains_l(
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007791 Vector< sp<AudioFlinger::EffectChain> >& effectChains)
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007792{
7793 effectChains = mEffectChains;
7794 for (size_t i = 0; i < mEffectChains.size(); i++) {
7795 mEffectChains[i]->lock();
7796 }
7797}
7798
7799void AudioFlinger::ThreadBase::unlockEffectChains(
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007800 const Vector< sp<AudioFlinger::EffectChain> >& effectChains)
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007801{
7802 for (size_t i = 0; i < effectChains.size(); i++) {
7803 effectChains[i]->unlock();
7804 }
7805}
7806
7807sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain(int sessionId)
7808{
7809 Mutex::Autolock _l(mLock);
7810 return getEffectChain_l(sessionId);
7811}
7812
7813sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain_l(int sessionId)
7814{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007815 size_t size = mEffectChains.size();
7816 for (size_t i = 0; i < size; i++) {
7817 if (mEffectChains[i]->sessionId() == sessionId) {
Glenn Kasten090f0192012-01-30 13:00:02 -08007818 return mEffectChains[i];
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007819 }
7820 }
Glenn Kasten090f0192012-01-30 13:00:02 -08007821 return 0;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007822}
7823
Glenn Kastenf78aee72012-01-04 11:00:47 -08007824void AudioFlinger::ThreadBase::setMode(audio_mode_t mode)
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007825{
7826 Mutex::Autolock _l(mLock);
7827 size_t size = mEffectChains.size();
7828 for (size_t i = 0; i < size; i++) {
7829 mEffectChains[i]->setMode_l(mode);
7830 }
7831}
7832
7833void AudioFlinger::ThreadBase::disconnectEffect(const sp<EffectModule>& effect,
Eric Laurenta5f44eb2012-06-25 11:38:29 -07007834 EffectHandle *handle,
Glenn Kasten58123c32012-02-03 10:32:24 -08007835 bool unpinIfLast) {
Eric Laurent59255e42011-07-27 19:49:51 -07007836
Mathias Agopian65ab4712010-07-14 17:59:35 -07007837 Mutex::Autolock _l(mLock);
Steve Block3856b092011-10-20 11:56:00 +01007838 ALOGV("disconnectEffect() %p effect %p", this, effect.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07007839 // delete the effect module if removing last handle on it
7840 if (effect->removeHandle(handle) == 0) {
Glenn Kasten58123c32012-02-03 10:32:24 -08007841 if (!effect->isPinned() || unpinIfLast) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007842 removeEffect_l(effect);
7843 AudioSystem::unregisterEffect(effect->id());
7844 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007845 }
7846}
7847
7848status_t AudioFlinger::PlaybackThread::addEffectChain_l(const sp<EffectChain>& chain)
7849{
7850 int session = chain->sessionId();
7851 int16_t *buffer = mMixBuffer;
7852 bool ownsBuffer = false;
7853
Steve Block3856b092011-10-20 11:56:00 +01007854 ALOGV("addEffectChain_l() %p on thread %p for session %d", chain.get(), this, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007855 if (session > 0) {
7856 // Only one effect chain can be present in direct output thread and it uses
7857 // the mix buffer as input
7858 if (mType != DIRECT) {
Glenn Kasten58912562012-04-03 10:45:00 -07007859 size_t numSamples = mNormalFrameCount * mChannelCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007860 buffer = new int16_t[numSamples];
7861 memset(buffer, 0, numSamples * sizeof(int16_t));
Steve Block3856b092011-10-20 11:56:00 +01007862 ALOGV("addEffectChain_l() creating new input buffer %p session %d", buffer, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007863 ownsBuffer = true;
7864 }
7865
7866 // Attach all tracks with same session ID to this chain.
7867 for (size_t i = 0; i < mTracks.size(); ++i) {
7868 sp<Track> track = mTracks[i];
7869 if (session == track->sessionId()) {
Steve Block3856b092011-10-20 11:56:00 +01007870 ALOGV("addEffectChain_l() track->setMainBuffer track %p buffer %p", track.get(), buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007871 track->setMainBuffer(buffer);
Eric Laurentb469b942011-05-09 12:09:06 -07007872 chain->incTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007873 }
7874 }
7875
7876 // indicate all active tracks in the chain
7877 for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
7878 sp<Track> track = mActiveTracks[i].promote();
7879 if (track == 0) continue;
7880 if (session == track->sessionId()) {
Steve Block3856b092011-10-20 11:56:00 +01007881 ALOGV("addEffectChain_l() activating track %p on session %d", track.get(), session);
Eric Laurentb469b942011-05-09 12:09:06 -07007882 chain->incActiveTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007883 }
7884 }
7885 }
7886
7887 chain->setInBuffer(buffer, ownsBuffer);
7888 chain->setOutBuffer(mMixBuffer);
Dima Zavinfce7a472011-04-19 22:30:36 -07007889 // Effect chain for session AUDIO_SESSION_OUTPUT_STAGE is inserted at end of effect
Eric Laurentde070132010-07-13 04:45:46 -07007890 // chains list in order to be processed last as it contains output stage effects
Dima Zavinfce7a472011-04-19 22:30:36 -07007891 // Effect chain for session AUDIO_SESSION_OUTPUT_MIX is inserted before
7892 // session AUDIO_SESSION_OUTPUT_STAGE to be processed
Mathias Agopian65ab4712010-07-14 17:59:35 -07007893 // after track specific effects and before output stage
Dima Zavinfce7a472011-04-19 22:30:36 -07007894 // It is therefore mandatory that AUDIO_SESSION_OUTPUT_MIX == 0 and
7895 // that AUDIO_SESSION_OUTPUT_STAGE < AUDIO_SESSION_OUTPUT_MIX
Eric Laurentde070132010-07-13 04:45:46 -07007896 // Effect chain for other sessions are inserted at beginning of effect
7897 // chains list to be processed before output mix effects. Relative order between other
7898 // sessions is not important
Mathias Agopian65ab4712010-07-14 17:59:35 -07007899 size_t size = mEffectChains.size();
7900 size_t i = 0;
7901 for (i = 0; i < size; i++) {
7902 if (mEffectChains[i]->sessionId() < session) break;
7903 }
7904 mEffectChains.insertAt(chain, i);
Eric Laurent59255e42011-07-27 19:49:51 -07007905 checkSuspendOnAddEffectChain_l(chain);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007906
7907 return NO_ERROR;
7908}
7909
7910size_t AudioFlinger::PlaybackThread::removeEffectChain_l(const sp<EffectChain>& chain)
7911{
7912 int session = chain->sessionId();
7913
Steve Block3856b092011-10-20 11:56:00 +01007914 ALOGV("removeEffectChain_l() %p from thread %p for session %d", chain.get(), this, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007915
7916 for (size_t i = 0; i < mEffectChains.size(); i++) {
7917 if (chain == mEffectChains[i]) {
7918 mEffectChains.removeAt(i);
Eric Laurentb469b942011-05-09 12:09:06 -07007919 // detach all active tracks from the chain
7920 for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
7921 sp<Track> track = mActiveTracks[i].promote();
7922 if (track == 0) continue;
7923 if (session == track->sessionId()) {
Steve Block3856b092011-10-20 11:56:00 +01007924 ALOGV("removeEffectChain_l(): stopping track on chain %p for session Id: %d",
Eric Laurentb469b942011-05-09 12:09:06 -07007925 chain.get(), session);
7926 chain->decActiveTrackCnt();
7927 }
7928 }
7929
Mathias Agopian65ab4712010-07-14 17:59:35 -07007930 // detach all tracks with same session ID from this chain
7931 for (size_t i = 0; i < mTracks.size(); ++i) {
7932 sp<Track> track = mTracks[i];
7933 if (session == track->sessionId()) {
7934 track->setMainBuffer(mMixBuffer);
Eric Laurentb469b942011-05-09 12:09:06 -07007935 chain->decTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007936 }
7937 }
Eric Laurentde070132010-07-13 04:45:46 -07007938 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007939 }
7940 }
7941 return mEffectChains.size();
7942}
7943
Eric Laurentde070132010-07-13 04:45:46 -07007944status_t AudioFlinger::PlaybackThread::attachAuxEffect(
7945 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007946{
7947 Mutex::Autolock _l(mLock);
7948 return attachAuxEffect_l(track, EffectId);
7949}
7950
Eric Laurentde070132010-07-13 04:45:46 -07007951status_t AudioFlinger::PlaybackThread::attachAuxEffect_l(
7952 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007953{
7954 status_t status = NO_ERROR;
7955
7956 if (EffectId == 0) {
7957 track->setAuxBuffer(0, NULL);
7958 } else {
Dima Zavinfce7a472011-04-19 22:30:36 -07007959 // Auxiliary effects are always in audio session AUDIO_SESSION_OUTPUT_MIX
7960 sp<EffectModule> effect = getEffect_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007961 if (effect != 0) {
7962 if ((effect->desc().flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
7963 track->setAuxBuffer(EffectId, (int32_t *)effect->inBuffer());
7964 } else {
7965 status = INVALID_OPERATION;
7966 }
7967 } else {
7968 status = BAD_VALUE;
7969 }
7970 }
7971 return status;
7972}
7973
7974void AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId)
7975{
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007976 for (size_t i = 0; i < mTracks.size(); ++i) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007977 sp<Track> track = mTracks[i];
7978 if (track->auxEffectId() == effectId) {
7979 attachAuxEffect_l(track, 0);
7980 }
7981 }
7982}
7983
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007984status_t AudioFlinger::RecordThread::addEffectChain_l(const sp<EffectChain>& chain)
7985{
7986 // only one chain per input thread
7987 if (mEffectChains.size() != 0) {
7988 return INVALID_OPERATION;
7989 }
Steve Block3856b092011-10-20 11:56:00 +01007990 ALOGV("addEffectChain_l() %p on thread %p", chain.get(), this);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007991
7992 chain->setInBuffer(NULL);
7993 chain->setOutBuffer(NULL);
7994
Eric Laurent59255e42011-07-27 19:49:51 -07007995 checkSuspendOnAddEffectChain_l(chain);
7996
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007997 mEffectChains.add(chain);
7998
7999 return NO_ERROR;
8000}
8001
8002size_t AudioFlinger::RecordThread::removeEffectChain_l(const sp<EffectChain>& chain)
8003{
Steve Block3856b092011-10-20 11:56:00 +01008004 ALOGV("removeEffectChain_l() %p from thread %p", chain.get(), this);
Steve Block5ff1dd52012-01-05 23:22:43 +00008005 ALOGW_IF(mEffectChains.size() != 1,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008006 "removeEffectChain_l() %p invalid chain size %d on thread %p",
8007 chain.get(), mEffectChains.size(), this);
8008 if (mEffectChains.size() == 1) {
8009 mEffectChains.removeAt(0);
8010 }
8011 return 0;
8012}
8013
Mathias Agopian65ab4712010-07-14 17:59:35 -07008014// ----------------------------------------------------------------------------
8015// EffectModule implementation
8016// ----------------------------------------------------------------------------
8017
8018#undef LOG_TAG
8019#define LOG_TAG "AudioFlinger::EffectModule"
8020
Glenn Kasten9eaa5572012-01-20 13:32:16 -08008021AudioFlinger::EffectModule::EffectModule(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07008022 const wp<AudioFlinger::EffectChain>& chain,
8023 effect_descriptor_t *desc,
8024 int id,
8025 int sessionId)
Glenn Kasten415fa752012-07-02 16:11:18 -07008026 : mPinned(sessionId > AUDIO_SESSION_OUTPUT_MIX),
8027 mThread(thread), mChain(chain), mId(id), mSessionId(sessionId),
Glenn Kastencd2d6102012-07-18 16:49:32 -07008028 mDescriptor(*desc),
Glenn Kasten415fa752012-07-02 16:11:18 -07008029 // mConfig is set by configure() and not used before then
8030 mEffectInterface(NULL),
8031 mStatus(NO_INIT), mState(IDLE),
8032 // mMaxDisableWaitCnt is set by configure() and not used before then
8033 // mDisableWaitCnt is set by process() and updateState() and not used before then
8034 mSuspended(false)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008035{
Steve Block3856b092011-10-20 11:56:00 +01008036 ALOGV("Constructor %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008037 int lStatus;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008038
8039 // create effect engine from effect factory
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008040 mStatus = EffectCreate(&desc->uuid, sessionId, thread->id(), &mEffectInterface);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008041
8042 if (mStatus != NO_ERROR) {
8043 return;
8044 }
8045 lStatus = init();
8046 if (lStatus < 0) {
8047 mStatus = lStatus;
8048 goto Error;
8049 }
8050
Steve Block3856b092011-10-20 11:56:00 +01008051 ALOGV("Constructor success name %s, Interface %p", mDescriptor.name, mEffectInterface);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008052 return;
8053Error:
8054 EffectRelease(mEffectInterface);
8055 mEffectInterface = NULL;
Steve Block3856b092011-10-20 11:56:00 +01008056 ALOGV("Constructor Error %d", mStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008057}
8058
8059AudioFlinger::EffectModule::~EffectModule()
8060{
Steve Block3856b092011-10-20 11:56:00 +01008061 ALOGV("Destructor %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008062 if (mEffectInterface != NULL) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008063 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
8064 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
8065 sp<ThreadBase> thread = mThread.promote();
8066 if (thread != 0) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07008067 audio_stream_t *stream = thread->stream();
8068 if (stream != NULL) {
8069 stream->remove_audio_effect(stream, mEffectInterface);
8070 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008071 }
8072 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008073 // release effect engine
8074 EffectRelease(mEffectInterface);
8075 }
8076}
8077
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008078status_t AudioFlinger::EffectModule::addHandle(EffectHandle *handle)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008079{
8080 status_t status;
8081
8082 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008083 int priority = handle->priority();
8084 size_t size = mHandles.size();
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008085 EffectHandle *controlHandle = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008086 size_t i;
8087 for (i = 0; i < size; i++) {
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008088 EffectHandle *h = mHandles[i];
8089 if (h == NULL || h->destroyed_l()) continue;
8090 // first non destroyed handle is considered in control
8091 if (controlHandle == NULL)
8092 controlHandle = h;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008093 if (h->priority() <= priority) break;
8094 }
8095 // if inserted in first place, move effect control from previous owner to this handle
8096 if (i == 0) {
Eric Laurent59255e42011-07-27 19:49:51 -07008097 bool enabled = false;
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008098 if (controlHandle != NULL) {
8099 enabled = controlHandle->enabled();
8100 controlHandle->setControl(false/*hasControl*/, true /*signal*/, enabled /*enabled*/);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008101 }
Eric Laurent59255e42011-07-27 19:49:51 -07008102 handle->setControl(true /*hasControl*/, false /*signal*/, enabled /*enabled*/);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008103 status = NO_ERROR;
8104 } else {
8105 status = ALREADY_EXISTS;
8106 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008107 ALOGV("addHandle() %p added handle %p in position %d", this, handle, i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008108 mHandles.insertAt(handle, i);
8109 return status;
8110}
8111
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008112size_t AudioFlinger::EffectModule::removeHandle(EffectHandle *handle)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008113{
8114 Mutex::Autolock _l(mLock);
8115 size_t size = mHandles.size();
8116 size_t i;
8117 for (i = 0; i < size; i++) {
8118 if (mHandles[i] == handle) break;
8119 }
8120 if (i == size) {
8121 return size;
8122 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008123 ALOGV("removeHandle() %p removed handle %p in position %d", this, handle, i);
Eric Laurent59255e42011-07-27 19:49:51 -07008124
Mathias Agopian65ab4712010-07-14 17:59:35 -07008125 mHandles.removeAt(i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008126 // if removed from first place, move effect control from this handle to next in line
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008127 if (i == 0) {
8128 EffectHandle *h = controlHandle_l();
8129 if (h != NULL) {
8130 h->setControl(true /*hasControl*/, true /*signal*/ , handle->enabled() /*enabled*/);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008131 }
8132 }
8133
Eric Laurentec437d82011-07-26 20:54:46 -07008134 // Prevent calls to process() and other functions on effect interface from now on.
8135 // The effect engine will be released by the destructor when the last strong reference on
8136 // this object is released which can happen after next process is called.
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008137 if (mHandles.size() == 0 && !mPinned) {
Eric Laurentec437d82011-07-26 20:54:46 -07008138 mState = DESTROYED;
Eric Laurentdac69112010-09-28 14:09:57 -07008139 }
8140
Eric Laurente65c8912012-07-20 15:57:23 -07008141 return mHandles.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008142}
8143
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008144// must be called with EffectModule::mLock held
8145AudioFlinger::EffectHandle *AudioFlinger::EffectModule::controlHandle_l()
Eric Laurent59255e42011-07-27 19:49:51 -07008146{
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008147 // the first valid handle in the list has control over the module
8148 for (size_t i = 0; i < mHandles.size(); i++) {
8149 EffectHandle *h = mHandles[i];
8150 if (h != NULL && !h->destroyed_l()) {
8151 return h;
8152 }
8153 }
8154
8155 return NULL;
Eric Laurent59255e42011-07-27 19:49:51 -07008156}
8157
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008158size_t AudioFlinger::EffectModule::disconnect(EffectHandle *handle, bool unpinIfLast)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008159{
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008160 ALOGV("disconnect() %p handle %p", this, handle);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008161 // keep a strong reference on this EffectModule to avoid calling the
8162 // destructor before we exit
8163 sp<EffectModule> keep(this);
8164 {
8165 sp<ThreadBase> thread = mThread.promote();
8166 if (thread != 0) {
Glenn Kasten58123c32012-02-03 10:32:24 -08008167 thread->disconnectEffect(keep, handle, unpinIfLast);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008168 }
8169 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008170 return mHandles.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008171}
8172
8173void AudioFlinger::EffectModule::updateState() {
8174 Mutex::Autolock _l(mLock);
8175
8176 switch (mState) {
8177 case RESTART:
8178 reset_l();
8179 // FALL THROUGH
8180
8181 case STARTING:
8182 // clear auxiliary effect input buffer for next accumulation
8183 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
8184 memset(mConfig.inputCfg.buffer.raw,
8185 0,
8186 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
8187 }
8188 start_l();
8189 mState = ACTIVE;
8190 break;
8191 case STOPPING:
8192 stop_l();
8193 mDisableWaitCnt = mMaxDisableWaitCnt;
8194 mState = STOPPED;
8195 break;
8196 case STOPPED:
8197 // mDisableWaitCnt is forced to 1 by process() when the engine indicates the end of the
8198 // turn off sequence.
8199 if (--mDisableWaitCnt == 0) {
8200 reset_l();
8201 mState = IDLE;
8202 }
8203 break;
Eric Laurentec437d82011-07-26 20:54:46 -07008204 default: //IDLE , ACTIVE, DESTROYED
Mathias Agopian65ab4712010-07-14 17:59:35 -07008205 break;
8206 }
8207}
8208
8209void AudioFlinger::EffectModule::process()
8210{
8211 Mutex::Autolock _l(mLock);
8212
Eric Laurentec437d82011-07-26 20:54:46 -07008213 if (mState == DESTROYED || mEffectInterface == NULL ||
Mathias Agopian65ab4712010-07-14 17:59:35 -07008214 mConfig.inputCfg.buffer.raw == NULL ||
8215 mConfig.outputCfg.buffer.raw == NULL) {
8216 return;
8217 }
8218
Eric Laurent8f45bd72010-08-31 13:50:07 -07008219 if (isProcessEnabled()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008220 // do 32 bit to 16 bit conversion for auxiliary effect input buffer
8221 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Glenn Kasten3b21c502011-12-15 09:52:39 -08008222 ditherAndClamp(mConfig.inputCfg.buffer.s32,
Mathias Agopian65ab4712010-07-14 17:59:35 -07008223 mConfig.inputCfg.buffer.s32,
Eric Laurentde070132010-07-13 04:45:46 -07008224 mConfig.inputCfg.buffer.frameCount/2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008225 }
8226
8227 // do the actual processing in the effect engine
8228 int ret = (*mEffectInterface)->process(mEffectInterface,
8229 &mConfig.inputCfg.buffer,
8230 &mConfig.outputCfg.buffer);
8231
8232 // force transition to IDLE state when engine is ready
8233 if (mState == STOPPED && ret == -ENODATA) {
8234 mDisableWaitCnt = 1;
8235 }
8236
8237 // clear auxiliary effect input buffer for next accumulation
8238 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Eric Laurent73337482011-01-19 18:36:13 -08008239 memset(mConfig.inputCfg.buffer.raw, 0,
8240 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07008241 }
8242 } else if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_INSERT &&
Eric Laurent73337482011-01-19 18:36:13 -08008243 mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
8244 // If an insert effect is idle and input buffer is different from output buffer,
8245 // accumulate input onto output
Mathias Agopian65ab4712010-07-14 17:59:35 -07008246 sp<EffectChain> chain = mChain.promote();
Eric Laurentb469b942011-05-09 12:09:06 -07008247 if (chain != 0 && chain->activeTrackCnt() != 0) {
Eric Laurent73337482011-01-19 18:36:13 -08008248 size_t frameCnt = mConfig.inputCfg.buffer.frameCount * 2; //always stereo here
8249 int16_t *in = mConfig.inputCfg.buffer.s16;
8250 int16_t *out = mConfig.outputCfg.buffer.s16;
8251 for (size_t i = 0; i < frameCnt; i++) {
8252 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008253 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008254 }
8255 }
8256}
8257
8258void AudioFlinger::EffectModule::reset_l()
8259{
8260 if (mEffectInterface == NULL) {
8261 return;
8262 }
8263 (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_RESET, 0, NULL, 0, NULL);
8264}
8265
8266status_t AudioFlinger::EffectModule::configure()
8267{
Mathias Agopian65ab4712010-07-14 17:59:35 -07008268 if (mEffectInterface == NULL) {
8269 return NO_INIT;
8270 }
8271
8272 sp<ThreadBase> thread = mThread.promote();
8273 if (thread == 0) {
8274 return DEAD_OBJECT;
8275 }
8276
8277 // TODO: handle configuration of effects replacing track process
Glenn Kasten254af182012-07-03 14:59:05 -07008278 audio_channel_mask_t channelMask = thread->channelMask();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008279
8280 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Eric Laurente1315cf2011-05-17 19:16:02 -07008281 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_MONO;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008282 } else {
Glenn Kasten254af182012-07-03 14:59:05 -07008283 mConfig.inputCfg.channels = channelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008284 }
Glenn Kasten254af182012-07-03 14:59:05 -07008285 mConfig.outputCfg.channels = channelMask;
Eric Laurente1315cf2011-05-17 19:16:02 -07008286 mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
8287 mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008288 mConfig.inputCfg.samplingRate = thread->sampleRate();
8289 mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
8290 mConfig.inputCfg.bufferProvider.cookie = NULL;
8291 mConfig.inputCfg.bufferProvider.getBuffer = NULL;
8292 mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
8293 mConfig.outputCfg.bufferProvider.cookie = NULL;
8294 mConfig.outputCfg.bufferProvider.getBuffer = NULL;
8295 mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
8296 mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
8297 // Insert effect:
Dima Zavinfce7a472011-04-19 22:30:36 -07008298 // - in session AUDIO_SESSION_OUTPUT_MIX or AUDIO_SESSION_OUTPUT_STAGE,
Eric Laurentde070132010-07-13 04:45:46 -07008299 // always overwrites output buffer: input buffer == output buffer
Mathias Agopian65ab4712010-07-14 17:59:35 -07008300 // - in other sessions:
8301 // last effect in the chain accumulates in output buffer: input buffer != output buffer
8302 // other effect: overwrites output buffer: input buffer == output buffer
8303 // Auxiliary effect:
8304 // accumulates in output buffer: input buffer != output buffer
8305 // Therefore: accumulate <=> input buffer != output buffer
8306 if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
8307 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
8308 } else {
8309 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
8310 }
8311 mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
8312 mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
8313 mConfig.inputCfg.buffer.frameCount = thread->frameCount();
8314 mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
8315
Steve Block3856b092011-10-20 11:56:00 +01008316 ALOGV("configure() %p thread %p buffer %p framecount %d",
Eric Laurentde070132010-07-13 04:45:46 -07008317 this, thread.get(), mConfig.inputCfg.buffer.raw, mConfig.inputCfg.buffer.frameCount);
8318
Mathias Agopian65ab4712010-07-14 17:59:35 -07008319 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07008320 uint32_t size = sizeof(int);
8321 status_t status = (*mEffectInterface)->command(mEffectInterface,
Eric Laurent3d5188b2011-12-16 15:30:36 -08008322 EFFECT_CMD_SET_CONFIG,
Eric Laurent25f43952010-07-28 05:40:18 -07008323 sizeof(effect_config_t),
8324 &mConfig,
8325 &size,
8326 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008327 if (status == 0) {
8328 status = cmdStatus;
8329 }
8330
Marco Nelissenf06c2ed2012-06-06 09:52:31 -07008331 if (status == 0 &&
8332 (memcmp(&mDescriptor.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0)) {
8333 uint32_t buf32[sizeof(effect_param_t) / sizeof(uint32_t) + 2];
8334 effect_param_t *p = (effect_param_t *)buf32;
8335
8336 p->psize = sizeof(uint32_t);
8337 p->vsize = sizeof(uint32_t);
8338 size = sizeof(int);
8339 *(int32_t *)p->data = VISUALIZER_PARAM_LATENCY;
8340
8341 uint32_t latency = 0;
8342 PlaybackThread *pbt = thread->mAudioFlinger->checkPlaybackThread_l(thread->mId);
8343 if (pbt != NULL) {
8344 latency = pbt->latency_l();
8345 }
8346
8347 *((int32_t *)p->data + 1)= latency;
8348 (*mEffectInterface)->command(mEffectInterface,
8349 EFFECT_CMD_SET_PARAM,
8350 sizeof(effect_param_t) + 8,
8351 &buf32,
8352 &size,
8353 &cmdStatus);
8354 }
8355
Mathias Agopian65ab4712010-07-14 17:59:35 -07008356 mMaxDisableWaitCnt = (MAX_DISABLE_TIME_MS * mConfig.outputCfg.samplingRate) /
8357 (1000 * mConfig.outputCfg.buffer.frameCount);
8358
8359 return status;
8360}
8361
8362status_t AudioFlinger::EffectModule::init()
8363{
8364 Mutex::Autolock _l(mLock);
8365 if (mEffectInterface == NULL) {
8366 return NO_INIT;
8367 }
8368 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07008369 uint32_t size = sizeof(status_t);
8370 status_t status = (*mEffectInterface)->command(mEffectInterface,
8371 EFFECT_CMD_INIT,
8372 0,
8373 NULL,
8374 &size,
8375 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008376 if (status == 0) {
8377 status = cmdStatus;
8378 }
8379 return status;
8380}
8381
Eric Laurentec35a142011-10-05 17:42:25 -07008382status_t AudioFlinger::EffectModule::start()
8383{
8384 Mutex::Autolock _l(mLock);
8385 return start_l();
8386}
8387
Mathias Agopian65ab4712010-07-14 17:59:35 -07008388status_t AudioFlinger::EffectModule::start_l()
8389{
8390 if (mEffectInterface == NULL) {
8391 return NO_INIT;
8392 }
8393 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07008394 uint32_t size = sizeof(status_t);
8395 status_t status = (*mEffectInterface)->command(mEffectInterface,
8396 EFFECT_CMD_ENABLE,
8397 0,
8398 NULL,
8399 &size,
8400 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008401 if (status == 0) {
8402 status = cmdStatus;
8403 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008404 if (status == 0 &&
8405 ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
8406 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
8407 sp<ThreadBase> thread = mThread.promote();
8408 if (thread != 0) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07008409 audio_stream_t *stream = thread->stream();
8410 if (stream != NULL) {
8411 stream->add_audio_effect(stream, mEffectInterface);
8412 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008413 }
8414 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008415 return status;
8416}
8417
Eric Laurentec437d82011-07-26 20:54:46 -07008418status_t AudioFlinger::EffectModule::stop()
8419{
8420 Mutex::Autolock _l(mLock);
8421 return stop_l();
8422}
8423
Mathias Agopian65ab4712010-07-14 17:59:35 -07008424status_t AudioFlinger::EffectModule::stop_l()
8425{
8426 if (mEffectInterface == NULL) {
8427 return NO_INIT;
8428 }
8429 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07008430 uint32_t size = sizeof(status_t);
8431 status_t status = (*mEffectInterface)->command(mEffectInterface,
8432 EFFECT_CMD_DISABLE,
8433 0,
8434 NULL,
8435 &size,
8436 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008437 if (status == 0) {
8438 status = cmdStatus;
8439 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008440 if (status == 0 &&
8441 ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
8442 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
8443 sp<ThreadBase> thread = mThread.promote();
8444 if (thread != 0) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07008445 audio_stream_t *stream = thread->stream();
8446 if (stream != NULL) {
8447 stream->remove_audio_effect(stream, mEffectInterface);
8448 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008449 }
8450 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008451 return status;
8452}
8453
Eric Laurent25f43952010-07-28 05:40:18 -07008454status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
8455 uint32_t cmdSize,
8456 void *pCmdData,
8457 uint32_t *replySize,
8458 void *pReplyData)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008459{
8460 Mutex::Autolock _l(mLock);
Steve Block3856b092011-10-20 11:56:00 +01008461// ALOGV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008462
Eric Laurentec437d82011-07-26 20:54:46 -07008463 if (mState == DESTROYED || mEffectInterface == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008464 return NO_INIT;
8465 }
Eric Laurent25f43952010-07-28 05:40:18 -07008466 status_t status = (*mEffectInterface)->command(mEffectInterface,
8467 cmdCode,
8468 cmdSize,
8469 pCmdData,
8470 replySize,
8471 pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008472 if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
Eric Laurent25f43952010-07-28 05:40:18 -07008473 uint32_t size = (replySize == NULL) ? 0 : *replySize;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008474 for (size_t i = 1; i < mHandles.size(); i++) {
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008475 EffectHandle *h = mHandles[i];
8476 if (h != NULL && !h->destroyed_l()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008477 h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
8478 }
8479 }
8480 }
8481 return status;
8482}
8483
8484status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
8485{
8486 Mutex::Autolock _l(mLock);
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008487 return setEnabled_l(enabled);
8488}
8489
8490// must be called with EffectModule::mLock held
8491status_t AudioFlinger::EffectModule::setEnabled_l(bool enabled)
8492{
8493
Steve Block3856b092011-10-20 11:56:00 +01008494 ALOGV("setEnabled %p enabled %d", this, enabled);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008495
8496 if (enabled != isEnabled()) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07008497 status_t status = AudioSystem::setEffectEnabled(mId, enabled);
8498 if (enabled && status != NO_ERROR) {
8499 return status;
8500 }
8501
Mathias Agopian65ab4712010-07-14 17:59:35 -07008502 switch (mState) {
8503 // going from disabled to enabled
8504 case IDLE:
8505 mState = STARTING;
8506 break;
8507 case STOPPED:
8508 mState = RESTART;
8509 break;
8510 case STOPPING:
8511 mState = ACTIVE;
8512 break;
8513
8514 // going from enabled to disabled
8515 case RESTART:
Eric Laurent8f45bd72010-08-31 13:50:07 -07008516 mState = STOPPED;
8517 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008518 case STARTING:
8519 mState = IDLE;
8520 break;
8521 case ACTIVE:
8522 mState = STOPPING;
8523 break;
Eric Laurentec437d82011-07-26 20:54:46 -07008524 case DESTROYED:
8525 return NO_ERROR; // simply ignore as we are being destroyed
Mathias Agopian65ab4712010-07-14 17:59:35 -07008526 }
8527 for (size_t i = 1; i < mHandles.size(); i++) {
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008528 EffectHandle *h = mHandles[i];
8529 if (h != NULL && !h->destroyed_l()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008530 h->setEnabled(enabled);
8531 }
8532 }
8533 }
8534 return NO_ERROR;
8535}
8536
Glenn Kastenc59c0042012-02-02 14:06:11 -08008537bool AudioFlinger::EffectModule::isEnabled() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07008538{
8539 switch (mState) {
8540 case RESTART:
8541 case STARTING:
8542 case ACTIVE:
8543 return true;
8544 case IDLE:
8545 case STOPPING:
8546 case STOPPED:
Eric Laurentec437d82011-07-26 20:54:46 -07008547 case DESTROYED:
Mathias Agopian65ab4712010-07-14 17:59:35 -07008548 default:
8549 return false;
8550 }
8551}
8552
Glenn Kastenc59c0042012-02-02 14:06:11 -08008553bool AudioFlinger::EffectModule::isProcessEnabled() const
Eric Laurent8f45bd72010-08-31 13:50:07 -07008554{
8555 switch (mState) {
8556 case RESTART:
8557 case ACTIVE:
8558 case STOPPING:
8559 case STOPPED:
8560 return true;
8561 case IDLE:
8562 case STARTING:
Eric Laurentec437d82011-07-26 20:54:46 -07008563 case DESTROYED:
Eric Laurent8f45bd72010-08-31 13:50:07 -07008564 default:
8565 return false;
8566 }
8567}
8568
Mathias Agopian65ab4712010-07-14 17:59:35 -07008569status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
8570{
8571 Mutex::Autolock _l(mLock);
8572 status_t status = NO_ERROR;
8573
8574 // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
8575 // if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
Eric Laurent8f45bd72010-08-31 13:50:07 -07008576 if (isProcessEnabled() &&
Eric Laurentf997cab2010-07-19 06:24:46 -07008577 ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL ||
8578 (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_IND)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008579 status_t cmdStatus;
8580 uint32_t volume[2];
8581 uint32_t *pVolume = NULL;
Eric Laurent25f43952010-07-28 05:40:18 -07008582 uint32_t size = sizeof(volume);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008583 volume[0] = *left;
8584 volume[1] = *right;
8585 if (controller) {
8586 pVolume = volume;
8587 }
Eric Laurent25f43952010-07-28 05:40:18 -07008588 status = (*mEffectInterface)->command(mEffectInterface,
8589 EFFECT_CMD_SET_VOLUME,
8590 size,
8591 volume,
8592 &size,
8593 pVolume);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008594 if (controller && status == NO_ERROR && size == sizeof(volume)) {
8595 *left = volume[0];
8596 *right = volume[1];
8597 }
8598 }
8599 return status;
8600}
8601
Glenn Kastenbb4350d2012-07-03 15:56:38 -07008602status_t AudioFlinger::EffectModule::setDevice(audio_devices_t device)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008603{
8604 Mutex::Autolock _l(mLock);
8605 status_t status = NO_ERROR;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008606 if (device && (mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
8607 // audio pre processing modules on RecordThread can receive both output and
8608 // input device indication in the same call
Glenn Kastenbb4350d2012-07-03 15:56:38 -07008609 audio_devices_t dev = device & AUDIO_DEVICE_OUT_ALL;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008610 if (dev) {
8611 status_t cmdStatus;
8612 uint32_t size = sizeof(status_t);
8613
8614 status = (*mEffectInterface)->command(mEffectInterface,
8615 EFFECT_CMD_SET_DEVICE,
8616 sizeof(uint32_t),
8617 &dev,
8618 &size,
8619 &cmdStatus);
8620 if (status == NO_ERROR) {
8621 status = cmdStatus;
8622 }
8623 }
8624 dev = device & AUDIO_DEVICE_IN_ALL;
8625 if (dev) {
8626 status_t cmdStatus;
8627 uint32_t size = sizeof(status_t);
8628
8629 status_t status2 = (*mEffectInterface)->command(mEffectInterface,
8630 EFFECT_CMD_SET_INPUT_DEVICE,
8631 sizeof(uint32_t),
8632 &dev,
8633 &size,
8634 &cmdStatus);
8635 if (status2 == NO_ERROR) {
8636 status2 = cmdStatus;
8637 }
8638 if (status == NO_ERROR) {
8639 status = status2;
8640 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008641 }
8642 }
8643 return status;
8644}
8645
Glenn Kastenf78aee72012-01-04 11:00:47 -08008646status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008647{
8648 Mutex::Autolock _l(mLock);
8649 status_t status = NO_ERROR;
8650 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008651 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07008652 uint32_t size = sizeof(status_t);
8653 status = (*mEffectInterface)->command(mEffectInterface,
8654 EFFECT_CMD_SET_AUDIO_MODE,
Glenn Kastenf78aee72012-01-04 11:00:47 -08008655 sizeof(audio_mode_t),
Eric Laurente1315cf2011-05-17 19:16:02 -07008656 &mode,
Eric Laurent25f43952010-07-28 05:40:18 -07008657 &size,
8658 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008659 if (status == NO_ERROR) {
8660 status = cmdStatus;
8661 }
8662 }
8663 return status;
8664}
8665
Eric Laurent59255e42011-07-27 19:49:51 -07008666void AudioFlinger::EffectModule::setSuspended(bool suspended)
8667{
8668 Mutex::Autolock _l(mLock);
8669 mSuspended = suspended;
8670}
Glenn Kastena3a85482012-01-04 11:01:11 -08008671
8672bool AudioFlinger::EffectModule::suspended() const
Eric Laurent59255e42011-07-27 19:49:51 -07008673{
8674 Mutex::Autolock _l(mLock);
8675 return mSuspended;
8676}
8677
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008678bool AudioFlinger::EffectModule::purgeHandles()
8679{
8680 bool enabled = false;
8681 Mutex::Autolock _l(mLock);
8682 for (size_t i = 0; i < mHandles.size(); i++) {
8683 EffectHandle *handle = mHandles[i];
8684 if (handle != NULL && !handle->destroyed_l()) {
8685 handle->effect().clear();
8686 if (handle->hasControl()) {
8687 enabled = handle->enabled();
8688 }
8689 }
8690 }
8691 return enabled;
8692}
8693
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07008694void AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008695{
8696 const size_t SIZE = 256;
8697 char buffer[SIZE];
8698 String8 result;
8699
8700 snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
8701 result.append(buffer);
8702
8703 bool locked = tryLock(mLock);
8704 // failed to lock - AudioFlinger is probably deadlocked
8705 if (!locked) {
8706 result.append("\t\tCould not lock Fx mutex:\n");
8707 }
8708
8709 result.append("\t\tSession Status State Engine:\n");
8710 snprintf(buffer, SIZE, "\t\t%05d %03d %03d 0x%08x\n",
8711 mSessionId, mStatus, mState, (uint32_t)mEffectInterface);
8712 result.append(buffer);
8713
8714 result.append("\t\tDescriptor:\n");
8715 snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
8716 mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
8717 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],mDescriptor.uuid.node[2],
8718 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
8719 result.append(buffer);
8720 snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
8721 mDescriptor.type.timeLow, mDescriptor.type.timeMid, mDescriptor.type.timeHiAndVersion,
8722 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],mDescriptor.type.node[2],
8723 mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
8724 result.append(buffer);
Eric Laurente1315cf2011-05-17 19:16:02 -07008725 snprintf(buffer, SIZE, "\t\t- apiVersion: %08X\n\t\t- flags: %08X\n",
Mathias Agopian65ab4712010-07-14 17:59:35 -07008726 mDescriptor.apiVersion,
8727 mDescriptor.flags);
8728 result.append(buffer);
8729 snprintf(buffer, SIZE, "\t\t- name: %s\n",
8730 mDescriptor.name);
8731 result.append(buffer);
8732 snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
8733 mDescriptor.implementor);
8734 result.append(buffer);
8735
8736 result.append("\t\t- Input configuration:\n");
8737 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
8738 snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
8739 (uint32_t)mConfig.inputCfg.buffer.raw,
8740 mConfig.inputCfg.buffer.frameCount,
8741 mConfig.inputCfg.samplingRate,
8742 mConfig.inputCfg.channels,
8743 mConfig.inputCfg.format);
8744 result.append(buffer);
8745
8746 result.append("\t\t- Output configuration:\n");
8747 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
8748 snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
8749 (uint32_t)mConfig.outputCfg.buffer.raw,
8750 mConfig.outputCfg.buffer.frameCount,
8751 mConfig.outputCfg.samplingRate,
8752 mConfig.outputCfg.channels,
8753 mConfig.outputCfg.format);
8754 result.append(buffer);
8755
8756 snprintf(buffer, SIZE, "\t\t%d Clients:\n", mHandles.size());
8757 result.append(buffer);
8758 result.append("\t\t\tPid Priority Ctrl Locked client server\n");
8759 for (size_t i = 0; i < mHandles.size(); ++i) {
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008760 EffectHandle *handle = mHandles[i];
8761 if (handle != NULL && !handle->destroyed_l()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008762 handle->dump(buffer, SIZE);
8763 result.append(buffer);
8764 }
8765 }
8766
8767 result.append("\n");
8768
8769 write(fd, result.string(), result.length());
8770
8771 if (locked) {
8772 mLock.unlock();
8773 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008774}
8775
8776// ----------------------------------------------------------------------------
8777// EffectHandle implementation
8778// ----------------------------------------------------------------------------
8779
8780#undef LOG_TAG
8781#define LOG_TAG "AudioFlinger::EffectHandle"
8782
8783AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
8784 const sp<AudioFlinger::Client>& client,
8785 const sp<IEffectClient>& effectClient,
8786 int32_t priority)
8787 : BnEffect(),
Marco Nelissen3a34bef2011-08-02 13:33:41 -07008788 mEffect(effect), mEffectClient(effectClient), mClient(client), mCblk(NULL),
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008789 mPriority(priority), mHasControl(false), mEnabled(false), mDestroyed(false)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008790{
Steve Block3856b092011-10-20 11:56:00 +01008791 ALOGV("constructor %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008792
Marco Nelissen3a34bef2011-08-02 13:33:41 -07008793 if (client == 0) {
8794 return;
8795 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008796 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
8797 mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
8798 if (mCblkMemory != 0) {
8799 mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer());
8800
Glenn Kastena0d68332012-01-27 16:47:15 -08008801 if (mCblk != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008802 new(mCblk) effect_param_cblk_t();
8803 mBuffer = (uint8_t *)mCblk + bufOffset;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07008804 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008805 } else {
Steve Block29357bc2012-01-06 19:20:56 +00008806 ALOGE("not enough memory for Effect size=%u", EFFECT_PARAM_BUFFER_SIZE + sizeof(effect_param_cblk_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07008807 return;
8808 }
8809}
8810
8811AudioFlinger::EffectHandle::~EffectHandle()
8812{
Steve Block3856b092011-10-20 11:56:00 +01008813 ALOGV("Destructor %p", this);
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008814
8815 if (mEffect == 0) {
8816 mDestroyed = true;
8817 return;
8818 }
8819 mEffect->lock();
8820 mDestroyed = true;
8821 mEffect->unlock();
Marco Nelissen3a34bef2011-08-02 13:33:41 -07008822 disconnect(false);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008823}
8824
8825status_t AudioFlinger::EffectHandle::enable()
8826{
Steve Block3856b092011-10-20 11:56:00 +01008827 ALOGV("enable %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008828 if (!mHasControl) return INVALID_OPERATION;
8829 if (mEffect == 0) return DEAD_OBJECT;
8830
Eric Laurentdb7c0792011-08-10 10:37:50 -07008831 if (mEnabled) {
8832 return NO_ERROR;
8833 }
8834
Eric Laurent59255e42011-07-27 19:49:51 -07008835 mEnabled = true;
8836
8837 sp<ThreadBase> thread = mEffect->thread().promote();
8838 if (thread != 0) {
8839 thread->checkSuspendOnEffectEnabled(mEffect, true, mEffect->sessionId());
8840 }
8841
8842 // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
8843 if (mEffect->suspended()) {
8844 return NO_ERROR;
8845 }
8846
Eric Laurentdb7c0792011-08-10 10:37:50 -07008847 status_t status = mEffect->setEnabled(true);
8848 if (status != NO_ERROR) {
8849 if (thread != 0) {
8850 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
8851 }
8852 mEnabled = false;
8853 }
8854 return status;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008855}
8856
8857status_t AudioFlinger::EffectHandle::disable()
8858{
Steve Block3856b092011-10-20 11:56:00 +01008859 ALOGV("disable %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008860 if (!mHasControl) return INVALID_OPERATION;
Eric Laurent59255e42011-07-27 19:49:51 -07008861 if (mEffect == 0) return DEAD_OBJECT;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008862
Eric Laurentdb7c0792011-08-10 10:37:50 -07008863 if (!mEnabled) {
8864 return NO_ERROR;
8865 }
Eric Laurent59255e42011-07-27 19:49:51 -07008866 mEnabled = false;
8867
8868 if (mEffect->suspended()) {
8869 return NO_ERROR;
8870 }
8871
8872 status_t status = mEffect->setEnabled(false);
8873
8874 sp<ThreadBase> thread = mEffect->thread().promote();
8875 if (thread != 0) {
8876 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
8877 }
8878
8879 return status;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008880}
8881
8882void AudioFlinger::EffectHandle::disconnect()
8883{
Marco Nelissen3a34bef2011-08-02 13:33:41 -07008884 disconnect(true);
8885}
8886
Glenn Kasten58123c32012-02-03 10:32:24 -08008887void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast)
Marco Nelissen3a34bef2011-08-02 13:33:41 -07008888{
Glenn Kasten58123c32012-02-03 10:32:24 -08008889 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
Mathias Agopian65ab4712010-07-14 17:59:35 -07008890 if (mEffect == 0) {
8891 return;
8892 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008893 // restore suspended effects if the disconnected handle was enabled and the last one.
8894 if ((mEffect->disconnect(this, unpinIfLast) == 0) && mEnabled) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07008895 sp<ThreadBase> thread = mEffect->thread().promote();
8896 if (thread != 0) {
8897 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
8898 }
Eric Laurent59255e42011-07-27 19:49:51 -07008899 }
8900
Mathias Agopian65ab4712010-07-14 17:59:35 -07008901 // release sp on module => module destructor can be called now
8902 mEffect.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008903 if (mClient != 0) {
Glenn Kastena0d68332012-01-27 16:47:15 -08008904 if (mCblk != NULL) {
Glenn Kasten1a0ae5b2012-02-03 10:24:48 -08008905 // unlike ~TrackBase(), mCblk is never a local new, so don't delete
Marco Nelissen3a34bef2011-08-02 13:33:41 -07008906 mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
8907 }
Glenn Kastendbfafaf2012-01-25 15:27:15 -08008908 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Glenn Kasten98ec94c2012-01-25 14:28:29 -08008909 // Client destructor must run with AudioFlinger mutex locked
Mathias Agopian65ab4712010-07-14 17:59:35 -07008910 Mutex::Autolock _l(mClient->audioFlinger()->mLock);
8911 mClient.clear();
8912 }
8913}
8914
Eric Laurent25f43952010-07-28 05:40:18 -07008915status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
8916 uint32_t cmdSize,
8917 void *pCmdData,
8918 uint32_t *replySize,
8919 void *pReplyData)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008920{
Steve Block3856b092011-10-20 11:56:00 +01008921// ALOGV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
Eric Laurent25f43952010-07-28 05:40:18 -07008922// cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07008923
8924 // only get parameter command is permitted for applications not controlling the effect
8925 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
8926 return INVALID_OPERATION;
8927 }
8928 if (mEffect == 0) return DEAD_OBJECT;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07008929 if (mClient == 0) return INVALID_OPERATION;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008930
8931 // handle commands that are not forwarded transparently to effect engine
8932 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
8933 // No need to trylock() here as this function is executed in the binder thread serving a particular client process:
8934 // no risk to block the whole media server process or mixer threads is we are stuck here
8935 Mutex::Autolock _l(mCblk->lock);
8936 if (mCblk->clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
8937 mCblk->serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
8938 mCblk->serverIndex = 0;
8939 mCblk->clientIndex = 0;
8940 return BAD_VALUE;
8941 }
8942 status_t status = NO_ERROR;
8943 while (mCblk->serverIndex < mCblk->clientIndex) {
8944 int reply;
Eric Laurent25f43952010-07-28 05:40:18 -07008945 uint32_t rsize = sizeof(int);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008946 int *p = (int *)(mBuffer + mCblk->serverIndex);
8947 int size = *p++;
8948 if (((uint8_t *)p + size) > mBuffer + mCblk->clientIndex) {
Steve Block5ff1dd52012-01-05 23:22:43 +00008949 ALOGW("command(): invalid parameter block size");
Mathias Agopian65ab4712010-07-14 17:59:35 -07008950 break;
8951 }
8952 effect_param_t *param = (effect_param_t *)p;
8953 if (param->psize == 0 || param->vsize == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00008954 ALOGW("command(): null parameter or value size");
Mathias Agopian65ab4712010-07-14 17:59:35 -07008955 mCblk->serverIndex += size;
8956 continue;
8957 }
Eric Laurent25f43952010-07-28 05:40:18 -07008958 uint32_t psize = sizeof(effect_param_t) +
8959 ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) +
8960 param->vsize;
8961 status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM,
8962 psize,
8963 p,
8964 &rsize,
8965 &reply);
Eric Laurentaeae3de2010-09-02 11:56:55 -07008966 // stop at first error encountered
8967 if (ret != NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008968 status = ret;
Eric Laurentaeae3de2010-09-02 11:56:55 -07008969 *(int *)pReplyData = reply;
8970 break;
8971 } else if (reply != NO_ERROR) {
8972 *(int *)pReplyData = reply;
8973 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008974 }
8975 mCblk->serverIndex += size;
8976 }
8977 mCblk->serverIndex = 0;
8978 mCblk->clientIndex = 0;
8979 return status;
8980 } else if (cmdCode == EFFECT_CMD_ENABLE) {
Eric Laurentaeae3de2010-09-02 11:56:55 -07008981 *(int *)pReplyData = NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008982 return enable();
8983 } else if (cmdCode == EFFECT_CMD_DISABLE) {
Eric Laurentaeae3de2010-09-02 11:56:55 -07008984 *(int *)pReplyData = NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008985 return disable();
8986 }
8987
8988 return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
8989}
8990
Eric Laurent59255e42011-07-27 19:49:51 -07008991void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008992{
Steve Block3856b092011-10-20 11:56:00 +01008993 ALOGV("setControl %p control %d", this, hasControl);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008994
8995 mHasControl = hasControl;
Eric Laurent59255e42011-07-27 19:49:51 -07008996 mEnabled = enabled;
8997
Mathias Agopian65ab4712010-07-14 17:59:35 -07008998 if (signal && mEffectClient != 0) {
8999 mEffectClient->controlStatusChanged(hasControl);
9000 }
9001}
9002
Eric Laurent25f43952010-07-28 05:40:18 -07009003void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
9004 uint32_t cmdSize,
9005 void *pCmdData,
9006 uint32_t replySize,
9007 void *pReplyData)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009008{
9009 if (mEffectClient != 0) {
9010 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
9011 }
9012}
9013
9014
9015
9016void AudioFlinger::EffectHandle::setEnabled(bool enabled)
9017{
9018 if (mEffectClient != 0) {
9019 mEffectClient->enableStatusChanged(enabled);
9020 }
9021}
9022
9023status_t AudioFlinger::EffectHandle::onTransact(
9024 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
9025{
9026 return BnEffect::onTransact(code, data, reply, flags);
9027}
9028
9029
9030void AudioFlinger::EffectHandle::dump(char* buffer, size_t size)
9031{
Glenn Kastena0d68332012-01-27 16:47:15 -08009032 bool locked = mCblk != NULL && tryLock(mCblk->lock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009033
9034 snprintf(buffer, size, "\t\t\t%05d %05d %01u %01u %05u %05u\n",
Glenn Kasten44deb052012-02-05 18:09:08 -08009035 (mClient == 0) ? getpid_cached : mClient->pid(),
Mathias Agopian65ab4712010-07-14 17:59:35 -07009036 mPriority,
9037 mHasControl,
9038 !locked,
Marco Nelissen3a34bef2011-08-02 13:33:41 -07009039 mCblk ? mCblk->clientIndex : 0,
9040 mCblk ? mCblk->serverIndex : 0
Mathias Agopian65ab4712010-07-14 17:59:35 -07009041 );
9042
9043 if (locked) {
9044 mCblk->lock.unlock();
9045 }
9046}
9047
9048#undef LOG_TAG
9049#define LOG_TAG "AudioFlinger::EffectChain"
9050
Glenn Kasten9eaa5572012-01-20 13:32:16 -08009051AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07009052 int sessionId)
Glenn Kasten9eaa5572012-01-20 13:32:16 -08009053 : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
Eric Laurentb469b942011-05-09 12:09:06 -07009054 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
9055 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009056{
Dima Zavinfce7a472011-04-19 22:30:36 -07009057 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Glenn Kasten9eaa5572012-01-20 13:32:16 -08009058 if (thread == NULL) {
Eric Laurent544fe9b2011-11-11 15:42:52 -08009059 return;
9060 }
9061 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
9062 thread->frameCount();
Mathias Agopian65ab4712010-07-14 17:59:35 -07009063}
9064
9065AudioFlinger::EffectChain::~EffectChain()
9066{
9067 if (mOwnInBuffer) {
9068 delete mInBuffer;
9069 }
9070
9071}
9072
Eric Laurent59255e42011-07-27 19:49:51 -07009073// getEffectFromDesc_l() must be called with ThreadBase::mLock held
Eric Laurentcab11242010-07-15 12:50:15 -07009074sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(effect_descriptor_t *descriptor)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009075{
Mathias Agopian65ab4712010-07-14 17:59:35 -07009076 size_t size = mEffects.size();
9077
9078 for (size_t i = 0; i < size; i++) {
9079 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
Glenn Kasten090f0192012-01-30 13:00:02 -08009080 return mEffects[i];
Mathias Agopian65ab4712010-07-14 17:59:35 -07009081 }
9082 }
Glenn Kasten090f0192012-01-30 13:00:02 -08009083 return 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009084}
9085
Eric Laurent59255e42011-07-27 19:49:51 -07009086// getEffectFromId_l() must be called with ThreadBase::mLock held
Eric Laurentcab11242010-07-15 12:50:15 -07009087sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009088{
Mathias Agopian65ab4712010-07-14 17:59:35 -07009089 size_t size = mEffects.size();
9090
9091 for (size_t i = 0; i < size; i++) {
Eric Laurentde070132010-07-13 04:45:46 -07009092 // by convention, return first effect if id provided is 0 (0 is never a valid id)
9093 if (id == 0 || mEffects[i]->id() == id) {
Glenn Kasten090f0192012-01-30 13:00:02 -08009094 return mEffects[i];
Mathias Agopian65ab4712010-07-14 17:59:35 -07009095 }
9096 }
Glenn Kasten090f0192012-01-30 13:00:02 -08009097 return 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009098}
9099
Eric Laurent59255e42011-07-27 19:49:51 -07009100// getEffectFromType_l() must be called with ThreadBase::mLock held
9101sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
9102 const effect_uuid_t *type)
9103{
Eric Laurent59255e42011-07-27 19:49:51 -07009104 size_t size = mEffects.size();
9105
9106 for (size_t i = 0; i < size; i++) {
9107 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
Glenn Kasten090f0192012-01-30 13:00:02 -08009108 return mEffects[i];
Eric Laurent59255e42011-07-27 19:49:51 -07009109 }
9110 }
Glenn Kasten090f0192012-01-30 13:00:02 -08009111 return 0;
Eric Laurent59255e42011-07-27 19:49:51 -07009112}
9113
Eric Laurent91b14c42012-05-30 12:30:29 -07009114void AudioFlinger::EffectChain::clearInputBuffer()
9115{
9116 Mutex::Autolock _l(mLock);
9117 sp<ThreadBase> thread = mThread.promote();
9118 if (thread == 0) {
9119 ALOGW("clearInputBuffer(): cannot promote mixer thread");
9120 return;
9121 }
9122 clearInputBuffer_l(thread);
9123}
9124
9125// Must be called with EffectChain::mLock locked
9126void AudioFlinger::EffectChain::clearInputBuffer_l(sp<ThreadBase> thread)
9127{
9128 size_t numSamples = thread->frameCount() * thread->channelCount();
9129 memset(mInBuffer, 0, numSamples * sizeof(int16_t));
9130
9131}
9132
Mathias Agopian65ab4712010-07-14 17:59:35 -07009133// Must be called with EffectChain::mLock locked
9134void AudioFlinger::EffectChain::process_l()
9135{
Eric Laurentdac69112010-09-28 14:09:57 -07009136 sp<ThreadBase> thread = mThread.promote();
9137 if (thread == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009138 ALOGW("process_l(): cannot promote mixer thread");
Eric Laurentdac69112010-09-28 14:09:57 -07009139 return;
9140 }
Dima Zavinfce7a472011-04-19 22:30:36 -07009141 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
9142 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Eric Laurent544fe9b2011-11-11 15:42:52 -08009143 // always process effects unless no more tracks are on the session and the effect tail
9144 // has been rendered
9145 bool doProcess = true;
Eric Laurentdac69112010-09-28 14:09:57 -07009146 if (!isGlobalSession) {
Eric Laurent544fe9b2011-11-11 15:42:52 -08009147 bool tracksOnSession = (trackCnt() != 0);
Eric Laurentb469b942011-05-09 12:09:06 -07009148
Eric Laurent544fe9b2011-11-11 15:42:52 -08009149 if (!tracksOnSession && mTailBufferCount == 0) {
9150 doProcess = false;
9151 }
9152
9153 if (activeTrackCnt() == 0) {
9154 // if no track is active and the effect tail has not been rendered,
9155 // the input buffer must be cleared here as the mixer process will not do it
9156 if (tracksOnSession || mTailBufferCount > 0) {
Eric Laurent91b14c42012-05-30 12:30:29 -07009157 clearInputBuffer_l(thread);
Eric Laurent544fe9b2011-11-11 15:42:52 -08009158 if (mTailBufferCount > 0) {
9159 mTailBufferCount--;
9160 }
9161 }
9162 }
Eric Laurentdac69112010-09-28 14:09:57 -07009163 }
9164
Mathias Agopian65ab4712010-07-14 17:59:35 -07009165 size_t size = mEffects.size();
Eric Laurent544fe9b2011-11-11 15:42:52 -08009166 if (doProcess) {
Eric Laurentdac69112010-09-28 14:09:57 -07009167 for (size_t i = 0; i < size; i++) {
9168 mEffects[i]->process();
9169 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009170 }
9171 for (size_t i = 0; i < size; i++) {
9172 mEffects[i]->updateState();
9173 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009174}
9175
Eric Laurentcab11242010-07-15 12:50:15 -07009176// addEffect_l() must be called with PlaybackThread::mLock held
Eric Laurentde070132010-07-13 04:45:46 -07009177status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009178{
9179 effect_descriptor_t desc = effect->desc();
9180 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
9181
9182 Mutex::Autolock _l(mLock);
Eric Laurentde070132010-07-13 04:45:46 -07009183 effect->setChain(this);
9184 sp<ThreadBase> thread = mThread.promote();
9185 if (thread == 0) {
9186 return NO_INIT;
9187 }
9188 effect->setThread(thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009189
9190 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
9191 // Auxiliary effects are inserted at the beginning of mEffects vector as
9192 // they are processed first and accumulated in chain input buffer
9193 mEffects.insertAt(effect, 0);
Eric Laurentde070132010-07-13 04:45:46 -07009194
Mathias Agopian65ab4712010-07-14 17:59:35 -07009195 // the input buffer for auxiliary effect contains mono samples in
9196 // 32 bit format. This is to avoid saturation in AudoMixer
9197 // accumulation stage. Saturation is done in EffectModule::process() before
9198 // calling the process in effect engine
9199 size_t numSamples = thread->frameCount();
9200 int32_t *buffer = new int32_t[numSamples];
9201 memset(buffer, 0, numSamples * sizeof(int32_t));
9202 effect->setInBuffer((int16_t *)buffer);
9203 // auxiliary effects output samples to chain input buffer for further processing
9204 // by insert effects
9205 effect->setOutBuffer(mInBuffer);
9206 } else {
9207 // Insert effects are inserted at the end of mEffects vector as they are processed
9208 // after track and auxiliary effects.
9209 // Insert effect order as a function of indicated preference:
9210 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
9211 // another effect is present
9212 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
9213 // last effect claiming first position
9214 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
9215 // first effect claiming last position
9216 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
9217 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
9218 // already present
9219
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009220 size_t size = mEffects.size();
9221 size_t idx_insert = size;
9222 ssize_t idx_insert_first = -1;
9223 ssize_t idx_insert_last = -1;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009224
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009225 for (size_t i = 0; i < size; i++) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07009226 effect_descriptor_t d = mEffects[i]->desc();
9227 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
9228 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
9229 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
9230 // check invalid effect chaining combinations
9231 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
9232 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009233 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s", desc.name, d.name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009234 return INVALID_OPERATION;
9235 }
9236 // remember position of first insert effect and by default
9237 // select this as insert position for new effect
9238 if (idx_insert == size) {
9239 idx_insert = i;
9240 }
9241 // remember position of last insert effect claiming
9242 // first position
9243 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
9244 idx_insert_first = i;
9245 }
9246 // remember position of first insert effect claiming
9247 // last position
9248 if (iPref == EFFECT_FLAG_INSERT_LAST &&
9249 idx_insert_last == -1) {
9250 idx_insert_last = i;
9251 }
9252 }
9253 }
9254
9255 // modify idx_insert from first position if needed
9256 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
9257 if (idx_insert_last != -1) {
9258 idx_insert = idx_insert_last;
9259 } else {
9260 idx_insert = size;
9261 }
9262 } else {
9263 if (idx_insert_first != -1) {
9264 idx_insert = idx_insert_first + 1;
9265 }
9266 }
9267
9268 // always read samples from chain input buffer
9269 effect->setInBuffer(mInBuffer);
9270
9271 // if last effect in the chain, output samples to chain
9272 // output buffer, otherwise to chain input buffer
9273 if (idx_insert == size) {
9274 if (idx_insert != 0) {
9275 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
9276 mEffects[idx_insert-1]->configure();
9277 }
9278 effect->setOutBuffer(mOutBuffer);
9279 } else {
9280 effect->setOutBuffer(mInBuffer);
9281 }
9282 mEffects.insertAt(effect, idx_insert);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009283
Steve Block3856b092011-10-20 11:56:00 +01009284 ALOGV("addEffect_l() effect %p, added in chain %p at rank %d", effect.get(), this, idx_insert);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009285 }
9286 effect->configure();
9287 return NO_ERROR;
9288}
9289
Eric Laurentcab11242010-07-15 12:50:15 -07009290// removeEffect_l() must be called with PlaybackThread::mLock held
9291size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009292{
9293 Mutex::Autolock _l(mLock);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009294 size_t size = mEffects.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07009295 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
9296
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009297 for (size_t i = 0; i < size; i++) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07009298 if (effect == mEffects[i]) {
Eric Laurentec437d82011-07-26 20:54:46 -07009299 // calling stop here will remove pre-processing effect from the audio HAL.
9300 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
9301 // the middle of a read from audio HAL
Eric Laurentec35a142011-10-05 17:42:25 -07009302 if (mEffects[i]->state() == EffectModule::ACTIVE ||
9303 mEffects[i]->state() == EffectModule::STOPPING) {
9304 mEffects[i]->stop();
9305 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009306 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
9307 delete[] effect->inBuffer();
9308 } else {
9309 if (i == size - 1 && i != 0) {
9310 mEffects[i - 1]->setOutBuffer(mOutBuffer);
9311 mEffects[i - 1]->configure();
9312 }
9313 }
9314 mEffects.removeAt(i);
Steve Block3856b092011-10-20 11:56:00 +01009315 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %d", effect.get(), this, i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009316 break;
9317 }
9318 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009319
9320 return mEffects.size();
9321}
9322
Eric Laurentcab11242010-07-15 12:50:15 -07009323// setDevice_l() must be called with PlaybackThread::mLock held
Glenn Kastenbb4350d2012-07-03 15:56:38 -07009324void AudioFlinger::EffectChain::setDevice_l(audio_devices_t device)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009325{
9326 size_t size = mEffects.size();
9327 for (size_t i = 0; i < size; i++) {
9328 mEffects[i]->setDevice(device);
9329 }
9330}
9331
Eric Laurentcab11242010-07-15 12:50:15 -07009332// setMode_l() must be called with PlaybackThread::mLock held
Glenn Kastenf78aee72012-01-04 11:00:47 -08009333void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009334{
9335 size_t size = mEffects.size();
9336 for (size_t i = 0; i < size; i++) {
9337 mEffects[i]->setMode(mode);
9338 }
9339}
9340
Eric Laurentcab11242010-07-15 12:50:15 -07009341// setVolume_l() must be called with PlaybackThread::mLock held
9342bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009343{
9344 uint32_t newLeft = *left;
9345 uint32_t newRight = *right;
9346 bool hasControl = false;
Eric Laurentcab11242010-07-15 12:50:15 -07009347 int ctrlIdx = -1;
9348 size_t size = mEffects.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07009349
Eric Laurentcab11242010-07-15 12:50:15 -07009350 // first update volume controller
9351 for (size_t i = size; i > 0; i--) {
Eric Laurent8f45bd72010-08-31 13:50:07 -07009352 if (mEffects[i - 1]->isProcessEnabled() &&
Eric Laurentcab11242010-07-15 12:50:15 -07009353 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
9354 ctrlIdx = i - 1;
Eric Laurentf997cab2010-07-19 06:24:46 -07009355 hasControl = true;
Eric Laurentcab11242010-07-15 12:50:15 -07009356 break;
9357 }
9358 }
9359
9360 if (ctrlIdx == mVolumeCtrlIdx && *left == mLeftVolume && *right == mRightVolume) {
Eric Laurentf997cab2010-07-19 06:24:46 -07009361 if (hasControl) {
9362 *left = mNewLeftVolume;
9363 *right = mNewRightVolume;
9364 }
9365 return hasControl;
Eric Laurentcab11242010-07-15 12:50:15 -07009366 }
9367
9368 mVolumeCtrlIdx = ctrlIdx;
Eric Laurentf997cab2010-07-19 06:24:46 -07009369 mLeftVolume = newLeft;
9370 mRightVolume = newRight;
Eric Laurentcab11242010-07-15 12:50:15 -07009371
9372 // second get volume update from volume controller
9373 if (ctrlIdx >= 0) {
9374 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
Eric Laurentf997cab2010-07-19 06:24:46 -07009375 mNewLeftVolume = newLeft;
9376 mNewRightVolume = newRight;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009377 }
9378 // then indicate volume to all other effects in chain.
9379 // Pass altered volume to effects before volume controller
9380 // and requested volume to effects after controller
9381 uint32_t lVol = newLeft;
9382 uint32_t rVol = newRight;
Eric Laurentcab11242010-07-15 12:50:15 -07009383
Mathias Agopian65ab4712010-07-14 17:59:35 -07009384 for (size_t i = 0; i < size; i++) {
Eric Laurentcab11242010-07-15 12:50:15 -07009385 if ((int)i == ctrlIdx) continue;
9386 // this also works for ctrlIdx == -1 when there is no volume controller
9387 if ((int)i > ctrlIdx) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07009388 lVol = *left;
9389 rVol = *right;
9390 }
9391 mEffects[i]->setVolume(&lVol, &rVol, false);
9392 }
9393 *left = newLeft;
9394 *right = newRight;
9395
9396 return hasControl;
9397}
9398
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07009399void AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009400{
9401 const size_t SIZE = 256;
9402 char buffer[SIZE];
9403 String8 result;
9404
9405 snprintf(buffer, SIZE, "Effects for session %d:\n", mSessionId);
9406 result.append(buffer);
9407
9408 bool locked = tryLock(mLock);
9409 // failed to lock - AudioFlinger is probably deadlocked
9410 if (!locked) {
9411 result.append("\tCould not lock mutex:\n");
9412 }
9413
Eric Laurentcab11242010-07-15 12:50:15 -07009414 result.append("\tNum fx In buffer Out buffer Active tracks:\n");
9415 snprintf(buffer, SIZE, "\t%02d 0x%08x 0x%08x %d\n",
Mathias Agopian65ab4712010-07-14 17:59:35 -07009416 mEffects.size(),
9417 (uint32_t)mInBuffer,
9418 (uint32_t)mOutBuffer,
Mathias Agopian65ab4712010-07-14 17:59:35 -07009419 mActiveTrackCnt);
9420 result.append(buffer);
9421 write(fd, result.string(), result.size());
9422
9423 for (size_t i = 0; i < mEffects.size(); ++i) {
9424 sp<EffectModule> effect = mEffects[i];
9425 if (effect != 0) {
9426 effect->dump(fd, args);
9427 }
9428 }
9429
9430 if (locked) {
9431 mLock.unlock();
9432 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009433}
9434
Eric Laurent59255e42011-07-27 19:49:51 -07009435// must be called with ThreadBase::mLock held
9436void AudioFlinger::EffectChain::setEffectSuspended_l(
9437 const effect_uuid_t *type, bool suspend)
9438{
9439 sp<SuspendedEffectDesc> desc;
9440 // use effect type UUID timelow as key as there is no real risk of identical
9441 // timeLow fields among effect type UUIDs.
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009442 ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07009443 if (suspend) {
9444 if (index >= 0) {
9445 desc = mSuspendedEffects.valueAt(index);
9446 } else {
9447 desc = new SuspendedEffectDesc();
Glenn Kastena189a682012-02-20 12:16:30 -08009448 desc->mType = *type;
Eric Laurent59255e42011-07-27 19:49:51 -07009449 mSuspendedEffects.add(type->timeLow, desc);
Steve Block3856b092011-10-20 11:56:00 +01009450 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07009451 }
9452 if (desc->mRefCount++ == 0) {
9453 sp<EffectModule> effect = getEffectIfEnabled(type);
9454 if (effect != 0) {
9455 desc->mEffect = effect;
9456 effect->setSuspended(true);
9457 effect->setEnabled(false);
9458 }
9459 }
9460 } else {
9461 if (index < 0) {
9462 return;
9463 }
9464 desc = mSuspendedEffects.valueAt(index);
9465 if (desc->mRefCount <= 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009466 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
Eric Laurent59255e42011-07-27 19:49:51 -07009467 desc->mRefCount = 1;
9468 }
9469 if (--desc->mRefCount == 0) {
Steve Block3856b092011-10-20 11:56:00 +01009470 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
Eric Laurent59255e42011-07-27 19:49:51 -07009471 if (desc->mEffect != 0) {
9472 sp<EffectModule> effect = desc->mEffect.promote();
9473 if (effect != 0) {
9474 effect->setSuspended(false);
Eric Laurenta5f44eb2012-06-25 11:38:29 -07009475 effect->lock();
9476 EffectHandle *handle = effect->controlHandle_l();
9477 if (handle != NULL && !handle->destroyed_l()) {
9478 effect->setEnabled_l(handle->enabled());
Eric Laurent59255e42011-07-27 19:49:51 -07009479 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07009480 effect->unlock();
Eric Laurent59255e42011-07-27 19:49:51 -07009481 }
9482 desc->mEffect.clear();
9483 }
9484 mSuspendedEffects.removeItemsAt(index);
9485 }
9486 }
9487}
9488
9489// must be called with ThreadBase::mLock held
9490void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
9491{
9492 sp<SuspendedEffectDesc> desc;
9493
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009494 ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
Eric Laurent59255e42011-07-27 19:49:51 -07009495 if (suspend) {
9496 if (index >= 0) {
9497 desc = mSuspendedEffects.valueAt(index);
9498 } else {
9499 desc = new SuspendedEffectDesc();
9500 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
Steve Block3856b092011-10-20 11:56:00 +01009501 ALOGV("setEffectSuspendedAll_l() add entry for 0");
Eric Laurent59255e42011-07-27 19:49:51 -07009502 }
9503 if (desc->mRefCount++ == 0) {
Glenn Kastend0539712012-01-30 12:56:03 -08009504 Vector< sp<EffectModule> > effects;
9505 getSuspendEligibleEffects(effects);
Eric Laurent59255e42011-07-27 19:49:51 -07009506 for (size_t i = 0; i < effects.size(); i++) {
9507 setEffectSuspended_l(&effects[i]->desc().type, true);
9508 }
9509 }
9510 } else {
9511 if (index < 0) {
9512 return;
9513 }
9514 desc = mSuspendedEffects.valueAt(index);
9515 if (desc->mRefCount <= 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009516 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
Eric Laurent59255e42011-07-27 19:49:51 -07009517 desc->mRefCount = 1;
9518 }
9519 if (--desc->mRefCount == 0) {
9520 Vector<const effect_uuid_t *> types;
9521 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
9522 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
9523 continue;
9524 }
9525 types.add(&mSuspendedEffects.valueAt(i)->mType);
9526 }
9527 for (size_t i = 0; i < types.size(); i++) {
9528 setEffectSuspended_l(types[i], false);
9529 }
Steve Block3856b092011-10-20 11:56:00 +01009530 ALOGV("setEffectSuspendedAll_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
Eric Laurent59255e42011-07-27 19:49:51 -07009531 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
9532 }
9533 }
9534}
9535
Eric Laurent6bffdb82011-09-23 08:40:41 -07009536
9537// The volume effect is used for automated tests only
9538#ifndef OPENSL_ES_H_
9539static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
9540 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
9541const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
9542#endif //OPENSL_ES_H_
9543
Eric Laurentdb7c0792011-08-10 10:37:50 -07009544bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
9545{
9546 // auxiliary effects and visualizer are never suspended on output mix
9547 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
9548 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
Eric Laurent6bffdb82011-09-23 08:40:41 -07009549 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
9550 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07009551 return false;
9552 }
9553 return true;
9554}
9555
Glenn Kastend0539712012-01-30 12:56:03 -08009556void AudioFlinger::EffectChain::getSuspendEligibleEffects(Vector< sp<AudioFlinger::EffectModule> > &effects)
Eric Laurent59255e42011-07-27 19:49:51 -07009557{
Glenn Kastend0539712012-01-30 12:56:03 -08009558 effects.clear();
Eric Laurent59255e42011-07-27 19:49:51 -07009559 for (size_t i = 0; i < mEffects.size(); i++) {
Glenn Kastend0539712012-01-30 12:56:03 -08009560 if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
9561 effects.add(mEffects[i]);
Eric Laurent59255e42011-07-27 19:49:51 -07009562 }
Eric Laurent59255e42011-07-27 19:49:51 -07009563 }
Eric Laurent59255e42011-07-27 19:49:51 -07009564}
9565
9566sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
9567 const effect_uuid_t *type)
9568{
Glenn Kasten090f0192012-01-30 13:00:02 -08009569 sp<EffectModule> effect = getEffectFromType_l(type);
9570 return effect != 0 && effect->isEnabled() ? effect : 0;
Eric Laurent59255e42011-07-27 19:49:51 -07009571}
9572
9573void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
9574 bool enabled)
9575{
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009576 ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07009577 if (enabled) {
9578 if (index < 0) {
9579 // if the effect is not suspend check if all effects are suspended
9580 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
9581 if (index < 0) {
9582 return;
9583 }
Eric Laurentdb7c0792011-08-10 10:37:50 -07009584 if (!isEffectEligibleForSuspend(effect->desc())) {
9585 return;
9586 }
Eric Laurent59255e42011-07-27 19:49:51 -07009587 setEffectSuspended_l(&effect->desc().type, enabled);
9588 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
Eric Laurentdb7c0792011-08-10 10:37:50 -07009589 if (index < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009590 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
Eric Laurentdb7c0792011-08-10 10:37:50 -07009591 return;
9592 }
Eric Laurent59255e42011-07-27 19:49:51 -07009593 }
Steve Block3856b092011-10-20 11:56:00 +01009594 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07009595 effect->desc().type.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07009596 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
9597 // if effect is requested to suspended but was not yet enabled, supend it now.
9598 if (desc->mEffect == 0) {
9599 desc->mEffect = effect;
9600 effect->setEnabled(false);
9601 effect->setSuspended(true);
9602 }
9603 } else {
9604 if (index < 0) {
9605 return;
9606 }
Steve Block3856b092011-10-20 11:56:00 +01009607 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07009608 effect->desc().type.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07009609 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
9610 desc->mEffect.clear();
9611 effect->setSuspended(false);
9612 }
9613}
9614
Mathias Agopian65ab4712010-07-14 17:59:35 -07009615#undef LOG_TAG
9616#define LOG_TAG "AudioFlinger"
9617
9618// ----------------------------------------------------------------------------
9619
9620status_t AudioFlinger::onTransact(
9621 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
9622{
9623 return BnAudioFlinger::onTransact(code, data, reply, flags);
9624}
9625
Mathias Agopian65ab4712010-07-14 17:59:35 -07009626}; // namespace android