blob: 97bbd9716ea7ba1a535bf9b898af9e1790ebe8b3 [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
Glenn Kasten2dd4bdd2012-08-29 11:10:32 -070079#include <media/nbaio/AudioStreamOutSink.h>
80#include <media/nbaio/MonoPipe.h>
81#include <media/nbaio/MonoPipeReader.h>
82#include <media/nbaio/Pipe.h>
83#include <media/nbaio/PipeReader.h>
84#include <media/nbaio/SourceAudioBufferProvider.h>
Glenn Kasten58912562012-04-03 10:45:00 -070085
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
Glenn Kasten3ed29202012-08-07 15:24:44 -0700168// IAudioFlinger::createTrack() reports back to client the total size of shared memory area
169// for the track. The client then sub-divides this into smaller buffers for its use.
170// Currently the client uses double-buffering by default, but doesn't tell us about that.
171// So for now we just assume that client is double-buffered.
Glenn Kastenc3ae93f2012-07-30 10:59:30 -0700172// FIXME It would be better for client to tell AudioFlinger whether it wants double-buffering or
173// N-buffering, so AudioFlinger could allocate the right amount of memory.
Glenn Kasten3ed29202012-08-07 15:24:44 -0700174// See the client's minBufCount and mNotificationFramesAct calculations for details.
175static const int kFastTrackMultiplier = 2;
176
Mathias Agopian65ab4712010-07-14 17:59:35 -0700177// ----------------------------------------------------------------------------
178
Glenn Kastend3cee2f2012-03-13 17:55:35 -0700179#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -0800180// To collect the amplifier usage
181static void addBatteryData(uint32_t params) {
Glenn Kasten25b248e2012-01-03 15:28:29 -0800182 sp<IMediaPlayerService> service = IMediaDeathNotifier::getMediaPlayerService();
183 if (service == NULL) {
184 // it already logged
Gloria Wang9ee159b2011-02-24 14:51:45 -0800185 return;
186 }
187
188 service->addBatteryData(params);
189}
Glenn Kastend3cee2f2012-03-13 17:55:35 -0700190#endif
Gloria Wang9ee159b2011-02-24 14:51:45 -0800191
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700192static int load_audio_interface(const char *if_name, audio_hw_device_t **dev)
Dima Zavin799a70e2011-04-18 16:57:27 -0700193{
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700194 const hw_module_t *mod;
Dima Zavin799a70e2011-04-18 16:57:27 -0700195 int rc;
196
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700197 rc = hw_get_module_by_class(AUDIO_HARDWARE_MODULE_ID, if_name, &mod);
198 ALOGE_IF(rc, "%s couldn't load audio hw module %s.%s (%s)", __func__,
199 AUDIO_HARDWARE_MODULE_ID, if_name, strerror(-rc));
200 if (rc) {
Dima Zavin799a70e2011-04-18 16:57:27 -0700201 goto out;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700202 }
203 rc = audio_hw_device_open(mod, dev);
204 ALOGE_IF(rc, "%s couldn't open audio hw device in %s.%s (%s)", __func__,
205 AUDIO_HARDWARE_MODULE_ID, if_name, strerror(-rc));
206 if (rc) {
Dima Zavin799a70e2011-04-18 16:57:27 -0700207 goto out;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -0700208 }
209 if ((*dev)->common.version != AUDIO_DEVICE_API_VERSION_CURRENT) {
210 ALOGE("%s wrong audio hw device version %04x", __func__, (*dev)->common.version);
211 rc = BAD_VALUE;
212 goto out;
213 }
Dima Zavin799a70e2011-04-18 16:57:27 -0700214 return 0;
215
216out:
Dima Zavin799a70e2011-04-18 16:57:27 -0700217 *dev = NULL;
218 return rc;
219}
220
Mathias Agopian65ab4712010-07-14 17:59:35 -0700221// ----------------------------------------------------------------------------
222
223AudioFlinger::AudioFlinger()
224 : BnAudioFlinger(),
John Grossman4ff14ba2012-02-08 16:37:41 -0800225 mPrimaryHardwareDev(NULL),
Glenn Kasten7d6c35b2012-07-02 12:45:10 -0700226 mHardwareStatus(AUDIO_HW_IDLE),
John Grossman4ff14ba2012-02-08 16:37:41 -0800227 mMasterVolume(1.0f),
John Grossman4ff14ba2012-02-08 16:37:41 -0800228 mMasterMute(false),
229 mNextUniqueId(1),
230 mMode(AUDIO_MODE_INVALID),
231 mBtNrecIsOff(false)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700232{
Dima Zavin5a61d2f2011-04-19 19:04:32 -0700233}
234
235void AudioFlinger::onFirstRef()
236{
Dima Zavin799a70e2011-04-18 16:57:27 -0700237 int rc = 0;
Dima Zavinfce7a472011-04-19 22:30:36 -0700238
Eric Laurent93575202011-01-18 18:39:02 -0800239 Mutex::Autolock _l(mLock);
240
Dima Zavin799a70e2011-04-18 16:57:27 -0700241 /* TODO: move all this work into an Init() function */
John Grossman4ff14ba2012-02-08 16:37:41 -0800242 char val_str[PROPERTY_VALUE_MAX] = { 0 };
243 if (property_get("ro.audio.flinger_standbytime_ms", val_str, NULL) >= 0) {
244 uint32_t int_val;
245 if (1 == sscanf(val_str, "%u", &int_val)) {
246 mStandbyTimeInNsecs = milliseconds(int_val);
247 ALOGI("Using %u mSec as standby time.", int_val);
248 } else {
249 mStandbyTimeInNsecs = kDefaultStandbyTimeInNsecs;
250 ALOGI("Using default %u mSec as standby time.",
251 (uint32_t)(mStandbyTimeInNsecs / 1000000));
252 }
253 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700254
Eric Laurenta4c5a552012-03-29 10:12:40 -0700255 mMode = AUDIO_MODE_NORMAL;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700256}
257
258AudioFlinger::~AudioFlinger()
259{
260 while (!mRecordThreads.isEmpty()) {
Glenn Kastenc3ae93f2012-07-30 10:59:30 -0700261 // closeInput_nonvirtual() will remove specified entry from mRecordThreads
Glenn Kastend96c5722012-04-25 13:44:49 -0700262 closeInput_nonvirtual(mRecordThreads.keyAt(0));
Mathias Agopian65ab4712010-07-14 17:59:35 -0700263 }
264 while (!mPlaybackThreads.isEmpty()) {
Glenn Kastenc3ae93f2012-07-30 10:59:30 -0700265 // closeOutput_nonvirtual() will remove specified entry from mPlaybackThreads
Glenn Kastend96c5722012-04-25 13:44:49 -0700266 closeOutput_nonvirtual(mPlaybackThreads.keyAt(0));
Mathias Agopian65ab4712010-07-14 17:59:35 -0700267 }
Dima Zavin799a70e2011-04-18 16:57:27 -0700268
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800269 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
270 // no mHardwareLock needed, as there are no other references to this
Eric Laurenta4c5a552012-03-29 10:12:40 -0700271 audio_hw_device_close(mAudioHwDevs.valueAt(i)->hwDevice());
272 delete mAudioHwDevs.valueAt(i);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700273 }
274}
275
Eric Laurenta4c5a552012-03-29 10:12:40 -0700276static const char * const audio_interfaces[] = {
277 AUDIO_HARDWARE_MODULE_ID_PRIMARY,
278 AUDIO_HARDWARE_MODULE_ID_A2DP,
279 AUDIO_HARDWARE_MODULE_ID_USB,
280};
281#define ARRAY_SIZE(x) (sizeof((x))/sizeof(((x)[0])))
282
John Grossmanee578c02012-07-23 17:05:46 -0700283AudioFlinger::AudioHwDevice* AudioFlinger::findSuitableHwDev_l(
284 audio_module_handle_t module,
285 audio_devices_t devices)
Dima Zavin799a70e2011-04-18 16:57:27 -0700286{
Eric Laurenta4c5a552012-03-29 10:12:40 -0700287 // if module is 0, the request comes from an old policy manager and we should load
288 // well known modules
289 if (module == 0) {
290 ALOGW("findSuitableHwDev_l() loading well know audio hw modules");
291 for (size_t i = 0; i < ARRAY_SIZE(audio_interfaces); i++) {
292 loadHwModule_l(audio_interfaces[i]);
293 }
Eric Laurentf1c04f92012-08-28 14:26:53 -0700294 // then try to find a module supporting the requested device.
295 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
296 AudioHwDevice *audioHwDevice = mAudioHwDevs.valueAt(i);
297 audio_hw_device_t *dev = audioHwDevice->hwDevice();
298 if ((dev->get_supported_devices != NULL) &&
299 (dev->get_supported_devices(dev) & devices) == devices)
300 return audioHwDevice;
301 }
Eric Laurenta4c5a552012-03-29 10:12:40 -0700302 } else {
303 // check a match for the requested module handle
John Grossmanee578c02012-07-23 17:05:46 -0700304 AudioHwDevice *audioHwDevice = mAudioHwDevs.valueFor(module);
305 if (audioHwDevice != NULL) {
306 return audioHwDevice;
Eric Laurenta4c5a552012-03-29 10:12:40 -0700307 }
308 }
Eric Laurenta4c5a552012-03-29 10:12:40 -0700309
Dima Zavin799a70e2011-04-18 16:57:27 -0700310 return NULL;
311}
Mathias Agopian65ab4712010-07-14 17:59:35 -0700312
Glenn Kastenbe5f05e2012-07-18 15:24:02 -0700313void AudioFlinger::dumpClients(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700314{
315 const size_t SIZE = 256;
316 char buffer[SIZE];
317 String8 result;
318
319 result.append("Clients:\n");
320 for (size_t i = 0; i < mClients.size(); ++i) {
Glenn Kasten77c11192012-01-25 14:27:41 -0800321 sp<Client> client = mClients.valueAt(i).promote();
322 if (client != 0) {
323 snprintf(buffer, SIZE, " pid: %d\n", client->pid());
324 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700325 }
326 }
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700327
328 result.append("Global session refs:\n");
Glenn Kasten012ca6b2012-03-06 11:22:01 -0800329 result.append(" session pid count\n");
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700330 for (size_t i = 0; i < mAudioSessionRefs.size(); i++) {
331 AudioSessionRef *r = mAudioSessionRefs[i];
Glenn Kasten012ca6b2012-03-06 11:22:01 -0800332 snprintf(buffer, SIZE, " %7d %3d %3d\n", r->mSessionid, r->mPid, r->mCnt);
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700333 result.append(buffer);
334 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700335 write(fd, result.string(), result.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700336}
337
338
Glenn Kastenbe5f05e2012-07-18 15:24:02 -0700339void AudioFlinger::dumpInternals(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700340{
341 const size_t SIZE = 256;
342 char buffer[SIZE];
343 String8 result;
Glenn Kastena4454b42012-01-04 11:02:33 -0800344 hardware_call_state hardwareStatus = mHardwareStatus;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700345
John Grossman4ff14ba2012-02-08 16:37:41 -0800346 snprintf(buffer, SIZE, "Hardware status: %d\n"
347 "Standby Time mSec: %u\n",
348 hardwareStatus,
349 (uint32_t)(mStandbyTimeInNsecs / 1000000));
Mathias Agopian65ab4712010-07-14 17:59:35 -0700350 result.append(buffer);
351 write(fd, result.string(), result.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700352}
353
Glenn Kastenbe5f05e2012-07-18 15:24:02 -0700354void AudioFlinger::dumpPermissionDenial(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700355{
356 const size_t SIZE = 256;
357 char buffer[SIZE];
358 String8 result;
359 snprintf(buffer, SIZE, "Permission Denial: "
360 "can't dump AudioFlinger from pid=%d, uid=%d\n",
361 IPCThreadState::self()->getCallingPid(),
362 IPCThreadState::self()->getCallingUid());
363 result.append(buffer);
364 write(fd, result.string(), result.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700365}
366
367static bool tryLock(Mutex& mutex)
368{
369 bool locked = false;
370 for (int i = 0; i < kDumpLockRetries; ++i) {
371 if (mutex.tryLock() == NO_ERROR) {
372 locked = true;
373 break;
374 }
Glenn Kasten7dede872011-12-13 11:04:14 -0800375 usleep(kDumpLockSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700376 }
377 return locked;
378}
379
380status_t AudioFlinger::dump(int fd, const Vector<String16>& args)
381{
Glenn Kasten44deb052012-02-05 18:09:08 -0800382 if (!dumpAllowed()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700383 dumpPermissionDenial(fd, args);
384 } else {
385 // get state of hardware lock
386 bool hardwareLocked = tryLock(mHardwareLock);
387 if (!hardwareLocked) {
388 String8 result(kHardwareLockedString);
389 write(fd, result.string(), result.size());
390 } else {
391 mHardwareLock.unlock();
392 }
393
394 bool locked = tryLock(mLock);
395
396 // failed to lock - AudioFlinger is probably deadlocked
397 if (!locked) {
398 String8 result(kDeadlockedString);
399 write(fd, result.string(), result.size());
400 }
401
402 dumpClients(fd, args);
403 dumpInternals(fd, args);
404
405 // dump playback threads
406 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
407 mPlaybackThreads.valueAt(i)->dump(fd, args);
408 }
409
410 // dump record threads
411 for (size_t i = 0; i < mRecordThreads.size(); i++) {
412 mRecordThreads.valueAt(i)->dump(fd, args);
413 }
414
Dima Zavin799a70e2011-04-18 16:57:27 -0700415 // dump all hardware devs
416 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700417 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
Dima Zavin799a70e2011-04-18 16:57:27 -0700418 dev->dump(dev, fd);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700419 }
Glenn Kastend06785b2012-09-30 12:29:28 -0700420
421 // dump the serially shared record tee sink
422 if (mRecordTeeSource != 0) {
423 dumpTee(fd, mRecordTeeSource);
424 }
425
Mathias Agopian65ab4712010-07-14 17:59:35 -0700426 if (locked) mLock.unlock();
427 }
428 return NO_ERROR;
429}
430
Glenn Kasten98ec94c2012-01-25 14:28:29 -0800431sp<AudioFlinger::Client> AudioFlinger::registerPid_l(pid_t pid)
432{
433 // If pid is already in the mClients wp<> map, then use that entry
434 // (for which promote() is always != 0), otherwise create a new entry and Client.
435 sp<Client> client = mClients.valueFor(pid).promote();
436 if (client == 0) {
437 client = new Client(this, pid);
438 mClients.add(pid, client);
439 }
440
441 return client;
442}
Mathias Agopian65ab4712010-07-14 17:59:35 -0700443
444// IAudioFlinger interface
445
446
447sp<IAudioTrack> AudioFlinger::createTrack(
448 pid_t pid,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800449 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700450 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800451 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -0700452 audio_channel_mask_t channelMask,
Glenn Kastene33054e2012-11-14 12:54:39 -0800453 size_t frameCount,
Glenn Kastene0b07172012-11-06 15:03:34 -0800454 IAudioFlinger::track_flags_t *flags,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700455 const sp<IMemory>& sharedBuffer,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800456 audio_io_handle_t output,
Glenn Kasten3acbd052012-02-28 10:39:56 -0800457 pid_t tid,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700458 int *sessionId,
459 status_t *status)
460{
461 sp<PlaybackThread::Track> track;
462 sp<TrackHandle> trackHandle;
463 sp<Client> client;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700464 status_t lStatus;
465 int lSessionId;
466
Glenn Kasten263709e2012-01-06 08:40:01 -0800467 // client AudioTrack::set already implements AUDIO_STREAM_DEFAULT => AUDIO_STREAM_MUSIC,
468 // but if someone uses binder directly they could bypass that and cause us to crash
469 if (uint32_t(streamType) >= AUDIO_STREAM_CNT) {
Steve Block29357bc2012-01-06 19:20:56 +0000470 ALOGE("createTrack() invalid stream type %d", streamType);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700471 lStatus = BAD_VALUE;
472 goto Exit;
473 }
474
Glenn Kasten60a83922012-06-21 12:56:37 -0700475 // client is responsible for conversion of 8-bit PCM to 16-bit PCM,
476 // and we don't yet support 8.24 or 32-bit PCM
477 if (audio_is_linear_pcm(format) && format != AUDIO_FORMAT_PCM_16_BIT) {
478 ALOGE("createTrack() invalid format %d", format);
479 lStatus = BAD_VALUE;
480 goto Exit;
481 }
482
Mathias Agopian65ab4712010-07-14 17:59:35 -0700483 {
484 Mutex::Autolock _l(mLock);
485 PlaybackThread *thread = checkPlaybackThread_l(output);
Eric Laurent39e94f82010-07-28 01:32:47 -0700486 PlaybackThread *effectThread = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700487 if (thread == NULL) {
Steve Block29357bc2012-01-06 19:20:56 +0000488 ALOGE("unknown output thread");
Mathias Agopian65ab4712010-07-14 17:59:35 -0700489 lStatus = BAD_VALUE;
490 goto Exit;
491 }
492
Glenn Kasten98ec94c2012-01-25 14:28:29 -0800493 client = registerPid_l(pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700494
Steve Block3856b092011-10-20 11:56:00 +0100495 ALOGV("createTrack() sessionId: %d", (sessionId == NULL) ? -2 : *sessionId);
Dima Zavinfce7a472011-04-19 22:30:36 -0700496 if (sessionId != NULL && *sessionId != AUDIO_SESSION_OUTPUT_MIX) {
Eric Laurentf436fdc2012-05-24 11:07:14 -0700497 // check if an effect chain with the same session ID is present on another
498 // output thread and move it here.
Eric Laurentde070132010-07-13 04:45:46 -0700499 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurent39e94f82010-07-28 01:32:47 -0700500 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
501 if (mPlaybackThreads.keyAt(i) != output) {
Eric Laurent39e94f82010-07-28 01:32:47 -0700502 uint32_t sessions = t->hasAudioSession(*sessionId);
Eric Laurent39e94f82010-07-28 01:32:47 -0700503 if (sessions & PlaybackThread::EFFECT_SESSION) {
504 effectThread = t.get();
Eric Laurentf436fdc2012-05-24 11:07:14 -0700505 break;
Eric Laurent39e94f82010-07-28 01:32:47 -0700506 }
Eric Laurentde070132010-07-13 04:45:46 -0700507 }
508 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700509 lSessionId = *sessionId;
510 } else {
Eric Laurentde070132010-07-13 04:45:46 -0700511 // if no audio session id is provided, create one here
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700512 lSessionId = nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700513 if (sessionId != NULL) {
514 *sessionId = lSessionId;
515 }
516 }
Steve Block3856b092011-10-20 11:56:00 +0100517 ALOGV("createTrack() lSessionId: %d", lSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700518
519 track = thread->createTrack_l(client, streamType, sampleRate, format,
Glenn Kasten3acbd052012-02-28 10:39:56 -0800520 channelMask, frameCount, sharedBuffer, lSessionId, flags, tid, &lStatus);
Eric Laurent39e94f82010-07-28 01:32:47 -0700521
522 // move effect chain to this output thread if an effect on same session was waiting
523 // for a track to be created
524 if (lStatus == NO_ERROR && effectThread != NULL) {
525 Mutex::Autolock _dl(thread->mLock);
526 Mutex::Autolock _sl(effectThread->mLock);
527 moveEffectChain_l(lSessionId, effectThread, thread, true);
528 }
Eric Laurenta011e352012-03-29 15:51:43 -0700529
530 // Look for sync events awaiting for a session to be used.
531 for (int i = 0; i < (int)mPendingSyncEvents.size(); i++) {
532 if (mPendingSyncEvents[i]->triggerSession() == lSessionId) {
533 if (thread->isValidSyncEvent(mPendingSyncEvents[i])) {
Eric Laurent29864602012-05-08 18:57:51 -0700534 if (lStatus == NO_ERROR) {
Glenn Kastend23eedc2012-08-02 13:35:47 -0700535 (void) track->setSyncEvent(mPendingSyncEvents[i]);
Eric Laurent29864602012-05-08 18:57:51 -0700536 } else {
537 mPendingSyncEvents[i]->cancel();
538 }
Eric Laurenta011e352012-03-29 15:51:43 -0700539 mPendingSyncEvents.removeAt(i);
540 i--;
541 }
542 }
543 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700544 }
545 if (lStatus == NO_ERROR) {
546 trackHandle = new TrackHandle(track);
547 } else {
548 // remove local strong reference to Client before deleting the Track so that the Client
549 // destructor is called by the TrackBase destructor with mLock held
550 client.clear();
551 track.clear();
552 }
553
554Exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700555 if (status != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700556 *status = lStatus;
557 }
558 return trackHandle;
559}
560
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800561uint32_t AudioFlinger::sampleRate(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700562{
563 Mutex::Autolock _l(mLock);
564 PlaybackThread *thread = checkPlaybackThread_l(output);
565 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000566 ALOGW("sampleRate() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700567 return 0;
568 }
569 return thread->sampleRate();
570}
571
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800572int AudioFlinger::channelCount(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700573{
574 Mutex::Autolock _l(mLock);
575 PlaybackThread *thread = checkPlaybackThread_l(output);
576 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000577 ALOGW("channelCount() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700578 return 0;
579 }
580 return thread->channelCount();
581}
582
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800583audio_format_t AudioFlinger::format(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700584{
585 Mutex::Autolock _l(mLock);
586 PlaybackThread *thread = checkPlaybackThread_l(output);
587 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000588 ALOGW("format() unknown thread %d", output);
Glenn Kasten58f30212012-01-12 12:27:51 -0800589 return AUDIO_FORMAT_INVALID;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700590 }
591 return thread->format();
592}
593
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800594size_t AudioFlinger::frameCount(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700595{
596 Mutex::Autolock _l(mLock);
597 PlaybackThread *thread = checkPlaybackThread_l(output);
598 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000599 ALOGW("frameCount() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700600 return 0;
601 }
Glenn Kasten58912562012-04-03 10:45:00 -0700602 // FIXME currently returns the normal mixer's frame count to avoid confusing legacy callers;
603 // should examine all callers and fix them to handle smaller counts
Mathias Agopian65ab4712010-07-14 17:59:35 -0700604 return thread->frameCount();
605}
606
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800607uint32_t AudioFlinger::latency(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700608{
609 Mutex::Autolock _l(mLock);
610 PlaybackThread *thread = checkPlaybackThread_l(output);
611 if (thread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000612 ALOGW("latency() unknown thread %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700613 return 0;
614 }
615 return thread->latency();
616}
617
618status_t AudioFlinger::setMasterVolume(float value)
619{
Eric Laurenta1884f92011-08-23 08:25:03 -0700620 status_t ret = initCheck();
621 if (ret != NO_ERROR) {
622 return ret;
623 }
624
Mathias Agopian65ab4712010-07-14 17:59:35 -0700625 // check calling permissions
626 if (!settingsAllowed()) {
627 return PERMISSION_DENIED;
628 }
629
Eric Laurenta4c5a552012-03-29 10:12:40 -0700630 Mutex::Autolock _l(mLock);
John Grossmanee578c02012-07-23 17:05:46 -0700631 mMasterVolume = value;
Eric Laurenta4c5a552012-03-29 10:12:40 -0700632
John Grossmanee578c02012-07-23 17:05:46 -0700633 // Set master volume in the HALs which support it.
634 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
635 AutoMutex lock(mHardwareLock);
636 AudioHwDevice *dev = mAudioHwDevs.valueAt(i);
John Grossman4ff14ba2012-02-08 16:37:41 -0800637
John Grossmanee578c02012-07-23 17:05:46 -0700638 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
639 if (dev->canSetMasterVolume()) {
640 dev->hwDevice()->set_master_volume(dev->hwDevice(), value);
Eric Laurent93575202011-01-18 18:39:02 -0800641 }
John Grossmanee578c02012-07-23 17:05:46 -0700642 mHardwareStatus = AUDIO_HW_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700643 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700644
John Grossmanee578c02012-07-23 17:05:46 -0700645 // Now set the master volume in each playback thread. Playback threads
646 // assigned to HALs which do not have master volume support will apply
647 // master volume during the mix operation. Threads with HALs which do
648 // support master volume will simply ignore the setting.
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800649 for (size_t i = 0; i < mPlaybackThreads.size(); i++)
John Grossmanee578c02012-07-23 17:05:46 -0700650 mPlaybackThreads.valueAt(i)->setMasterVolume(value);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700651
652 return NO_ERROR;
653}
654
Glenn Kastenf78aee72012-01-04 11:00:47 -0800655status_t AudioFlinger::setMode(audio_mode_t mode)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700656{
Eric Laurenta1884f92011-08-23 08:25:03 -0700657 status_t ret = initCheck();
658 if (ret != NO_ERROR) {
659 return ret;
660 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700661
662 // check calling permissions
663 if (!settingsAllowed()) {
664 return PERMISSION_DENIED;
665 }
Glenn Kasten930f4ca2012-01-06 16:47:31 -0800666 if (uint32_t(mode) >= AUDIO_MODE_CNT) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000667 ALOGW("Illegal value: setMode(%d)", mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700668 return BAD_VALUE;
669 }
670
671 { // scope for the lock
672 AutoMutex lock(mHardwareLock);
John Grossmanee578c02012-07-23 17:05:46 -0700673 audio_hw_device_t *dev = mPrimaryHardwareDev->hwDevice();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700674 mHardwareStatus = AUDIO_HW_SET_MODE;
John Grossmanee578c02012-07-23 17:05:46 -0700675 ret = dev->set_mode(dev, mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700676 mHardwareStatus = AUDIO_HW_IDLE;
677 }
678
679 if (NO_ERROR == ret) {
680 Mutex::Autolock _l(mLock);
681 mMode = mode;
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800682 for (size_t i = 0; i < mPlaybackThreads.size(); i++)
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700683 mPlaybackThreads.valueAt(i)->setMode(mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700684 }
685
686 return ret;
687}
688
689status_t AudioFlinger::setMicMute(bool state)
690{
Eric Laurenta1884f92011-08-23 08:25:03 -0700691 status_t ret = initCheck();
692 if (ret != NO_ERROR) {
693 return ret;
694 }
695
Mathias Agopian65ab4712010-07-14 17:59:35 -0700696 // check calling permissions
697 if (!settingsAllowed()) {
698 return PERMISSION_DENIED;
699 }
700
701 AutoMutex lock(mHardwareLock);
John Grossmanee578c02012-07-23 17:05:46 -0700702 audio_hw_device_t *dev = mPrimaryHardwareDev->hwDevice();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700703 mHardwareStatus = AUDIO_HW_SET_MIC_MUTE;
John Grossmanee578c02012-07-23 17:05:46 -0700704 ret = dev->set_mic_mute(dev, state);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700705 mHardwareStatus = AUDIO_HW_IDLE;
706 return ret;
707}
708
709bool AudioFlinger::getMicMute() const
710{
Eric Laurenta1884f92011-08-23 08:25:03 -0700711 status_t ret = initCheck();
712 if (ret != NO_ERROR) {
713 return false;
714 }
715
Dima Zavinfce7a472011-04-19 22:30:36 -0700716 bool state = AUDIO_MODE_INVALID;
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800717 AutoMutex lock(mHardwareLock);
John Grossmanee578c02012-07-23 17:05:46 -0700718 audio_hw_device_t *dev = mPrimaryHardwareDev->hwDevice();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700719 mHardwareStatus = AUDIO_HW_GET_MIC_MUTE;
John Grossmanee578c02012-07-23 17:05:46 -0700720 dev->get_mic_mute(dev, &state);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700721 mHardwareStatus = AUDIO_HW_IDLE;
722 return state;
723}
724
725status_t AudioFlinger::setMasterMute(bool muted)
726{
John Grossmand8f178d2012-07-20 14:51:35 -0700727 status_t ret = initCheck();
728 if (ret != NO_ERROR) {
729 return ret;
730 }
731
Mathias Agopian65ab4712010-07-14 17:59:35 -0700732 // check calling permissions
733 if (!settingsAllowed()) {
734 return PERMISSION_DENIED;
735 }
736
John Grossmanee578c02012-07-23 17:05:46 -0700737 Mutex::Autolock _l(mLock);
738 mMasterMute = muted;
John Grossmand8f178d2012-07-20 14:51:35 -0700739
John Grossmanee578c02012-07-23 17:05:46 -0700740 // Set master mute in the HALs which support it.
741 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
742 AutoMutex lock(mHardwareLock);
743 AudioHwDevice *dev = mAudioHwDevs.valueAt(i);
John Grossmand8f178d2012-07-20 14:51:35 -0700744
John Grossmanee578c02012-07-23 17:05:46 -0700745 mHardwareStatus = AUDIO_HW_SET_MASTER_MUTE;
746 if (dev->canSetMasterMute()) {
747 dev->hwDevice()->set_master_mute(dev->hwDevice(), muted);
John Grossmand8f178d2012-07-20 14:51:35 -0700748 }
John Grossmanee578c02012-07-23 17:05:46 -0700749 mHardwareStatus = AUDIO_HW_IDLE;
John Grossmand8f178d2012-07-20 14:51:35 -0700750 }
751
John Grossmanee578c02012-07-23 17:05:46 -0700752 // Now set the master mute in each playback thread. Playback threads
753 // assigned to HALs which do not have master mute support will apply master
754 // mute during the mix operation. Threads with HALs which do support master
755 // mute will simply ignore the setting.
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800756 for (size_t i = 0; i < mPlaybackThreads.size(); i++)
John Grossmanee578c02012-07-23 17:05:46 -0700757 mPlaybackThreads.valueAt(i)->setMasterMute(muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700758
759 return NO_ERROR;
760}
761
762float AudioFlinger::masterVolume() const
763{
Glenn Kasten98067102011-12-13 11:47:54 -0800764 Mutex::Autolock _l(mLock);
765 return masterVolume_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700766}
767
768bool AudioFlinger::masterMute() const
769{
Glenn Kasten98067102011-12-13 11:47:54 -0800770 Mutex::Autolock _l(mLock);
771 return masterMute_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700772}
773
John Grossman4ff14ba2012-02-08 16:37:41 -0800774float AudioFlinger::masterVolume_l() const
775{
John Grossman4ff14ba2012-02-08 16:37:41 -0800776 return mMasterVolume;
777}
778
John Grossmand8f178d2012-07-20 14:51:35 -0700779bool AudioFlinger::masterMute_l() const
780{
John Grossmanee578c02012-07-23 17:05:46 -0700781 return mMasterMute;
John Grossmand8f178d2012-07-20 14:51:35 -0700782}
783
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800784status_t AudioFlinger::setStreamVolume(audio_stream_type_t stream, float value,
785 audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700786{
787 // check calling permissions
788 if (!settingsAllowed()) {
789 return PERMISSION_DENIED;
790 }
791
Glenn Kasten263709e2012-01-06 08:40:01 -0800792 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Steve Block29357bc2012-01-06 19:20:56 +0000793 ALOGE("setStreamVolume() invalid stream %d", stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700794 return BAD_VALUE;
795 }
796
797 AutoMutex lock(mLock);
798 PlaybackThread *thread = NULL;
799 if (output) {
800 thread = checkPlaybackThread_l(output);
801 if (thread == NULL) {
802 return BAD_VALUE;
803 }
804 }
805
806 mStreamTypes[stream].volume = value;
807
808 if (thread == NULL) {
Glenn Kasten8d6a2442012-02-08 14:04:28 -0800809 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700810 mPlaybackThreads.valueAt(i)->setStreamVolume(stream, value);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700811 }
812 } else {
813 thread->setStreamVolume(stream, value);
814 }
815
816 return NO_ERROR;
817}
818
Glenn Kastenfff6d712012-01-12 16:38:12 -0800819status_t AudioFlinger::setStreamMute(audio_stream_type_t stream, bool muted)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700820{
821 // check calling permissions
822 if (!settingsAllowed()) {
823 return PERMISSION_DENIED;
824 }
825
Glenn Kasten263709e2012-01-06 08:40:01 -0800826 if (uint32_t(stream) >= AUDIO_STREAM_CNT ||
Dima Zavinfce7a472011-04-19 22:30:36 -0700827 uint32_t(stream) == AUDIO_STREAM_ENFORCED_AUDIBLE) {
Steve Block29357bc2012-01-06 19:20:56 +0000828 ALOGE("setStreamMute() invalid stream %d", stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700829 return BAD_VALUE;
830 }
831
Eric Laurent93575202011-01-18 18:39:02 -0800832 AutoMutex lock(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700833 mStreamTypes[stream].mute = muted;
834 for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700835 mPlaybackThreads.valueAt(i)->setStreamMute(stream, muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700836
837 return NO_ERROR;
838}
839
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800840float AudioFlinger::streamVolume(audio_stream_type_t stream, audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700841{
Glenn Kasten263709e2012-01-06 08:40:01 -0800842 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700843 return 0.0f;
844 }
845
846 AutoMutex lock(mLock);
847 float volume;
848 if (output) {
849 PlaybackThread *thread = checkPlaybackThread_l(output);
850 if (thread == NULL) {
851 return 0.0f;
852 }
853 volume = thread->streamVolume(stream);
854 } else {
Glenn Kasten6637baa2012-01-09 09:40:36 -0800855 volume = streamVolume_l(stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700856 }
857
858 return volume;
859}
860
Glenn Kastenfff6d712012-01-12 16:38:12 -0800861bool AudioFlinger::streamMute(audio_stream_type_t stream) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700862{
Glenn Kasten263709e2012-01-06 08:40:01 -0800863 if (uint32_t(stream) >= AUDIO_STREAM_CNT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700864 return true;
865 }
866
Glenn Kasten6637baa2012-01-09 09:40:36 -0800867 AutoMutex lock(mLock);
868 return streamMute_l(stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700869}
870
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800871status_t AudioFlinger::setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs)
Mathias Agopian65ab4712010-07-14 17:59:35 -0700872{
Glenn Kasten23d82a92012-02-03 11:10:00 -0800873 ALOGV("setParameters(): io %d, keyvalue %s, tid %d, calling pid %d",
Mathias Agopian65ab4712010-07-14 17:59:35 -0700874 ioHandle, keyValuePairs.string(), gettid(), IPCThreadState::self()->getCallingPid());
875 // check calling permissions
876 if (!settingsAllowed()) {
877 return PERMISSION_DENIED;
878 }
879
Mathias Agopian65ab4712010-07-14 17:59:35 -0700880 // ioHandle == 0 means the parameters are global to the audio hardware interface
881 if (ioHandle == 0) {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700882 Mutex::Autolock _l(mLock);
Dima Zavin799a70e2011-04-18 16:57:27 -0700883 status_t final_result = NO_ERROR;
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800884 {
Eric Laurenta4c5a552012-03-29 10:12:40 -0700885 AutoMutex lock(mHardwareLock);
886 mHardwareStatus = AUDIO_HW_SET_PARAMETER;
887 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
888 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
889 status_t result = dev->set_parameters(dev, keyValuePairs.string());
890 final_result = result ?: final_result;
891 }
892 mHardwareStatus = AUDIO_HW_IDLE;
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800893 }
Eric Laurent59bd0da2011-08-01 09:52:20 -0700894 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
895 AudioParameter param = AudioParameter(keyValuePairs);
896 String8 value;
897 if (param.get(String8(AUDIO_PARAMETER_KEY_BT_NREC), value) == NO_ERROR) {
Eric Laurentbee53372011-08-29 12:42:48 -0700898 bool btNrecIsOff = (value == AUDIO_PARAMETER_VALUE_OFF);
899 if (mBtNrecIsOff != btNrecIsOff) {
Eric Laurent59bd0da2011-08-01 09:52:20 -0700900 for (size_t i = 0; i < mRecordThreads.size(); i++) {
901 sp<RecordThread> thread = mRecordThreads.valueAt(i);
Eric Laurentf1c04f92012-08-28 14:26:53 -0700902 audio_devices_t device = thread->inDevice();
Glenn Kasten510a3d62012-07-16 14:24:34 -0700903 bool suspend = audio_is_bluetooth_sco_device(device) && btNrecIsOff;
904 // collect all of the thread's session IDs
905 KeyedVector<int, bool> ids = thread->sessionIds();
906 // suspend effects associated with those session IDs
907 for (size_t j = 0; j < ids.size(); ++j) {
908 int sessionId = ids.keyAt(j);
Eric Laurent59bd0da2011-08-01 09:52:20 -0700909 thread->setEffectSuspended(FX_IID_AEC,
910 suspend,
Glenn Kasten510a3d62012-07-16 14:24:34 -0700911 sessionId);
Eric Laurent59bd0da2011-08-01 09:52:20 -0700912 thread->setEffectSuspended(FX_IID_NS,
913 suspend,
Glenn Kasten510a3d62012-07-16 14:24:34 -0700914 sessionId);
Eric Laurent59bd0da2011-08-01 09:52:20 -0700915 }
916 }
Eric Laurentbee53372011-08-29 12:42:48 -0700917 mBtNrecIsOff = btNrecIsOff;
Eric Laurent59bd0da2011-08-01 09:52:20 -0700918 }
919 }
Glenn Kasten28ed2f92012-06-07 10:17:54 -0700920 String8 screenState;
921 if (param.get(String8(AudioParameter::keyScreenState), screenState) == NO_ERROR) {
922 bool isOff = screenState == "off";
923 if (isOff != (gScreenState & 1)) {
924 gScreenState = ((gScreenState & ~1) + 2) | isOff;
925 }
926 }
Dima Zavin799a70e2011-04-18 16:57:27 -0700927 return final_result;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700928 }
929
930 // hold a strong ref on thread in case closeOutput() or closeInput() is called
931 // and the thread is exited once the lock is released
932 sp<ThreadBase> thread;
933 {
934 Mutex::Autolock _l(mLock);
935 thread = checkPlaybackThread_l(ioHandle);
Glenn Kastend5903ec2012-03-18 10:33:27 -0700936 if (thread == 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700937 thread = checkRecordThread_l(ioHandle);
Glenn Kasten7fc9a6f2012-01-10 10:46:34 -0800938 } else if (thread == primaryPlaybackThread_l()) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700939 // indicate output device change to all input threads for pre processing
940 AudioParameter param = AudioParameter(keyValuePairs);
941 int value;
Eric Laurent89d94e72012-03-16 20:37:59 -0700942 if ((param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) &&
943 (value != 0)) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700944 for (size_t i = 0; i < mRecordThreads.size(); i++) {
945 mRecordThreads.valueAt(i)->setParameters(keyValuePairs);
946 }
947 }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700948 }
949 }
Glenn Kasten7378ca52012-01-20 13:44:40 -0800950 if (thread != 0) {
951 return thread->setParameters(keyValuePairs);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700952 }
953 return BAD_VALUE;
954}
955
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800956String8 AudioFlinger::getParameters(audio_io_handle_t ioHandle, const String8& keys) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700957{
Glenn Kasten26dd66e2012-10-18 15:51:03 -0700958 ALOGVV("getParameters() io %d, keys %s, tid %d, calling pid %d",
959 ioHandle, keys.string(), gettid(), IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -0700960
Eric Laurenta4c5a552012-03-29 10:12:40 -0700961 Mutex::Autolock _l(mLock);
962
Mathias Agopian65ab4712010-07-14 17:59:35 -0700963 if (ioHandle == 0) {
Dima Zavinfce7a472011-04-19 22:30:36 -0700964 String8 out_s8;
965
Dima Zavin799a70e2011-04-18 16:57:27 -0700966 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800967 char *s;
968 {
969 AutoMutex lock(mHardwareLock);
970 mHardwareStatus = AUDIO_HW_GET_PARAMETER;
Eric Laurenta4c5a552012-03-29 10:12:40 -0700971 audio_hw_device_t *dev = mAudioHwDevs.valueAt(i)->hwDevice();
Glenn Kasten8abf44d2012-02-02 14:16:03 -0800972 s = dev->get_parameters(dev, keys.string());
973 mHardwareStatus = AUDIO_HW_IDLE;
974 }
John Grossmanef7740b2012-02-09 11:28:36 -0800975 out_s8 += String8(s ? s : "");
Dima Zavin799a70e2011-04-18 16:57:27 -0700976 free(s);
977 }
Dima Zavinfce7a472011-04-19 22:30:36 -0700978 return out_s8;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700979 }
980
Mathias Agopian65ab4712010-07-14 17:59:35 -0700981 PlaybackThread *playbackThread = checkPlaybackThread_l(ioHandle);
982 if (playbackThread != NULL) {
983 return playbackThread->getParameters(keys);
984 }
985 RecordThread *recordThread = checkRecordThread_l(ioHandle);
986 if (recordThread != NULL) {
987 return recordThread->getParameters(keys);
988 }
989 return String8("");
990}
991
Glenn Kastendd8104c2012-07-02 12:42:44 -0700992size_t AudioFlinger::getInputBufferSize(uint32_t sampleRate, audio_format_t format,
993 audio_channel_mask_t channelMask) const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700994{
Eric Laurenta1884f92011-08-23 08:25:03 -0700995 status_t ret = initCheck();
996 if (ret != NO_ERROR) {
997 return 0;
998 }
999
Glenn Kasten2b213bc2012-02-02 14:05:20 -08001000 AutoMutex lock(mHardwareLock);
1001 mHardwareStatus = AUDIO_HW_GET_INPUT_BUFFER_SIZE;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07001002 struct audio_config config = {
1003 sample_rate: sampleRate,
Glenn Kastendd8104c2012-07-02 12:42:44 -07001004 channel_mask: channelMask,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07001005 format: format,
1006 };
John Grossmanee578c02012-07-23 17:05:46 -07001007 audio_hw_device_t *dev = mPrimaryHardwareDev->hwDevice();
1008 size_t size = dev->get_input_buffer_size(dev, &config);
Glenn Kasten2b213bc2012-02-02 14:05:20 -08001009 mHardwareStatus = AUDIO_HW_IDLE;
1010 return size;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001011}
1012
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001013unsigned int AudioFlinger::getInputFramesLost(audio_io_handle_t ioHandle) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07001014{
Mathias Agopian65ab4712010-07-14 17:59:35 -07001015 Mutex::Autolock _l(mLock);
1016
1017 RecordThread *recordThread = checkRecordThread_l(ioHandle);
1018 if (recordThread != NULL) {
1019 return recordThread->getInputFramesLost();
1020 }
1021 return 0;
1022}
1023
1024status_t AudioFlinger::setVoiceVolume(float value)
1025{
Eric Laurenta1884f92011-08-23 08:25:03 -07001026 status_t ret = initCheck();
1027 if (ret != NO_ERROR) {
1028 return ret;
1029 }
1030
Mathias Agopian65ab4712010-07-14 17:59:35 -07001031 // check calling permissions
1032 if (!settingsAllowed()) {
1033 return PERMISSION_DENIED;
1034 }
1035
1036 AutoMutex lock(mHardwareLock);
John Grossmanee578c02012-07-23 17:05:46 -07001037 audio_hw_device_t *dev = mPrimaryHardwareDev->hwDevice();
Glenn Kasten8abf44d2012-02-02 14:16:03 -08001038 mHardwareStatus = AUDIO_HW_SET_VOICE_VOLUME;
John Grossmanee578c02012-07-23 17:05:46 -07001039 ret = dev->set_voice_volume(dev, value);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001040 mHardwareStatus = AUDIO_HW_IDLE;
1041
1042 return ret;
1043}
1044
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001045status_t AudioFlinger::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
1046 audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07001047{
1048 status_t status;
1049
1050 Mutex::Autolock _l(mLock);
1051
1052 PlaybackThread *playbackThread = checkPlaybackThread_l(output);
1053 if (playbackThread != NULL) {
1054 return playbackThread->getRenderPosition(halFrames, dspFrames);
1055 }
1056
1057 return BAD_VALUE;
1058}
1059
1060void AudioFlinger::registerClient(const sp<IAudioFlingerClient>& client)
1061{
1062
1063 Mutex::Autolock _l(mLock);
1064
Glenn Kastenbb001922012-02-03 11:10:26 -08001065 pid_t pid = IPCThreadState::self()->getCallingPid();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001066 if (mNotificationClients.indexOfKey(pid) < 0) {
1067 sp<NotificationClient> notificationClient = new NotificationClient(this,
1068 client,
1069 pid);
Steve Block3856b092011-10-20 11:56:00 +01001070 ALOGV("registerClient() client %p, pid %d", notificationClient.get(), pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001071
1072 mNotificationClients.add(pid, notificationClient);
1073
1074 sp<IBinder> binder = client->asBinder();
1075 binder->linkToDeath(notificationClient);
1076
1077 // the config change is always sent from playback or record threads to avoid deadlock
1078 // with AudioSystem::gLock
1079 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurent896adcd2012-09-13 11:18:23 -07001080 mPlaybackThreads.valueAt(i)->sendIoConfigEvent(AudioSystem::OUTPUT_OPENED);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001081 }
1082
1083 for (size_t i = 0; i < mRecordThreads.size(); i++) {
Eric Laurent896adcd2012-09-13 11:18:23 -07001084 mRecordThreads.valueAt(i)->sendIoConfigEvent(AudioSystem::INPUT_OPENED);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001085 }
1086 }
1087}
1088
1089void AudioFlinger::removeNotificationClient(pid_t pid)
1090{
1091 Mutex::Autolock _l(mLock);
1092
Glenn Kastena3b09252012-01-20 09:19:01 -08001093 mNotificationClients.removeItem(pid);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001094
Steve Block3856b092011-10-20 11:56:00 +01001095 ALOGV("%d died, releasing its sessions", pid);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001096 size_t num = mAudioSessionRefs.size();
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001097 bool removed = false;
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001098 for (size_t i = 0; i< num; ) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001099 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08001100 ALOGV(" pid %d @ %d", ref->mPid, i);
1101 if (ref->mPid == pid) {
1102 ALOGV(" removing entry for pid %d session %d", pid, ref->mSessionid);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001103 mAudioSessionRefs.removeAt(i);
1104 delete ref;
1105 removed = true;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001106 num--;
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001107 } else {
1108 i++;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001109 }
1110 }
1111 if (removed) {
1112 purgeStaleEffects_l();
1113 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001114}
1115
1116// audioConfigChanged_l() must be called with AudioFlinger::mLock held
Glenn Kastenb81cc8c2012-03-01 09:14:51 -08001117void AudioFlinger::audioConfigChanged_l(int event, audio_io_handle_t ioHandle, const void *param2)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001118{
1119 size_t size = mNotificationClients.size();
1120 for (size_t i = 0; i < size; i++) {
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001121 mNotificationClients.valueAt(i)->audioFlingerClient()->ioConfigChanged(event, ioHandle,
1122 param2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001123 }
1124}
1125
1126// removeClient_l() must be called with AudioFlinger::mLock held
1127void AudioFlinger::removeClient_l(pid_t pid)
1128{
Glenn Kasten85ab62c2012-11-01 11:11:38 -07001129 ALOGV("removeClient_l() pid %d, tid %d, calling tid %d", pid, gettid(),
1130 IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001131 mClients.removeItem(pid);
1132}
1133
Eric Laurent717e1282012-06-29 16:36:52 -07001134// getEffectThread_l() must be called with AudioFlinger::mLock held
1135sp<AudioFlinger::PlaybackThread> AudioFlinger::getEffectThread_l(int sessionId, int EffectId)
1136{
1137 sp<PlaybackThread> thread;
1138
1139 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
1140 if (mPlaybackThreads.valueAt(i)->getEffect(sessionId, EffectId) != 0) {
1141 ALOG_ASSERT(thread == 0);
1142 thread = mPlaybackThreads.valueAt(i);
1143 }
1144 }
1145
1146 return thread;
1147}
Mathias Agopian65ab4712010-07-14 17:59:35 -07001148
1149// ----------------------------------------------------------------------------
1150
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001151AudioFlinger::ThreadBase::ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
Eric Laurentf1c04f92012-08-28 14:26:53 -07001152 audio_devices_t outDevice, audio_devices_t inDevice, type_t type)
Glenn Kastenc3ae93f2012-07-30 10:59:30 -07001153 : Thread(false /*canCallJava*/),
Glenn Kasten23bb8be2012-01-26 10:38:26 -08001154 mType(type),
Glenn Kasten58912562012-04-03 10:45:00 -07001155 mAudioFlinger(audioFlinger), mSampleRate(0), mFrameCount(0), mNormalFrameCount(0),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001156 // mChannelMask
1157 mChannelCount(0),
1158 mFrameSize(1), mFormat(AUDIO_FORMAT_INVALID),
1159 mParamStatus(NO_ERROR),
Eric Laurentf1c04f92012-08-28 14:26:53 -07001160 mStandby(false), mOutDevice(outDevice), mInDevice(inDevice),
1161 mAudioSource(AUDIO_SOURCE_DEFAULT), mId(id),
Glenn Kastenc3ae93f2012-07-30 10:59:30 -07001162 // mName will be set by concrete (non-virtual) subclass
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001163 mDeathRecipient(new PMDeathRecipient(this))
Mathias Agopian65ab4712010-07-14 17:59:35 -07001164{
1165}
1166
1167AudioFlinger::ThreadBase::~ThreadBase()
1168{
1169 mParamCond.broadcast();
Eric Laurentfeb0db62011-07-22 09:04:31 -07001170 // do not lock the mutex in destructor
1171 releaseWakeLock_l();
Eric Laurent9d18ec52011-09-27 12:07:15 -07001172 if (mPowerManager != 0) {
1173 sp<IBinder> binder = mPowerManager->asBinder();
1174 binder->unlinkToDeath(mDeathRecipient);
1175 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001176}
1177
1178void AudioFlinger::ThreadBase::exit()
1179{
Steve Block3856b092011-10-20 11:56:00 +01001180 ALOGV("ThreadBase::exit");
Jean-Michel Trivi2bfc6b42012-09-28 14:49:39 -07001181 // do any cleanup required for exit to succeed
1182 preExit();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001183 {
Glenn Kastenb28686f2012-01-06 08:39:38 -08001184 // This lock prevents the following race in thread (uniprocessor for illustration):
1185 // if (!exitPending()) {
1186 // // context switch from here to exit()
1187 // // exit() calls requestExit(), what exitPending() observes
1188 // // exit() calls signal(), which is dropped since no waiters
1189 // // context switch back from exit() to here
1190 // mWaitWorkCV.wait(...);
1191 // // now thread is hung
1192 // }
Glenn Kastena7d8d6f2012-01-05 15:41:56 -08001193 AutoMutex lock(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001194 requestExit();
Eric Laurentb6ba2fd2012-09-24 15:02:17 -07001195 mWaitWorkCV.broadcast();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001196 }
Glenn Kastenb28686f2012-01-06 08:39:38 -08001197 // When Thread::requestExitAndWait is made virtual and this method is renamed to
1198 // "virtual status_t requestExitAndWait()", replace by "return Thread::requestExitAndWait();"
Mathias Agopian65ab4712010-07-14 17:59:35 -07001199 requestExitAndWait();
1200}
1201
Mathias Agopian65ab4712010-07-14 17:59:35 -07001202status_t AudioFlinger::ThreadBase::setParameters(const String8& keyValuePairs)
1203{
1204 status_t status;
1205
Steve Block3856b092011-10-20 11:56:00 +01001206 ALOGV("ThreadBase::setParameters() %s", keyValuePairs.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001207 Mutex::Autolock _l(mLock);
1208
1209 mNewParameters.add(keyValuePairs);
1210 mWaitWorkCV.signal();
1211 // wait condition with timeout in case the thread loop has exited
1212 // before the request could be processed
Glenn Kasten7dede872011-12-13 11:04:14 -08001213 if (mParamCond.waitRelative(mLock, kSetParametersTimeoutNs) == NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001214 status = mParamStatus;
1215 mWaitWorkCV.signal();
1216 } else {
1217 status = TIMED_OUT;
1218 }
1219 return status;
1220}
1221
Eric Laurent896adcd2012-09-13 11:18:23 -07001222void AudioFlinger::ThreadBase::sendIoConfigEvent(int event, int param)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001223{
1224 Mutex::Autolock _l(mLock);
Eric Laurent896adcd2012-09-13 11:18:23 -07001225 sendIoConfigEvent_l(event, param);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001226}
1227
Eric Laurent896adcd2012-09-13 11:18:23 -07001228// sendIoConfigEvent_l() must be called with ThreadBase::mLock held
1229void AudioFlinger::ThreadBase::sendIoConfigEvent_l(int event, int param)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001230{
Eric Laurent896adcd2012-09-13 11:18:23 -07001231 IoConfigEvent *ioEvent = new IoConfigEvent(event, param);
1232 mConfigEvents.add(static_cast<ConfigEvent *>(ioEvent));
Glenn Kasten85ab62c2012-11-01 11:11:38 -07001233 ALOGV("sendIoConfigEvent() num events %d event %d, param %d", mConfigEvents.size(), event,
1234 param);
Eric Laurent896adcd2012-09-13 11:18:23 -07001235 mWaitWorkCV.signal();
1236}
1237
1238// sendPrioConfigEvent_l() must be called with ThreadBase::mLock held
1239void AudioFlinger::ThreadBase::sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio)
1240{
1241 PrioConfigEvent *prioEvent = new PrioConfigEvent(pid, tid, prio);
1242 mConfigEvents.add(static_cast<ConfigEvent *>(prioEvent));
1243 ALOGV("sendPrioConfigEvent_l() num events %d pid %d, tid %d prio %d",
1244 mConfigEvents.size(), pid, tid, prio);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001245 mWaitWorkCV.signal();
1246}
1247
1248void AudioFlinger::ThreadBase::processConfigEvents()
1249{
1250 mLock.lock();
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001251 while (!mConfigEvents.isEmpty()) {
Steve Block3856b092011-10-20 11:56:00 +01001252 ALOGV("processConfigEvents() remaining events %d", mConfigEvents.size());
Eric Laurent896adcd2012-09-13 11:18:23 -07001253 ConfigEvent *event = mConfigEvents[0];
Mathias Agopian65ab4712010-07-14 17:59:35 -07001254 mConfigEvents.removeAt(0);
1255 // release mLock before locking AudioFlinger mLock: lock order is always
1256 // AudioFlinger then ThreadBase to avoid cross deadlock
1257 mLock.unlock();
Eric Laurent896adcd2012-09-13 11:18:23 -07001258 switch(event->type()) {
1259 case CFG_EVENT_PRIO: {
1260 PrioConfigEvent *prioEvent = static_cast<PrioConfigEvent *>(event);
1261 int err = requestPriority(prioEvent->pid(), prioEvent->tid(), prioEvent->prio());
1262 if (err != 0) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07001263 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; "
1264 "error %d",
Eric Laurent896adcd2012-09-13 11:18:23 -07001265 prioEvent->prio(), prioEvent->pid(), prioEvent->tid(), err);
1266 }
1267 } break;
1268 case CFG_EVENT_IO: {
1269 IoConfigEvent *ioEvent = static_cast<IoConfigEvent *>(event);
1270 mAudioFlinger->mLock.lock();
1271 audioConfigChanged_l(ioEvent->event(), ioEvent->param());
1272 mAudioFlinger->mLock.unlock();
1273 } break;
1274 default:
1275 ALOGE("processConfigEvents() unknown event type %d", event->type());
1276 break;
1277 }
1278 delete event;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001279 mLock.lock();
1280 }
1281 mLock.unlock();
1282}
1283
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07001284void AudioFlinger::ThreadBase::dumpBase(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001285{
1286 const size_t SIZE = 256;
1287 char buffer[SIZE];
1288 String8 result;
1289
1290 bool locked = tryLock(mLock);
1291 if (!locked) {
1292 snprintf(buffer, SIZE, "thread %p maybe dead locked\n", this);
1293 write(fd, buffer, strlen(buffer));
1294 }
1295
Eric Laurent612bbb52012-03-14 15:03:26 -07001296 snprintf(buffer, SIZE, "io handle: %d\n", mId);
1297 result.append(buffer);
1298 snprintf(buffer, SIZE, "TID: %d\n", getTid());
1299 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001300 snprintf(buffer, SIZE, "standby: %d\n", mStandby);
1301 result.append(buffer);
Glenn Kasten3b16c762012-11-14 08:44:39 -08001302 snprintf(buffer, SIZE, "Sample rate: %u\n", mSampleRate);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001303 result.append(buffer);
Glenn Kasten58912562012-04-03 10:45:00 -07001304 snprintf(buffer, SIZE, "HAL frame count: %d\n", mFrameCount);
1305 result.append(buffer);
1306 snprintf(buffer, SIZE, "Normal frame count: %d\n", mNormalFrameCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001307 result.append(buffer);
1308 snprintf(buffer, SIZE, "Channel Count: %d\n", mChannelCount);
1309 result.append(buffer);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001310 snprintf(buffer, SIZE, "Channel Mask: 0x%08x\n", mChannelMask);
1311 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001312 snprintf(buffer, SIZE, "Format: %d\n", mFormat);
1313 result.append(buffer);
Glenn Kastenb9980652012-01-11 09:48:27 -08001314 snprintf(buffer, SIZE, "Frame size: %u\n", mFrameSize);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001315 result.append(buffer);
1316
1317 snprintf(buffer, SIZE, "\nPending setParameters commands: \n");
1318 result.append(buffer);
1319 result.append(" Index Command");
1320 for (size_t i = 0; i < mNewParameters.size(); ++i) {
1321 snprintf(buffer, SIZE, "\n %02d ", i);
1322 result.append(buffer);
1323 result.append(mNewParameters[i]);
1324 }
1325
1326 snprintf(buffer, SIZE, "\n\nPending config events: \n");
1327 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001328 for (size_t i = 0; i < mConfigEvents.size(); i++) {
Eric Laurent896adcd2012-09-13 11:18:23 -07001329 mConfigEvents[i]->dump(buffer, SIZE);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001330 result.append(buffer);
1331 }
1332 result.append("\n");
1333
1334 write(fd, result.string(), result.size());
1335
1336 if (locked) {
1337 mLock.unlock();
1338 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001339}
1340
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07001341void AudioFlinger::ThreadBase::dumpEffectChains(int fd, const Vector<String16>& args)
Eric Laurent1d2bff02011-07-24 17:49:51 -07001342{
1343 const size_t SIZE = 256;
1344 char buffer[SIZE];
1345 String8 result;
1346
1347 snprintf(buffer, SIZE, "\n- %d Effect Chains:\n", mEffectChains.size());
1348 write(fd, buffer, strlen(buffer));
1349
1350 for (size_t i = 0; i < mEffectChains.size(); ++i) {
1351 sp<EffectChain> chain = mEffectChains[i];
1352 if (chain != 0) {
1353 chain->dump(fd, args);
1354 }
1355 }
Eric Laurent1d2bff02011-07-24 17:49:51 -07001356}
1357
Eric Laurentfeb0db62011-07-22 09:04:31 -07001358void AudioFlinger::ThreadBase::acquireWakeLock()
1359{
1360 Mutex::Autolock _l(mLock);
1361 acquireWakeLock_l();
1362}
1363
1364void AudioFlinger::ThreadBase::acquireWakeLock_l()
1365{
1366 if (mPowerManager == 0) {
1367 // use checkService() to avoid blocking if power service is not up yet
1368 sp<IBinder> binder =
1369 defaultServiceManager()->checkService(String16("power"));
1370 if (binder == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001371 ALOGW("Thread %s cannot connect to the power manager service", mName);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001372 } else {
1373 mPowerManager = interface_cast<IPowerManager>(binder);
1374 binder->linkToDeath(mDeathRecipient);
1375 }
1376 }
1377 if (mPowerManager != 0) {
1378 sp<IBinder> binder = new BBinder();
1379 status_t status = mPowerManager->acquireWakeLock(POWERMANAGER_PARTIAL_WAKE_LOCK,
1380 binder,
1381 String16(mName));
1382 if (status == NO_ERROR) {
1383 mWakeLockToken = binder;
1384 }
Steve Block3856b092011-10-20 11:56:00 +01001385 ALOGV("acquireWakeLock_l() %s status %d", mName, status);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001386 }
1387}
1388
1389void AudioFlinger::ThreadBase::releaseWakeLock()
1390{
1391 Mutex::Autolock _l(mLock);
Eric Laurent6dbe8832011-07-28 13:59:02 -07001392 releaseWakeLock_l();
Eric Laurentfeb0db62011-07-22 09:04:31 -07001393}
1394
1395void AudioFlinger::ThreadBase::releaseWakeLock_l()
1396{
1397 if (mWakeLockToken != 0) {
Steve Block3856b092011-10-20 11:56:00 +01001398 ALOGV("releaseWakeLock_l() %s", mName);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001399 if (mPowerManager != 0) {
1400 mPowerManager->releaseWakeLock(mWakeLockToken, 0);
1401 }
1402 mWakeLockToken.clear();
1403 }
1404}
1405
1406void AudioFlinger::ThreadBase::clearPowerManager()
1407{
1408 Mutex::Autolock _l(mLock);
1409 releaseWakeLock_l();
1410 mPowerManager.clear();
1411}
1412
1413void AudioFlinger::ThreadBase::PMDeathRecipient::binderDied(const wp<IBinder>& who)
1414{
1415 sp<ThreadBase> thread = mThread.promote();
1416 if (thread != 0) {
1417 thread->clearPowerManager();
1418 }
Steve Block5ff1dd52012-01-05 23:22:43 +00001419 ALOGW("power manager service died !!!");
Eric Laurentfeb0db62011-07-22 09:04:31 -07001420}
Eric Laurent1d2bff02011-07-24 17:49:51 -07001421
Eric Laurent59255e42011-07-27 19:49:51 -07001422void AudioFlinger::ThreadBase::setEffectSuspended(
1423 const effect_uuid_t *type, bool suspend, int sessionId)
1424{
1425 Mutex::Autolock _l(mLock);
1426 setEffectSuspended_l(type, suspend, sessionId);
1427}
1428
1429void AudioFlinger::ThreadBase::setEffectSuspended_l(
1430 const effect_uuid_t *type, bool suspend, int sessionId)
1431{
Glenn Kasten090f0192012-01-30 13:00:02 -08001432 sp<EffectChain> chain = getEffectChain_l(sessionId);
Eric Laurent59255e42011-07-27 19:49:51 -07001433 if (chain != 0) {
1434 if (type != NULL) {
1435 chain->setEffectSuspended_l(type, suspend);
1436 } else {
1437 chain->setEffectSuspendedAll_l(suspend);
1438 }
1439 }
1440
1441 updateSuspendedSessions_l(type, suspend, sessionId);
1442}
1443
1444void AudioFlinger::ThreadBase::checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain)
1445{
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001446 ssize_t index = mSuspendedSessions.indexOfKey(chain->sessionId());
Eric Laurent59255e42011-07-27 19:49:51 -07001447 if (index < 0) {
1448 return;
1449 }
1450
Glenn Kasten0a7af182012-07-09 16:09:19 -07001451 const KeyedVector <int, sp<SuspendedSessionDesc> >& sessionEffects =
1452 mSuspendedSessions.valueAt(index);
Eric Laurent59255e42011-07-27 19:49:51 -07001453
1454 for (size_t i = 0; i < sessionEffects.size(); i++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001455 sp<SuspendedSessionDesc> desc = sessionEffects.valueAt(i);
Eric Laurent59255e42011-07-27 19:49:51 -07001456 for (int j = 0; j < desc->mRefCount; j++) {
1457 if (sessionEffects.keyAt(i) == EffectChain::kKeyForSuspendAll) {
1458 chain->setEffectSuspendedAll_l(true);
1459 } else {
Steve Block3856b092011-10-20 11:56:00 +01001460 ALOGV("checkSuspendOnAddEffectChain_l() suspending effects %08x",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001461 desc->mType.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07001462 chain->setEffectSuspended_l(&desc->mType, true);
1463 }
1464 }
1465 }
1466}
1467
Eric Laurent59255e42011-07-27 19:49:51 -07001468void AudioFlinger::ThreadBase::updateSuspendedSessions_l(const effect_uuid_t *type,
1469 bool suspend,
1470 int sessionId)
1471{
Glenn Kasten8d6a2442012-02-08 14:04:28 -08001472 ssize_t index = mSuspendedSessions.indexOfKey(sessionId);
Eric Laurent59255e42011-07-27 19:49:51 -07001473
1474 KeyedVector <int, sp<SuspendedSessionDesc> > sessionEffects;
1475
1476 if (suspend) {
1477 if (index >= 0) {
Glenn Kasten0a7af182012-07-09 16:09:19 -07001478 sessionEffects = mSuspendedSessions.valueAt(index);
Eric Laurent59255e42011-07-27 19:49:51 -07001479 } else {
1480 mSuspendedSessions.add(sessionId, sessionEffects);
1481 }
1482 } else {
1483 if (index < 0) {
1484 return;
1485 }
Glenn Kasten0a7af182012-07-09 16:09:19 -07001486 sessionEffects = mSuspendedSessions.valueAt(index);
Eric Laurent59255e42011-07-27 19:49:51 -07001487 }
1488
1489
1490 int key = EffectChain::kKeyForSuspendAll;
1491 if (type != NULL) {
1492 key = type->timeLow;
1493 }
1494 index = sessionEffects.indexOfKey(key);
1495
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001496 sp<SuspendedSessionDesc> desc;
Eric Laurent59255e42011-07-27 19:49:51 -07001497 if (suspend) {
1498 if (index >= 0) {
1499 desc = sessionEffects.valueAt(index);
1500 } else {
1501 desc = new SuspendedSessionDesc();
1502 if (type != NULL) {
Glenn Kastena189a682012-02-20 12:16:30 -08001503 desc->mType = *type;
Eric Laurent59255e42011-07-27 19:49:51 -07001504 }
1505 sessionEffects.add(key, desc);
Steve Block3856b092011-10-20 11:56:00 +01001506 ALOGV("updateSuspendedSessions_l() suspend adding effect %08x", key);
Eric Laurent59255e42011-07-27 19:49:51 -07001507 }
1508 desc->mRefCount++;
1509 } else {
1510 if (index < 0) {
1511 return;
1512 }
1513 desc = sessionEffects.valueAt(index);
1514 if (--desc->mRefCount == 0) {
Steve Block3856b092011-10-20 11:56:00 +01001515 ALOGV("updateSuspendedSessions_l() restore removing effect %08x", key);
Eric Laurent59255e42011-07-27 19:49:51 -07001516 sessionEffects.removeItemsAt(index);
1517 if (sessionEffects.isEmpty()) {
Steve Block3856b092011-10-20 11:56:00 +01001518 ALOGV("updateSuspendedSessions_l() restore removing session %d",
Eric Laurent59255e42011-07-27 19:49:51 -07001519 sessionId);
1520 mSuspendedSessions.removeItem(sessionId);
1521 }
1522 }
1523 }
1524 if (!sessionEffects.isEmpty()) {
1525 mSuspendedSessions.replaceValueFor(sessionId, sessionEffects);
1526 }
1527}
1528
1529void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1530 bool enabled,
1531 int sessionId)
1532{
1533 Mutex::Autolock _l(mLock);
Eric Laurenta85a74a2011-10-19 11:44:54 -07001534 checkSuspendOnEffectEnabled_l(effect, enabled, sessionId);
1535}
Eric Laurent59255e42011-07-27 19:49:51 -07001536
Eric Laurenta85a74a2011-10-19 11:44:54 -07001537void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
1538 bool enabled,
1539 int sessionId)
1540{
Eric Laurentdb7c0792011-08-10 10:37:50 -07001541 if (mType != RECORD) {
1542 // suspend all effects in AUDIO_SESSION_OUTPUT_MIX when enabling any effect on
1543 // another session. This gives the priority to well behaved effect control panels
1544 // and applications not using global effects.
Eric Laurent808e7d12012-05-11 19:44:09 -07001545 // Enabling post processing in AUDIO_SESSION_OUTPUT_STAGE session does not affect
1546 // global effects
1547 if ((sessionId != AUDIO_SESSION_OUTPUT_MIX) && (sessionId != AUDIO_SESSION_OUTPUT_STAGE)) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07001548 setEffectSuspended_l(NULL, enabled, AUDIO_SESSION_OUTPUT_MIX);
1549 }
1550 }
Eric Laurent59255e42011-07-27 19:49:51 -07001551
1552 sp<EffectChain> chain = getEffectChain_l(sessionId);
1553 if (chain != 0) {
1554 chain->checkSuspendOnEffectEnabled(effect, enabled);
1555 }
1556}
1557
Mathias Agopian65ab4712010-07-14 17:59:35 -07001558// ----------------------------------------------------------------------------
1559
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001560AudioFlinger::PlaybackThread::PlaybackThread(const sp<AudioFlinger>& audioFlinger,
1561 AudioStreamOut* output,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001562 audio_io_handle_t id,
Glenn Kastenbb4350d2012-07-03 15:56:38 -07001563 audio_devices_t device,
Glenn Kasten23bb8be2012-01-26 10:38:26 -08001564 type_t type)
Eric Laurentf1c04f92012-08-28 14:26:53 -07001565 : ThreadBase(audioFlinger, id, device, AUDIO_DEVICE_NONE, type),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001566 mMixBuffer(NULL), mSuspended(0), mBytesWritten(0),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001567 // mStreamTypes[] initialized in constructor body
1568 mOutput(output),
Glenn Kastenfec279f2012-03-08 07:47:15 -08001569 mLastWriteTime(0), mNumWrites(0), mNumDelayedWrites(0), mInWrite(false),
Glenn Kastenaa4397f2012-03-12 18:13:59 -07001570 mMixerStatus(MIXER_IDLE),
Glenn Kasten81028042012-04-30 18:15:12 -07001571 mMixerStatusIgnoringFastTracks(MIXER_IDLE),
Glenn Kasten58912562012-04-03 10:45:00 -07001572 standbyDelay(AudioFlinger::mStandbyTimeInNsecs),
Glenn Kasten28ed2f92012-06-07 10:17:54 -07001573 mScreenState(gScreenState),
Glenn Kasten288ed212012-04-25 17:52:27 -07001574 // index 0 is reserved for normal mixer's submix
1575 mFastTrackAvailMask(((1 << FastMixerState::kMaxFastTracks) - 1) & ~1)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001576{
Glenn Kasten480b4682012-02-28 12:30:08 -08001577 snprintf(mName, kNameLength, "AudioOut_%X", id);
Eric Laurentfeb0db62011-07-22 09:04:31 -07001578
John Grossmanee578c02012-07-23 17:05:46 -07001579 // Assumes constructor is called by AudioFlinger with it's mLock held, but
1580 // it would be safer to explicitly pass initial masterVolume/masterMute as
1581 // parameter.
1582 //
1583 // If the HAL we are using has support for master volume or master mute,
1584 // then do not attenuate or mute during mixing (just leave the volume at 1.0
1585 // and the mute set to false).
1586 mMasterVolume = audioFlinger->masterVolume_l();
1587 mMasterMute = audioFlinger->masterMute_l();
1588 if (mOutput && mOutput->audioHwDev) {
1589 if (mOutput->audioHwDev->canSetMasterVolume()) {
1590 mMasterVolume = 1.0;
1591 }
1592
1593 if (mOutput->audioHwDev->canSetMasterMute()) {
1594 mMasterMute = false;
1595 }
1596 }
1597
Mathias Agopian65ab4712010-07-14 17:59:35 -07001598 readOutputParameters();
1599
Glenn Kasten263709e2012-01-06 08:40:01 -08001600 // mStreamTypes[AUDIO_STREAM_CNT] is initialized by stream_type_t default constructor
Glenn Kastenfff6d712012-01-12 16:38:12 -08001601 // There is no AUDIO_STREAM_MIN, and ++ operator does not compile
1602 for (audio_stream_type_t stream = (audio_stream_type_t) 0; stream < AUDIO_STREAM_CNT;
1603 stream = (audio_stream_type_t) (stream + 1)) {
Glenn Kasten6637baa2012-01-09 09:40:36 -08001604 mStreamTypes[stream].volume = mAudioFlinger->streamVolume_l(stream);
1605 mStreamTypes[stream].mute = mAudioFlinger->streamMute_l(stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001606 }
Glenn Kasten6637baa2012-01-09 09:40:36 -08001607 // mStreamTypes[AUDIO_STREAM_CNT] exists but isn't explicitly initialized here,
1608 // because mAudioFlinger doesn't have one to copy from
Mathias Agopian65ab4712010-07-14 17:59:35 -07001609}
1610
1611AudioFlinger::PlaybackThread::~PlaybackThread()
1612{
1613 delete [] mMixBuffer;
1614}
1615
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07001616void AudioFlinger::PlaybackThread::dump(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001617{
1618 dumpInternals(fd, args);
1619 dumpTracks(fd, args);
1620 dumpEffectChains(fd, args);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001621}
1622
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07001623void AudioFlinger::PlaybackThread::dumpTracks(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001624{
1625 const size_t SIZE = 256;
1626 char buffer[SIZE];
1627 String8 result;
1628
Glenn Kasten58912562012-04-03 10:45:00 -07001629 result.appendFormat("Output thread %p stream volumes in dB:\n ", this);
1630 for (int i = 0; i < AUDIO_STREAM_CNT; ++i) {
1631 const stream_type_t *st = &mStreamTypes[i];
1632 if (i > 0) {
1633 result.appendFormat(", ");
1634 }
1635 result.appendFormat("%d:%.2g", i, 20.0 * log10(st->volume));
1636 if (st->mute) {
1637 result.append("M");
1638 }
1639 }
1640 result.append("\n");
1641 write(fd, result.string(), result.length());
1642 result.clear();
1643
Mathias Agopian65ab4712010-07-14 17:59:35 -07001644 snprintf(buffer, SIZE, "Output thread %p tracks\n", this);
1645 result.append(buffer);
Glenn Kasten288ed212012-04-25 17:52:27 -07001646 Track::appendDumpHeader(result);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001647 for (size_t i = 0; i < mTracks.size(); ++i) {
1648 sp<Track> track = mTracks[i];
1649 if (track != 0) {
1650 track->dump(buffer, SIZE);
1651 result.append(buffer);
1652 }
1653 }
1654
1655 snprintf(buffer, SIZE, "Output thread %p active tracks\n", this);
1656 result.append(buffer);
Glenn Kasten288ed212012-04-25 17:52:27 -07001657 Track::appendDumpHeader(result);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001658 for (size_t i = 0; i < mActiveTracks.size(); ++i) {
Glenn Kasten77c11192012-01-25 14:27:41 -08001659 sp<Track> track = mActiveTracks[i].promote();
1660 if (track != 0) {
1661 track->dump(buffer, SIZE);
1662 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001663 }
1664 }
1665 write(fd, result.string(), result.size());
Glenn Kasten88cbea82012-05-15 07:39:27 -07001666
1667 // These values are "raw"; they will wrap around. See prepareTracks_l() for a better way.
1668 FastTrackUnderruns underruns = getFastTrackUnderruns(0);
1669 fdprintf(fd, "Normal mixer raw underrun counters: partial=%u empty=%u\n",
1670 underruns.mBitFields.mPartial, underruns.mBitFields.mEmpty);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001671}
1672
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07001673void AudioFlinger::PlaybackThread::dumpInternals(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001674{
1675 const size_t SIZE = 256;
1676 char buffer[SIZE];
1677 String8 result;
1678
1679 snprintf(buffer, SIZE, "\nOutput thread %p internals\n", this);
1680 result.append(buffer);
Glenn Kasten85ab62c2012-11-01 11:11:38 -07001681 snprintf(buffer, SIZE, "last write occurred (msecs): %llu\n",
1682 ns2ms(systemTime() - mLastWriteTime));
Mathias Agopian65ab4712010-07-14 17:59:35 -07001683 result.append(buffer);
1684 snprintf(buffer, SIZE, "total writes: %d\n", mNumWrites);
1685 result.append(buffer);
1686 snprintf(buffer, SIZE, "delayed writes: %d\n", mNumDelayedWrites);
1687 result.append(buffer);
1688 snprintf(buffer, SIZE, "blocked in write: %d\n", mInWrite);
1689 result.append(buffer);
1690 snprintf(buffer, SIZE, "suspend count: %d\n", mSuspended);
1691 result.append(buffer);
1692 snprintf(buffer, SIZE, "mix buffer : %p\n", mMixBuffer);
1693 result.append(buffer);
1694 write(fd, result.string(), result.size());
Glenn Kasten1295bb4d2012-05-31 07:43:43 -07001695 fdprintf(fd, "Fast track availMask=%#x\n", mFastTrackAvailMask);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001696
1697 dumpBase(fd, args);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001698}
1699
1700// Thread virtuals
1701status_t AudioFlinger::PlaybackThread::readyToRun()
1702{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001703 status_t status = initCheck();
1704 if (status == NO_ERROR) {
Steve Blockdf64d152012-01-04 20:05:49 +00001705 ALOGI("AudioFlinger's thread %p ready to run", this);
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001706 } else {
Steve Block29357bc2012-01-06 19:20:56 +00001707 ALOGE("No working audio driver found.");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001708 }
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001709 return status;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001710}
1711
1712void AudioFlinger::PlaybackThread::onFirstRef()
1713{
Eric Laurentfeb0db62011-07-22 09:04:31 -07001714 run(mName, ANDROID_PRIORITY_URGENT_AUDIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001715}
1716
Jean-Michel Trivi2bfc6b42012-09-28 14:49:39 -07001717// ThreadBase virtuals
1718void AudioFlinger::PlaybackThread::preExit()
1719{
1720 ALOGV(" preExit()");
1721 // FIXME this is using hard-coded strings but in the future, this functionality will be
1722 // converted to use audio HAL extensions required to support tunneling
1723 mOutput->stream->common.set_parameters(&mOutput->stream->common, "exiting=1");
1724}
1725
Mathias Agopian65ab4712010-07-14 17:59:35 -07001726// PlaybackThread::createTrack_l() must be called with AudioFlinger::mLock held
Glenn Kastenea7939a2012-03-14 12:56:26 -07001727sp<AudioFlinger::PlaybackThread::Track> AudioFlinger::PlaybackThread::createTrack_l(
Mathias Agopian65ab4712010-07-14 17:59:35 -07001728 const sp<AudioFlinger::Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -08001729 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001730 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08001731 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07001732 audio_channel_mask_t channelMask,
Glenn Kastene33054e2012-11-14 12:54:39 -08001733 size_t frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001734 const sp<IMemory>& sharedBuffer,
1735 int sessionId,
Glenn Kastene0b07172012-11-06 15:03:34 -08001736 IAudioFlinger::track_flags_t *flags,
Glenn Kasten3acbd052012-02-28 10:39:56 -08001737 pid_t tid,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001738 status_t *status)
1739{
1740 sp<Track> track;
1741 status_t lStatus;
1742
Glenn Kastene0b07172012-11-06 15:03:34 -08001743 bool isTimed = (*flags & IAudioFlinger::TRACK_TIMED) != 0;
Glenn Kasten73d22752012-03-19 13:38:30 -07001744
1745 // client expresses a preference for FAST, but we get the final say
Glenn Kastene0b07172012-11-06 15:03:34 -08001746 if (*flags & IAudioFlinger::TRACK_FAST) {
Glenn Kastene0fa4672012-04-24 14:35:14 -07001747 if (
Glenn Kasten73d22752012-03-19 13:38:30 -07001748 // not timed
1749 (!isTimed) &&
1750 // either of these use cases:
1751 (
1752 // use case 1: shared buffer with any frame count
1753 (
1754 (sharedBuffer != 0)
1755 ) ||
Glenn Kastene0fa4672012-04-24 14:35:14 -07001756 // use case 2: callback handler and frame count is default or at least as large as HAL
Glenn Kasten73d22752012-03-19 13:38:30 -07001757 (
Glenn Kasten3acbd052012-02-28 10:39:56 -08001758 (tid != -1) &&
Glenn Kastene0fa4672012-04-24 14:35:14 -07001759 ((frameCount == 0) ||
Glenn Kastenb6037442012-11-14 13:42:25 -08001760 (frameCount >= (mFrameCount * kFastTrackMultiplier)))
Glenn Kasten73d22752012-03-19 13:38:30 -07001761 )
1762 ) &&
1763 // PCM data
1764 audio_is_linear_pcm(format) &&
1765 // mono or stereo
1766 ( (channelMask == AUDIO_CHANNEL_OUT_MONO) ||
1767 (channelMask == AUDIO_CHANNEL_OUT_STEREO) ) &&
Glenn Kasten58912562012-04-03 10:45:00 -07001768#ifndef FAST_TRACKS_AT_NON_NATIVE_SAMPLE_RATE
Glenn Kasten73d22752012-03-19 13:38:30 -07001769 // hardware sample rate
Glenn Kasten58912562012-04-03 10:45:00 -07001770 (sampleRate == mSampleRate) &&
1771#endif
1772 // normal mixer has an associated fast mixer
1773 hasFastMixer() &&
1774 // there are sufficient fast track slots available
1775 (mFastTrackAvailMask != 0)
Glenn Kasten73d22752012-03-19 13:38:30 -07001776 // FIXME test that MixerThread for this fast track has a capable output HAL
1777 // FIXME add a permission test also?
Glenn Kastene0fa4672012-04-24 14:35:14 -07001778 ) {
Glenn Kastene0fa4672012-04-24 14:35:14 -07001779 // if frameCount not specified, then it defaults to fast mixer (HAL) frame count
1780 if (frameCount == 0) {
Glenn Kasten3ed29202012-08-07 15:24:44 -07001781 frameCount = mFrameCount * kFastTrackMultiplier;
Glenn Kastene0fa4672012-04-24 14:35:14 -07001782 }
Glenn Kasten31dfd1d2012-05-01 11:07:08 -07001783 ALOGV("AUDIO_OUTPUT_FLAG_FAST accepted: frameCount=%d mFrameCount=%d",
Glenn Kasten300a2ee2012-04-25 13:47:36 -07001784 frameCount, mFrameCount);
Glenn Kastene0fa4672012-04-24 14:35:14 -07001785 } else {
Glenn Kasten852fca92012-05-24 08:44:00 -07001786 ALOGV("AUDIO_OUTPUT_FLAG_FAST denied: isTimed=%d sharedBuffer=%p frameCount=%d "
Glenn Kasten3b16c762012-11-14 08:44:39 -08001787 "mFrameCount=%d format=%d isLinear=%d channelMask=%#x sampleRate=%u mSampleRate=%u "
Glenn Kasten58912562012-04-03 10:45:00 -07001788 "hasFastMixer=%d tid=%d fastTrackAvailMask=%#x",
1789 isTimed, sharedBuffer.get(), frameCount, mFrameCount, format,
1790 audio_is_linear_pcm(format),
1791 channelMask, sampleRate, mSampleRate, hasFastMixer(), tid, mFastTrackAvailMask);
Glenn Kastene0b07172012-11-06 15:03:34 -08001792 *flags &= ~IAudioFlinger::TRACK_FAST;
Glenn Kastene0fa4672012-04-24 14:35:14 -07001793 // For compatibility with AudioTrack calculation, buffer depth is forced
1794 // to be at least 2 x the normal mixer frame count and cover audio hardware latency.
1795 // This is probably too conservative, but legacy application code may depend on it.
1796 // If you change this calculation, also review the start threshold which is related.
1797 uint32_t latencyMs = mOutput->stream->get_latency(mOutput->stream);
1798 uint32_t minBufCount = latencyMs / ((1000 * mNormalFrameCount) / mSampleRate);
1799 if (minBufCount < 2) {
1800 minBufCount = 2;
Glenn Kasten58912562012-04-03 10:45:00 -07001801 }
Glenn Kastene33054e2012-11-14 12:54:39 -08001802 size_t minFrameCount = mNormalFrameCount * minBufCount;
Glenn Kastene0fa4672012-04-24 14:35:14 -07001803 if (frameCount < minFrameCount) {
1804 frameCount = minFrameCount;
1805 }
1806 }
Glenn Kasten73d22752012-03-19 13:38:30 -07001807 }
1808
Mathias Agopian65ab4712010-07-14 17:59:35 -07001809 if (mType == DIRECT) {
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001810 if ((format & AUDIO_FORMAT_MAIN_MASK) == AUDIO_FORMAT_PCM) {
1811 if (sampleRate != mSampleRate || format != mFormat || channelMask != mChannelMask) {
Glenn Kasten3b16c762012-11-14 08:44:39 -08001812 ALOGE("createTrack_l() Bad parameter: sampleRate %u format %d, channelMask 0x%08x "
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001813 "for output %p with format %d",
1814 sampleRate, format, channelMask, mOutput, mFormat);
1815 lStatus = BAD_VALUE;
1816 goto Exit;
1817 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001818 }
1819 } else {
1820 // Resampler implementation limits input sampling rate to 2 x output sampling rate.
1821 if (sampleRate > mSampleRate*2) {
Glenn Kasten3b16c762012-11-14 08:44:39 -08001822 ALOGE("Sample rate out of range: %u mSampleRate %u", sampleRate, mSampleRate);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001823 lStatus = BAD_VALUE;
1824 goto Exit;
1825 }
1826 }
1827
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001828 lStatus = initCheck();
1829 if (lStatus != NO_ERROR) {
Steve Block29357bc2012-01-06 19:20:56 +00001830 ALOGE("Audio driver not initialized.");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001831 goto Exit;
1832 }
1833
1834 { // scope for mLock
1835 Mutex::Autolock _l(mLock);
Eric Laurentde070132010-07-13 04:45:46 -07001836
1837 // all tracks in same audio session must share the same routing strategy otherwise
1838 // conflicts will happen when tracks are moved from one output to another by audio policy
1839 // manager
Glenn Kasten02bbd202012-02-08 12:35:35 -08001840 uint32_t strategy = AudioSystem::getStrategyForStream(streamType);
Eric Laurentde070132010-07-13 04:45:46 -07001841 for (size_t i = 0; i < mTracks.size(); ++i) {
1842 sp<Track> t = mTracks[i];
Glenn Kasten639dbee2012-03-07 12:26:34 -08001843 if (t != 0 && !t->isOutputTrack()) {
Glenn Kasten02bbd202012-02-08 12:35:35 -08001844 uint32_t actual = AudioSystem::getStrategyForStream(t->streamType());
Glenn Kastend8796012011-10-28 10:31:42 -07001845 if (sessionId == t->sessionId() && strategy != actual) {
Steve Block29357bc2012-01-06 19:20:56 +00001846 ALOGE("createTrack_l() mismatched strategy; expected %u but found %u",
Glenn Kastend8796012011-10-28 10:31:42 -07001847 strategy, actual);
Eric Laurentde070132010-07-13 04:45:46 -07001848 lStatus = BAD_VALUE;
1849 goto Exit;
1850 }
1851 }
1852 }
1853
John Grossman4ff14ba2012-02-08 16:37:41 -08001854 if (!isTimed) {
1855 track = new Track(this, client, streamType, sampleRate, format,
Glenn Kastene0b07172012-11-06 15:03:34 -08001856 channelMask, frameCount, sharedBuffer, sessionId, *flags);
John Grossman4ff14ba2012-02-08 16:37:41 -08001857 } else {
1858 track = TimedTrack::create(this, client, streamType, sampleRate, format,
1859 channelMask, frameCount, sharedBuffer, sessionId);
1860 }
Glenn Kastend5903ec2012-03-18 10:33:27 -07001861 if (track == 0 || track->getCblk() == NULL || track->name() < 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001862 lStatus = NO_MEMORY;
1863 goto Exit;
1864 }
1865 mTracks.add(track);
1866
1867 sp<EffectChain> chain = getEffectChain_l(sessionId);
1868 if (chain != 0) {
Steve Block3856b092011-10-20 11:56:00 +01001869 ALOGV("createTrack_l() setting main buffer %p", chain->inBuffer());
Mathias Agopian65ab4712010-07-14 17:59:35 -07001870 track->setMainBuffer(chain->inBuffer());
Glenn Kasten02bbd202012-02-08 12:35:35 -08001871 chain->setStrategy(AudioSystem::getStrategyForStream(track->streamType()));
Eric Laurentb469b942011-05-09 12:09:06 -07001872 chain->incTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001873 }
Glenn Kasten3acbd052012-02-28 10:39:56 -08001874
Glenn Kastene0b07172012-11-06 15:03:34 -08001875 if ((*flags & IAudioFlinger::TRACK_FAST) && (tid != -1)) {
Eric Laurent896adcd2012-09-13 11:18:23 -07001876 pid_t callingPid = IPCThreadState::self()->getCallingPid();
1877 // we don't have CAP_SYS_NICE, nor do we want to have it as it's too powerful,
1878 // so ask activity manager to do this on our behalf
1879 sendPrioConfigEvent_l(callingPid, tid, kPriorityAudioApp);
Glenn Kasten3acbd052012-02-28 10:39:56 -08001880 }
1881 }
Glenn Kasten3acbd052012-02-28 10:39:56 -08001882
Mathias Agopian65ab4712010-07-14 17:59:35 -07001883 lStatus = NO_ERROR;
1884
1885Exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001886 if (status) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001887 *status = lStatus;
1888 }
1889 return track;
1890}
1891
Eric Laurente737cda2012-05-22 18:55:44 -07001892uint32_t AudioFlinger::MixerThread::correctLatency(uint32_t latency) const
1893{
1894 if (mFastMixer != NULL) {
1895 MonoPipe *pipe = (MonoPipe *)mPipeSink.get();
1896 latency += (pipe->getAvgFrames() * 1000) / mSampleRate;
1897 }
1898 return latency;
1899}
1900
1901uint32_t AudioFlinger::PlaybackThread::correctLatency(uint32_t latency) const
1902{
1903 return latency;
1904}
1905
Mathias Agopian65ab4712010-07-14 17:59:35 -07001906uint32_t AudioFlinger::PlaybackThread::latency() const
1907{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001908 Mutex::Autolock _l(mLock);
Marco Nelissenf06c2ed2012-06-06 09:52:31 -07001909 return latency_l();
1910}
1911uint32_t AudioFlinger::PlaybackThread::latency_l() const
1912{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001913 if (initCheck() == NO_ERROR) {
Eric Laurente737cda2012-05-22 18:55:44 -07001914 return correctLatency(mOutput->stream->get_latency(mOutput->stream));
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001915 } else {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001916 return 0;
1917 }
1918}
1919
Glenn Kasten6637baa2012-01-09 09:40:36 -08001920void AudioFlinger::PlaybackThread::setMasterVolume(float value)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001921{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001922 Mutex::Autolock _l(mLock);
John Grossmanee578c02012-07-23 17:05:46 -07001923 // Don't apply master volume in SW if our HAL can do it for us.
1924 if (mOutput && mOutput->audioHwDev &&
1925 mOutput->audioHwDev->canSetMasterVolume()) {
1926 mMasterVolume = 1.0;
1927 } else {
1928 mMasterVolume = value;
1929 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001930}
1931
Glenn Kasten6637baa2012-01-09 09:40:36 -08001932void AudioFlinger::PlaybackThread::setMasterMute(bool muted)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001933{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001934 Mutex::Autolock _l(mLock);
John Grossmanee578c02012-07-23 17:05:46 -07001935 // Don't apply master mute in SW if our HAL can do it for us.
1936 if (mOutput && mOutput->audioHwDev &&
1937 mOutput->audioHwDev->canSetMasterMute()) {
1938 mMasterMute = false;
1939 } else {
1940 mMasterMute = muted;
1941 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001942}
1943
Glenn Kasten6637baa2012-01-09 09:40:36 -08001944void AudioFlinger::PlaybackThread::setStreamVolume(audio_stream_type_t stream, float value)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001945{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001946 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001947 mStreamTypes[stream].volume = value;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001948}
1949
Glenn Kasten6637baa2012-01-09 09:40:36 -08001950void AudioFlinger::PlaybackThread::setStreamMute(audio_stream_type_t stream, bool muted)
Mathias Agopian65ab4712010-07-14 17:59:35 -07001951{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001952 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001953 mStreamTypes[stream].mute = muted;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001954}
1955
Glenn Kastenfff6d712012-01-12 16:38:12 -08001956float AudioFlinger::PlaybackThread::streamVolume(audio_stream_type_t stream) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07001957{
Glenn Kasten6637baa2012-01-09 09:40:36 -08001958 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001959 return mStreamTypes[stream].volume;
1960}
1961
Mathias Agopian65ab4712010-07-14 17:59:35 -07001962// addTrack_l() must be called with ThreadBase::mLock held
1963status_t AudioFlinger::PlaybackThread::addTrack_l(const sp<Track>& track)
1964{
1965 status_t status = ALREADY_EXISTS;
1966
1967 // set retry count for buffer fill
1968 track->mRetryCount = kMaxTrackStartupRetries;
1969 if (mActiveTracks.indexOf(track) < 0) {
1970 // the track is newly added, make sure it fills up all its
1971 // buffers before playing. This is to ensure the client will
1972 // effectively get the latency it requested.
1973 track->mFillingUpStatus = Track::FS_FILLING;
1974 track->mResetDone = false;
Eric Laurent29864602012-05-08 18:57:51 -07001975 track->mPresentationCompleteFrames = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001976 mActiveTracks.add(track);
1977 if (track->mainBuffer() != mMixBuffer) {
1978 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1979 if (chain != 0) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07001980 ALOGV("addTrack_l() starting track on chain %p for session %d", chain.get(),
1981 track->sessionId());
Eric Laurentb469b942011-05-09 12:09:06 -07001982 chain->incActiveTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001983 }
1984 }
1985
1986 status = NO_ERROR;
1987 }
1988
Steve Block3856b092011-10-20 11:56:00 +01001989 ALOGV("mWaitWorkCV.broadcast");
Mathias Agopian65ab4712010-07-14 17:59:35 -07001990 mWaitWorkCV.broadcast();
1991
1992 return status;
1993}
1994
1995// destroyTrack_l() must be called with ThreadBase::mLock held
1996void AudioFlinger::PlaybackThread::destroyTrack_l(const sp<Track>& track)
1997{
1998 track->mState = TrackBase::TERMINATED;
Glenn Kasten288ed212012-04-25 17:52:27 -07001999 // active tracks are removed by threadLoop()
Mathias Agopian65ab4712010-07-14 17:59:35 -07002000 if (mActiveTracks.indexOf(track) < 0) {
Eric Laurentb469b942011-05-09 12:09:06 -07002001 removeTrack_l(track);
2002 }
2003}
2004
2005void AudioFlinger::PlaybackThread::removeTrack_l(const sp<Track>& track)
2006{
Eric Laurent29864602012-05-08 18:57:51 -07002007 track->triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
Eric Laurentb469b942011-05-09 12:09:06 -07002008 mTracks.remove(track);
2009 deleteTrackName_l(track->name());
Glenn Kasten288ed212012-04-25 17:52:27 -07002010 // redundant as track is about to be destroyed, for dumpsys only
2011 track->mName = -1;
2012 if (track->isFastTrack()) {
2013 int index = track->mFastIndex;
Eric Laurent29864602012-05-08 18:57:51 -07002014 ALOG_ASSERT(0 < index && index < (int)FastMixerState::kMaxFastTracks);
Glenn Kasten288ed212012-04-25 17:52:27 -07002015 ALOG_ASSERT(!(mFastTrackAvailMask & (1 << index)));
2016 mFastTrackAvailMask |= 1 << index;
2017 // redundant as track is about to be destroyed, for dumpsys only
2018 track->mFastIndex = -1;
2019 }
Eric Laurentb469b942011-05-09 12:09:06 -07002020 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
2021 if (chain != 0) {
2022 chain->decTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002023 }
2024}
2025
2026String8 AudioFlinger::PlaybackThread::getParameters(const String8& keys)
2027{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002028 String8 out_s8 = String8("");
Dima Zavinfce7a472011-04-19 22:30:36 -07002029 char *s;
2030
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002031 Mutex::Autolock _l(mLock);
2032 if (initCheck() != NO_ERROR) {
2033 return out_s8;
2034 }
2035
Dima Zavin799a70e2011-04-18 16:57:27 -07002036 s = mOutput->stream->common.get_parameters(&mOutput->stream->common, keys.string());
Dima Zavinfce7a472011-04-19 22:30:36 -07002037 out_s8 = String8(s);
2038 free(s);
2039 return out_s8;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002040}
2041
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002042// audioConfigChanged_l() must be called with AudioFlinger::mLock held
Mathias Agopian65ab4712010-07-14 17:59:35 -07002043void AudioFlinger::PlaybackThread::audioConfigChanged_l(int event, int param) {
2044 AudioSystem::OutputDescriptor desc;
Glenn Kastena0d68332012-01-27 16:47:15 -08002045 void *param2 = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002046
Glenn Kasten85ab62c2012-11-01 11:11:38 -07002047 ALOGV("PlaybackThread::audioConfigChanged_l, thread %p, event %d, param %d", this, event,
2048 param);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002049
2050 switch (event) {
2051 case AudioSystem::OUTPUT_OPENED:
2052 case AudioSystem::OUTPUT_CONFIG_CHANGED:
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07002053 desc.channels = mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002054 desc.samplingRate = mSampleRate;
2055 desc.format = mFormat;
Glenn Kasten85ab62c2012-11-01 11:11:38 -07002056 desc.frameCount = mNormalFrameCount; // FIXME see
2057 // AudioFlinger::frameCount(audio_io_handle_t)
Mathias Agopian65ab4712010-07-14 17:59:35 -07002058 desc.latency = latency();
2059 param2 = &desc;
2060 break;
2061
2062 case AudioSystem::STREAM_CONFIG_CHANGED:
2063 param2 = &param;
2064 case AudioSystem::OUTPUT_CLOSED:
2065 default:
2066 break;
2067 }
2068 mAudioFlinger->audioConfigChanged_l(event, mId, param2);
2069}
2070
2071void AudioFlinger::PlaybackThread::readOutputParameters()
2072{
Dima Zavin799a70e2011-04-18 16:57:27 -07002073 mSampleRate = mOutput->stream->common.get_sample_rate(&mOutput->stream->common);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07002074 mChannelMask = mOutput->stream->common.get_channels(&mOutput->stream->common);
2075 mChannelCount = (uint16_t)popcount(mChannelMask);
Dima Zavin799a70e2011-04-18 16:57:27 -07002076 mFormat = mOutput->stream->common.get_format(&mOutput->stream->common);
Glenn Kastenb9980652012-01-11 09:48:27 -08002077 mFrameSize = audio_stream_frame_size(&mOutput->stream->common);
Dima Zavin799a70e2011-04-18 16:57:27 -07002078 mFrameCount = mOutput->stream->common.get_buffer_size(&mOutput->stream->common) / mFrameSize;
Glenn Kasten58912562012-04-03 10:45:00 -07002079 if (mFrameCount & 15) {
2080 ALOGW("HAL output buffer size is %u frames but AudioMixer requires multiples of 16 frames",
2081 mFrameCount);
2082 }
2083
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002084 // Calculate size of normal mix buffer relative to the HAL output buffer size
Glenn Kasten4adcede2012-05-14 12:26:02 -07002085 double multiplier = 1.0;
Glenn Kasten85ab62c2012-11-01 11:11:38 -07002086 if (mType == MIXER && (kUseFastMixer == FastMixer_Static ||
2087 kUseFastMixer == FastMixer_Dynamic)) {
Glenn Kasten58912562012-04-03 10:45:00 -07002088 size_t minNormalFrameCount = (kMinNormalMixBufferSizeMs * mSampleRate) / 1000;
Glenn Kasten4adcede2012-05-14 12:26:02 -07002089 size_t maxNormalFrameCount = (kMaxNormalMixBufferSizeMs * mSampleRate) / 1000;
2090 // round up minimum and round down maximum to nearest 16 frames to satisfy AudioMixer
2091 minNormalFrameCount = (minNormalFrameCount + 15) & ~15;
2092 maxNormalFrameCount = maxNormalFrameCount & ~15;
2093 if (maxNormalFrameCount < minNormalFrameCount) {
2094 maxNormalFrameCount = minNormalFrameCount;
2095 }
2096 multiplier = (double) minNormalFrameCount / (double) mFrameCount;
2097 if (multiplier <= 1.0) {
2098 multiplier = 1.0;
2099 } else if (multiplier <= 2.0) {
2100 if (2 * mFrameCount <= maxNormalFrameCount) {
2101 multiplier = 2.0;
2102 } else {
2103 multiplier = (double) maxNormalFrameCount / (double) mFrameCount;
2104 }
2105 } else {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07002106 // prefer an even multiplier, for compatibility with doubling of fast tracks due to HAL
2107 // SRC (it would be unusual for the normal mix buffer size to not be a multiple of fast
2108 // track, but we sometimes have to do this to satisfy the maximum frame count
2109 // constraint)
Glenn Kasten4adcede2012-05-14 12:26:02 -07002110 // FIXME this rounding up should not be done if no HAL SRC
2111 uint32_t truncMult = (uint32_t) multiplier;
2112 if ((truncMult & 1)) {
2113 if ((truncMult + 1) * mFrameCount <= maxNormalFrameCount) {
2114 ++truncMult;
2115 }
2116 }
2117 multiplier = (double) truncMult;
Glenn Kasten58912562012-04-03 10:45:00 -07002118 }
Glenn Kasten58912562012-04-03 10:45:00 -07002119 }
Glenn Kasten4adcede2012-05-14 12:26:02 -07002120 mNormalFrameCount = multiplier * mFrameCount;
2121 // round up to nearest 16 frames to satisfy AudioMixer
2122 mNormalFrameCount = (mNormalFrameCount + 15) & ~15;
Glenn Kasten85ab62c2012-11-01 11:11:38 -07002123 ALOGI("HAL output buffer size %u frames, normal mix buffer size %u frames", mFrameCount,
2124 mNormalFrameCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002125
Glenn Kastene9dd0172012-01-27 18:08:45 -08002126 delete[] mMixBuffer;
Eric Laurent67c0a582012-05-01 19:31:12 -07002127 mMixBuffer = new int16_t[mNormalFrameCount * mChannelCount];
2128 memset(mMixBuffer, 0, mNormalFrameCount * mChannelCount * sizeof(int16_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07002129
Eric Laurentde070132010-07-13 04:45:46 -07002130 // force reconfiguration of effect chains and engines to take new buffer size and audio
2131 // parameters into account
2132 // Note that mLock is not held when readOutputParameters() is called from the constructor
2133 // but in this case nothing is done below as no audio sessions have effect yet so it doesn't
2134 // matter.
2135 // create a copy of mEffectChains as calling moveEffectChain_l() can reorder some effect chains
2136 Vector< sp<EffectChain> > effectChains = mEffectChains;
2137 for (size_t i = 0; i < effectChains.size(); i ++) {
Eric Laurent39e94f82010-07-28 01:32:47 -07002138 mAudioFlinger->moveEffectChain_l(effectChains[i]->sessionId(), this, this, false);
Eric Laurentde070132010-07-13 04:45:46 -07002139 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002140}
2141
Eric Laurente737cda2012-05-22 18:55:44 -07002142
Mathias Agopian65ab4712010-07-14 17:59:35 -07002143status_t AudioFlinger::PlaybackThread::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames)
2144{
Glenn Kastena0d68332012-01-27 16:47:15 -08002145 if (halFrames == NULL || dspFrames == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002146 return BAD_VALUE;
2147 }
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002148 Mutex::Autolock _l(mLock);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07002149 if (initCheck() != NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002150 return INVALID_OPERATION;
2151 }
Dima Zavin799a70e2011-04-18 16:57:27 -07002152 *halFrames = mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002153
Eric Laurent1afc26d2012-09-23 15:20:50 -07002154 if (isSuspended()) {
2155 // return an estimation of rendered frames when the output is suspended
2156 int32_t frames = mBytesWritten - latency_l();
2157 if (frames < 0) {
2158 frames = 0;
2159 }
2160 *dspFrames = (uint32_t)frames;
2161 return NO_ERROR;
2162 } else {
2163 return mOutput->stream->get_render_position(mOutput->stream, dspFrames);
2164 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002165}
2166
Glenn Kasten106e8a42012-08-02 13:37:12 -07002167uint32_t AudioFlinger::PlaybackThread::hasAudioSession(int sessionId) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07002168{
2169 Mutex::Autolock _l(mLock);
Eric Laurent39e94f82010-07-28 01:32:47 -07002170 uint32_t result = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002171 if (getEffectChain_l(sessionId) != 0) {
Eric Laurent39e94f82010-07-28 01:32:47 -07002172 result = EFFECT_SESSION;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002173 }
2174
2175 for (size_t i = 0; i < mTracks.size(); ++i) {
2176 sp<Track> track = mTracks[i];
Eric Laurentde070132010-07-13 04:45:46 -07002177 if (sessionId == track->sessionId() &&
Glenn Kasten9c5fdd82012-11-05 13:38:15 -08002178 !(track->mCblk->flags & CBLK_INVALID)) {
Eric Laurent39e94f82010-07-28 01:32:47 -07002179 result |= TRACK_SESSION;
2180 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002181 }
2182 }
2183
Eric Laurent39e94f82010-07-28 01:32:47 -07002184 return result;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002185}
2186
Eric Laurentde070132010-07-13 04:45:46 -07002187uint32_t AudioFlinger::PlaybackThread::getStrategyForSession_l(int sessionId)
2188{
Dima Zavinfce7a472011-04-19 22:30:36 -07002189 // session AUDIO_SESSION_OUTPUT_MIX is placed in same strategy as MUSIC stream so that
Eric Laurentde070132010-07-13 04:45:46 -07002190 // it is moved to correct output by audio policy manager when A2DP is connected or disconnected
Dima Zavinfce7a472011-04-19 22:30:36 -07002191 if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
2192 return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Eric Laurentde070132010-07-13 04:45:46 -07002193 }
2194 for (size_t i = 0; i < mTracks.size(); i++) {
2195 sp<Track> track = mTracks[i];
2196 if (sessionId == track->sessionId() &&
Glenn Kasten9c5fdd82012-11-05 13:38:15 -08002197 !(track->mCblk->flags & CBLK_INVALID)) {
Glenn Kasten02bbd202012-02-08 12:35:35 -08002198 return AudioSystem::getStrategyForStream(track->streamType());
Eric Laurentde070132010-07-13 04:45:46 -07002199 }
2200 }
Dima Zavinfce7a472011-04-19 22:30:36 -07002201 return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Eric Laurentde070132010-07-13 04:45:46 -07002202}
2203
Mathias Agopian65ab4712010-07-14 17:59:35 -07002204
Glenn Kastenaed850d2012-01-26 09:46:34 -08002205AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::getOutput() const
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002206{
2207 Mutex::Autolock _l(mLock);
2208 return mOutput;
2209}
2210
2211AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::clearOutput()
2212{
2213 Mutex::Autolock _l(mLock);
2214 AudioStreamOut *output = mOutput;
2215 mOutput = NULL;
Glenn Kasten58912562012-04-03 10:45:00 -07002216 // FIXME FastMixer might also have a raw ptr to mOutputSink;
2217 // must push a NULL and wait for ack
2218 mOutputSink.clear();
2219 mPipeSink.clear();
2220 mNormalSink.clear();
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002221 return output;
2222}
2223
2224// this method must always be called either with ThreadBase mLock held or inside the thread loop
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08002225audio_stream_t* AudioFlinger::PlaybackThread::stream() const
Eric Laurentb8ba0a92011-08-07 16:32:26 -07002226{
2227 if (mOutput == NULL) {
2228 return NULL;
2229 }
2230 return &mOutput->stream->common;
2231}
2232
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08002233uint32_t AudioFlinger::PlaybackThread::activeSleepTimeUs() const
Eric Laurent162b40b2011-12-05 09:47:19 -08002234{
Eric Laurentab9071b2012-06-04 13:45:29 -07002235 return (uint32_t)((uint32_t)((mNormalFrameCount * 1000) / mSampleRate) * 1000);
Eric Laurent162b40b2011-12-05 09:47:19 -08002236}
2237
Eric Laurenta011e352012-03-29 15:51:43 -07002238status_t AudioFlinger::PlaybackThread::setSyncEvent(const sp<SyncEvent>& event)
2239{
2240 if (!isValidSyncEvent(event)) {
2241 return BAD_VALUE;
2242 }
2243
2244 Mutex::Autolock _l(mLock);
2245
2246 for (size_t i = 0; i < mTracks.size(); ++i) {
2247 sp<Track> track = mTracks[i];
2248 if (event->triggerSession() == track->sessionId()) {
Glenn Kastend23eedc2012-08-02 13:35:47 -07002249 (void) track->setSyncEvent(event);
Eric Laurenta011e352012-03-29 15:51:43 -07002250 return NO_ERROR;
2251 }
2252 }
2253
2254 return NAME_NOT_FOUND;
2255}
2256
Glenn Kasten106e8a42012-08-02 13:37:12 -07002257bool AudioFlinger::PlaybackThread::isValidSyncEvent(const sp<SyncEvent>& event) const
Eric Laurenta011e352012-03-29 15:51:43 -07002258{
Glenn Kasten0dbb3562012-08-02 16:36:50 -07002259 return event->type() == AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE;
Eric Laurenta011e352012-03-29 15:51:43 -07002260}
2261
Glenn Kasten85ab62c2012-11-01 11:11:38 -07002262void AudioFlinger::PlaybackThread::threadLoop_removeTracks(
2263 const Vector< sp<Track> >& tracksToRemove)
Eric Laurent44a957f2012-05-15 15:26:05 -07002264{
2265 size_t count = tracksToRemove.size();
2266 if (CC_UNLIKELY(count)) {
2267 for (size_t i = 0 ; i < count ; i++) {
2268 const sp<Track>& track = tracksToRemove.itemAt(i);
2269 if ((track->sharedBuffer() != 0) &&
2270 (track->mState == TrackBase::ACTIVE || track->mState == TrackBase::RESUMING)) {
2271 AudioSystem::stopOutput(mId, track->streamType(), track->sessionId());
2272 }
2273 }
2274 }
2275
2276}
2277
Mathias Agopian65ab4712010-07-14 17:59:35 -07002278// ----------------------------------------------------------------------------
2279
Glenn Kasten23bb8be2012-01-26 10:38:26 -08002280AudioFlinger::MixerThread::MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
Glenn Kastenbb4350d2012-07-03 15:56:38 -07002281 audio_io_handle_t id, audio_devices_t device, type_t type)
Glenn Kasten58912562012-04-03 10:45:00 -07002282 : PlaybackThread(audioFlinger, output, id, device, type),
2283 // mAudioMixer below
Glenn Kasten58912562012-04-03 10:45:00 -07002284 // mFastMixer below
2285 mFastMixerFutex(0)
2286 // mOutputSink below
2287 // mPipeSink below
2288 // mNormalSink below
Mathias Agopian65ab4712010-07-14 17:59:35 -07002289{
Glenn Kastenbb4350d2012-07-03 15:56:38 -07002290 ALOGV("MixerThread() id=%d device=%#x type=%d", id, device, type);
Glenn Kasten60a83922012-06-21 12:56:37 -07002291 ALOGV("mSampleRate=%u, mChannelMask=%#x, mChannelCount=%d, mFormat=%d, mFrameSize=%u, "
Glenn Kasten58912562012-04-03 10:45:00 -07002292 "mFrameCount=%d, mNormalFrameCount=%d",
2293 mSampleRate, mChannelMask, mChannelCount, mFormat, mFrameSize, mFrameCount,
2294 mNormalFrameCount);
2295 mAudioMixer = new AudioMixer(mNormalFrameCount, mSampleRate);
2296
Mathias Agopian65ab4712010-07-14 17:59:35 -07002297 // FIXME - Current mixer implementation only supports stereo output
Glenn Kasten4fe1ec42012-02-27 16:33:15 -08002298 if (mChannelCount != FCC_2) {
2299 ALOGE("Invalid audio hardware channel count %d", mChannelCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002300 }
Glenn Kasten58912562012-04-03 10:45:00 -07002301
2302 // create an NBAIO sink for the HAL output stream, and negotiate
2303 mOutputSink = new AudioStreamOutSink(output->stream);
2304 size_t numCounterOffers = 0;
2305 const NBAIO_Format offers[1] = {Format_from_SR_C(mSampleRate, mChannelCount)};
2306 ssize_t index = mOutputSink->negotiate(offers, 1, NULL, numCounterOffers);
2307 ALOG_ASSERT(index == 0);
2308
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002309 // initialize fast mixer depending on configuration
2310 bool initFastMixer;
2311 switch (kUseFastMixer) {
2312 case FastMixer_Never:
2313 initFastMixer = false;
2314 break;
2315 case FastMixer_Always:
2316 initFastMixer = true;
2317 break;
2318 case FastMixer_Static:
2319 case FastMixer_Dynamic:
2320 initFastMixer = mFrameCount < mNormalFrameCount;
2321 break;
2322 }
2323 if (initFastMixer) {
Glenn Kasten58912562012-04-03 10:45:00 -07002324
2325 // create a MonoPipe to connect our submix to FastMixer
2326 NBAIO_Format format = mOutputSink->format();
Glenn Kasten9017e5e2012-05-15 07:39:52 -07002327 // This pipe depth compensates for scheduling latency of the normal mixer thread.
2328 // When it wakes up after a maximum latency, it runs a few cycles quickly before
2329 // finally blocking. Note the pipe implementation rounds up the request to a power of 2.
2330 MonoPipe *monoPipe = new MonoPipe(mNormalFrameCount * 4, format, true /*writeCanBlock*/);
Glenn Kasten58912562012-04-03 10:45:00 -07002331 const NBAIO_Format offers[1] = {format};
2332 size_t numCounterOffers = 0;
2333 ssize_t index = monoPipe->negotiate(offers, 1, NULL, numCounterOffers);
2334 ALOG_ASSERT(index == 0);
Glenn Kasten28ed2f92012-06-07 10:17:54 -07002335 monoPipe->setAvgFrames((mScreenState & 1) ?
2336 (monoPipe->maxFrames() * 7) / 8 : mNormalFrameCount * 2);
Glenn Kasten58912562012-04-03 10:45:00 -07002337 mPipeSink = monoPipe;
2338
Glenn Kastenfbae5da2012-05-21 09:17:20 -07002339#ifdef TEE_SINK_FRAMES
2340 // create a Pipe to archive a copy of FastMixer's output for dumpsys
2341 Pipe *teeSink = new Pipe(TEE_SINK_FRAMES, format);
2342 numCounterOffers = 0;
2343 index = teeSink->negotiate(offers, 1, NULL, numCounterOffers);
2344 ALOG_ASSERT(index == 0);
2345 mTeeSink = teeSink;
2346 PipeReader *teeSource = new PipeReader(*teeSink);
2347 numCounterOffers = 0;
2348 index = teeSource->negotiate(offers, 1, NULL, numCounterOffers);
2349 ALOG_ASSERT(index == 0);
2350 mTeeSource = teeSource;
2351#endif
2352
Glenn Kasten58912562012-04-03 10:45:00 -07002353 // create fast mixer and configure it initially with just one fast track for our submix
2354 mFastMixer = new FastMixer();
2355 FastMixerStateQueue *sq = mFastMixer->sq();
Glenn Kasten39993082012-05-31 13:40:27 -07002356#ifdef STATE_QUEUE_DUMP
2357 sq->setObserverDump(&mStateQueueObserverDump);
2358 sq->setMutatorDump(&mStateQueueMutatorDump);
2359#endif
Glenn Kasten58912562012-04-03 10:45:00 -07002360 FastMixerState *state = sq->begin();
2361 FastTrack *fastTrack = &state->mFastTracks[0];
2362 // wrap the source side of the MonoPipe to make it an AudioBufferProvider
2363 fastTrack->mBufferProvider = new SourceAudioBufferProvider(new MonoPipeReader(monoPipe));
2364 fastTrack->mVolumeProvider = NULL;
2365 fastTrack->mGeneration++;
2366 state->mFastTracksGen++;
2367 state->mTrackMask = 1;
2368 // fast mixer will use the HAL output sink
2369 state->mOutputSink = mOutputSink.get();
2370 state->mOutputSinkGen++;
2371 state->mFrameCount = mFrameCount;
2372 state->mCommand = FastMixerState::COLD_IDLE;
2373 // already done in constructor initialization list
2374 //mFastMixerFutex = 0;
2375 state->mColdFutexAddr = &mFastMixerFutex;
2376 state->mColdGen++;
2377 state->mDumpState = &mFastMixerDumpState;
Glenn Kastenfbae5da2012-05-21 09:17:20 -07002378 state->mTeeSink = mTeeSink.get();
Glenn Kasten58912562012-04-03 10:45:00 -07002379 sq->end();
2380 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
2381
2382 // start the fast mixer
2383 mFastMixer->run("FastMixer", PRIORITY_URGENT_AUDIO);
Glenn Kasten58912562012-04-03 10:45:00 -07002384 pid_t tid = mFastMixer->getTid();
Glenn Kastenfd4e20c2012-06-04 11:51:12 -07002385 int err = requestPriority(getpid_cached, tid, kPriorityFastMixer);
Glenn Kasten58912562012-04-03 10:45:00 -07002386 if (err != 0) {
2387 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
Glenn Kastenfd4e20c2012-06-04 11:51:12 -07002388 kPriorityFastMixer, getpid_cached, tid, err);
Glenn Kasten58912562012-04-03 10:45:00 -07002389 }
Glenn Kasten58912562012-04-03 10:45:00 -07002390
Glenn Kastenc15d6652012-05-30 14:52:57 -07002391#ifdef AUDIO_WATCHDOG
2392 // create and start the watchdog
2393 mAudioWatchdog = new AudioWatchdog();
2394 mAudioWatchdog->setDump(&mAudioWatchdogDump);
2395 mAudioWatchdog->run("AudioWatchdog", PRIORITY_URGENT_AUDIO);
2396 tid = mAudioWatchdog->getTid();
Glenn Kastenfd4e20c2012-06-04 11:51:12 -07002397 err = requestPriority(getpid_cached, tid, kPriorityFastMixer);
Glenn Kastenc15d6652012-05-30 14:52:57 -07002398 if (err != 0) {
2399 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
Glenn Kastenfd4e20c2012-06-04 11:51:12 -07002400 kPriorityFastMixer, getpid_cached, tid, err);
Glenn Kastenc15d6652012-05-30 14:52:57 -07002401 }
2402#endif
2403
Glenn Kasten58912562012-04-03 10:45:00 -07002404 } else {
2405 mFastMixer = NULL;
2406 }
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002407
2408 switch (kUseFastMixer) {
2409 case FastMixer_Never:
2410 case FastMixer_Dynamic:
2411 mNormalSink = mOutputSink;
2412 break;
2413 case FastMixer_Always:
2414 mNormalSink = mPipeSink;
2415 break;
2416 case FastMixer_Static:
2417 mNormalSink = initFastMixer ? mPipeSink : mOutputSink;
2418 break;
2419 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002420}
2421
2422AudioFlinger::MixerThread::~MixerThread()
2423{
Glenn Kasten58912562012-04-03 10:45:00 -07002424 if (mFastMixer != NULL) {
2425 FastMixerStateQueue *sq = mFastMixer->sq();
2426 FastMixerState *state = sq->begin();
2427 if (state->mCommand == FastMixerState::COLD_IDLE) {
2428 int32_t old = android_atomic_inc(&mFastMixerFutex);
2429 if (old == -1) {
2430 __futex_syscall3(&mFastMixerFutex, FUTEX_WAKE_PRIVATE, 1);
2431 }
2432 }
2433 state->mCommand = FastMixerState::EXIT;
2434 sq->end();
2435 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
2436 mFastMixer->join();
2437 // Though the fast mixer thread has exited, it's state queue is still valid.
2438 // We'll use that extract the final state which contains one remaining fast track
2439 // corresponding to our sub-mix.
2440 state = sq->begin();
2441 ALOG_ASSERT(state->mTrackMask == 1);
2442 FastTrack *fastTrack = &state->mFastTracks[0];
2443 ALOG_ASSERT(fastTrack->mBufferProvider != NULL);
2444 delete fastTrack->mBufferProvider;
2445 sq->end(false /*didModify*/);
2446 delete mFastMixer;
Glenn Kasten087dd8e2012-09-27 13:49:02 -07002447#ifdef AUDIO_WATCHDOG
Glenn Kastenc15d6652012-05-30 14:52:57 -07002448 if (mAudioWatchdog != 0) {
2449 mAudioWatchdog->requestExit();
2450 mAudioWatchdog->requestExitAndWait();
2451 mAudioWatchdog.clear();
2452 }
Glenn Kasten087dd8e2012-09-27 13:49:02 -07002453#endif
Glenn Kasten58912562012-04-03 10:45:00 -07002454 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002455 delete mAudioMixer;
2456}
2457
Glenn Kasten83efdd02012-02-24 07:21:32 -08002458class CpuStats {
2459public:
Glenn Kasten190a46f2012-03-06 11:27:10 -08002460 CpuStats();
2461 void sample(const String8 &title);
Glenn Kasten83efdd02012-02-24 07:21:32 -08002462#ifdef DEBUG_CPU_USAGE
2463private:
Glenn Kasten190a46f2012-03-06 11:27:10 -08002464 ThreadCpuUsage mCpuUsage; // instantaneous thread CPU usage in wall clock ns
2465 CentralTendencyStatistics mWcStats; // statistics on thread CPU usage in wall clock ns
2466
2467 CentralTendencyStatistics mHzStats; // statistics on thread CPU usage in cycles
2468
2469 int mCpuNum; // thread's current CPU number
2470 int mCpukHz; // frequency of thread's current CPU in kHz
Glenn Kasten83efdd02012-02-24 07:21:32 -08002471#endif
2472};
2473
Glenn Kasten190a46f2012-03-06 11:27:10 -08002474CpuStats::CpuStats()
Glenn Kasten83efdd02012-02-24 07:21:32 -08002475#ifdef DEBUG_CPU_USAGE
Glenn Kasten190a46f2012-03-06 11:27:10 -08002476 : mCpuNum(-1), mCpukHz(-1)
2477#endif
2478{
2479}
2480
2481void CpuStats::sample(const String8 &title) {
2482#ifdef DEBUG_CPU_USAGE
2483 // get current thread's delta CPU time in wall clock ns
2484 double wcNs;
2485 bool valid = mCpuUsage.sampleAndEnable(wcNs);
2486
2487 // record sample for wall clock statistics
2488 if (valid) {
2489 mWcStats.sample(wcNs);
2490 }
2491
2492 // get the current CPU number
2493 int cpuNum = sched_getcpu();
2494
2495 // get the current CPU frequency in kHz
2496 int cpukHz = mCpuUsage.getCpukHz(cpuNum);
2497
2498 // check if either CPU number or frequency changed
2499 if (cpuNum != mCpuNum || cpukHz != mCpukHz) {
2500 mCpuNum = cpuNum;
2501 mCpukHz = cpukHz;
2502 // ignore sample for purposes of cycles
2503 valid = false;
2504 }
2505
2506 // if no change in CPU number or frequency, then record sample for cycle statistics
2507 if (valid && mCpukHz > 0) {
2508 double cycles = wcNs * cpukHz * 0.000001;
2509 mHzStats.sample(cycles);
2510 }
2511
2512 unsigned n = mWcStats.n();
2513 // mCpuUsage.elapsed() is expensive, so don't call it every loop
Glenn Kasten83efdd02012-02-24 07:21:32 -08002514 if ((n & 127) == 1) {
Glenn Kasten190a46f2012-03-06 11:27:10 -08002515 long long elapsed = mCpuUsage.elapsed();
Glenn Kasten83efdd02012-02-24 07:21:32 -08002516 if (elapsed >= DEBUG_CPU_USAGE * 1000000000LL) {
2517 double perLoop = elapsed / (double) n;
2518 double perLoop100 = perLoop * 0.01;
Glenn Kasten190a46f2012-03-06 11:27:10 -08002519 double perLoop1k = perLoop * 0.001;
2520 double mean = mWcStats.mean();
2521 double stddev = mWcStats.stddev();
2522 double minimum = mWcStats.minimum();
2523 double maximum = mWcStats.maximum();
2524 double meanCycles = mHzStats.mean();
2525 double stddevCycles = mHzStats.stddev();
2526 double minCycles = mHzStats.minimum();
2527 double maxCycles = mHzStats.maximum();
2528 mCpuUsage.resetElapsed();
2529 mWcStats.reset();
2530 mHzStats.reset();
2531 ALOGD("CPU usage for %s over past %.1f secs\n"
2532 " (%u mixer loops at %.1f mean ms per loop):\n"
2533 " us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n"
2534 " %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f\n"
2535 " MHz: mean=%.1f, stddev=%.1f, min=%.1f max=%.1f",
2536 title.string(),
Glenn Kasten83efdd02012-02-24 07:21:32 -08002537 elapsed * .000000001, n, perLoop * .000001,
2538 mean * .001,
2539 stddev * .001,
2540 minimum * .001,
2541 maximum * .001,
2542 mean / perLoop100,
2543 stddev / perLoop100,
2544 minimum / perLoop100,
Glenn Kasten190a46f2012-03-06 11:27:10 -08002545 maximum / perLoop100,
2546 meanCycles / perLoop1k,
2547 stddevCycles / perLoop1k,
2548 minCycles / perLoop1k,
2549 maxCycles / perLoop1k);
2550
Glenn Kasten83efdd02012-02-24 07:21:32 -08002551 }
2552 }
2553#endif
2554};
2555
Glenn Kasten37d825e2012-02-24 07:21:48 -08002556void AudioFlinger::PlaybackThread::checkSilentMode_l()
2557{
2558 if (!mMasterMute) {
2559 char value[PROPERTY_VALUE_MAX];
2560 if (property_get("ro.audio.silent", value, "0") > 0) {
2561 char *endptr;
2562 unsigned long ul = strtoul(value, &endptr, 0);
2563 if (*endptr == '\0' && ul != 0) {
2564 ALOGD("Silence is golden");
2565 // The setprop command will not allow a property to be changed after
2566 // the first time it is set, so we don't have to worry about un-muting.
2567 setMasterMute_l(true);
2568 }
2569 }
2570 }
2571}
2572
Glenn Kasten000f0e32012-03-01 17:10:56 -08002573bool AudioFlinger::PlaybackThread::threadLoop()
Mathias Agopian65ab4712010-07-14 17:59:35 -07002574{
2575 Vector< sp<Track> > tracksToRemove;
Glenn Kasten688a6402012-02-29 07:57:06 -08002576
Glenn Kasten000f0e32012-03-01 17:10:56 -08002577 standbyTime = systemTime();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002578
2579 // MIXER
Mathias Agopian65ab4712010-07-14 17:59:35 -07002580 nsecs_t lastWarning = 0;
Glenn Kasten688a6402012-02-29 07:57:06 -08002581
Glenn Kasten000f0e32012-03-01 17:10:56 -08002582 // DUPLICATING
2583 // FIXME could this be made local to while loop?
2584 writeFrames = 0;
Glenn Kasten688a6402012-02-29 07:57:06 -08002585
Glenn Kasten66fcab92012-02-24 14:59:21 -08002586 cacheParameters_l();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002587 sleepTime = idleSleepTime;
2588
Glenn Kasten9f34a362012-03-20 16:46:41 -07002589 if (mType == MIXER) {
2590 sleepTimeShift = 0;
2591 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002592
Glenn Kasten83efdd02012-02-24 07:21:32 -08002593 CpuStats cpuStats;
Glenn Kasten190a46f2012-03-06 11:27:10 -08002594 const String8 myName(String8::format("thread %p type %d TID %d", this, mType, gettid()));
Mathias Agopian65ab4712010-07-14 17:59:35 -07002595
Eric Laurentfeb0db62011-07-22 09:04:31 -07002596 acquireWakeLock();
2597
Mathias Agopian65ab4712010-07-14 17:59:35 -07002598 while (!exitPending())
2599 {
Glenn Kasten190a46f2012-03-06 11:27:10 -08002600 cpuStats.sample(myName);
Glenn Kasten688a6402012-02-29 07:57:06 -08002601
Glenn Kasten73ca0f52012-02-29 07:56:15 -08002602 Vector< sp<EffectChain> > effectChains;
2603
Mathias Agopian65ab4712010-07-14 17:59:35 -07002604 processConfigEvents();
2605
Mathias Agopian65ab4712010-07-14 17:59:35 -07002606 { // scope for mLock
2607
2608 Mutex::Autolock _l(mLock);
2609
2610 if (checkForNewParameters_l()) {
Glenn Kasten66fcab92012-02-24 14:59:21 -08002611 cacheParameters_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002612 }
2613
Glenn Kastenfa26a852012-03-06 11:28:04 -08002614 saveOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002615
Mathias Agopian65ab4712010-07-14 17:59:35 -07002616 // put audio hardware into standby after short delay
Glenn Kasten3e074702012-02-28 18:40:35 -08002617 if (CC_UNLIKELY((!mActiveTracks.size() && systemTime() > standbyTime) ||
Glenn Kasten1ea6d232012-07-09 14:31:33 -07002618 isSuspended())) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002619 if (!mStandby) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002620
2621 threadLoop_standby();
2622
Mathias Agopian65ab4712010-07-14 17:59:35 -07002623 mStandby = true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002624 }
2625
Glenn Kasten3e074702012-02-28 18:40:35 -08002626 if (!mActiveTracks.size() && mConfigEvents.isEmpty()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07002627 // we're about to wait, flush the binder command buffer
2628 IPCThreadState::self()->flushCommands();
2629
Glenn Kastenfa26a852012-03-06 11:28:04 -08002630 clearOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002631
Mathias Agopian65ab4712010-07-14 17:59:35 -07002632 if (exitPending()) break;
2633
Eric Laurentfeb0db62011-07-22 09:04:31 -07002634 releaseWakeLock_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002635 // wait until we have something to do...
Glenn Kasten190a46f2012-03-06 11:27:10 -08002636 ALOGV("%s going to sleep", myName.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07002637 mWaitWorkCV.wait(mLock);
Glenn Kasten190a46f2012-03-06 11:27:10 -08002638 ALOGV("%s waking up", myName.string());
Eric Laurentfeb0db62011-07-22 09:04:31 -07002639 acquireWakeLock_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002640
Eric Laurentda747442012-04-25 18:53:13 -07002641 mMixerStatus = MIXER_IDLE;
Glenn Kasten81028042012-04-30 18:15:12 -07002642 mMixerStatusIgnoringFastTracks = MIXER_IDLE;
Eric Laurent1afc26d2012-09-23 15:20:50 -07002643 mBytesWritten = 0;
Glenn Kasten000f0e32012-03-01 17:10:56 -08002644
Glenn Kasten37d825e2012-02-24 07:21:48 -08002645 checkSilentMode_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002646
Glenn Kasten000f0e32012-03-01 17:10:56 -08002647 standbyTime = systemTime() + standbyDelay;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002648 sleepTime = idleSleepTime;
Glenn Kasten66fcab92012-02-24 14:59:21 -08002649 if (mType == MIXER) {
2650 sleepTimeShift = 0;
2651 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002652
Mathias Agopian65ab4712010-07-14 17:59:35 -07002653 continue;
2654 }
2655 }
2656
Glenn Kasten81028042012-04-30 18:15:12 -07002657 // mMixerStatusIgnoringFastTracks is also updated internally
Eric Laurentda747442012-04-25 18:53:13 -07002658 mMixerStatus = prepareTracks_l(&tracksToRemove);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002659
2660 // prevent any changes in effect chain list and in each effect chain
2661 // during mixing and effect process as the audio buffers could be deleted
2662 // or modified if an effect is created or deleted
Eric Laurentde070132010-07-13 04:45:46 -07002663 lockEffectChains_l(effectChains);
Glenn Kastenc5ac4cb2011-12-12 09:05:55 -08002664 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002665
Glenn Kastenfec279f2012-03-08 07:47:15 -08002666 if (CC_LIKELY(mMixerStatus == MIXER_TRACKS_READY)) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002667 threadLoop_mix();
2668 } else {
2669 threadLoop_sleepTime();
2670 }
2671
Glenn Kasten1ea6d232012-07-09 14:31:33 -07002672 if (isSuspended()) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002673 sleepTime = suspendSleepTimeUs();
Eric Laurent1afc26d2012-09-23 15:20:50 -07002674 mBytesWritten += mixBufferSize;
Glenn Kasten000f0e32012-03-01 17:10:56 -08002675 }
2676
2677 // only process effects if we're going to write
2678 if (sleepTime == 0) {
Glenn Kasten000f0e32012-03-01 17:10:56 -08002679 for (size_t i = 0; i < effectChains.size(); i ++) {
2680 effectChains[i]->process_l();
2681 }
2682 }
2683
2684 // enable changes in effect chain
2685 unlockEffectChains(effectChains);
2686
2687 // sleepTime == 0 means we must write to audio hardware
2688 if (sleepTime == 0) {
2689
2690 threadLoop_write();
2691
2692if (mType == MIXER) {
2693 // write blocked detection
2694 nsecs_t now = systemTime();
2695 nsecs_t delta = now - mLastWriteTime;
2696 if (!mStandby && delta > maxPeriod) {
2697 mNumDelayedWrites++;
2698 if ((now - lastWarning) > kWarningThrottleNs) {
Glenn Kasten99c99d02012-05-14 16:37:13 -07002699#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Glenn Kastend8e6fd32012-05-07 11:07:57 -07002700 ScopedTrace st(ATRACE_TAG, "underrun");
Glenn Kasten99c99d02012-05-14 16:37:13 -07002701#endif
Glenn Kasten000f0e32012-03-01 17:10:56 -08002702 ALOGW("write blocked for %llu msecs, %d delayed writes, thread %p",
2703 ns2ms(delta), mNumDelayedWrites, this);
2704 lastWarning = now;
2705 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002706 }
2707}
2708
2709 mStandby = false;
2710 } else {
2711 usleep(sleepTime);
2712 }
2713
Glenn Kasten58912562012-04-03 10:45:00 -07002714 // Finally let go of removed track(s), without the lock held
Glenn Kasten000f0e32012-03-01 17:10:56 -08002715 // since we can't guarantee the destructors won't acquire that
Glenn Kasten58912562012-04-03 10:45:00 -07002716 // same lock. This will also mutate and push a new fast mixer state.
2717 threadLoop_removeTracks(tracksToRemove);
Glenn Kasten1465f0c2012-03-06 11:23:32 -08002718 tracksToRemove.clear();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002719
Glenn Kastenfa26a852012-03-06 11:28:04 -08002720 // FIXME I don't understand the need for this here;
2721 // it was in the original code but maybe the
2722 // assignment in saveOutputTracks() makes this unnecessary?
2723 clearOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08002724
2725 // Effect chains will be actually deleted here if they were removed from
2726 // mEffectChains list during mixing or effects processing
2727 effectChains.clear();
2728
2729 // FIXME Note that the above .clear() is no longer necessary since effectChains
2730 // is now local to this block, but will keep it for now (at least until merge done).
2731 }
2732
Glenn Kasten9f34a362012-03-20 16:46:41 -07002733 // for DuplicatingThread, standby mode is handled by the outputTracks, otherwise ...
2734 if (mType == MIXER || mType == DIRECT) {
2735 // put output stream into standby mode
2736 if (!mStandby) {
2737 mOutput->stream->common.standby(&mOutput->stream->common);
2738 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002739 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08002740
2741 releaseWakeLock();
2742
2743 ALOGV("Thread %p type %d exiting", this, mType);
2744 return false;
2745}
2746
Glenn Kasten58912562012-04-03 10:45:00 -07002747void AudioFlinger::MixerThread::threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove)
2748{
Glenn Kasten58912562012-04-03 10:45:00 -07002749 PlaybackThread::threadLoop_removeTracks(tracksToRemove);
2750}
2751
2752void AudioFlinger::MixerThread::threadLoop_write()
2753{
2754 // FIXME we should only do one push per cycle; confirm this is true
2755 // Start the fast mixer if it's not already running
2756 if (mFastMixer != NULL) {
2757 FastMixerStateQueue *sq = mFastMixer->sq();
2758 FastMixerState *state = sq->begin();
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002759 if (state->mCommand != FastMixerState::MIX_WRITE &&
2760 (kUseFastMixer != FastMixer_Dynamic || state->mTrackMask > 1)) {
Glenn Kasten58912562012-04-03 10:45:00 -07002761 if (state->mCommand == FastMixerState::COLD_IDLE) {
2762 int32_t old = android_atomic_inc(&mFastMixerFutex);
2763 if (old == -1) {
2764 __futex_syscall3(&mFastMixerFutex, FUTEX_WAKE_PRIVATE, 1);
2765 }
Glenn Kasten087dd8e2012-09-27 13:49:02 -07002766#ifdef AUDIO_WATCHDOG
Glenn Kastenc15d6652012-05-30 14:52:57 -07002767 if (mAudioWatchdog != 0) {
2768 mAudioWatchdog->resume();
2769 }
Glenn Kasten087dd8e2012-09-27 13:49:02 -07002770#endif
Glenn Kasten58912562012-04-03 10:45:00 -07002771 }
2772 state->mCommand = FastMixerState::MIX_WRITE;
2773 sq->end();
2774 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002775 if (kUseFastMixer == FastMixer_Dynamic) {
2776 mNormalSink = mPipeSink;
2777 }
Glenn Kasten58912562012-04-03 10:45:00 -07002778 } else {
2779 sq->end(false /*didModify*/);
2780 }
2781 }
2782 PlaybackThread::threadLoop_write();
2783}
2784
Glenn Kasten000f0e32012-03-01 17:10:56 -08002785// shared by MIXER and DIRECT, overridden by DUPLICATING
2786void AudioFlinger::PlaybackThread::threadLoop_write()
2787{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002788 // FIXME rewrite to reduce number of system calls
2789 mLastWriteTime = systemTime();
2790 mInWrite = true;
Eric Laurent67c0a582012-05-01 19:31:12 -07002791 int bytesWritten;
Glenn Kasten58912562012-04-03 10:45:00 -07002792
Eric Laurent67c0a582012-05-01 19:31:12 -07002793 // If an NBAIO sink is present, use it to write the normal mixer's submix
2794 if (mNormalSink != 0) {
Glenn Kasten58912562012-04-03 10:45:00 -07002795#define mBitShift 2 // FIXME
Eric Laurent67c0a582012-05-01 19:31:12 -07002796 size_t count = mixBufferSize >> mBitShift;
Glenn Kasten99c99d02012-05-14 16:37:13 -07002797#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Eric Laurent67c0a582012-05-01 19:31:12 -07002798 Tracer::traceBegin(ATRACE_TAG, "write");
Glenn Kasten99c99d02012-05-14 16:37:13 -07002799#endif
Glenn Kasten28ed2f92012-06-07 10:17:54 -07002800 // update the setpoint when gScreenState changes
2801 uint32_t screenState = gScreenState;
2802 if (screenState != mScreenState) {
2803 mScreenState = screenState;
2804 MonoPipe *pipe = (MonoPipe *)mPipeSink.get();
2805 if (pipe != NULL) {
2806 pipe->setAvgFrames((mScreenState & 1) ?
2807 (pipe->maxFrames() * 7) / 8 : mNormalFrameCount * 2);
2808 }
2809 }
Eric Laurent67c0a582012-05-01 19:31:12 -07002810 ssize_t framesWritten = mNormalSink->write(mMixBuffer, count);
Glenn Kasten99c99d02012-05-14 16:37:13 -07002811#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Eric Laurent67c0a582012-05-01 19:31:12 -07002812 Tracer::traceEnd(ATRACE_TAG);
Glenn Kasten99c99d02012-05-14 16:37:13 -07002813#endif
Eric Laurent67c0a582012-05-01 19:31:12 -07002814 if (framesWritten > 0) {
2815 bytesWritten = framesWritten << mBitShift;
2816 } else {
2817 bytesWritten = framesWritten;
2818 }
2819 // otherwise use the HAL / AudioStreamOut directly
2820 } else {
2821 // Direct output thread.
2822 bytesWritten = (int)mOutput->stream->write(mOutput->stream, mMixBuffer, mixBufferSize);
Glenn Kasten58912562012-04-03 10:45:00 -07002823 }
2824
Eric Laurent67c0a582012-05-01 19:31:12 -07002825 if (bytesWritten > 0) mBytesWritten += mixBufferSize;
Glenn Kasten952eeb22012-03-06 11:30:57 -08002826 mNumWrites++;
2827 mInWrite = false;
Glenn Kasten000f0e32012-03-01 17:10:56 -08002828}
2829
Glenn Kasten58912562012-04-03 10:45:00 -07002830void AudioFlinger::MixerThread::threadLoop_standby()
2831{
2832 // Idle the fast mixer if it's currently running
2833 if (mFastMixer != NULL) {
2834 FastMixerStateQueue *sq = mFastMixer->sq();
2835 FastMixerState *state = sq->begin();
2836 if (!(state->mCommand & FastMixerState::IDLE)) {
2837 state->mCommand = FastMixerState::COLD_IDLE;
2838 state->mColdFutexAddr = &mFastMixerFutex;
2839 state->mColdGen++;
2840 mFastMixerFutex = 0;
2841 sq->end();
2842 // BLOCK_UNTIL_PUSHED would be insufficient, as we need it to stop doing I/O now
2843 sq->push(FastMixerStateQueue::BLOCK_UNTIL_ACKED);
Glenn Kasten300a2ee2012-04-25 13:47:36 -07002844 if (kUseFastMixer == FastMixer_Dynamic) {
2845 mNormalSink = mOutputSink;
2846 }
Glenn Kasten087dd8e2012-09-27 13:49:02 -07002847#ifdef AUDIO_WATCHDOG
Glenn Kastenc15d6652012-05-30 14:52:57 -07002848 if (mAudioWatchdog != 0) {
2849 mAudioWatchdog->pause();
2850 }
Glenn Kasten087dd8e2012-09-27 13:49:02 -07002851#endif
Glenn Kasten58912562012-04-03 10:45:00 -07002852 } else {
2853 sq->end(false /*didModify*/);
2854 }
2855 }
2856 PlaybackThread::threadLoop_standby();
2857}
2858
Glenn Kasten000f0e32012-03-01 17:10:56 -08002859// shared by MIXER and DIRECT, overridden by DUPLICATING
2860void AudioFlinger::PlaybackThread::threadLoop_standby()
2861{
Glenn Kasten1ea6d232012-07-09 14:31:33 -07002862 ALOGV("Audio hardware entering standby, mixer %p, suspend count %d", this, mSuspended);
Glenn Kasten952eeb22012-03-06 11:30:57 -08002863 mOutput->stream->common.standby(&mOutput->stream->common);
Glenn Kasten000f0e32012-03-01 17:10:56 -08002864}
2865
2866void AudioFlinger::MixerThread::threadLoop_mix()
2867{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002868 // obtain the presentation timestamp of the next output buffer
2869 int64_t pts;
2870 status_t status = INVALID_OPERATION;
John Grossman4ff14ba2012-02-08 16:37:41 -08002871
John Grossman2c3b2da2012-08-02 17:08:54 -07002872 if (mNormalSink != 0) {
2873 status = mNormalSink->getNextWriteTimestamp(&pts);
2874 } else {
2875 status = mOutputSink->getNextWriteTimestamp(&pts);
Glenn Kasten952eeb22012-03-06 11:30:57 -08002876 }
John Grossman4ff14ba2012-02-08 16:37:41 -08002877
Glenn Kasten952eeb22012-03-06 11:30:57 -08002878 if (status != NO_ERROR) {
2879 pts = AudioBufferProvider::kInvalidPTS;
2880 }
John Grossman4ff14ba2012-02-08 16:37:41 -08002881
Glenn Kasten952eeb22012-03-06 11:30:57 -08002882 // mix buffers...
2883 mAudioMixer->process(pts);
2884 // increase sleep time progressively when application underrun condition clears.
2885 // Only increase sleep time if the mixer is ready for two consecutive times to avoid
2886 // that a steady state of alternating ready/not ready conditions keeps the sleep time
2887 // such that we would underrun the audio HAL.
2888 if ((sleepTime == 0) && (sleepTimeShift > 0)) {
2889 sleepTimeShift--;
2890 }
2891 sleepTime = 0;
Glenn Kasten66fcab92012-02-24 14:59:21 -08002892 standbyTime = systemTime() + standbyDelay;
Glenn Kasten952eeb22012-03-06 11:30:57 -08002893 //TODO: delay standby when effects have a tail
Glenn Kasten000f0e32012-03-01 17:10:56 -08002894}
2895
2896void AudioFlinger::MixerThread::threadLoop_sleepTime()
2897{
Glenn Kasten952eeb22012-03-06 11:30:57 -08002898 // If no tracks are ready, sleep once for the duration of an output
2899 // buffer size, then write 0s to the output
2900 if (sleepTime == 0) {
Glenn Kastenfec279f2012-03-08 07:47:15 -08002901 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08002902 sleepTime = activeSleepTime >> sleepTimeShift;
2903 if (sleepTime < kMinThreadSleepTimeUs) {
2904 sleepTime = kMinThreadSleepTimeUs;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002905 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08002906 // reduce sleep time in case of consecutive application underruns to avoid
2907 // starving the audio HAL. As activeSleepTimeUs() is larger than a buffer
2908 // duration we would end up writing less data than needed by the audio HAL if
2909 // the condition persists.
2910 if (sleepTimeShift < kMaxThreadSleepTimeShift) {
2911 sleepTimeShift++;
2912 }
2913 } else {
2914 sleepTime = idleSleepTime;
2915 }
Glenn Kastenf1da96d2012-07-02 16:10:16 -07002916 } else if (mBytesWritten != 0 || (mMixerStatus == MIXER_TRACKS_ENABLED)) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08002917 memset (mMixBuffer, 0, mixBufferSize);
2918 sleepTime = 0;
Glenn Kasten85ab62c2012-11-01 11:11:38 -07002919 ALOGV_IF((mBytesWritten == 0 && (mMixerStatus == MIXER_TRACKS_ENABLED)),
2920 "anticipated start");
Glenn Kasten952eeb22012-03-06 11:30:57 -08002921 }
2922 // TODO add standby time extension fct of effect tail
Mathias Agopian65ab4712010-07-14 17:59:35 -07002923}
2924
2925// prepareTracks_l() must be called with ThreadBase::mLock held
Glenn Kasten29c23c32012-01-26 13:37:52 -08002926AudioFlinger::PlaybackThread::mixer_state AudioFlinger::MixerThread::prepareTracks_l(
Glenn Kasten3e074702012-02-28 18:40:35 -08002927 Vector< sp<Track> > *tracksToRemove)
Mathias Agopian65ab4712010-07-14 17:59:35 -07002928{
2929
Glenn Kasten29c23c32012-01-26 13:37:52 -08002930 mixer_state mixerStatus = MIXER_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002931 // find out which tracks need to be processed
Glenn Kasten3e074702012-02-28 18:40:35 -08002932 size_t count = mActiveTracks.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002933 size_t mixedTracks = 0;
2934 size_t tracksWithEffect = 0;
Glenn Kasten288ed212012-04-25 17:52:27 -07002935 // counts only _active_ fast tracks
Glenn Kasten58912562012-04-03 10:45:00 -07002936 size_t fastTracks = 0;
Glenn Kasten288ed212012-04-25 17:52:27 -07002937 uint32_t resetMask = 0; // bit mask of fast tracks that need to be reset
Mathias Agopian65ab4712010-07-14 17:59:35 -07002938
2939 float masterVolume = mMasterVolume;
Glenn Kastenea7939a2012-03-14 12:56:26 -07002940 bool masterMute = mMasterMute;
Mathias Agopian65ab4712010-07-14 17:59:35 -07002941
Eric Laurent571d49c2010-08-11 05:20:11 -07002942 if (masterMute) {
2943 masterVolume = 0;
2944 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07002945 // Delegate master volume control to effect in output mix effect chain if needed
Dima Zavinfce7a472011-04-19 22:30:36 -07002946 sp<EffectChain> chain = getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002947 if (chain != 0) {
Eric Laurent571d49c2010-08-11 05:20:11 -07002948 uint32_t v = (uint32_t)(masterVolume * (1 << 24));
Eric Laurentcab11242010-07-15 12:50:15 -07002949 chain->setVolume_l(&v, &v);
Mathias Agopian65ab4712010-07-14 17:59:35 -07002950 masterVolume = (float)((v + (1 << 23)) >> 24);
2951 chain.clear();
2952 }
2953
Glenn Kasten288ed212012-04-25 17:52:27 -07002954 // prepare a new state to push
2955 FastMixerStateQueue *sq = NULL;
2956 FastMixerState *state = NULL;
2957 bool didModify = false;
2958 FastMixerStateQueue::block_t block = FastMixerStateQueue::BLOCK_UNTIL_PUSHED;
2959 if (mFastMixer != NULL) {
2960 sq = mFastMixer->sq();
2961 state = sq->begin();
2962 }
2963
Mathias Agopian65ab4712010-07-14 17:59:35 -07002964 for (size_t i=0 ; i<count ; i++) {
Glenn Kasten3e074702012-02-28 18:40:35 -08002965 sp<Track> t = mActiveTracks[i].promote();
Mathias Agopian65ab4712010-07-14 17:59:35 -07002966 if (t == 0) continue;
2967
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08002968 // this const just means the local variable doesn't change
Mathias Agopian65ab4712010-07-14 17:59:35 -07002969 Track* const track = t.get();
Glenn Kasten58912562012-04-03 10:45:00 -07002970
Glenn Kasten288ed212012-04-25 17:52:27 -07002971 // process fast tracks
Glenn Kasten58912562012-04-03 10:45:00 -07002972 if (track->isFastTrack()) {
Glenn Kasten288ed212012-04-25 17:52:27 -07002973
2974 // It's theoretically possible (though unlikely) for a fast track to be created
2975 // and then removed within the same normal mix cycle. This is not a problem, as
2976 // the track never becomes active so it's fast mixer slot is never touched.
2977 // The converse, of removing an (active) track and then creating a new track
2978 // at the identical fast mixer slot within the same normal mix cycle,
2979 // is impossible because the slot isn't marked available until the end of each cycle.
2980 int j = track->mFastIndex;
Glenn Kasten893a0542012-05-30 10:32:06 -07002981 ALOG_ASSERT(0 < j && j < (int)FastMixerState::kMaxFastTracks);
2982 ALOG_ASSERT(!(mFastTrackAvailMask & (1 << j)));
Glenn Kasten288ed212012-04-25 17:52:27 -07002983 FastTrack *fastTrack = &state->mFastTracks[j];
2984
2985 // Determine whether the track is currently in underrun condition,
2986 // and whether it had a recent underrun.
Glenn Kasten1295bb4d2012-05-31 07:43:43 -07002987 FastTrackDump *ftDump = &mFastMixerDumpState.mTracks[j];
2988 FastTrackUnderruns underruns = ftDump->mUnderruns;
Glenn Kasten09474df2012-05-10 14:48:07 -07002989 uint32_t recentFull = (underruns.mBitFields.mFull -
2990 track->mObservedUnderruns.mBitFields.mFull) & UNDERRUN_MASK;
2991 uint32_t recentPartial = (underruns.mBitFields.mPartial -
2992 track->mObservedUnderruns.mBitFields.mPartial) & UNDERRUN_MASK;
2993 uint32_t recentEmpty = (underruns.mBitFields.mEmpty -
2994 track->mObservedUnderruns.mBitFields.mEmpty) & UNDERRUN_MASK;
2995 uint32_t recentUnderruns = recentPartial + recentEmpty;
2996 track->mObservedUnderruns = underruns;
Glenn Kasten288ed212012-04-25 17:52:27 -07002997 // don't count underruns that occur while stopping or pausing
Glenn Kastend08f48c2012-05-01 18:14:02 -07002998 // or stopped which can occur when flush() is called while active
2999 if (!(track->isStopping() || track->isPausing() || track->isStopped())) {
Glenn Kasten288ed212012-04-25 17:52:27 -07003000 track->mUnderrunCount += recentUnderruns;
3001 }
Glenn Kasten288ed212012-04-25 17:52:27 -07003002
Glenn Kastend08f48c2012-05-01 18:14:02 -07003003 // This is similar to the state machine for normal tracks,
Glenn Kasten288ed212012-04-25 17:52:27 -07003004 // with a few modifications for fast tracks.
Glenn Kastend08f48c2012-05-01 18:14:02 -07003005 bool isActive = true;
3006 switch (track->mState) {
3007 case TrackBase::STOPPING_1:
3008 // track stays active in STOPPING_1 state until first underrun
3009 if (recentUnderruns > 0) {
3010 track->mState = TrackBase::STOPPING_2;
3011 }
3012 break;
3013 case TrackBase::PAUSING:
Glenn Kasten288ed212012-04-25 17:52:27 -07003014 // ramp down is not yet implemented
Glenn Kasten288ed212012-04-25 17:52:27 -07003015 track->setPaused();
Glenn Kastend08f48c2012-05-01 18:14:02 -07003016 break;
3017 case TrackBase::RESUMING:
Glenn Kasten288ed212012-04-25 17:52:27 -07003018 // ramp up is not yet implemented
Glenn Kasten288ed212012-04-25 17:52:27 -07003019 track->mState = TrackBase::ACTIVE;
Glenn Kastend08f48c2012-05-01 18:14:02 -07003020 break;
3021 case TrackBase::ACTIVE:
Glenn Kasten09474df2012-05-10 14:48:07 -07003022 if (recentFull > 0 || recentPartial > 0) {
3023 // track has provided at least some frames recently: reset retry count
3024 track->mRetryCount = kMaxTrackRetries;
3025 }
3026 if (recentUnderruns == 0) {
3027 // no recent underruns: stay active
3028 break;
3029 }
3030 // there has recently been an underrun of some kind
3031 if (track->sharedBuffer() == 0) {
3032 // were any of the recent underruns "empty" (no frames available)?
3033 if (recentEmpty == 0) {
3034 // no, then ignore the partial underruns as they are allowed indefinitely
3035 break;
3036 }
3037 // there has recently been an "empty" underrun: decrement the retry counter
3038 if (--(track->mRetryCount) > 0) {
3039 break;
3040 }
3041 // indicate to client process that the track was disabled because of underrun;
3042 // it will then automatically call start() when data is available
Glenn Kasten9c5fdd82012-11-05 13:38:15 -08003043 android_atomic_or(CBLK_DISABLED, &track->mCblk->flags);
Glenn Kasten09474df2012-05-10 14:48:07 -07003044 // remove from active list, but state remains ACTIVE [confusing but true]
3045 isActive = false;
Glenn Kastend08f48c2012-05-01 18:14:02 -07003046 break;
3047 }
3048 // fall through
3049 case TrackBase::STOPPING_2:
3050 case TrackBase::PAUSED:
3051 case TrackBase::TERMINATED:
Eric Laurent29864602012-05-08 18:57:51 -07003052 case TrackBase::STOPPED:
3053 case TrackBase::FLUSHED: // flush() while active
Glenn Kastend08f48c2012-05-01 18:14:02 -07003054 // Check for presentation complete if track is inactive
3055 // We have consumed all the buffers of this track.
3056 // This would be incomplete if we auto-paused on underrun
3057 {
3058 size_t audioHALFrames =
3059 (mOutput->stream->get_latency(mOutput->stream)*mSampleRate) / 1000;
3060 size_t framesWritten =
3061 mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
Glenn Kasten291f8242012-10-18 15:51:31 -07003062 if (!(mStandby || track->presentationComplete(framesWritten, audioHALFrames))) {
Glenn Kastend08f48c2012-05-01 18:14:02 -07003063 // track stays in active list until presentation is complete
3064 break;
3065 }
3066 }
3067 if (track->isStopping_2()) {
3068 track->mState = TrackBase::STOPPED;
3069 }
3070 if (track->isStopped()) {
3071 // Can't reset directly, as fast mixer is still polling this track
3072 // track->reset();
3073 // So instead mark this track as needing to be reset after push with ack
3074 resetMask |= 1 << i;
3075 }
3076 isActive = false;
3077 break;
3078 case TrackBase::IDLE:
3079 default:
3080 LOG_FATAL("unexpected track state %d", track->mState);
Glenn Kasten288ed212012-04-25 17:52:27 -07003081 }
3082
3083 if (isActive) {
3084 // was it previously inactive?
3085 if (!(state->mTrackMask & (1 << j))) {
3086 ExtendedAudioBufferProvider *eabp = track;
3087 VolumeProvider *vp = track;
3088 fastTrack->mBufferProvider = eabp;
3089 fastTrack->mVolumeProvider = vp;
3090 fastTrack->mSampleRate = track->mSampleRate;
3091 fastTrack->mChannelMask = track->mChannelMask;
3092 fastTrack->mGeneration++;
3093 state->mTrackMask |= 1 << j;
3094 didModify = true;
3095 // no acknowledgement required for newly active tracks
3096 }
3097 // cache the combined master volume and stream type volume for fast mixer; this
3098 // lacks any synchronization or barrier so VolumeProvider may read a stale value
3099 track->mCachedVolume = track->isMuted() ?
3100 0 : masterVolume * mStreamTypes[track->streamType()].volume;
3101 ++fastTracks;
3102 } else {
3103 // was it previously active?
3104 if (state->mTrackMask & (1 << j)) {
3105 fastTrack->mBufferProvider = NULL;
3106 fastTrack->mGeneration++;
3107 state->mTrackMask &= ~(1 << j);
3108 didModify = true;
3109 // If any fast tracks were removed, we must wait for acknowledgement
3110 // because we're about to decrement the last sp<> on those tracks.
3111 block = FastMixerStateQueue::BLOCK_UNTIL_ACKED;
Glenn Kastend08f48c2012-05-01 18:14:02 -07003112 } else {
3113 LOG_FATAL("fast track %d should have been active", j);
Glenn Kasten288ed212012-04-25 17:52:27 -07003114 }
Glenn Kastend08f48c2012-05-01 18:14:02 -07003115 tracksToRemove->add(track);
Glenn Kasten288ed212012-04-25 17:52:27 -07003116 // Avoids a misleading display in dumpsys
Glenn Kasten09474df2012-05-10 14:48:07 -07003117 track->mObservedUnderruns.mBitFields.mMostRecent = UNDERRUN_FULL;
Glenn Kasten58912562012-04-03 10:45:00 -07003118 }
3119 continue;
3120 }
3121
3122 { // local variable scope to avoid goto warning
3123
Mathias Agopian65ab4712010-07-14 17:59:35 -07003124 audio_track_cblk_t* cblk = track->cblk();
3125
3126 // The first time a track is added we wait
3127 // for all its buffers to be filled before processing it
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003128 int name = track->name();
Eric Laurenta47b69c2011-11-08 18:10:16 -08003129 // make sure that we have enough frames to mix one full buffer.
3130 // enforce this condition only once to enable draining the buffer in case the client
3131 // app does not call stop() and relies on underrun to stop:
Eric Laurentda747442012-04-25 18:53:13 -07003132 // hence the test on (mMixerStatus == MIXER_TRACKS_READY) meaning the track was mixed
Eric Laurenta47b69c2011-11-08 18:10:16 -08003133 // during last round
Eric Laurent3dbe3202011-11-03 12:16:05 -07003134 uint32_t minFrames = 1;
Eric Laurent83faee02012-04-27 18:24:29 -07003135 if ((track->sharedBuffer() == 0) && !track->isStopped() && !track->isPausing() &&
Glenn Kasten81028042012-04-30 18:15:12 -07003136 (mMixerStatusIgnoringFastTracks == MIXER_TRACKS_READY)) {
Glenn Kasten3b16c762012-11-14 08:44:39 -08003137 if (t->sampleRate() == mSampleRate) {
Glenn Kasten58912562012-04-03 10:45:00 -07003138 minFrames = mNormalFrameCount;
Eric Laurent3dbe3202011-11-03 12:16:05 -07003139 } else {
Eric Laurent071ccd52011-12-22 16:08:41 -08003140 // +1 for rounding and +1 for additional sample needed for interpolation
Glenn Kasten58912562012-04-03 10:45:00 -07003141 minFrames = (mNormalFrameCount * t->sampleRate()) / mSampleRate + 1 + 1;
Eric Laurent071ccd52011-12-22 16:08:41 -08003142 // add frames already consumed but not yet released by the resampler
Glenn Kastenea7939a2012-03-14 12:56:26 -07003143 // because cblk->framesReady() will include these frames
Eric Laurent071ccd52011-12-22 16:08:41 -08003144 minFrames += mAudioMixer->getUnreleasedFrames(track->name());
3145 // the minimum track buffer size is normally twice the number of frames necessary
3146 // to fill one buffer and the resampler should not leave more than one buffer worth
3147 // of unreleased frames after each pass, but just in case...
Steve Blockc1dc1cb2012-01-09 18:35:44 +00003148 ALOG_ASSERT(minFrames <= cblk->frameCount);
Eric Laurent3dbe3202011-11-03 12:16:05 -07003149 }
3150 }
John Grossman4ff14ba2012-02-08 16:37:41 -08003151 if ((track->framesReady() >= minFrames) && track->isReady() &&
Mathias Agopian65ab4712010-07-14 17:59:35 -07003152 !track->isPaused() && !track->isTerminated())
3153 {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07003154 ALOGVV("track %d u=%08x, s=%08x [OK] on thread %p", name, cblk->user, cblk->server,
3155 this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003156
3157 mixedTracks++;
3158
3159 // track->mainBuffer() != mMixBuffer means there is an effect chain
3160 // connected to the track
3161 chain.clear();
3162 if (track->mainBuffer() != mMixBuffer) {
3163 chain = getEffectChain_l(track->sessionId());
3164 // Delegate volume control to effect in track effect chain if needed
3165 if (chain != 0) {
3166 tracksWithEffect++;
3167 } else {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07003168 ALOGW("prepareTracks_l(): track %d attached to effect but no chain found on "
3169 "session %d",
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003170 name, track->sessionId());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003171 }
3172 }
3173
3174
3175 int param = AudioMixer::VOLUME;
3176 if (track->mFillingUpStatus == Track::FS_FILLED) {
3177 // no ramp for the first volume setting
3178 track->mFillingUpStatus = Track::FS_ACTIVE;
3179 if (track->mState == TrackBase::RESUMING) {
3180 track->mState = TrackBase::ACTIVE;
3181 param = AudioMixer::RAMP_VOLUME;
3182 }
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003183 mAudioMixer->setParameter(name, AudioMixer::RESAMPLE, AudioMixer::RESET, NULL);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003184 } else if (cblk->server != 0) {
3185 // If the track is stopped before the first frame was mixed,
3186 // do not apply ramp
3187 param = AudioMixer::RAMP_VOLUME;
3188 }
3189
3190 // compute volume for this track
Eric Laurente0aed6d2010-09-10 17:44:44 -07003191 uint32_t vl, vr, va;
Eric Laurent8569f0d2010-07-29 23:43:43 -07003192 if (track->isMuted() || track->isPausing() ||
Glenn Kasten02bbd202012-02-08 12:35:35 -08003193 mStreamTypes[track->streamType()].mute) {
Eric Laurente0aed6d2010-09-10 17:44:44 -07003194 vl = vr = va = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003195 if (track->isPausing()) {
3196 track->setPaused();
3197 }
3198 } else {
Eric Laurente0aed6d2010-09-10 17:44:44 -07003199
Mathias Agopian65ab4712010-07-14 17:59:35 -07003200 // read original volumes with volume control
Glenn Kasten02bbd202012-02-08 12:35:35 -08003201 float typeVolume = mStreamTypes[track->streamType()].volume;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003202 float v = masterVolume * typeVolume;
Glenn Kasten83d86532012-01-17 14:39:34 -08003203 uint32_t vlr = cblk->getVolumeLR();
Glenn Kastenb1cf75c2012-01-17 12:20:54 -08003204 vl = vlr & 0xFFFF;
3205 vr = vlr >> 16;
3206 // track volumes come from shared memory, so can't be trusted and must be clamped
3207 if (vl > MAX_GAIN_INT) {
3208 ALOGV("Track left volume out of range: %04X", vl);
3209 vl = MAX_GAIN_INT;
3210 }
3211 if (vr > MAX_GAIN_INT) {
3212 ALOGV("Track right volume out of range: %04X", vr);
3213 vr = MAX_GAIN_INT;
3214 }
3215 // now apply the master volume and stream type volume
3216 vl = (uint32_t)(v * vl) << 12;
3217 vr = (uint32_t)(v * vr) << 12;
3218 // assuming master volume and stream type volume each go up to 1.0,
3219 // vl and vr are now in 8.24 format
Mathias Agopian65ab4712010-07-14 17:59:35 -07003220
Glenn Kasten05632a52012-01-03 14:22:33 -08003221 uint16_t sendLevel = cblk->getSendLevel_U4_12();
3222 // send level comes from shared memory and so may be corrupt
Glenn Kasten3b81aca2012-01-27 15:26:23 -08003223 if (sendLevel > MAX_GAIN_INT) {
Glenn Kasten05632a52012-01-03 14:22:33 -08003224 ALOGV("Track send level out of range: %04X", sendLevel);
Glenn Kastenb1cf75c2012-01-17 12:20:54 -08003225 sendLevel = MAX_GAIN_INT;
Glenn Kasten05632a52012-01-03 14:22:33 -08003226 }
3227 va = (uint32_t)(v * sendLevel);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003228 }
Eric Laurente0aed6d2010-09-10 17:44:44 -07003229 // Delegate volume control to effect in track effect chain if needed
3230 if (chain != 0 && chain->setVolume_l(&vl, &vr)) {
3231 // Do not ramp volume if volume is controlled by effect
3232 param = AudioMixer::VOLUME;
3233 track->mHasVolumeController = true;
3234 } else {
3235 // force no volume ramp when volume controller was just disabled or removed
3236 // from effect chain to avoid volume spike
3237 if (track->mHasVolumeController) {
3238 param = AudioMixer::VOLUME;
3239 }
3240 track->mHasVolumeController = false;
3241 }
3242
3243 // Convert volumes from 8.24 to 4.12 format
Glenn Kastenb1cf75c2012-01-17 12:20:54 -08003244 // This additional clamping is needed in case chain->setVolume_l() overshot
Glenn Kasten3b81aca2012-01-27 15:26:23 -08003245 vl = (vl + (1 << 11)) >> 12;
3246 if (vl > MAX_GAIN_INT) vl = MAX_GAIN_INT;
3247 vr = (vr + (1 << 11)) >> 12;
3248 if (vr > MAX_GAIN_INT) vr = MAX_GAIN_INT;
Eric Laurente0aed6d2010-09-10 17:44:44 -07003249
Glenn Kasten3b81aca2012-01-27 15:26:23 -08003250 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 -07003251
Mathias Agopian65ab4712010-07-14 17:59:35 -07003252 // XXX: these things DON'T need to be done each time
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003253 mAudioMixer->setBufferProvider(name, track);
3254 mAudioMixer->enable(name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003255
Glenn Kasten3b81aca2012-01-27 15:26:23 -08003256 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME0, (void *)vl);
3257 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME1, (void *)vr);
3258 mAudioMixer->setParameter(name, param, AudioMixer::AUXLEVEL, (void *)va);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003259 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003260 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003261 AudioMixer::TRACK,
3262 AudioMixer::FORMAT, (void *)track->format());
3263 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003264 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003265 AudioMixer::TRACK,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07003266 AudioMixer::CHANNEL_MASK, (void *)track->channelMask());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003267 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003268 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003269 AudioMixer::RESAMPLE,
3270 AudioMixer::SAMPLE_RATE,
3271 (void *)(cblk->sampleRate));
3272 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003273 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003274 AudioMixer::TRACK,
3275 AudioMixer::MAIN_BUFFER, (void *)track->mainBuffer());
3276 mAudioMixer->setParameter(
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003277 name,
Mathias Agopian65ab4712010-07-14 17:59:35 -07003278 AudioMixer::TRACK,
3279 AudioMixer::AUX_BUFFER, (void *)track->auxBuffer());
3280
3281 // reset retry count
3282 track->mRetryCount = kMaxTrackRetries;
Glenn Kastenea7939a2012-03-14 12:56:26 -07003283
Eric Laurent27741442012-01-17 19:20:12 -08003284 // If one track is ready, set the mixer ready if:
3285 // - the mixer was not ready during previous round OR
3286 // - no other track is not ready
Glenn Kasten81028042012-04-30 18:15:12 -07003287 if (mMixerStatusIgnoringFastTracks != MIXER_TRACKS_READY ||
Eric Laurent27741442012-01-17 19:20:12 -08003288 mixerStatus != MIXER_TRACKS_ENABLED) {
3289 mixerStatus = MIXER_TRACKS_READY;
3290 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003291 } else {
Eric Laurent91b14c42012-05-30 12:30:29 -07003292 // clear effect chain input buffer if an active track underruns to avoid sending
3293 // previous audio buffer again to effects
3294 chain = getEffectChain_l(track->sessionId());
3295 if (chain != 0) {
3296 chain->clearInputBuffer();
3297 }
3298
Glenn Kasten85ab62c2012-11-01 11:11:38 -07003299 ALOGVV("track %d u=%08x, s=%08x [NOT READY] on thread %p", name, cblk->user,
3300 cblk->server, this);
Glenn Kasten842c5d92012-09-26 08:34:10 -07003301 if ((track->sharedBuffer() != 0) || track->isTerminated() ||
Eric Laurent83faee02012-04-27 18:24:29 -07003302 track->isStopped() || track->isPaused()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003303 // We have consumed all the buffers of this track.
3304 // Remove it from the list of active tracks.
Eric Laurenta011e352012-03-29 15:51:43 -07003305 // TODO: use actual buffer filling status instead of latency when available from
3306 // audio HAL
Jean-Michel Trivia045dca2012-10-16 10:29:01 -07003307 size_t audioHALFrames = (latency_l() * mSampleRate) / 1000;
Eric Laurenta011e352012-03-29 15:51:43 -07003308 size_t framesWritten =
3309 mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
Glenn Kasten291f8242012-10-18 15:51:31 -07003310 if (mStandby || track->presentationComplete(framesWritten, audioHALFrames)) {
Eric Laurent29864602012-05-08 18:57:51 -07003311 if (track->isStopped()) {
3312 track->reset();
3313 }
Eric Laurenta011e352012-03-29 15:51:43 -07003314 tracksToRemove->add(track);
3315 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003316 } else {
Glenn Kastenbf0d21f2012-05-31 14:59:29 -07003317 track->mUnderrunCount++;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003318 // No buffers for this track. Give it a few chances to
3319 // fill a buffer, then remove it from active list.
Glenn Kasten842c5d92012-09-26 08:34:10 -07003320 if (--(track->mRetryCount) <= 0) {
3321 ALOGV("BUFFER TIMEOUT: remove(%d) from active list on thread %p", name, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003322 tracksToRemove->add(track);
Glenn Kasten288ed212012-04-25 17:52:27 -07003323 // indicate to client process that the track was disabled because of underrun;
3324 // it will then automatically call start() when data is available
Glenn Kasten9c5fdd82012-11-05 13:38:15 -08003325 android_atomic_or(CBLK_DISABLED, &cblk->flags);
Eric Laurent27741442012-01-17 19:20:12 -08003326 // If one track is not ready, mark the mixer also not ready if:
3327 // - the mixer was ready during previous round OR
3328 // - no other track is ready
Glenn Kasten81028042012-04-30 18:15:12 -07003329 } else if (mMixerStatusIgnoringFastTracks == MIXER_TRACKS_READY ||
Eric Laurent27741442012-01-17 19:20:12 -08003330 mixerStatus != MIXER_TRACKS_READY) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003331 mixerStatus = MIXER_TRACKS_ENABLED;
3332 }
3333 }
Glenn Kasten9c56d4a2011-12-19 15:06:39 -08003334 mAudioMixer->disable(name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003335 }
Glenn Kasten58912562012-04-03 10:45:00 -07003336
3337 } // local variable scope to avoid goto warning
3338track_is_ready: ;
3339
Mathias Agopian65ab4712010-07-14 17:59:35 -07003340 }
3341
Glenn Kasten288ed212012-04-25 17:52:27 -07003342 // Push the new FastMixer state if necessary
Glenn Kastenc15d6652012-05-30 14:52:57 -07003343 bool pauseAudioWatchdog = false;
Glenn Kasten288ed212012-04-25 17:52:27 -07003344 if (didModify) {
3345 state->mFastTracksGen++;
3346 // if the fast mixer was active, but now there are no fast tracks, then put it in cold idle
3347 if (kUseFastMixer == FastMixer_Dynamic &&
3348 state->mCommand == FastMixerState::MIX_WRITE && state->mTrackMask <= 1) {
3349 state->mCommand = FastMixerState::COLD_IDLE;
3350 state->mColdFutexAddr = &mFastMixerFutex;
3351 state->mColdGen++;
3352 mFastMixerFutex = 0;
3353 if (kUseFastMixer == FastMixer_Dynamic) {
3354 mNormalSink = mOutputSink;
3355 }
3356 // If we go into cold idle, need to wait for acknowledgement
3357 // so that fast mixer stops doing I/O.
3358 block = FastMixerStateQueue::BLOCK_UNTIL_ACKED;
Glenn Kastenc15d6652012-05-30 14:52:57 -07003359 pauseAudioWatchdog = true;
Glenn Kasten288ed212012-04-25 17:52:27 -07003360 }
3361 sq->end();
3362 }
3363 if (sq != NULL) {
3364 sq->end(didModify);
3365 sq->push(block);
3366 }
Glenn Kasten087dd8e2012-09-27 13:49:02 -07003367#ifdef AUDIO_WATCHDOG
Glenn Kastenc15d6652012-05-30 14:52:57 -07003368 if (pauseAudioWatchdog && mAudioWatchdog != 0) {
3369 mAudioWatchdog->pause();
3370 }
Glenn Kasten087dd8e2012-09-27 13:49:02 -07003371#endif
Glenn Kasten288ed212012-04-25 17:52:27 -07003372
3373 // Now perform the deferred reset on fast tracks that have stopped
3374 while (resetMask != 0) {
3375 size_t i = __builtin_ctz(resetMask);
3376 ALOG_ASSERT(i < count);
3377 resetMask &= ~(1 << i);
3378 sp<Track> t = mActiveTracks[i].promote();
3379 if (t == 0) continue;
3380 Track* track = t.get();
3381 ALOG_ASSERT(track->isFastTrack() && track->isStopped());
3382 track->reset();
3383 }
Glenn Kasten58912562012-04-03 10:45:00 -07003384
Mathias Agopian65ab4712010-07-14 17:59:35 -07003385 // remove all the tracks that need to be...
3386 count = tracksToRemove->size();
Glenn Kastenf6b16782011-12-15 09:51:17 -08003387 if (CC_UNLIKELY(count)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003388 for (size_t i=0 ; i<count ; i++) {
3389 const sp<Track>& track = tracksToRemove->itemAt(i);
3390 mActiveTracks.remove(track);
3391 if (track->mainBuffer() != mMixBuffer) {
3392 chain = getEffectChain_l(track->sessionId());
3393 if (chain != 0) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07003394 ALOGV("stopping track on chain %p for session Id: %d", chain.get(),
3395 track->sessionId());
Eric Laurentb469b942011-05-09 12:09:06 -07003396 chain->decActiveTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003397 }
3398 }
3399 if (track->isTerminated()) {
Eric Laurentb469b942011-05-09 12:09:06 -07003400 removeTrack_l(track);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003401 }
3402 }
3403 }
3404
3405 // mix buffer must be cleared if all tracks are connected to an
3406 // effect chain as in this case the mixer will not write to
3407 // mix buffer and track effects will accumulate into it
Glenn Kasten85ab62c2012-11-01 11:11:38 -07003408 if ((mixedTracks != 0 && mixedTracks == tracksWithEffect) ||
3409 (mixedTracks == 0 && fastTracks > 0)) {
Glenn Kasten58912562012-04-03 10:45:00 -07003410 // FIXME as a performance optimization, should remember previous zero status
3411 memset(mMixBuffer, 0, mNormalFrameCount * mChannelCount * sizeof(int16_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07003412 }
3413
Glenn Kasten58912562012-04-03 10:45:00 -07003414 // if any fast tracks, then status is ready
Glenn Kasten81028042012-04-30 18:15:12 -07003415 mMixerStatusIgnoringFastTracks = mixerStatus;
Glenn Kasten58912562012-04-03 10:45:00 -07003416 if (fastTracks > 0) {
3417 mixerStatus = MIXER_TRACKS_READY;
3418 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003419 return mixerStatus;
3420}
3421
Glenn Kasten66fcab92012-02-24 14:59:21 -08003422/*
3423The derived values that are cached:
3424 - mixBufferSize from frame count * frame size
3425 - activeSleepTime from activeSleepTimeUs()
3426 - idleSleepTime from idleSleepTimeUs()
3427 - standbyDelay from mActiveSleepTimeUs (DIRECT only)
3428 - maxPeriod from frame count and sample rate (MIXER only)
3429
3430The parameters that affect these derived values are:
3431 - frame count
3432 - frame size
3433 - sample rate
3434 - device type: A2DP or not
3435 - device latency
3436 - format: PCM or not
3437 - active sleep time
3438 - idle sleep time
3439*/
3440
3441void AudioFlinger::PlaybackThread::cacheParameters_l()
3442{
Glenn Kasten58912562012-04-03 10:45:00 -07003443 mixBufferSize = mNormalFrameCount * mFrameSize;
Glenn Kasten66fcab92012-02-24 14:59:21 -08003444 activeSleepTime = activeSleepTimeUs();
3445 idleSleepTime = idleSleepTimeUs();
3446}
3447
Eric Laurent22167852012-06-20 12:26:32 -07003448void AudioFlinger::PlaybackThread::invalidateTracks(audio_stream_type_t streamType)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003449{
Steve Block3856b092011-10-20 11:56:00 +01003450 ALOGV ("MixerThread::invalidateTracks() mixer %p, streamType %d, mTracks.size %d",
Eric Laurentde070132010-07-13 04:45:46 -07003451 this, streamType, mTracks.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003452 Mutex::Autolock _l(mLock);
Eric Laurentde070132010-07-13 04:45:46 -07003453
Mathias Agopian65ab4712010-07-14 17:59:35 -07003454 size_t size = mTracks.size();
3455 for (size_t i = 0; i < size; i++) {
3456 sp<Track> t = mTracks[i];
Glenn Kasten02bbd202012-02-08 12:35:35 -08003457 if (t->streamType() == streamType) {
Glenn Kasten9c5fdd82012-11-05 13:38:15 -08003458 android_atomic_or(CBLK_INVALID, &t->mCblk->flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003459 t->mCblk->cv.signal();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003460 }
3461 }
3462}
3463
Mathias Agopian65ab4712010-07-14 17:59:35 -07003464// getTrackName_l() must be called with ThreadBase::mLock held
Jean-Michel Trivife3156e2012-09-10 18:58:27 -07003465int AudioFlinger::MixerThread::getTrackName_l(audio_channel_mask_t channelMask, int sessionId)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003466{
Jean-Michel Trivife3156e2012-09-10 18:58:27 -07003467 return mAudioMixer->getTrackName(channelMask, sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003468}
3469
3470// deleteTrackName_l() must be called with ThreadBase::mLock held
3471void AudioFlinger::MixerThread::deleteTrackName_l(int name)
3472{
Steve Block3856b092011-10-20 11:56:00 +01003473 ALOGV("remove track (%d) and delete from mixer", name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003474 mAudioMixer->deleteTrackName(name);
3475}
3476
3477// checkForNewParameters_l() must be called with ThreadBase::mLock held
3478bool AudioFlinger::MixerThread::checkForNewParameters_l()
3479{
Glenn Kasten58912562012-04-03 10:45:00 -07003480 // if !&IDLE, holds the FastMixer state to restore after new parameters processed
3481 FastMixerState::Command previousCommand = FastMixerState::HOT_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003482 bool reconfig = false;
3483
3484 while (!mNewParameters.isEmpty()) {
Glenn Kasten58912562012-04-03 10:45:00 -07003485
3486 if (mFastMixer != NULL) {
3487 FastMixerStateQueue *sq = mFastMixer->sq();
3488 FastMixerState *state = sq->begin();
3489 if (!(state->mCommand & FastMixerState::IDLE)) {
3490 previousCommand = state->mCommand;
3491 state->mCommand = FastMixerState::HOT_IDLE;
3492 sq->end();
3493 sq->push(FastMixerStateQueue::BLOCK_UNTIL_ACKED);
3494 } else {
3495 sq->end(false /*didModify*/);
3496 }
3497 }
3498
Mathias Agopian65ab4712010-07-14 17:59:35 -07003499 status_t status = NO_ERROR;
3500 String8 keyValuePair = mNewParameters[0];
3501 AudioParameter param = AudioParameter(keyValuePair);
3502 int value;
3503
3504 if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
3505 reconfig = true;
3506 }
3507 if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
Glenn Kasten58f30212012-01-12 12:27:51 -08003508 if ((audio_format_t) value != AUDIO_FORMAT_PCM_16_BIT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003509 status = BAD_VALUE;
3510 } else {
3511 reconfig = true;
3512 }
3513 }
3514 if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
Dima Zavinfce7a472011-04-19 22:30:36 -07003515 if (value != AUDIO_CHANNEL_OUT_STEREO) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07003516 status = BAD_VALUE;
3517 } else {
3518 reconfig = true;
3519 }
3520 }
3521 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
3522 // do not accept frame count changes if tracks are open as the track buffer
Glenn Kasten362c4e62011-12-14 10:28:06 -08003523 // size depends on frame count and correct behavior would not be guaranteed
Mathias Agopian65ab4712010-07-14 17:59:35 -07003524 // if frame count is changed after track creation
3525 if (!mTracks.isEmpty()) {
3526 status = INVALID_OPERATION;
3527 } else {
3528 reconfig = true;
3529 }
3530 }
3531 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003532#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08003533 // when changing the audio output device, call addBatteryData to notify
3534 // the change
Eric Laurentf1c04f92012-08-28 14:26:53 -07003535 if (mOutDevice != value) {
Gloria Wang9ee159b2011-02-24 14:51:45 -08003536 uint32_t params = 0;
3537 // check whether speaker is on
Dima Zavinfce7a472011-04-19 22:30:36 -07003538 if (value & AUDIO_DEVICE_OUT_SPEAKER) {
Gloria Wang9ee159b2011-02-24 14:51:45 -08003539 params |= IMediaPlayerService::kBatteryDataSpeakerOn;
3540 }
3541
Glenn Kastenbb4350d2012-07-03 15:56:38 -07003542 audio_devices_t deviceWithoutSpeaker
Dima Zavinfce7a472011-04-19 22:30:36 -07003543 = AUDIO_DEVICE_OUT_ALL & ~AUDIO_DEVICE_OUT_SPEAKER;
Gloria Wang9ee159b2011-02-24 14:51:45 -08003544 // check if any other device (except speaker) is on
3545 if (value & deviceWithoutSpeaker ) {
3546 params |= IMediaPlayerService::kBatteryDataOtherAudioDeviceOn;
3547 }
3548
3549 if (params != 0) {
3550 addBatteryData(params);
3551 }
3552 }
Glenn Kastend3cee2f2012-03-13 17:55:35 -07003553#endif
Gloria Wang9ee159b2011-02-24 14:51:45 -08003554
Mathias Agopian65ab4712010-07-14 17:59:35 -07003555 // forward device change to effects that have requested to be
3556 // aware of attached audio device.
Eric Laurentf1c04f92012-08-28 14:26:53 -07003557 mOutDevice = value;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003558 for (size_t i = 0; i < mEffectChains.size(); i++) {
Eric Laurentf1c04f92012-08-28 14:26:53 -07003559 mEffectChains[i]->setDevice_l(mOutDevice);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003560 }
3561 }
3562
3563 if (status == NO_ERROR) {
Dima Zavin799a70e2011-04-18 16:57:27 -07003564 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07003565 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003566 if (!mStandby && status == INVALID_OPERATION) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003567 mOutput->stream->common.standby(&mOutput->stream->common);
3568 mStandby = true;
3569 mBytesWritten = 0;
3570 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07003571 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003572 }
3573 if (status == NO_ERROR && reconfig) {
3574 delete mAudioMixer;
Glenn Kastene9dd0172012-01-27 18:08:45 -08003575 // for safety in case readOutputParameters() accesses mAudioMixer (it doesn't)
3576 mAudioMixer = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003577 readOutputParameters();
Glenn Kasten58912562012-04-03 10:45:00 -07003578 mAudioMixer = new AudioMixer(mNormalFrameCount, mSampleRate);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003579 for (size_t i = 0; i < mTracks.size() ; i++) {
Jean-Michel Trivife3156e2012-09-10 18:58:27 -07003580 int name = getTrackName_l(mTracks[i]->mChannelMask, mTracks[i]->mSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003581 if (name < 0) break;
3582 mTracks[i]->mName = name;
3583 // limit track sample rate to 2 x new output sample rate
3584 if (mTracks[i]->mCblk->sampleRate > 2 * sampleRate()) {
3585 mTracks[i]->mCblk->sampleRate = 2 * sampleRate();
3586 }
3587 }
Eric Laurent896adcd2012-09-13 11:18:23 -07003588 sendIoConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003589 }
3590 }
3591
3592 mNewParameters.removeAt(0);
3593
3594 mParamStatus = status;
3595 mParamCond.signal();
Eric Laurent60cd0a02011-09-13 11:40:21 -07003596 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
3597 // already timed out waiting for the status and will never signal the condition.
Glenn Kasten7dede872011-12-13 11:04:14 -08003598 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003599 }
Glenn Kasten58912562012-04-03 10:45:00 -07003600
3601 if (!(previousCommand & FastMixerState::IDLE)) {
3602 ALOG_ASSERT(mFastMixer != NULL);
3603 FastMixerStateQueue *sq = mFastMixer->sq();
3604 FastMixerState *state = sq->begin();
3605 ALOG_ASSERT(state->mCommand == FastMixerState::HOT_IDLE);
3606 state->mCommand = previousCommand;
3607 sq->end();
3608 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
3609 }
3610
Mathias Agopian65ab4712010-07-14 17:59:35 -07003611 return reconfig;
3612}
3613
Glenn Kastend06785b2012-09-30 12:29:28 -07003614void AudioFlinger::dumpTee(int fd, const sp<NBAIO_Source>& source, audio_io_handle_t id)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003615{
Glenn Kastend06785b2012-09-30 12:29:28 -07003616 NBAIO_Source *teeSource = source.get();
Glenn Kastenfbae5da2012-05-21 09:17:20 -07003617 if (teeSource != NULL) {
Glenn Kastend06785b2012-09-30 12:29:28 -07003618 char teeTime[16];
Glenn Kastenfbae5da2012-05-21 09:17:20 -07003619 struct timeval tv;
3620 gettimeofday(&tv, NULL);
3621 struct tm tm;
3622 localtime_r(&tv.tv_sec, &tm);
Glenn Kastend06785b2012-09-30 12:29:28 -07003623 strftime(teeTime, sizeof(teeTime), "%T", &tm);
3624 char teePath[64];
3625 sprintf(teePath, "/data/misc/media/%s_%d.wav", teeTime, id);
Glenn Kastenfbae5da2012-05-21 09:17:20 -07003626 int teeFd = open(teePath, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR);
3627 if (teeFd >= 0) {
3628 char wavHeader[44];
3629 memcpy(wavHeader,
3630 "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",
3631 sizeof(wavHeader));
3632 NBAIO_Format format = teeSource->format();
3633 unsigned channelCount = Format_channelCount(format);
3634 ALOG_ASSERT(channelCount <= FCC_2);
Glenn Kasten3b16c762012-11-14 08:44:39 -08003635 uint32_t sampleRate = Format_sampleRate(format);
Glenn Kastenfbae5da2012-05-21 09:17:20 -07003636 wavHeader[22] = channelCount; // number of channels
3637 wavHeader[24] = sampleRate; // sample rate
3638 wavHeader[25] = sampleRate >> 8;
3639 wavHeader[32] = channelCount * 2; // block alignment
3640 write(teeFd, wavHeader, sizeof(wavHeader));
3641 size_t total = 0;
3642 bool firstRead = true;
3643 for (;;) {
3644#define TEE_SINK_READ 1024
3645 short buffer[TEE_SINK_READ * FCC_2];
3646 size_t count = TEE_SINK_READ;
John Grossman2c3b2da2012-08-02 17:08:54 -07003647 ssize_t actual = teeSource->read(buffer, count,
3648 AudioBufferProvider::kInvalidPTS);
Glenn Kastenfbae5da2012-05-21 09:17:20 -07003649 bool wasFirstRead = firstRead;
3650 firstRead = false;
3651 if (actual <= 0) {
3652 if (actual == (ssize_t) OVERRUN && wasFirstRead) {
3653 continue;
3654 }
3655 break;
3656 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07003657 ALOG_ASSERT(actual <= (ssize_t)count);
Glenn Kastenfbae5da2012-05-21 09:17:20 -07003658 write(teeFd, buffer, actual * channelCount * sizeof(short));
3659 total += actual;
3660 }
3661 lseek(teeFd, (off_t) 4, SEEK_SET);
3662 uint32_t temp = 44 + total * channelCount * sizeof(short) - 8;
3663 write(teeFd, &temp, sizeof(temp));
3664 lseek(teeFd, (off_t) 40, SEEK_SET);
3665 temp = total * channelCount * sizeof(short);
3666 write(teeFd, &temp, sizeof(temp));
3667 close(teeFd);
3668 fdprintf(fd, "FastMixer tee copied to %s\n", teePath);
3669 } else {
3670 fdprintf(fd, "FastMixer unable to create tee %s: \n", strerror(errno));
3671 }
3672 }
Glenn Kastend06785b2012-09-30 12:29:28 -07003673}
3674
3675void AudioFlinger::MixerThread::dumpInternals(int fd, const Vector<String16>& args)
3676{
3677 const size_t SIZE = 256;
3678 char buffer[SIZE];
3679 String8 result;
3680
3681 PlaybackThread::dumpInternals(fd, args);
3682
3683 snprintf(buffer, SIZE, "AudioMixer tracks: %08x\n", mAudioMixer->trackNames());
3684 result.append(buffer);
3685 write(fd, result.string(), result.size());
3686
3687 // Make a non-atomic copy of fast mixer dump state so it won't change underneath us
3688 FastMixerDumpState copy = mFastMixerDumpState;
3689 copy.dump(fd);
3690
3691#ifdef STATE_QUEUE_DUMP
3692 // Similar for state queue
3693 StateQueueObserverDump observerCopy = mStateQueueObserverDump;
3694 observerCopy.dump(fd);
3695 StateQueueMutatorDump mutatorCopy = mStateQueueMutatorDump;
3696 mutatorCopy.dump(fd);
3697#endif
3698
3699 // Write the tee output to a .wav file
3700 dumpTee(fd, mTeeSource, mId);
Glenn Kastenfbae5da2012-05-21 09:17:20 -07003701
Glenn Kasten087dd8e2012-09-27 13:49:02 -07003702#ifdef AUDIO_WATCHDOG
Glenn Kastenc15d6652012-05-30 14:52:57 -07003703 if (mAudioWatchdog != 0) {
3704 // Make a non-atomic copy of audio watchdog dump so it won't change underneath us
3705 AudioWatchdogDump wdCopy = mAudioWatchdogDump;
3706 wdCopy.dump(fd);
3707 }
Glenn Kasten087dd8e2012-09-27 13:49:02 -07003708#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07003709}
3710
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003711uint32_t AudioFlinger::MixerThread::idleSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07003712{
Glenn Kasten58912562012-04-03 10:45:00 -07003713 return (uint32_t)(((mNormalFrameCount * 1000) / mSampleRate) * 1000) / 2;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003714}
3715
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003716uint32_t AudioFlinger::MixerThread::suspendSleepTimeUs() const
Eric Laurent25cbe0e2010-08-18 18:13:17 -07003717{
Glenn Kasten58912562012-04-03 10:45:00 -07003718 return (uint32_t)(((mNormalFrameCount * 1000) / mSampleRate) * 1000);
Eric Laurent25cbe0e2010-08-18 18:13:17 -07003719}
3720
Glenn Kasten66fcab92012-02-24 14:59:21 -08003721void AudioFlinger::MixerThread::cacheParameters_l()
3722{
3723 PlaybackThread::cacheParameters_l();
3724
3725 // FIXME: Relaxed timing because of a certain device that can't meet latency
3726 // Should be reduced to 2x after the vendor fixes the driver issue
3727 // increase threshold again due to low power audio mode. The way this warning
3728 // threshold is calculated and its usefulness should be reconsidered anyway.
Glenn Kasten58912562012-04-03 10:45:00 -07003729 maxPeriod = seconds(mNormalFrameCount) / mSampleRate * 15;
Glenn Kasten66fcab92012-02-24 14:59:21 -08003730}
3731
Mathias Agopian65ab4712010-07-14 17:59:35 -07003732// ----------------------------------------------------------------------------
Glenn Kasten72ef00d2012-01-17 11:09:42 -08003733AudioFlinger::DirectOutputThread::DirectOutputThread(const sp<AudioFlinger>& audioFlinger,
Glenn Kastenbb4350d2012-07-03 15:56:38 -07003734 AudioStreamOut* output, audio_io_handle_t id, audio_devices_t device)
Glenn Kasten23bb8be2012-01-26 10:38:26 -08003735 : PlaybackThread(audioFlinger, output, id, device, DIRECT)
Glenn Kasten84afa3b2012-01-25 15:28:08 -08003736 // mLeftVolFloat, mRightVolFloat
Mathias Agopian65ab4712010-07-14 17:59:35 -07003737{
Mathias Agopian65ab4712010-07-14 17:59:35 -07003738}
3739
3740AudioFlinger::DirectOutputThread::~DirectOutputThread()
3741{
3742}
3743
Glenn Kasten1465f0c2012-03-06 11:23:32 -08003744AudioFlinger::PlaybackThread::mixer_state AudioFlinger::DirectOutputThread::prepareTracks_l(
3745 Vector< sp<Track> > *tracksToRemove
Glenn Kasten000f0e32012-03-01 17:10:56 -08003746)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003747{
Glenn Kasten1465f0c2012-03-06 11:23:32 -08003748 sp<Track> trackToRemove;
3749
Glenn Kastenfec279f2012-03-08 07:47:15 -08003750 mixer_state mixerStatus = MIXER_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003751
Glenn Kasten952eeb22012-03-06 11:30:57 -08003752 // find out which tracks need to be processed
3753 if (mActiveTracks.size() != 0) {
3754 sp<Track> t = mActiveTracks[0].promote();
Glenn Kastenfec279f2012-03-08 07:47:15 -08003755 // The track died recently
3756 if (t == 0) return MIXER_IDLE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003757
Glenn Kasten952eeb22012-03-06 11:30:57 -08003758 Track* const track = t.get();
3759 audio_track_cblk_t* cblk = track->cblk();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003760
Glenn Kasten952eeb22012-03-06 11:30:57 -08003761 // The first time a track is added we wait
3762 // for all its buffers to be filled before processing it
Eric Laurent67c0a582012-05-01 19:31:12 -07003763 uint32_t minFrames;
3764 if ((track->sharedBuffer() == 0) && !track->isStopped() && !track->isPausing()) {
3765 minFrames = mNormalFrameCount;
3766 } else {
3767 minFrames = 1;
3768 }
3769 if ((track->framesReady() >= minFrames) && track->isReady() &&
Glenn Kasten952eeb22012-03-06 11:30:57 -08003770 !track->isPaused() && !track->isTerminated())
3771 {
Glenn Kasten26dd66e2012-10-18 15:51:03 -07003772 ALOGVV("track %d u=%08x, s=%08x [OK]", track->name(), cblk->user, cblk->server);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003773
Glenn Kasten952eeb22012-03-06 11:30:57 -08003774 if (track->mFillingUpStatus == Track::FS_FILLED) {
3775 track->mFillingUpStatus = Track::FS_ACTIVE;
3776 mLeftVolFloat = mRightVolFloat = 0;
Glenn Kasten952eeb22012-03-06 11:30:57 -08003777 if (track->mState == TrackBase::RESUMING) {
3778 track->mState = TrackBase::ACTIVE;
Glenn Kasten952eeb22012-03-06 11:30:57 -08003779 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08003780 }
Eric Laurent67c0a582012-05-01 19:31:12 -07003781
Glenn Kasten952eeb22012-03-06 11:30:57 -08003782 // compute volume for this track
3783 float left, right;
3784 if (track->isMuted() || mMasterMute || track->isPausing() ||
3785 mStreamTypes[track->streamType()].mute) {
3786 left = right = 0;
3787 if (track->isPausing()) {
3788 track->setPaused();
3789 }
3790 } else {
3791 float typeVolume = mStreamTypes[track->streamType()].volume;
3792 float v = mMasterVolume * typeVolume;
3793 uint32_t vlr = cblk->getVolumeLR();
3794 float v_clamped = v * (vlr & 0xFFFF);
3795 if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
3796 left = v_clamped/MAX_GAIN;
3797 v_clamped = v * (vlr >> 16);
3798 if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
3799 right = v_clamped/MAX_GAIN;
3800 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003801
Glenn Kasten952eeb22012-03-06 11:30:57 -08003802 if (left != mLeftVolFloat || right != mRightVolFloat) {
3803 mLeftVolFloat = left;
3804 mRightVolFloat = right;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003805
Glenn Kasten952eeb22012-03-06 11:30:57 -08003806 // Convert volumes from float to 8.24
3807 uint32_t vl = (uint32_t)(left * (1 << 24));
3808 uint32_t vr = (uint32_t)(right * (1 << 24));
Mathias Agopian65ab4712010-07-14 17:59:35 -07003809
Glenn Kasten952eeb22012-03-06 11:30:57 -08003810 // Delegate volume control to effect in track effect chain if needed
3811 // only one effect chain can be present on DirectOutputThread, so if
3812 // there is one, the track is connected to it
3813 if (!mEffectChains.isEmpty()) {
3814 // Do not ramp volume if volume is controlled by effect
Eric Laurent67c0a582012-05-01 19:31:12 -07003815 mEffectChains[0]->setVolume_l(&vl, &vr);
3816 left = (float)vl / (1 << 24);
3817 right = (float)vr / (1 << 24);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003818 }
Eric Laurent67c0a582012-05-01 19:31:12 -07003819 mOutput->stream->set_volume(mOutput->stream, left, right);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003820 }
3821
3822 // reset retry count
3823 track->mRetryCount = kMaxTrackRetriesDirect;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08003824 mActiveTrack = t;
Glenn Kastenfec279f2012-03-08 07:47:15 -08003825 mixerStatus = MIXER_TRACKS_READY;
Glenn Kasten952eeb22012-03-06 11:30:57 -08003826 } else {
Eric Laurent91b14c42012-05-30 12:30:29 -07003827 // clear effect chain input buffer if an active track underruns to avoid sending
3828 // previous audio buffer again to effects
3829 if (!mEffectChains.isEmpty()) {
3830 mEffectChains[0]->clearInputBuffer();
3831 }
3832
Glenn Kasten26dd66e2012-10-18 15:51:03 -07003833 ALOGVV("track %d u=%08x, s=%08x [NOT READY]", track->name(), cblk->user, cblk->server);
Glenn Kasten842c5d92012-09-26 08:34:10 -07003834 if ((track->sharedBuffer() != 0) || track->isTerminated() ||
Eric Laurent67c0a582012-05-01 19:31:12 -07003835 track->isStopped() || track->isPaused()) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08003836 // We have consumed all the buffers of this track.
3837 // Remove it from the list of active tracks.
Eric Laurenta011e352012-03-29 15:51:43 -07003838 // TODO: implement behavior for compressed audio
Jean-Michel Trivia045dca2012-10-16 10:29:01 -07003839 size_t audioHALFrames = (latency_l() * mSampleRate) / 1000;
Eric Laurenta011e352012-03-29 15:51:43 -07003840 size_t framesWritten =
3841 mBytesWritten / audio_stream_frame_size(&mOutput->stream->common);
Glenn Kasten291f8242012-10-18 15:51:31 -07003842 if (mStandby || track->presentationComplete(framesWritten, audioHALFrames)) {
Eric Laurent29864602012-05-08 18:57:51 -07003843 if (track->isStopped()) {
3844 track->reset();
3845 }
Eric Laurenta011e352012-03-29 15:51:43 -07003846 trackToRemove = track;
3847 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08003848 } else {
3849 // No buffers for this track. Give it a few chances to
3850 // fill a buffer, then remove it from active list.
Glenn Kasten842c5d92012-09-26 08:34:10 -07003851 if (--(track->mRetryCount) <= 0) {
3852 ALOGV("BUFFER TIMEOUT: remove(%d) from active list", track->name());
Glenn Kasten952eeb22012-03-06 11:30:57 -08003853 trackToRemove = track;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003854 } else {
Glenn Kastenfec279f2012-03-08 07:47:15 -08003855 mixerStatus = MIXER_TRACKS_ENABLED;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003856 }
3857 }
Glenn Kasten952eeb22012-03-06 11:30:57 -08003858 }
3859 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003860
Glenn Kasten1465f0c2012-03-06 11:23:32 -08003861 // FIXME merge this with similar code for removing multiple tracks
Glenn Kasten952eeb22012-03-06 11:30:57 -08003862 // remove all the tracks that need to be...
3863 if (CC_UNLIKELY(trackToRemove != 0)) {
Glenn Kasten1465f0c2012-03-06 11:23:32 -08003864 tracksToRemove->add(trackToRemove);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003865 mActiveTracks.remove(trackToRemove);
3866 if (!mEffectChains.isEmpty()) {
Glenn Kasten5798d4e2012-03-08 12:18:35 -08003867 ALOGV("stopping track on chain %p for session Id: %d", mEffectChains[0].get(),
Glenn Kasten952eeb22012-03-06 11:30:57 -08003868 trackToRemove->sessionId());
3869 mEffectChains[0]->decActiveTrackCnt();
3870 }
3871 if (trackToRemove->isTerminated()) {
3872 removeTrack_l(trackToRemove);
3873 }
3874 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003875
Glenn Kastenfec279f2012-03-08 07:47:15 -08003876 return mixerStatus;
Glenn Kasten000f0e32012-03-01 17:10:56 -08003877}
Mathias Agopian65ab4712010-07-14 17:59:35 -07003878
Glenn Kasten000f0e32012-03-01 17:10:56 -08003879void AudioFlinger::DirectOutputThread::threadLoop_mix()
3880{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003881 AudioBufferProvider::Buffer buffer;
3882 size_t frameCount = mFrameCount;
3883 int8_t *curBuf = (int8_t *)mMixBuffer;
3884 // output audio to hardware
3885 while (frameCount) {
3886 buffer.frameCount = frameCount;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08003887 mActiveTrack->getNextBuffer(&buffer);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003888 if (CC_UNLIKELY(buffer.raw == NULL)) {
3889 memset(curBuf, 0, frameCount * mFrameSize);
3890 break;
3891 }
3892 memcpy(curBuf, buffer.raw, buffer.frameCount * mFrameSize);
3893 frameCount -= buffer.frameCount;
3894 curBuf += buffer.frameCount * mFrameSize;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08003895 mActiveTrack->releaseBuffer(&buffer);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003896 }
3897 sleepTime = 0;
3898 standbyTime = systemTime() + standbyDelay;
Glenn Kastenb071e9b2012-03-07 17:05:59 -08003899 mActiveTrack.clear();
Glenn Kasten73f4bc32012-03-09 12:08:48 -08003900
Glenn Kasten000f0e32012-03-01 17:10:56 -08003901}
3902
3903void AudioFlinger::DirectOutputThread::threadLoop_sleepTime()
3904{
Glenn Kasten952eeb22012-03-06 11:30:57 -08003905 if (sleepTime == 0) {
Glenn Kastenfec279f2012-03-08 07:47:15 -08003906 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08003907 sleepTime = activeSleepTime;
3908 } else {
3909 sleepTime = idleSleepTime;
3910 }
3911 } else if (mBytesWritten != 0 && audio_is_linear_pcm(mFormat)) {
Glenn Kasten58912562012-04-03 10:45:00 -07003912 memset(mMixBuffer, 0, mFrameCount * mFrameSize);
Glenn Kasten952eeb22012-03-06 11:30:57 -08003913 sleepTime = 0;
3914 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07003915}
3916
3917// getTrackName_l() must be called with ThreadBase::mLock held
Jean-Michel Trivife3156e2012-09-10 18:58:27 -07003918int AudioFlinger::DirectOutputThread::getTrackName_l(audio_channel_mask_t channelMask,
3919 int sessionId)
Mathias Agopian65ab4712010-07-14 17:59:35 -07003920{
3921 return 0;
3922}
3923
3924// deleteTrackName_l() must be called with ThreadBase::mLock held
3925void AudioFlinger::DirectOutputThread::deleteTrackName_l(int name)
3926{
3927}
3928
3929// checkForNewParameters_l() must be called with ThreadBase::mLock held
3930bool AudioFlinger::DirectOutputThread::checkForNewParameters_l()
3931{
3932 bool reconfig = false;
3933
3934 while (!mNewParameters.isEmpty()) {
3935 status_t status = NO_ERROR;
3936 String8 keyValuePair = mNewParameters[0];
3937 AudioParameter param = AudioParameter(keyValuePair);
3938 int value;
3939
3940 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
3941 // do not accept frame count changes if tracks are open as the track buffer
3942 // size depends on frame count and correct behavior would not be garantied
3943 // if frame count is changed after track creation
3944 if (!mTracks.isEmpty()) {
3945 status = INVALID_OPERATION;
3946 } else {
3947 reconfig = true;
3948 }
3949 }
3950 if (status == NO_ERROR) {
Dima Zavin799a70e2011-04-18 16:57:27 -07003951 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07003952 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003953 if (!mStandby && status == INVALID_OPERATION) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07003954 mOutput->stream->common.standby(&mOutput->stream->common);
3955 mStandby = true;
3956 mBytesWritten = 0;
3957 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Dima Zavinfce7a472011-04-19 22:30:36 -07003958 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07003959 }
3960 if (status == NO_ERROR && reconfig) {
3961 readOutputParameters();
Eric Laurent896adcd2012-09-13 11:18:23 -07003962 sendIoConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003963 }
3964 }
3965
3966 mNewParameters.removeAt(0);
3967
3968 mParamStatus = status;
3969 mParamCond.signal();
Eric Laurent60cd0a02011-09-13 11:40:21 -07003970 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
3971 // already timed out waiting for the status and will never signal the condition.
Glenn Kasten7dede872011-12-13 11:04:14 -08003972 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07003973 }
3974 return reconfig;
3975}
3976
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003977uint32_t AudioFlinger::DirectOutputThread::activeSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07003978{
3979 uint32_t time;
Dima Zavinfce7a472011-04-19 22:30:36 -07003980 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent162b40b2011-12-05 09:47:19 -08003981 time = PlaybackThread::activeSleepTimeUs();
Mathias Agopian65ab4712010-07-14 17:59:35 -07003982 } else {
3983 time = 10000;
3984 }
3985 return time;
3986}
3987
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003988uint32_t AudioFlinger::DirectOutputThread::idleSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07003989{
3990 uint32_t time;
Dima Zavinfce7a472011-04-19 22:30:36 -07003991 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent60e18242010-07-29 06:50:24 -07003992 time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000) / 2;
Mathias Agopian65ab4712010-07-14 17:59:35 -07003993 } else {
3994 time = 10000;
3995 }
3996 return time;
3997}
3998
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08003999uint32_t AudioFlinger::DirectOutputThread::suspendSleepTimeUs() const
Eric Laurent25cbe0e2010-08-18 18:13:17 -07004000{
4001 uint32_t time;
Dima Zavinfce7a472011-04-19 22:30:36 -07004002 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent25cbe0e2010-08-18 18:13:17 -07004003 time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000);
4004 } else {
4005 time = 10000;
4006 }
4007 return time;
4008}
4009
Glenn Kasten66fcab92012-02-24 14:59:21 -08004010void AudioFlinger::DirectOutputThread::cacheParameters_l()
4011{
4012 PlaybackThread::cacheParameters_l();
4013
4014 // use shorter standby delay as on normal output to release
4015 // hardware resources as soon as possible
4016 standbyDelay = microseconds(activeSleepTime*2);
4017}
Eric Laurent25cbe0e2010-08-18 18:13:17 -07004018
Mathias Agopian65ab4712010-07-14 17:59:35 -07004019// ----------------------------------------------------------------------------
4020
Glenn Kasten23bb8be2012-01-26 10:38:26 -08004021AudioFlinger::DuplicatingThread::DuplicatingThread(const sp<AudioFlinger>& audioFlinger,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08004022 AudioFlinger::MixerThread* mainThread, audio_io_handle_t id)
Glenn Kasten85ab62c2012-11-01 11:11:38 -07004023 : MixerThread(audioFlinger, mainThread->getOutput(), id, mainThread->outDevice(),
4024 DUPLICATING),
Glenn Kasten23bb8be2012-01-26 10:38:26 -08004025 mWaitTimeMs(UINT_MAX)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004026{
Mathias Agopian65ab4712010-07-14 17:59:35 -07004027 addOutputTrack(mainThread);
4028}
4029
4030AudioFlinger::DuplicatingThread::~DuplicatingThread()
4031{
4032 for (size_t i = 0; i < mOutputTracks.size(); i++) {
4033 mOutputTracks[i]->destroy();
4034 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004035}
4036
Glenn Kasten000f0e32012-03-01 17:10:56 -08004037void AudioFlinger::DuplicatingThread::threadLoop_mix()
Mathias Agopian65ab4712010-07-14 17:59:35 -07004038{
Glenn Kasten952eeb22012-03-06 11:30:57 -08004039 // mix buffers...
4040 if (outputsReady(outputTracks)) {
4041 mAudioMixer->process(AudioBufferProvider::kInvalidPTS);
4042 } else {
4043 memset(mMixBuffer, 0, mixBufferSize);
4044 }
4045 sleepTime = 0;
Glenn Kasten58912562012-04-03 10:45:00 -07004046 writeFrames = mNormalFrameCount;
Eric Laurenta4f7e0e2012-06-07 17:16:09 -07004047 standbyTime = systemTime() + standbyDelay;
Glenn Kasten000f0e32012-03-01 17:10:56 -08004048}
4049
4050void AudioFlinger::DuplicatingThread::threadLoop_sleepTime()
4051{
Glenn Kasten952eeb22012-03-06 11:30:57 -08004052 if (sleepTime == 0) {
Glenn Kastenfec279f2012-03-08 07:47:15 -08004053 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
Glenn Kasten952eeb22012-03-06 11:30:57 -08004054 sleepTime = activeSleepTime;
4055 } else {
4056 sleepTime = idleSleepTime;
4057 }
4058 } else if (mBytesWritten != 0) {
Eric Laurenta4f7e0e2012-06-07 17:16:09 -07004059 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
4060 writeFrames = mNormalFrameCount;
4061 memset(mMixBuffer, 0, mixBufferSize);
4062 } else {
4063 // flush remaining overflow buffers in output tracks
4064 writeFrames = 0;
Glenn Kasten952eeb22012-03-06 11:30:57 -08004065 }
Eric Laurenta4f7e0e2012-06-07 17:16:09 -07004066 sleepTime = 0;
Glenn Kasten952eeb22012-03-06 11:30:57 -08004067 }
Glenn Kasten000f0e32012-03-01 17:10:56 -08004068}
Mathias Agopian65ab4712010-07-14 17:59:35 -07004069
Glenn Kasten000f0e32012-03-01 17:10:56 -08004070void AudioFlinger::DuplicatingThread::threadLoop_write()
4071{
Glenn Kasten952eeb22012-03-06 11:30:57 -08004072 for (size_t i = 0; i < outputTracks.size(); i++) {
4073 outputTracks[i]->write(mMixBuffer, writeFrames);
4074 }
4075 mBytesWritten += mixBufferSize;
Glenn Kasten000f0e32012-03-01 17:10:56 -08004076}
Glenn Kasten688a6402012-02-29 07:57:06 -08004077
Glenn Kasten000f0e32012-03-01 17:10:56 -08004078void AudioFlinger::DuplicatingThread::threadLoop_standby()
4079{
Glenn Kasten952eeb22012-03-06 11:30:57 -08004080 // DuplicatingThread implements standby by stopping all tracks
4081 for (size_t i = 0; i < outputTracks.size(); i++) {
4082 outputTracks[i]->stop();
4083 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004084}
4085
Glenn Kastenfa26a852012-03-06 11:28:04 -08004086void AudioFlinger::DuplicatingThread::saveOutputTracks()
4087{
4088 outputTracks = mOutputTracks;
4089}
4090
4091void AudioFlinger::DuplicatingThread::clearOutputTracks()
4092{
4093 outputTracks.clear();
4094}
4095
Mathias Agopian65ab4712010-07-14 17:59:35 -07004096void AudioFlinger::DuplicatingThread::addOutputTrack(MixerThread *thread)
4097{
Glenn Kastenb6b74062012-02-24 14:12:20 -08004098 Mutex::Autolock _l(mLock);
Glenn Kasten99e53b82012-01-19 08:59:58 -08004099 // FIXME explain this formula
Glenn Kastene33054e2012-11-14 12:54:39 -08004100 size_t frameCount = (3 * mNormalFrameCount * mSampleRate) / thread->sampleRate();
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004101 OutputTrack *outputTrack = new OutputTrack(thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004102 this,
4103 mSampleRate,
4104 mFormat,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004105 mChannelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004106 frameCount);
4107 if (outputTrack->cblk() != NULL) {
Dima Zavinfce7a472011-04-19 22:30:36 -07004108 thread->setStreamVolume(AUDIO_STREAM_CNT, 1.0f);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004109 mOutputTracks.add(outputTrack);
Steve Block3856b092011-10-20 11:56:00 +01004110 ALOGV("addOutputTrack() track %p, on thread %p", outputTrack, thread);
Glenn Kasten438b0362012-03-06 11:24:48 -08004111 updateWaitTime_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07004112 }
4113}
4114
4115void AudioFlinger::DuplicatingThread::removeOutputTrack(MixerThread *thread)
4116{
4117 Mutex::Autolock _l(mLock);
4118 for (size_t i = 0; i < mOutputTracks.size(); i++) {
Glenn Kastena1117922012-01-26 10:53:32 -08004119 if (mOutputTracks[i]->thread() == thread) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004120 mOutputTracks[i]->destroy();
4121 mOutputTracks.removeAt(i);
Glenn Kasten438b0362012-03-06 11:24:48 -08004122 updateWaitTime_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07004123 return;
4124 }
4125 }
Steve Block3856b092011-10-20 11:56:00 +01004126 ALOGV("removeOutputTrack(): unkonwn thread: %p", thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004127}
4128
Glenn Kasten438b0362012-03-06 11:24:48 -08004129// caller must hold mLock
4130void AudioFlinger::DuplicatingThread::updateWaitTime_l()
Mathias Agopian65ab4712010-07-14 17:59:35 -07004131{
4132 mWaitTimeMs = UINT_MAX;
4133 for (size_t i = 0; i < mOutputTracks.size(); i++) {
4134 sp<ThreadBase> strong = mOutputTracks[i]->thread().promote();
Glenn Kasten7378ca52012-01-20 13:44:40 -08004135 if (strong != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004136 uint32_t waitTimeMs = (strong->frameCount() * 2 * 1000) / strong->sampleRate();
4137 if (waitTimeMs < mWaitTimeMs) {
4138 mWaitTimeMs = waitTimeMs;
4139 }
4140 }
4141 }
4142}
4143
4144
Glenn Kasten85ab62c2012-11-01 11:11:38 -07004145bool AudioFlinger::DuplicatingThread::outputsReady(
4146 const SortedVector< sp<OutputTrack> > &outputTracks)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004147{
4148 for (size_t i = 0; i < outputTracks.size(); i++) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004149 sp<ThreadBase> thread = outputTracks[i]->thread().promote();
Mathias Agopian65ab4712010-07-14 17:59:35 -07004150 if (thread == 0) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07004151 ALOGW("DuplicatingThread::outputsReady() could not promote thread on output track %p",
4152 outputTracks[i].get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004153 return false;
4154 }
4155 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
Glenn Kasten01542f22012-07-02 12:46:15 -07004156 // see note at standby() declaration
Mathias Agopian65ab4712010-07-14 17:59:35 -07004157 if (playbackThread->standby() && !playbackThread->isSuspended()) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07004158 ALOGV("DuplicatingThread output track %p on thread %p Not Ready", outputTracks[i].get(),
4159 thread.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004160 return false;
4161 }
4162 }
4163 return true;
4164}
4165
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08004166uint32_t AudioFlinger::DuplicatingThread::activeSleepTimeUs() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07004167{
4168 return (mWaitTimeMs * 1000) / 2;
4169}
4170
Glenn Kasten66fcab92012-02-24 14:59:21 -08004171void AudioFlinger::DuplicatingThread::cacheParameters_l()
4172{
4173 // updateWaitTime_l() sets mWaitTimeMs, which affects activeSleepTimeUs(), so call it first
4174 updateWaitTime_l();
4175
4176 MixerThread::cacheParameters_l();
4177}
4178
Mathias Agopian65ab4712010-07-14 17:59:35 -07004179// ----------------------------------------------------------------------------
4180
4181// TrackBase constructor must be called with AudioFlinger::mLock held
4182AudioFlinger::ThreadBase::TrackBase::TrackBase(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004183 ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004184 const sp<Client>& client,
4185 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08004186 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07004187 audio_channel_mask_t channelMask,
Glenn Kastene33054e2012-11-14 12:54:39 -08004188 size_t frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004189 const sp<IMemory>& sharedBuffer,
4190 int sessionId)
4191 : RefBase(),
4192 mThread(thread),
4193 mClient(client),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08004194 mCblk(NULL),
4195 // mBuffer
4196 // mBufferEnd
Glenn Kasten9f2016d2012-11-13 09:58:55 -08004197 mStepCount(0),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004198 mState(IDLE),
Glenn Kasten58912562012-04-03 10:45:00 -07004199 mSampleRate(sampleRate),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004200 mFormat(format),
Glenn Kasten60a83922012-06-21 12:56:37 -07004201 mChannelMask(channelMask),
4202 mChannelCount(popcount(channelMask)),
4203 mFrameSize(audio_is_linear_pcm(format) ?
4204 mChannelCount * audio_bytes_per_sample(format) : sizeof(int8_t)),
Glenn Kastenb6037442012-11-14 13:42:25 -08004205 mFrameCount(frameCount),
Glenn Kasten5cf034d2012-02-21 10:35:56 -08004206 mStepServerFailed(false),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004207 mSessionId(sessionId)
4208{
Glenn Kasten287fedb2012-11-05 13:39:09 -08004209 // client == 0 implies sharedBuffer == 0
4210 ALOG_ASSERT(!(client == 0 && sharedBuffer != 0));
4211
Glenn Kasten85ab62c2012-11-01 11:11:38 -07004212 ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(),
4213 sharedBuffer->size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004214
Steve Blockb8a80522011-12-20 16:23:08 +00004215 // ALOGD("Creating track with %d buffers @ %d bytes", bufferCount, bufferSize);
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004216 size_t size = sizeof(audio_track_cblk_t);
Glenn Kasten60a83922012-06-21 12:56:37 -07004217 size_t bufferSize = frameCount * mFrameSize;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004218 if (sharedBuffer == 0) {
4219 size += bufferSize;
4220 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004221
Glenn Kasten287fedb2012-11-05 13:39:09 -08004222 if (client != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004223 mCblkMemory = client->heap()->allocate(size);
4224 if (mCblkMemory != 0) {
4225 mCblk = static_cast<audio_track_cblk_t *>(mCblkMemory->pointer());
Glenn Kasten287fedb2012-11-05 13:39:09 -08004226 // can't assume mCblk != NULL
Mathias Agopian65ab4712010-07-14 17:59:35 -07004227 } else {
Steve Block29357bc2012-01-06 19:20:56 +00004228 ALOGE("not enough memory for AudioTrack size=%u", size);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004229 client->heap()->dump("AudioTrack");
4230 return;
4231 }
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004232 } else {
4233 mCblk = (audio_track_cblk_t *)(new uint8_t[size]);
Glenn Kasten287fedb2012-11-05 13:39:09 -08004234 // assume mCblk != NULL
4235 }
4236
4237 // construct the shared structure in-place.
4238 if (mCblk != NULL) {
Glenn Kastenea7939a2012-03-14 12:56:26 -07004239 new(mCblk) audio_track_cblk_t();
4240 // clear all buffers
Glenn Kastenb6037442012-11-14 13:42:25 -08004241 mCblk->frameCount_ = frameCount;
Glenn Kastenea7939a2012-03-14 12:56:26 -07004242 mCblk->sampleRate = sampleRate;
Marco Nelissena1472d92012-03-30 14:36:54 -07004243// uncomment the following lines to quickly test 32-bit wraparound
Glenn Kasten287fedb2012-11-05 13:39:09 -08004244// mCblk->user = 0xffff0000;
4245// mCblk->server = 0xffff0000;
4246// mCblk->userBase = 0xffff0000;
4247// mCblk->serverBase = 0xffff0000;
Glenn Kasten287fedb2012-11-05 13:39:09 -08004248 if (sharedBuffer == 0) {
4249 mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
Glenn Kasten60a83922012-06-21 12:56:37 -07004250 memset(mBuffer, 0, bufferSize);
Glenn Kasten287fedb2012-11-05 13:39:09 -08004251 // Force underrun condition to avoid false underrun callback until first data is
4252 // written to buffer (other flags are cleared)
4253 mCblk->flags = CBLK_UNDERRUN;
4254 } else {
4255 mBuffer = sharedBuffer->pointer();
4256 }
Glenn Kastenea7939a2012-03-14 12:56:26 -07004257 mBufferEnd = (uint8_t *)mBuffer + bufferSize;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004258 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004259}
4260
4261AudioFlinger::ThreadBase::TrackBase::~TrackBase()
4262{
Glenn Kastena0d68332012-01-27 16:47:15 -08004263 if (mCblk != NULL) {
Glenn Kasten1a0ae5b2012-02-03 10:24:48 -08004264 if (mClient == 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004265 delete mCblk;
Glenn Kasten1a0ae5b2012-02-03 10:24:48 -08004266 } else {
4267 mCblk->~audio_track_cblk_t(); // destroy our shared-structure.
Mathias Agopian65ab4712010-07-14 17:59:35 -07004268 }
4269 }
Glenn Kastendbfafaf2012-01-25 15:27:15 -08004270 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Glenn Kasten7378ca52012-01-20 13:44:40 -08004271 if (mClient != 0) {
Glenn Kasten84afa3b2012-01-25 15:28:08 -08004272 // Client destructor must run with AudioFlinger mutex locked
Mathias Agopian65ab4712010-07-14 17:59:35 -07004273 Mutex::Autolock _l(mClient->audioFlinger()->mLock);
Glenn Kasten7378ca52012-01-20 13:44:40 -08004274 // If the client's reference count drops to zero, the associated destructor
4275 // must run with AudioFlinger lock held. Thus the explicit clear() rather than
4276 // relying on the automatic clear() at end of scope.
Mathias Agopian65ab4712010-07-14 17:59:35 -07004277 mClient.clear();
4278 }
4279}
4280
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08004281// AudioBufferProvider interface
4282// getNextBuffer() = 0;
4283// This implementation of releaseBuffer() is used by Track and RecordTrack, but not TimedTrack
Mathias Agopian65ab4712010-07-14 17:59:35 -07004284void AudioFlinger::ThreadBase::TrackBase::releaseBuffer(AudioBufferProvider::Buffer* buffer)
4285{
Glenn Kastene0feee32011-12-13 11:53:26 -08004286 buffer->raw = NULL;
Glenn Kasten9f2016d2012-11-13 09:58:55 -08004287 mStepCount = buffer->frameCount;
Glenn Kasten288ed212012-04-25 17:52:27 -07004288 // FIXME See note at getNextBuffer()
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08004289 (void) step(); // ignore return value of step()
Mathias Agopian65ab4712010-07-14 17:59:35 -07004290 buffer->frameCount = 0;
4291}
4292
4293bool AudioFlinger::ThreadBase::TrackBase::step() {
4294 bool result;
4295 audio_track_cblk_t* cblk = this->cblk();
4296
Glenn Kastenb6037442012-11-14 13:42:25 -08004297 result = cblk->stepServer(mStepCount, mFrameCount, isOut());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004298 if (!result) {
Steve Block3856b092011-10-20 11:56:00 +01004299 ALOGV("stepServer failed acquiring cblk mutex");
Glenn Kasten5cf034d2012-02-21 10:35:56 -08004300 mStepServerFailed = true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004301 }
4302 return result;
4303}
4304
4305void AudioFlinger::ThreadBase::TrackBase::reset() {
4306 audio_track_cblk_t* cblk = this->cblk();
4307
4308 cblk->user = 0;
4309 cblk->server = 0;
4310 cblk->userBase = 0;
4311 cblk->serverBase = 0;
Glenn Kasten5cf034d2012-02-21 10:35:56 -08004312 mStepServerFailed = false;
Steve Block3856b092011-10-20 11:56:00 +01004313 ALOGV("TrackBase::reset");
Mathias Agopian65ab4712010-07-14 17:59:35 -07004314}
4315
Glenn Kasten3b16c762012-11-14 08:44:39 -08004316uint32_t AudioFlinger::ThreadBase::TrackBase::sampleRate() const {
4317 return mCblk->sampleRate;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004318}
4319
Mathias Agopian65ab4712010-07-14 17:59:35 -07004320void* AudioFlinger::ThreadBase::TrackBase::getBuffer(uint32_t offset, uint32_t frames) const {
4321 audio_track_cblk_t* cblk = this->cblk();
Glenn Kasten60a83922012-06-21 12:56:37 -07004322 int8_t *bufferStart = (int8_t *)mBuffer + (offset-cblk->serverBase) * mFrameSize;
4323 int8_t *bufferEnd = bufferStart + frames * mFrameSize;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004324
4325 // Check validity of returned pointer in case the track control block would have been corrupted.
Jean-Michel Triviacb86cc2012-04-16 12:43:57 -07004326 ALOG_ASSERT(!(bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd),
4327 "TrackBase::getBuffer buffer out of range:\n"
4328 " start: %p, end %p , mBuffer %p mBufferEnd %p\n"
Glenn Kasten60a83922012-06-21 12:56:37 -07004329 " server %u, serverBase %u, user %u, userBase %u, frameSize %u",
Mathias Agopian65ab4712010-07-14 17:59:35 -07004330 bufferStart, bufferEnd, mBuffer, mBufferEnd,
Glenn Kasten60a83922012-06-21 12:56:37 -07004331 cblk->server, cblk->serverBase, cblk->user, cblk->userBase, mFrameSize);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004332
4333 return bufferStart;
4334}
4335
Eric Laurenta011e352012-03-29 15:51:43 -07004336status_t AudioFlinger::ThreadBase::TrackBase::setSyncEvent(const sp<SyncEvent>& event)
4337{
4338 mSyncEvents.add(event);
4339 return NO_ERROR;
4340}
4341
Mathias Agopian65ab4712010-07-14 17:59:35 -07004342// ----------------------------------------------------------------------------
4343
4344// Track constructor must be called with AudioFlinger::mLock and ThreadBase::mLock held
4345AudioFlinger::PlaybackThread::Track::Track(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004346 PlaybackThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004347 const sp<Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -08004348 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004349 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08004350 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07004351 audio_channel_mask_t channelMask,
Glenn Kastene33054e2012-11-14 12:54:39 -08004352 size_t frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004353 const sp<IMemory>& sharedBuffer,
Glenn Kasten73d22752012-03-19 13:38:30 -07004354 int sessionId,
4355 IAudioFlinger::track_flags_t flags)
Glenn Kasten85ab62c2012-11-01 11:11:38 -07004356 : TrackBase(thread, client, sampleRate, format, channelMask, frameCount, sharedBuffer,
4357 sessionId),
Glenn Kastenf9959012012-03-19 11:14:37 -07004358 mMute(false),
Glenn Kasten58912562012-04-03 10:45:00 -07004359 mFillingUpStatus(FS_INVALID),
Glenn Kastenf9959012012-03-19 11:14:37 -07004360 // mRetryCount initialized later when needed
4361 mSharedBuffer(sharedBuffer),
4362 mStreamType(streamType),
4363 mName(-1), // see note below
4364 mMainBuffer(thread->mixBuffer()),
4365 mAuxBuffer(NULL),
Eric Laurenta011e352012-03-29 15:51:43 -07004366 mAuxEffectId(0), mHasVolumeController(false),
Glenn Kasten73d22752012-03-19 13:38:30 -07004367 mPresentationCompleteFrames(0),
Glenn Kasten58912562012-04-03 10:45:00 -07004368 mFlags(flags),
4369 mFastIndex(-1),
Glenn Kasten288ed212012-04-25 17:52:27 -07004370 mUnderrunCount(0),
Glenn Kasten58912562012-04-03 10:45:00 -07004371 mCachedVolume(1.0)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004372{
4373 if (mCblk != NULL) {
Glenn Kasten893a0542012-05-30 10:32:06 -07004374 // to avoid leaking a track name, do not allocate one unless there is an mCblk
Jean-Michel Trivife3156e2012-09-10 18:58:27 -07004375 mName = thread->getTrackName_l(channelMask, sessionId);
Glenn Kasten0c9d26d2012-05-31 14:35:01 -07004376 mCblk->mName = mName;
Glenn Kasten893a0542012-05-30 10:32:06 -07004377 if (mName < 0) {
4378 ALOGE("no more track names available");
4379 return;
4380 }
4381 // only allocate a fast track index if we were able to allocate a normal track name
Glenn Kasten58912562012-04-03 10:45:00 -07004382 if (flags & IAudioFlinger::TRACK_FAST) {
Glenn Kasten58912562012-04-03 10:45:00 -07004383 ALOG_ASSERT(thread->mFastTrackAvailMask != 0);
4384 int i = __builtin_ctz(thread->mFastTrackAvailMask);
Eric Laurent29864602012-05-08 18:57:51 -07004385 ALOG_ASSERT(0 < i && i < (int)FastMixerState::kMaxFastTracks);
Glenn Kasten288ed212012-04-25 17:52:27 -07004386 // FIXME This is too eager. We allocate a fast track index before the
4387 // fast track becomes active. Since fast tracks are a scarce resource,
4388 // this means we are potentially denying other more important fast tracks from
4389 // being created. It would be better to allocate the index dynamically.
Glenn Kasten58912562012-04-03 10:45:00 -07004390 mFastIndex = i;
Glenn Kasten0c9d26d2012-05-31 14:35:01 -07004391 mCblk->mName = i;
Glenn Kasten288ed212012-04-25 17:52:27 -07004392 // Read the initial underruns because this field is never cleared by the fast mixer
Glenn Kasten09474df2012-05-10 14:48:07 -07004393 mObservedUnderruns = thread->getFastTrackUnderruns(i);
Glenn Kasten58912562012-04-03 10:45:00 -07004394 thread->mFastTrackAvailMask &= ~(1 << i);
Glenn Kasten58912562012-04-03 10:45:00 -07004395 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004396 }
Glenn Kasten85ab62c2012-11-01 11:11:38 -07004397 ALOGV("Track constructor name %d, calling pid %d", mName,
4398 IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004399}
4400
4401AudioFlinger::PlaybackThread::Track::~Track()
4402{
Steve Block3856b092011-10-20 11:56:00 +01004403 ALOGV("PlaybackThread::Track destructor");
Mathias Agopian65ab4712010-07-14 17:59:35 -07004404}
4405
4406void AudioFlinger::PlaybackThread::Track::destroy()
4407{
4408 // NOTE: destroyTrack_l() can remove a strong reference to this Track
4409 // by removing it from mTracks vector, so there is a risk that this Tracks's
Glenn Kasten99e53b82012-01-19 08:59:58 -08004410 // destructor is called. As the destructor needs to lock mLock,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004411 // we must acquire a strong reference on this Track before locking mLock
4412 // here so that the destructor is called only when exiting this function.
4413 // On the other hand, as long as Track::destroy() is only called by
4414 // TrackHandle destructor, the TrackHandle still holds a strong ref on
4415 // this Track with its member mTrack.
4416 sp<Track> keep(this);
4417 { // scope for mLock
4418 sp<ThreadBase> thread = mThread.promote();
4419 if (thread != 0) {
4420 if (!isOutputTrack()) {
4421 if (mState == ACTIVE || mState == RESUMING) {
Glenn Kasten02bbd202012-02-08 12:35:35 -08004422 AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
Gloria Wang9ee159b2011-02-24 14:51:45 -08004423
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004424#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08004425 // to track the speaker usage
4426 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004427#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07004428 }
4429 AudioSystem::releaseOutput(thread->id());
4430 }
4431 Mutex::Autolock _l(thread->mLock);
4432 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
4433 playbackThread->destroyTrack_l(this);
4434 }
4435 }
4436}
4437
Glenn Kasten288ed212012-04-25 17:52:27 -07004438/*static*/ void AudioFlinger::PlaybackThread::Track::appendDumpHeader(String8& result)
4439{
Glenn Kasten9f2016d2012-11-13 09:58:55 -08004440 result.append(" Name Client Type Fmt Chn mask Session StpCnt fCount S M F SRate "
Glenn Kasten85ab62c2012-11-01 11:11:38 -07004441 "L dB R dB Server User Main buf Aux Buf Flags Underruns\n");
Glenn Kasten288ed212012-04-25 17:52:27 -07004442}
4443
Mathias Agopian65ab4712010-07-14 17:59:35 -07004444void AudioFlinger::PlaybackThread::Track::dump(char* buffer, size_t size)
4445{
Glenn Kasten83d86532012-01-17 14:39:34 -08004446 uint32_t vlr = mCblk->getVolumeLR();
Glenn Kasten58912562012-04-03 10:45:00 -07004447 if (isFastTrack()) {
Glenn Kasten288ed212012-04-25 17:52:27 -07004448 sprintf(buffer, " F %2d", mFastIndex);
Glenn Kasten58912562012-04-03 10:45:00 -07004449 } else {
4450 sprintf(buffer, " %4d", mName - AudioMixer::TRACK0);
4451 }
Glenn Kasten288ed212012-04-25 17:52:27 -07004452 track_state state = mState;
4453 char stateChar;
4454 switch (state) {
4455 case IDLE:
4456 stateChar = 'I';
4457 break;
4458 case TERMINATED:
4459 stateChar = 'T';
4460 break;
Glenn Kastend08f48c2012-05-01 18:14:02 -07004461 case STOPPING_1:
4462 stateChar = 's';
4463 break;
4464 case STOPPING_2:
4465 stateChar = '5';
4466 break;
Glenn Kasten288ed212012-04-25 17:52:27 -07004467 case STOPPED:
4468 stateChar = 'S';
4469 break;
4470 case RESUMING:
4471 stateChar = 'R';
4472 break;
4473 case ACTIVE:
4474 stateChar = 'A';
4475 break;
4476 case PAUSING:
4477 stateChar = 'p';
4478 break;
4479 case PAUSED:
4480 stateChar = 'P';
4481 break;
Eric Laurent29864602012-05-08 18:57:51 -07004482 case FLUSHED:
4483 stateChar = 'F';
4484 break;
Glenn Kasten288ed212012-04-25 17:52:27 -07004485 default:
4486 stateChar = '?';
4487 break;
4488 }
Glenn Kasten09474df2012-05-10 14:48:07 -07004489 char nowInUnderrun;
4490 switch (mObservedUnderruns.mBitFields.mMostRecent) {
4491 case UNDERRUN_FULL:
4492 nowInUnderrun = ' ';
4493 break;
4494 case UNDERRUN_PARTIAL:
4495 nowInUnderrun = '<';
4496 break;
4497 case UNDERRUN_EMPTY:
4498 nowInUnderrun = '*';
4499 break;
4500 default:
4501 nowInUnderrun = '?';
4502 break;
4503 }
Glenn Kastene213c862012-04-25 13:46:15 -07004504 snprintf(&buffer[7], size-7, " %6d %4u %3u 0x%08x %7u %6u %6u %1c %1d %1d %5u %5.2g %5.2g "
4505 "0x%08x 0x%08x 0x%08x 0x%08x %#5x %9u%c\n",
Glenn Kasten44deb052012-02-05 18:09:08 -08004506 (mClient == 0) ? getpid_cached : mClient->pid(),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004507 mStreamType,
4508 mFormat,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07004509 mChannelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004510 mSessionId,
Glenn Kasten9f2016d2012-11-13 09:58:55 -08004511 mStepCount,
Glenn Kastenb6037442012-11-14 13:42:25 -08004512 mFrameCount,
Glenn Kasten288ed212012-04-25 17:52:27 -07004513 stateChar,
Mathias Agopian65ab4712010-07-14 17:59:35 -07004514 mMute,
4515 mFillingUpStatus,
4516 mCblk->sampleRate,
Glenn Kasten58912562012-04-03 10:45:00 -07004517 20.0 * log10((vlr & 0xFFFF) / 4096.0),
4518 20.0 * log10((vlr >> 16) / 4096.0),
Mathias Agopian65ab4712010-07-14 17:59:35 -07004519 mCblk->server,
4520 mCblk->user,
4521 (int)mMainBuffer,
Glenn Kasten288ed212012-04-25 17:52:27 -07004522 (int)mAuxBuffer,
Glenn Kastene213c862012-04-25 13:46:15 -07004523 mCblk->flags,
Glenn Kasten288ed212012-04-25 17:52:27 -07004524 mUnderrunCount,
Glenn Kasten09474df2012-05-10 14:48:07 -07004525 nowInUnderrun);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004526}
4527
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08004528// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08004529status_t AudioFlinger::PlaybackThread::Track::getNextBuffer(
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004530 AudioBufferProvider::Buffer* buffer, int64_t pts)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004531{
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004532 audio_track_cblk_t* cblk = this->cblk();
4533 uint32_t framesReady;
4534 uint32_t framesReq = buffer->frameCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004535
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004536 // Check if last stepServer failed, try to step now
4537 if (mStepServerFailed) {
Glenn Kasten288ed212012-04-25 17:52:27 -07004538 // FIXME When called by fast mixer, this takes a mutex with tryLock().
4539 // Since the fast mixer is higher priority than client callback thread,
4540 // it does not result in priority inversion for client.
4541 // But a non-blocking solution would be preferable to avoid
4542 // fast mixer being unable to tryLock(), and
4543 // to avoid the extra context switches if the client wakes up,
4544 // discovers the mutex is locked, then has to wait for fast mixer to unlock.
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004545 if (!step()) goto getNextBuffer_exit;
4546 ALOGV("stepServer recovered");
4547 mStepServerFailed = false;
4548 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004549
Glenn Kasten288ed212012-04-25 17:52:27 -07004550 // FIXME Same as above
Glenn Kasten864585d2012-11-06 16:15:41 -08004551 framesReady = cblk->framesReadyOut();
Mathias Agopian65ab4712010-07-14 17:59:35 -07004552
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004553 if (CC_LIKELY(framesReady)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004554 uint32_t s = cblk->server;
Glenn Kastenb6037442012-11-14 13:42:25 -08004555 uint32_t bufferEnd = cblk->serverBase + mFrameCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004556
4557 bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
4558 if (framesReq > framesReady) {
4559 framesReq = framesReady;
4560 }
Marco Nelissena1472d92012-03-30 14:36:54 -07004561 if (framesReq > bufferEnd - s) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004562 framesReq = bufferEnd - s;
4563 }
4564
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004565 buffer->raw = getBuffer(s, framesReq);
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004566 buffer->frameCount = framesReq;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004567 return NO_ERROR;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004568 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004569
4570getNextBuffer_exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004571 buffer->raw = NULL;
4572 buffer->frameCount = 0;
4573 ALOGV("getNextBuffer() no more data for track %d on thread %p", mName, mThread.unsafe_get());
4574 return NOT_ENOUGH_DATA;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004575}
4576
Glenn Kasten288ed212012-04-25 17:52:27 -07004577// Note that framesReady() takes a mutex on the control block using tryLock().
4578// This could result in priority inversion if framesReady() is called by the normal mixer,
4579// as the normal mixer thread runs at lower
4580// priority than the client's callback thread: there is a short window within framesReady()
4581// during which the normal mixer could be preempted, and the client callback would block.
4582// Another problem can occur if framesReady() is called by the fast mixer:
4583// the tryLock() could block for up to 1 ms, and a sequence of these could delay fast mixer.
4584// FIXME Replace AudioTrackShared control block implementation by a non-blocking FIFO queue.
4585size_t AudioFlinger::PlaybackThread::Track::framesReady() const {
Glenn Kasten864585d2012-11-06 16:15:41 -08004586 return mCblk->framesReadyOut();
John Grossman4ff14ba2012-02-08 16:37:41 -08004587}
4588
Glenn Kasten288ed212012-04-25 17:52:27 -07004589// Don't call for fast tracks; the framesReady() could result in priority inversion
Mathias Agopian65ab4712010-07-14 17:59:35 -07004590bool AudioFlinger::PlaybackThread::Track::isReady() const {
Eric Laurentaf59ce22010-10-05 14:41:42 -07004591 if (mFillingUpStatus != FS_FILLING || isStopped() || isPausing()) return true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004592
Glenn Kastenb6037442012-11-14 13:42:25 -08004593 if (framesReady() >= mFrameCount ||
Glenn Kasten9c5fdd82012-11-05 13:38:15 -08004594 (mCblk->flags & CBLK_FORCEREADY)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004595 mFillingUpStatus = FS_FILLED;
Glenn Kasten9c5fdd82012-11-05 13:38:15 -08004596 android_atomic_and(~CBLK_FORCEREADY, &mCblk->flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004597 return true;
4598 }
4599 return false;
4600}
4601
Glenn Kasten3acbd052012-02-28 10:39:56 -08004602status_t AudioFlinger::PlaybackThread::Track::start(AudioSystem::sync_event_t event,
Eric Laurenta011e352012-03-29 15:51:43 -07004603 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07004604{
4605 status_t status = NO_ERROR;
Glenn Kasten58912562012-04-03 10:45:00 -07004606 ALOGV("start(%d), calling pid %d session %d",
4607 mName, IPCThreadState::self()->getCallingPid(), mSessionId);
Glenn Kasten3acbd052012-02-28 10:39:56 -08004608
Mathias Agopian65ab4712010-07-14 17:59:35 -07004609 sp<ThreadBase> thread = mThread.promote();
4610 if (thread != 0) {
4611 Mutex::Autolock _l(thread->mLock);
Glenn Kastenb853e982012-01-26 13:39:18 -08004612 track_state state = mState;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004613 // here the track could be either new, or restarted
4614 // in both cases "unstop" the track
4615 if (mState == PAUSED) {
4616 mState = TrackBase::RESUMING;
Steve Block3856b092011-10-20 11:56:00 +01004617 ALOGV("PAUSED => RESUMING (%d) on thread %p", mName, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004618 } else {
4619 mState = TrackBase::ACTIVE;
Steve Block3856b092011-10-20 11:56:00 +01004620 ALOGV("? => ACTIVE (%d) on thread %p", mName, this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004621 }
4622
4623 if (!isOutputTrack() && state != ACTIVE && state != RESUMING) {
4624 thread->mLock.unlock();
Glenn Kasten02bbd202012-02-08 12:35:35 -08004625 status = AudioSystem::startOutput(thread->id(), mStreamType, mSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004626 thread->mLock.lock();
Gloria Wang9ee159b2011-02-24 14:51:45 -08004627
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004628#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08004629 // to track the speaker usage
4630 if (status == NO_ERROR) {
4631 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStart);
4632 }
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004633#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07004634 }
4635 if (status == NO_ERROR) {
4636 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
4637 playbackThread->addTrack_l(this);
4638 } else {
4639 mState = state;
Eric Laurent29864602012-05-08 18:57:51 -07004640 triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004641 }
4642 } else {
4643 status = BAD_VALUE;
4644 }
4645 return status;
4646}
4647
4648void AudioFlinger::PlaybackThread::Track::stop()
4649{
Glenn Kasten23d82a92012-02-03 11:10:00 -08004650 ALOGV("stop(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004651 sp<ThreadBase> thread = mThread.promote();
4652 if (thread != 0) {
4653 Mutex::Autolock _l(thread->mLock);
Glenn Kastenb853e982012-01-26 13:39:18 -08004654 track_state state = mState;
Glenn Kastend08f48c2012-05-01 18:14:02 -07004655 if (state == RESUMING || state == ACTIVE || state == PAUSING || state == PAUSED) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004656 // If the track is not active (PAUSED and buffers full), flush buffers
4657 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
4658 if (playbackThread->mActiveTracks.indexOf(this) < 0) {
4659 reset();
Glenn Kastend08f48c2012-05-01 18:14:02 -07004660 mState = STOPPED;
4661 } else if (!isFastTrack()) {
4662 mState = STOPPED;
4663 } else {
4664 // prepareTracks_l() will set state to STOPPING_2 after next underrun,
4665 // and then to STOPPED and reset() when presentation is complete
4666 mState = STOPPING_1;
Mathias Agopian65ab4712010-07-14 17:59:35 -07004667 }
Glenn Kasten85ab62c2012-11-01 11:11:38 -07004668 ALOGV("not stopping/stopped => stopping/stopped (%d) on thread %p", mName,
4669 playbackThread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004670 }
4671 if (!isOutputTrack() && (state == ACTIVE || state == RESUMING)) {
4672 thread->mLock.unlock();
Glenn Kasten02bbd202012-02-08 12:35:35 -08004673 AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004674 thread->mLock.lock();
Gloria Wang9ee159b2011-02-24 14:51:45 -08004675
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004676#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08004677 // to track the speaker usage
4678 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004679#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07004680 }
4681 }
4682}
4683
4684void AudioFlinger::PlaybackThread::Track::pause()
4685{
Glenn Kasten23d82a92012-02-03 11:10:00 -08004686 ALOGV("pause(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004687 sp<ThreadBase> thread = mThread.promote();
4688 if (thread != 0) {
4689 Mutex::Autolock _l(thread->mLock);
4690 if (mState == ACTIVE || mState == RESUMING) {
4691 mState = PAUSING;
Steve Block3856b092011-10-20 11:56:00 +01004692 ALOGV("ACTIVE/RESUMING => PAUSING (%d) on thread %p", mName, thread.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07004693 if (!isOutputTrack()) {
4694 thread->mLock.unlock();
Glenn Kasten02bbd202012-02-08 12:35:35 -08004695 AudioSystem::stopOutput(thread->id(), mStreamType, mSessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004696 thread->mLock.lock();
Gloria Wang9ee159b2011-02-24 14:51:45 -08004697
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004698#ifdef ADD_BATTERY_DATA
Gloria Wang9ee159b2011-02-24 14:51:45 -08004699 // to track the speaker usage
4700 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
Glenn Kastend3cee2f2012-03-13 17:55:35 -07004701#endif
Mathias Agopian65ab4712010-07-14 17:59:35 -07004702 }
4703 }
4704 }
4705}
4706
4707void AudioFlinger::PlaybackThread::Track::flush()
4708{
Steve Block3856b092011-10-20 11:56:00 +01004709 ALOGV("flush(%d)", mName);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004710 sp<ThreadBase> thread = mThread.promote();
4711 if (thread != 0) {
4712 Mutex::Autolock _l(thread->mLock);
Glenn Kastend08f48c2012-05-01 18:14:02 -07004713 if (mState != STOPPING_1 && mState != STOPPING_2 && mState != STOPPED && mState != PAUSED &&
Glenn Kasten4bd7e542012-11-15 14:13:16 -08004714 mState != PAUSING && mState != IDLE && mState != FLUSHED) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07004715 return;
4716 }
4717 // No point remaining in PAUSED state after a flush => go to
Eric Laurent29864602012-05-08 18:57:51 -07004718 // FLUSHED state
4719 mState = FLUSHED;
Eric Laurent38ccae22011-03-28 18:37:07 -07004720 // do not reset the track if it is still in the process of being stopped or paused.
4721 // this will be done by prepareTracks_l() when the track is stopped.
Eric Laurent29864602012-05-08 18:57:51 -07004722 // prepareTracks_l() will see mState == FLUSHED, then
Glenn Kastend08f48c2012-05-01 18:14:02 -07004723 // remove from active track list, reset(), and trigger presentation complete
Eric Laurent38ccae22011-03-28 18:37:07 -07004724 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
4725 if (playbackThread->mActiveTracks.indexOf(this) < 0) {
4726 reset();
4727 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004728 }
4729}
4730
4731void AudioFlinger::PlaybackThread::Track::reset()
4732{
4733 // Do not reset twice to avoid discarding data written just after a flush and before
4734 // the audioflinger thread detects the track is stopped.
4735 if (!mResetDone) {
4736 TrackBase::reset();
4737 // Force underrun condition to avoid false underrun callback until first data is
4738 // written to buffer
Glenn Kasten9c5fdd82012-11-05 13:38:15 -08004739 android_atomic_and(~CBLK_FORCEREADY, &mCblk->flags);
4740 android_atomic_or(CBLK_UNDERRUN, &mCblk->flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004741 mFillingUpStatus = FS_FILLING;
4742 mResetDone = true;
Eric Laurent29864602012-05-08 18:57:51 -07004743 if (mState == FLUSHED) {
4744 mState = IDLE;
4745 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07004746 }
4747}
4748
4749void AudioFlinger::PlaybackThread::Track::mute(bool muted)
4750{
4751 mMute = muted;
4752}
4753
Mathias Agopian65ab4712010-07-14 17:59:35 -07004754status_t AudioFlinger::PlaybackThread::Track::attachAuxEffect(int EffectId)
4755{
4756 status_t status = DEAD_OBJECT;
4757 sp<ThreadBase> thread = mThread.promote();
4758 if (thread != 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004759 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
Eric Laurent717e1282012-06-29 16:36:52 -07004760 sp<AudioFlinger> af = mClient->audioFlinger();
4761
4762 Mutex::Autolock _l(af->mLock);
4763
4764 sp<PlaybackThread> srcThread = af->getEffectThread_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
Eric Laurent717e1282012-06-29 16:36:52 -07004765
Eric Laurent109347d2012-07-02 12:31:03 -07004766 if (EffectId != 0 && srcThread != 0 && playbackThread != srcThread.get()) {
Eric Laurent717e1282012-06-29 16:36:52 -07004767 Mutex::Autolock _dl(playbackThread->mLock);
4768 Mutex::Autolock _sl(srcThread->mLock);
4769 sp<EffectChain> chain = srcThread->getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
4770 if (chain == 0) {
4771 return INVALID_OPERATION;
4772 }
4773
4774 sp<EffectModule> effect = chain->getEffectFromId_l(EffectId);
4775 if (effect == 0) {
4776 return INVALID_OPERATION;
4777 }
4778 srcThread->removeEffect_l(effect);
4779 playbackThread->addEffect_l(effect);
4780 // removeEffect_l() has stopped the effect if it was active so it must be restarted
4781 if (effect->state() == EffectModule::ACTIVE ||
4782 effect->state() == EffectModule::STOPPING) {
4783 effect->start();
4784 }
4785
4786 sp<EffectChain> dstChain = effect->chain().promote();
4787 if (dstChain == 0) {
4788 srcThread->addEffect_l(effect);
4789 return INVALID_OPERATION;
4790 }
4791 AudioSystem::unregisterEffect(effect->id());
4792 AudioSystem::registerEffect(&effect->desc(),
4793 srcThread->id(),
4794 dstChain->strategy(),
4795 AUDIO_SESSION_OUTPUT_MIX,
4796 effect->id());
4797 }
Glenn Kastene53b9ea2012-03-12 16:29:55 -07004798 status = playbackThread->attachAuxEffect(this, EffectId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07004799 }
4800 return status;
4801}
4802
4803void AudioFlinger::PlaybackThread::Track::setAuxBuffer(int EffectId, int32_t *buffer)
4804{
4805 mAuxEffectId = EffectId;
4806 mAuxBuffer = buffer;
4807}
4808
Eric Laurenta011e352012-03-29 15:51:43 -07004809bool AudioFlinger::PlaybackThread::Track::presentationComplete(size_t framesWritten,
4810 size_t audioHalFrames)
4811{
4812 // a track is considered presented when the total number of frames written to audio HAL
4813 // corresponds to the number of frames written when presentationComplete() is called for the
4814 // first time (mPresentationCompleteFrames == 0) plus the buffer filling status at that time.
4815 if (mPresentationCompleteFrames == 0) {
4816 mPresentationCompleteFrames = framesWritten + audioHalFrames;
4817 ALOGV("presentationComplete() reset: mPresentationCompleteFrames %d audioHalFrames %d",
4818 mPresentationCompleteFrames, audioHalFrames);
4819 }
4820 if (framesWritten >= mPresentationCompleteFrames) {
4821 ALOGV("presentationComplete() session %d complete: framesWritten %d",
4822 mSessionId, framesWritten);
4823 triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
Eric Laurenta011e352012-03-29 15:51:43 -07004824 return true;
4825 }
4826 return false;
4827}
4828
4829void AudioFlinger::PlaybackThread::Track::triggerEvents(AudioSystem::sync_event_t type)
4830{
4831 for (int i = 0; i < (int)mSyncEvents.size(); i++) {
4832 if (mSyncEvents[i]->type() == type) {
4833 mSyncEvents[i]->trigger();
4834 mSyncEvents.removeAt(i);
4835 i--;
4836 }
4837 }
4838}
4839
Glenn Kasten58912562012-04-03 10:45:00 -07004840// implement VolumeBufferProvider interface
4841
4842uint32_t AudioFlinger::PlaybackThread::Track::getVolumeLR()
4843{
4844 // called by FastMixer, so not allowed to take any locks, block, or do I/O including logs
4845 ALOG_ASSERT(isFastTrack() && (mCblk != NULL));
4846 uint32_t vlr = mCblk->getVolumeLR();
4847 uint32_t vl = vlr & 0xFFFF;
4848 uint32_t vr = vlr >> 16;
4849 // track volumes come from shared memory, so can't be trusted and must be clamped
4850 if (vl > MAX_GAIN_INT) {
4851 vl = MAX_GAIN_INT;
4852 }
4853 if (vr > MAX_GAIN_INT) {
4854 vr = MAX_GAIN_INT;
4855 }
4856 // now apply the cached master volume and stream type volume;
4857 // this is trusted but lacks any synchronization or barrier so may be stale
4858 float v = mCachedVolume;
4859 vl *= v;
4860 vr *= v;
4861 // re-combine into U4.16
4862 vlr = (vr << 16) | (vl & 0xFFFF);
4863 // FIXME look at mute, pause, and stop flags
4864 return vlr;
4865}
Eric Laurenta011e352012-03-29 15:51:43 -07004866
Eric Laurent29864602012-05-08 18:57:51 -07004867status_t AudioFlinger::PlaybackThread::Track::setSyncEvent(const sp<SyncEvent>& event)
4868{
4869 if (mState == TERMINATED || mState == PAUSED ||
4870 ((framesReady() == 0) && ((mSharedBuffer != 0) ||
4871 (mState == STOPPED)))) {
4872 ALOGW("Track::setSyncEvent() in invalid state %d on session %d %s mode, framesReady %d ",
4873 mState, mSessionId, (mSharedBuffer != 0) ? "static" : "stream", framesReady());
4874 event->cancel();
4875 return INVALID_OPERATION;
4876 }
Glenn Kastend23eedc2012-08-02 13:35:47 -07004877 (void) TrackBase::setSyncEvent(event);
Eric Laurent29864602012-05-08 18:57:51 -07004878 return NO_ERROR;
4879}
4880
Glenn Kasten864585d2012-11-06 16:15:41 -08004881bool AudioFlinger::PlaybackThread::Track::isOut() const
4882{
4883 return true;
4884}
4885
John Grossman4ff14ba2012-02-08 16:37:41 -08004886// timed audio tracks
4887
4888sp<AudioFlinger::PlaybackThread::TimedTrack>
4889AudioFlinger::PlaybackThread::TimedTrack::create(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004890 PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -08004891 const sp<Client>& client,
4892 audio_stream_type_t streamType,
4893 uint32_t sampleRate,
4894 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07004895 audio_channel_mask_t channelMask,
Glenn Kastene33054e2012-11-14 12:54:39 -08004896 size_t frameCount,
John Grossman4ff14ba2012-02-08 16:37:41 -08004897 const sp<IMemory>& sharedBuffer,
4898 int sessionId) {
4899 if (!client->reserveTimedTrack())
Glenn Kastend5903ec2012-03-18 10:33:27 -07004900 return 0;
John Grossman4ff14ba2012-02-08 16:37:41 -08004901
Glenn Kastena0356762012-03-19 10:38:51 -07004902 return new TimedTrack(
John Grossman4ff14ba2012-02-08 16:37:41 -08004903 thread, client, streamType, sampleRate, format, channelMask, frameCount,
4904 sharedBuffer, sessionId);
John Grossman4ff14ba2012-02-08 16:37:41 -08004905}
4906
4907AudioFlinger::PlaybackThread::TimedTrack::TimedTrack(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08004908 PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -08004909 const sp<Client>& client,
4910 audio_stream_type_t streamType,
4911 uint32_t sampleRate,
4912 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07004913 audio_channel_mask_t channelMask,
Glenn Kastene33054e2012-11-14 12:54:39 -08004914 size_t frameCount,
John Grossman4ff14ba2012-02-08 16:37:41 -08004915 const sp<IMemory>& sharedBuffer,
4916 int sessionId)
4917 : Track(thread, client, streamType, sampleRate, format, channelMask,
Glenn Kasten73d22752012-03-19 13:38:30 -07004918 frameCount, sharedBuffer, sessionId, IAudioFlinger::TRACK_TIMED),
John Grossman9fbdee12012-03-26 17:51:46 -07004919 mQueueHeadInFlight(false),
4920 mTrimQueueHeadOnRelease(false),
John Grossman1c345192012-03-27 14:00:17 -07004921 mFramesPendingInQueue(0),
John Grossman4ff14ba2012-02-08 16:37:41 -08004922 mTimedSilenceBuffer(NULL),
4923 mTimedSilenceBufferSize(0),
4924 mTimedAudioOutputOnTime(false),
4925 mMediaTimeTransformValid(false)
4926{
4927 LocalClock lc;
4928 mLocalTimeFreq = lc.getLocalFreq();
4929
4930 mLocalTimeToSampleTransform.a_zero = 0;
4931 mLocalTimeToSampleTransform.b_zero = 0;
4932 mLocalTimeToSampleTransform.a_to_b_numer = sampleRate;
4933 mLocalTimeToSampleTransform.a_to_b_denom = mLocalTimeFreq;
4934 LinearTransform::reduce(&mLocalTimeToSampleTransform.a_to_b_numer,
4935 &mLocalTimeToSampleTransform.a_to_b_denom);
John Grossman9fbdee12012-03-26 17:51:46 -07004936
4937 mMediaTimeToSampleTransform.a_zero = 0;
4938 mMediaTimeToSampleTransform.b_zero = 0;
4939 mMediaTimeToSampleTransform.a_to_b_numer = sampleRate;
4940 mMediaTimeToSampleTransform.a_to_b_denom = 1000000;
4941 LinearTransform::reduce(&mMediaTimeToSampleTransform.a_to_b_numer,
4942 &mMediaTimeToSampleTransform.a_to_b_denom);
John Grossman4ff14ba2012-02-08 16:37:41 -08004943}
4944
4945AudioFlinger::PlaybackThread::TimedTrack::~TimedTrack() {
4946 mClient->releaseTimedTrack();
4947 delete [] mTimedSilenceBuffer;
4948}
4949
4950status_t AudioFlinger::PlaybackThread::TimedTrack::allocateTimedBuffer(
4951 size_t size, sp<IMemory>* buffer) {
4952
4953 Mutex::Autolock _l(mTimedBufferQueueLock);
4954
4955 trimTimedBufferQueue_l();
4956
4957 // lazily initialize the shared memory heap for timed buffers
4958 if (mTimedMemoryDealer == NULL) {
4959 const int kTimedBufferHeapSize = 512 << 10;
4960
4961 mTimedMemoryDealer = new MemoryDealer(kTimedBufferHeapSize,
4962 "AudioFlingerTimed");
4963 if (mTimedMemoryDealer == NULL)
4964 return NO_MEMORY;
4965 }
4966
4967 sp<IMemory> newBuffer = mTimedMemoryDealer->allocate(size);
4968 if (newBuffer == NULL) {
4969 newBuffer = mTimedMemoryDealer->allocate(size);
4970 if (newBuffer == NULL)
4971 return NO_MEMORY;
4972 }
4973
4974 *buffer = newBuffer;
4975 return NO_ERROR;
4976}
4977
4978// caller must hold mTimedBufferQueueLock
4979void AudioFlinger::PlaybackThread::TimedTrack::trimTimedBufferQueue_l() {
4980 int64_t mediaTimeNow;
4981 {
4982 Mutex::Autolock mttLock(mMediaTimeTransformLock);
4983 if (!mMediaTimeTransformValid)
4984 return;
4985
4986 int64_t targetTimeNow;
4987 status_t res = (mMediaTimeTransformTarget == TimedAudioTrack::COMMON_TIME)
4988 ? mCCHelper.getCommonTime(&targetTimeNow)
4989 : mCCHelper.getLocalTime(&targetTimeNow);
4990
4991 if (OK != res)
4992 return;
4993
4994 if (!mMediaTimeTransform.doReverseTransform(targetTimeNow,
4995 &mediaTimeNow)) {
4996 return;
4997 }
4998 }
4999
John Grossman1c345192012-03-27 14:00:17 -07005000 size_t trimEnd;
5001 for (trimEnd = 0; trimEnd < mTimedBufferQueue.size(); trimEnd++) {
John Grossman9fbdee12012-03-26 17:51:46 -07005002 int64_t bufEnd;
5003
John Grossmanc95cfbb2012-04-12 11:53:11 -07005004 if ((trimEnd + 1) < mTimedBufferQueue.size()) {
5005 // We have a next buffer. Just use its PTS as the PTS of the frame
5006 // following the last frame in this buffer. If the stream is sparse
5007 // (ie, there are deliberate gaps left in the stream which should be
5008 // filled with silence by the TimedAudioTrack), then this can result
5009 // in one extra buffer being left un-trimmed when it could have
5010 // been. In general, this is not typical, and we would rather
5011 // optimized away the TS calculation below for the more common case
5012 // where PTSes are contiguous.
5013 bufEnd = mTimedBufferQueue[trimEnd + 1].pts();
5014 } else {
5015 // We have no next buffer. Compute the PTS of the frame following
5016 // the last frame in this buffer by computing the duration of of
5017 // this frame in media time units and adding it to the PTS of the
5018 // buffer.
5019 int64_t frameCount = mTimedBufferQueue[trimEnd].buffer()->size()
Glenn Kasten83a03822012-11-12 07:58:20 -08005020 / mFrameSize;
John Grossmanc95cfbb2012-04-12 11:53:11 -07005021
5022 if (!mMediaTimeToSampleTransform.doReverseTransform(frameCount,
5023 &bufEnd)) {
5024 ALOGE("Failed to convert frame count of %lld to media time"
5025 " duration" " (scale factor %d/%u) in %s",
5026 frameCount,
5027 mMediaTimeToSampleTransform.a_to_b_numer,
5028 mMediaTimeToSampleTransform.a_to_b_denom,
5029 __PRETTY_FUNCTION__);
5030 break;
5031 }
5032 bufEnd += mTimedBufferQueue[trimEnd].pts();
John Grossman9fbdee12012-03-26 17:51:46 -07005033 }
John Grossman9fbdee12012-03-26 17:51:46 -07005034
5035 if (bufEnd > mediaTimeNow)
5036 break;
5037
5038 // Is the buffer we want to use in the middle of a mix operation right
5039 // now? If so, don't actually trim it. Just wait for the releaseBuffer
5040 // from the mixer which should be coming back shortly.
John Grossman1c345192012-03-27 14:00:17 -07005041 if (!trimEnd && mQueueHeadInFlight) {
John Grossman9fbdee12012-03-26 17:51:46 -07005042 mTrimQueueHeadOnRelease = true;
5043 }
John Grossman4ff14ba2012-02-08 16:37:41 -08005044 }
5045
John Grossman9fbdee12012-03-26 17:51:46 -07005046 size_t trimStart = mTrimQueueHeadOnRelease ? 1 : 0;
John Grossman1c345192012-03-27 14:00:17 -07005047 if (trimStart < trimEnd) {
5048 // Update the bookkeeping for framesReady()
5049 for (size_t i = trimStart; i < trimEnd; ++i) {
5050 updateFramesPendingAfterTrim_l(mTimedBufferQueue[i], "trim");
5051 }
5052
5053 // Now actually remove the buffers from the queue.
5054 mTimedBufferQueue.removeItemsAt(trimStart, trimEnd);
John Grossman4ff14ba2012-02-08 16:37:41 -08005055 }
5056}
5057
John Grossman1c345192012-03-27 14:00:17 -07005058void AudioFlinger::PlaybackThread::TimedTrack::trimTimedBufferQueueHead_l(
5059 const char* logTag) {
John Grossmand3030da2012-04-12 11:56:36 -07005060 ALOG_ASSERT(mTimedBufferQueue.size() > 0,
5061 "%s called (reason \"%s\"), but timed buffer queue has no"
5062 " elements to trim.", __FUNCTION__, logTag);
John Grossman1c345192012-03-27 14:00:17 -07005063
5064 updateFramesPendingAfterTrim_l(mTimedBufferQueue[0], logTag);
5065 mTimedBufferQueue.removeAt(0);
5066}
5067
5068void AudioFlinger::PlaybackThread::TimedTrack::updateFramesPendingAfterTrim_l(
5069 const TimedBuffer& buf,
5070 const char* logTag) {
5071 uint32_t bufBytes = buf.buffer()->size();
5072 uint32_t consumedAlready = buf.position();
5073
Eric Laurentb388e532012-04-14 13:32:48 -07005074 ALOG_ASSERT(consumedAlready <= bufBytes,
John Grossmand3030da2012-04-12 11:56:36 -07005075 "Bad bookkeeping while updating frames pending. Timed buffer is"
5076 " only %u bytes long, but claims to have consumed %u"
5077 " bytes. (update reason: \"%s\")",
Eric Laurentb388e532012-04-14 13:32:48 -07005078 bufBytes, consumedAlready, logTag);
John Grossman1c345192012-03-27 14:00:17 -07005079
Glenn Kasten83a03822012-11-12 07:58:20 -08005080 uint32_t bufFrames = (bufBytes - consumedAlready) / mFrameSize;
John Grossmand3030da2012-04-12 11:56:36 -07005081 ALOG_ASSERT(mFramesPendingInQueue >= bufFrames,
5082 "Bad bookkeeping while updating frames pending. Should have at"
5083 " least %u queued frames, but we think we have only %u. (update"
5084 " reason: \"%s\")",
5085 bufFrames, mFramesPendingInQueue, logTag);
John Grossman1c345192012-03-27 14:00:17 -07005086
5087 mFramesPendingInQueue -= bufFrames;
5088}
5089
John Grossman4ff14ba2012-02-08 16:37:41 -08005090status_t AudioFlinger::PlaybackThread::TimedTrack::queueTimedBuffer(
5091 const sp<IMemory>& buffer, int64_t pts) {
5092
5093 {
5094 Mutex::Autolock mttLock(mMediaTimeTransformLock);
5095 if (!mMediaTimeTransformValid)
5096 return INVALID_OPERATION;
5097 }
5098
5099 Mutex::Autolock _l(mTimedBufferQueueLock);
5100
Glenn Kasten83a03822012-11-12 07:58:20 -08005101 uint32_t bufFrames = buffer->size() / mFrameSize;
John Grossman1c345192012-03-27 14:00:17 -07005102 mFramesPendingInQueue += bufFrames;
John Grossman4ff14ba2012-02-08 16:37:41 -08005103 mTimedBufferQueue.add(TimedBuffer(buffer, pts));
5104
5105 return NO_ERROR;
5106}
5107
5108status_t AudioFlinger::PlaybackThread::TimedTrack::setMediaTimeTransform(
5109 const LinearTransform& xform, TimedAudioTrack::TargetTimeline target) {
5110
John Grossman1c345192012-03-27 14:00:17 -07005111 ALOGVV("setMediaTimeTransform az=%lld bz=%lld n=%d d=%u tgt=%d",
5112 xform.a_zero, xform.b_zero, xform.a_to_b_numer, xform.a_to_b_denom,
5113 target);
John Grossman4ff14ba2012-02-08 16:37:41 -08005114
5115 if (!(target == TimedAudioTrack::LOCAL_TIME ||
5116 target == TimedAudioTrack::COMMON_TIME)) {
5117 return BAD_VALUE;
5118 }
5119
5120 Mutex::Autolock lock(mMediaTimeTransformLock);
5121 mMediaTimeTransform = xform;
5122 mMediaTimeTransformTarget = target;
5123 mMediaTimeTransformValid = true;
5124
5125 return NO_ERROR;
5126}
5127
5128#define min(a, b) ((a) < (b) ? (a) : (b))
5129
5130// implementation of getNextBuffer for tracks whose buffers have timestamps
5131status_t AudioFlinger::PlaybackThread::TimedTrack::getNextBuffer(
5132 AudioBufferProvider::Buffer* buffer, int64_t pts)
5133{
5134 if (pts == AudioBufferProvider::kInvalidPTS) {
Glenn Kastend5903ec2012-03-18 10:33:27 -07005135 buffer->raw = NULL;
John Grossman4ff14ba2012-02-08 16:37:41 -08005136 buffer->frameCount = 0;
John Grossman8d314b72012-04-19 12:08:17 -07005137 mTimedAudioOutputOnTime = false;
John Grossman4ff14ba2012-02-08 16:37:41 -08005138 return INVALID_OPERATION;
5139 }
5140
John Grossman4ff14ba2012-02-08 16:37:41 -08005141 Mutex::Autolock _l(mTimedBufferQueueLock);
5142
John Grossman9fbdee12012-03-26 17:51:46 -07005143 ALOG_ASSERT(!mQueueHeadInFlight,
5144 "getNextBuffer called without releaseBuffer!");
5145
John Grossman4ff14ba2012-02-08 16:37:41 -08005146 while (true) {
5147
5148 // if we have no timed buffers, then fail
5149 if (mTimedBufferQueue.isEmpty()) {
Glenn Kastend5903ec2012-03-18 10:33:27 -07005150 buffer->raw = NULL;
John Grossman4ff14ba2012-02-08 16:37:41 -08005151 buffer->frameCount = 0;
5152 return NOT_ENOUGH_DATA;
5153 }
5154
5155 TimedBuffer& head = mTimedBufferQueue.editItemAt(0);
5156
5157 // calculate the PTS of the head of the timed buffer queue expressed in
5158 // local time
5159 int64_t headLocalPTS;
5160 {
5161 Mutex::Autolock mttLock(mMediaTimeTransformLock);
5162
Glenn Kasten5798d4e2012-03-08 12:18:35 -08005163 ALOG_ASSERT(mMediaTimeTransformValid, "media time transform invalid");
John Grossman4ff14ba2012-02-08 16:37:41 -08005164
5165 if (mMediaTimeTransform.a_to_b_denom == 0) {
5166 // the transform represents a pause, so yield silence
John Grossman9fbdee12012-03-26 17:51:46 -07005167 timedYieldSilence_l(buffer->frameCount, buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08005168 return NO_ERROR;
5169 }
5170
5171 int64_t transformedPTS;
5172 if (!mMediaTimeTransform.doForwardTransform(head.pts(),
5173 &transformedPTS)) {
5174 // the transform failed. this shouldn't happen, but if it does
5175 // then just drop this buffer
5176 ALOGW("timedGetNextBuffer transform failed");
Glenn Kastend5903ec2012-03-18 10:33:27 -07005177 buffer->raw = NULL;
John Grossman4ff14ba2012-02-08 16:37:41 -08005178 buffer->frameCount = 0;
John Grossman1c345192012-03-27 14:00:17 -07005179 trimTimedBufferQueueHead_l("getNextBuffer; no transform");
John Grossman4ff14ba2012-02-08 16:37:41 -08005180 return NO_ERROR;
5181 }
5182
5183 if (mMediaTimeTransformTarget == TimedAudioTrack::COMMON_TIME) {
5184 if (OK != mCCHelper.commonTimeToLocalTime(transformedPTS,
5185 &headLocalPTS)) {
Glenn Kastend5903ec2012-03-18 10:33:27 -07005186 buffer->raw = NULL;
John Grossman4ff14ba2012-02-08 16:37:41 -08005187 buffer->frameCount = 0;
5188 return INVALID_OPERATION;
5189 }
5190 } else {
5191 headLocalPTS = transformedPTS;
5192 }
5193 }
5194
5195 // adjust the head buffer's PTS to reflect the portion of the head buffer
5196 // that has already been consumed
5197 int64_t effectivePTS = headLocalPTS +
Glenn Kasten83a03822012-11-12 07:58:20 -08005198 ((head.position() / mFrameSize) * mLocalTimeFreq / sampleRate());
John Grossman4ff14ba2012-02-08 16:37:41 -08005199
5200 // Calculate the delta in samples between the head of the input buffer
5201 // queue and the start of the next output buffer that will be written.
5202 // If the transformation fails because of over or underflow, it means
5203 // that the sample's position in the output stream is so far out of
5204 // whack that it should just be dropped.
5205 int64_t sampleDelta;
5206 if (llabs(effectivePTS - pts) >= (static_cast<int64_t>(1) << 31)) {
5207 ALOGV("*** head buffer is too far from PTS: dropped buffer");
John Grossman1c345192012-03-27 14:00:17 -07005208 trimTimedBufferQueueHead_l("getNextBuffer, buf pts too far from"
5209 " mix");
John Grossman4ff14ba2012-02-08 16:37:41 -08005210 continue;
5211 }
5212 if (!mLocalTimeToSampleTransform.doForwardTransform(
5213 (effectivePTS - pts) << 32, &sampleDelta)) {
John Grossmand3030da2012-04-12 11:56:36 -07005214 ALOGV("*** too late during sample rate transform: dropped buffer");
John Grossman1c345192012-03-27 14:00:17 -07005215 trimTimedBufferQueueHead_l("getNextBuffer, bad local to sample");
John Grossman4ff14ba2012-02-08 16:37:41 -08005216 continue;
5217 }
5218
John Grossman1c345192012-03-27 14:00:17 -07005219 ALOGVV("*** getNextBuffer head.pts=%lld head.pos=%d pts=%lld"
5220 " sampleDelta=[%d.%08x]",
5221 head.pts(), head.position(), pts,
5222 static_cast<int32_t>((sampleDelta >= 0 ? 0 : 1)
5223 + (sampleDelta >> 32)),
5224 static_cast<uint32_t>(sampleDelta & 0xFFFFFFFF));
John Grossman4ff14ba2012-02-08 16:37:41 -08005225
5226 // if the delta between the ideal placement for the next input sample and
5227 // the current output position is within this threshold, then we will
5228 // concatenate the next input samples to the previous output
5229 const int64_t kSampleContinuityThreshold =
John Grossman8d314b72012-04-19 12:08:17 -07005230 (static_cast<int64_t>(sampleRate()) << 32) / 250;
John Grossman4ff14ba2012-02-08 16:37:41 -08005231
5232 // if this is the first buffer of audio that we're emitting from this track
5233 // then it should be almost exactly on time.
5234 const int64_t kSampleStartupThreshold = 1LL << 32;
5235
5236 if ((mTimedAudioOutputOnTime && llabs(sampleDelta) <= kSampleContinuityThreshold) ||
John Grossman8d314b72012-04-19 12:08:17 -07005237 (!mTimedAudioOutputOnTime && llabs(sampleDelta) <= kSampleStartupThreshold)) {
John Grossman4ff14ba2012-02-08 16:37:41 -08005238 // the next input is close enough to being on time, so concatenate it
5239 // with the last output
John Grossman9fbdee12012-03-26 17:51:46 -07005240 timedYieldSamples_l(buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08005241
John Grossman1c345192012-03-27 14:00:17 -07005242 ALOGVV("*** on time: head.pos=%d frameCount=%u",
5243 head.position(), buffer->frameCount);
John Grossman4ff14ba2012-02-08 16:37:41 -08005244 return NO_ERROR;
John Grossman8d314b72012-04-19 12:08:17 -07005245 }
5246
5247 // Looks like our output is not on time. Reset our on timed status.
5248 // Next time we mix samples from our input queue, then should be within
5249 // the StartupThreshold.
5250 mTimedAudioOutputOnTime = false;
5251 if (sampleDelta > 0) {
John Grossman4ff14ba2012-02-08 16:37:41 -08005252 // the gap between the current output position and the proper start of
5253 // the next input sample is too big, so fill it with silence
5254 uint32_t framesUntilNextInput = (sampleDelta + 0x80000000) >> 32;
5255
John Grossman9fbdee12012-03-26 17:51:46 -07005256 timedYieldSilence_l(framesUntilNextInput, buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08005257 ALOGV("*** silence: frameCount=%u", buffer->frameCount);
5258 return NO_ERROR;
5259 } else {
5260 // the next input sample is late
5261 uint32_t lateFrames = static_cast<uint32_t>(-((sampleDelta + 0x80000000) >> 32));
5262 size_t onTimeSamplePosition =
Glenn Kasten83a03822012-11-12 07:58:20 -08005263 head.position() + lateFrames * mFrameSize;
John Grossman4ff14ba2012-02-08 16:37:41 -08005264
5265 if (onTimeSamplePosition > head.buffer()->size()) {
5266 // all the remaining samples in the head are too late, so
5267 // drop it and move on
5268 ALOGV("*** too late: dropped buffer");
John Grossman1c345192012-03-27 14:00:17 -07005269 trimTimedBufferQueueHead_l("getNextBuffer, dropped late buffer");
John Grossman4ff14ba2012-02-08 16:37:41 -08005270 continue;
5271 } else {
5272 // skip over the late samples
5273 head.setPosition(onTimeSamplePosition);
5274
5275 // yield the available samples
John Grossman9fbdee12012-03-26 17:51:46 -07005276 timedYieldSamples_l(buffer);
John Grossman4ff14ba2012-02-08 16:37:41 -08005277
5278 ALOGV("*** late: head.pos=%d frameCount=%u", head.position(), buffer->frameCount);
5279 return NO_ERROR;
5280 }
5281 }
5282 }
5283}
5284
5285// Yield samples from the timed buffer queue head up to the given output
5286// buffer's capacity.
5287//
5288// Caller must hold mTimedBufferQueueLock
John Grossman9fbdee12012-03-26 17:51:46 -07005289void AudioFlinger::PlaybackThread::TimedTrack::timedYieldSamples_l(
John Grossman4ff14ba2012-02-08 16:37:41 -08005290 AudioBufferProvider::Buffer* buffer) {
5291
5292 const TimedBuffer& head = mTimedBufferQueue[0];
5293
5294 buffer->raw = (static_cast<uint8_t*>(head.buffer()->pointer()) +
5295 head.position());
5296
5297 uint32_t framesLeftInHead = ((head.buffer()->size() - head.position()) /
Glenn Kasten83a03822012-11-12 07:58:20 -08005298 mFrameSize);
John Grossman4ff14ba2012-02-08 16:37:41 -08005299 size_t framesRequested = buffer->frameCount;
5300 buffer->frameCount = min(framesLeftInHead, framesRequested);
5301
John Grossman9fbdee12012-03-26 17:51:46 -07005302 mQueueHeadInFlight = true;
John Grossman4ff14ba2012-02-08 16:37:41 -08005303 mTimedAudioOutputOnTime = true;
5304}
5305
5306// Yield samples of silence up to the given output buffer's capacity
5307//
5308// Caller must hold mTimedBufferQueueLock
John Grossman9fbdee12012-03-26 17:51:46 -07005309void AudioFlinger::PlaybackThread::TimedTrack::timedYieldSilence_l(
John Grossman4ff14ba2012-02-08 16:37:41 -08005310 uint32_t numFrames, AudioBufferProvider::Buffer* buffer) {
5311
5312 // lazily allocate a buffer filled with silence
Glenn Kasten83a03822012-11-12 07:58:20 -08005313 if (mTimedSilenceBufferSize < numFrames * mFrameSize) {
John Grossman4ff14ba2012-02-08 16:37:41 -08005314 delete [] mTimedSilenceBuffer;
Glenn Kasten83a03822012-11-12 07:58:20 -08005315 mTimedSilenceBufferSize = numFrames * mFrameSize;
John Grossman4ff14ba2012-02-08 16:37:41 -08005316 mTimedSilenceBuffer = new uint8_t[mTimedSilenceBufferSize];
5317 memset(mTimedSilenceBuffer, 0, mTimedSilenceBufferSize);
5318 }
5319
5320 buffer->raw = mTimedSilenceBuffer;
5321 size_t framesRequested = buffer->frameCount;
5322 buffer->frameCount = min(numFrames, framesRequested);
5323
5324 mTimedAudioOutputOnTime = false;
5325}
5326
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08005327// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08005328void AudioFlinger::PlaybackThread::TimedTrack::releaseBuffer(
5329 AudioBufferProvider::Buffer* buffer) {
5330
5331 Mutex::Autolock _l(mTimedBufferQueueLock);
5332
John Grossmanfe5b3ba2012-02-12 17:51:21 -08005333 // If the buffer which was just released is part of the buffer at the head
5334 // of the queue, be sure to update the amt of the buffer which has been
5335 // consumed. If the buffer being returned is not part of the head of the
5336 // queue, its either because the buffer is part of the silence buffer, or
5337 // because the head of the timed queue was trimmed after the mixer called
5338 // getNextBuffer but before the mixer called releaseBuffer.
John Grossman9fbdee12012-03-26 17:51:46 -07005339 if (buffer->raw == mTimedSilenceBuffer) {
5340 ALOG_ASSERT(!mQueueHeadInFlight,
5341 "Queue head in flight during release of silence buffer!");
5342 goto done;
5343 }
5344
5345 ALOG_ASSERT(mQueueHeadInFlight,
5346 "TimedTrack::releaseBuffer of non-silence buffer, but no queue"
5347 " head in flight.");
5348
5349 if (mTimedBufferQueue.size()) {
John Grossman4ff14ba2012-02-08 16:37:41 -08005350 TimedBuffer& head = mTimedBufferQueue.editItemAt(0);
John Grossmanfe5b3ba2012-02-12 17:51:21 -08005351
5352 void* start = head.buffer()->pointer();
John Grossman9fbdee12012-03-26 17:51:46 -07005353 void* end = reinterpret_cast<void*>(
5354 reinterpret_cast<uint8_t*>(head.buffer()->pointer())
5355 + head.buffer()->size());
John Grossmanfe5b3ba2012-02-12 17:51:21 -08005356
John Grossman9fbdee12012-03-26 17:51:46 -07005357 ALOG_ASSERT((buffer->raw >= start) && (buffer->raw < end),
5358 "released buffer not within the head of the timed buffer"
5359 " queue; qHead = [%p, %p], released buffer = %p",
5360 start, end, buffer->raw);
5361
5362 head.setPosition(head.position() +
Glenn Kasten83a03822012-11-12 07:58:20 -08005363 (buffer->frameCount * mFrameSize));
John Grossman9fbdee12012-03-26 17:51:46 -07005364 mQueueHeadInFlight = false;
5365
John Grossman1c345192012-03-27 14:00:17 -07005366 ALOG_ASSERT(mFramesPendingInQueue >= buffer->frameCount,
5367 "Bad bookkeeping during releaseBuffer! Should have at"
5368 " least %u queued frames, but we think we have only %u",
5369 buffer->frameCount, mFramesPendingInQueue);
5370
5371 mFramesPendingInQueue -= buffer->frameCount;
5372
John Grossman9fbdee12012-03-26 17:51:46 -07005373 if ((static_cast<size_t>(head.position()) >= head.buffer()->size())
5374 || mTrimQueueHeadOnRelease) {
John Grossman1c345192012-03-27 14:00:17 -07005375 trimTimedBufferQueueHead_l("releaseBuffer");
John Grossman9fbdee12012-03-26 17:51:46 -07005376 mTrimQueueHeadOnRelease = false;
John Grossman4ff14ba2012-02-08 16:37:41 -08005377 }
John Grossman9fbdee12012-03-26 17:51:46 -07005378 } else {
5379 LOG_FATAL("TimedTrack::releaseBuffer of non-silence buffer with no"
5380 " buffers in the timed buffer queue");
John Grossman4ff14ba2012-02-08 16:37:41 -08005381 }
5382
John Grossman9fbdee12012-03-26 17:51:46 -07005383done:
John Grossman4ff14ba2012-02-08 16:37:41 -08005384 buffer->raw = 0;
5385 buffer->frameCount = 0;
5386}
5387
Glenn Kasten288ed212012-04-25 17:52:27 -07005388size_t AudioFlinger::PlaybackThread::TimedTrack::framesReady() const {
John Grossman4ff14ba2012-02-08 16:37:41 -08005389 Mutex::Autolock _l(mTimedBufferQueueLock);
John Grossman1c345192012-03-27 14:00:17 -07005390 return mFramesPendingInQueue;
John Grossman4ff14ba2012-02-08 16:37:41 -08005391}
5392
5393AudioFlinger::PlaybackThread::TimedTrack::TimedBuffer::TimedBuffer()
5394 : mPTS(0), mPosition(0) {}
5395
5396AudioFlinger::PlaybackThread::TimedTrack::TimedBuffer::TimedBuffer(
5397 const sp<IMemory>& buffer, int64_t pts)
5398 : mBuffer(buffer), mPTS(pts), mPosition(0) {}
5399
Mathias Agopian65ab4712010-07-14 17:59:35 -07005400// ----------------------------------------------------------------------------
5401
5402// RecordTrack constructor must be called with AudioFlinger::mLock held
5403AudioFlinger::RecordThread::RecordTrack::RecordTrack(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08005404 RecordThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005405 const sp<Client>& client,
5406 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08005407 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07005408 audio_channel_mask_t channelMask,
Glenn Kastene33054e2012-11-14 12:54:39 -08005409 size_t frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005410 int sessionId)
5411 : TrackBase(thread, client, sampleRate, format,
Glenn Kasten5cf034d2012-02-21 10:35:56 -08005412 channelMask, frameCount, 0 /*sharedBuffer*/, sessionId),
Mathias Agopian65ab4712010-07-14 17:59:35 -07005413 mOverflow(false)
5414{
Glenn Kasten83a03822012-11-12 07:58:20 -08005415 ALOGV("RecordTrack constructor, size %d", (int)mBufferEnd - (int)mBuffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005416}
5417
5418AudioFlinger::RecordThread::RecordTrack::~RecordTrack()
5419{
Glenn Kasten510a3d62012-07-16 14:24:34 -07005420 ALOGV("%s", __func__);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005421}
5422
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08005423// AudioBufferProvider interface
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005424status_t AudioFlinger::RecordThread::RecordTrack::getNextBuffer(AudioBufferProvider::Buffer* buffer,
5425 int64_t pts)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005426{
5427 audio_track_cblk_t* cblk = this->cblk();
5428 uint32_t framesAvail;
5429 uint32_t framesReq = buffer->frameCount;
5430
Glenn Kastene53b9ea2012-03-12 16:29:55 -07005431 // Check if last stepServer failed, try to step now
Glenn Kasten5cf034d2012-02-21 10:35:56 -08005432 if (mStepServerFailed) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005433 if (!step()) goto getNextBuffer_exit;
Steve Block3856b092011-10-20 11:56:00 +01005434 ALOGV("stepServer recovered");
Glenn Kasten5cf034d2012-02-21 10:35:56 -08005435 mStepServerFailed = false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005436 }
5437
Glenn Kasten864585d2012-11-06 16:15:41 -08005438 // FIXME lock is not actually held, so overrun is possible
Glenn Kastenb6037442012-11-14 13:42:25 -08005439 framesAvail = cblk->framesAvailableIn_l(mFrameCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005440
Glenn Kastenf6b16782011-12-15 09:51:17 -08005441 if (CC_LIKELY(framesAvail)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005442 uint32_t s = cblk->server;
Glenn Kastenb6037442012-11-14 13:42:25 -08005443 uint32_t bufferEnd = cblk->serverBase + mFrameCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005444
5445 if (framesReq > framesAvail) {
5446 framesReq = framesAvail;
5447 }
Marco Nelissena1472d92012-03-30 14:36:54 -07005448 if (framesReq > bufferEnd - s) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005449 framesReq = bufferEnd - s;
5450 }
5451
5452 buffer->raw = getBuffer(s, framesReq);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005453 buffer->frameCount = framesReq;
5454 return NO_ERROR;
5455 }
5456
5457getNextBuffer_exit:
Glenn Kastene0feee32011-12-13 11:53:26 -08005458 buffer->raw = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005459 buffer->frameCount = 0;
5460 return NOT_ENOUGH_DATA;
5461}
5462
Glenn Kasten3acbd052012-02-28 10:39:56 -08005463status_t AudioFlinger::RecordThread::RecordTrack::start(AudioSystem::sync_event_t event,
Eric Laurenta011e352012-03-29 15:51:43 -07005464 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005465{
5466 sp<ThreadBase> thread = mThread.promote();
5467 if (thread != 0) {
5468 RecordThread *recordThread = (RecordThread *)thread.get();
Glenn Kasten3acbd052012-02-28 10:39:56 -08005469 return recordThread->start(this, event, triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005470 } else {
5471 return BAD_VALUE;
5472 }
5473}
5474
5475void AudioFlinger::RecordThread::RecordTrack::stop()
5476{
5477 sp<ThreadBase> thread = mThread.promote();
5478 if (thread != 0) {
5479 RecordThread *recordThread = (RecordThread *)thread.get();
Glenn Kasten1d491ff2012-07-16 14:28:13 -07005480 recordThread->mLock.lock();
5481 bool doStop = recordThread->stop_l(this);
5482 if (doStop) {
5483 TrackBase::reset();
5484 // Force overrun condition to avoid false overrun callback until first data is
5485 // read from buffer
Glenn Kasten9c5fdd82012-11-05 13:38:15 -08005486 android_atomic_or(CBLK_UNDERRUN, &mCblk->flags);
Glenn Kasten1d491ff2012-07-16 14:28:13 -07005487 }
5488 recordThread->mLock.unlock();
5489 if (doStop) {
5490 AudioSystem::stopInput(recordThread->id());
5491 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07005492 }
5493}
5494
Glenn Kasten510a3d62012-07-16 14:24:34 -07005495/*static*/ void AudioFlinger::RecordThread::RecordTrack::appendDumpHeader(String8& result)
5496{
Glenn Kasten9f2016d2012-11-13 09:58:55 -08005497 result.append(" Clien Fmt Chn mask Session Step S SRate Serv User FrameCount\n");
Glenn Kasten510a3d62012-07-16 14:24:34 -07005498}
5499
Mathias Agopian65ab4712010-07-14 17:59:35 -07005500void AudioFlinger::RecordThread::RecordTrack::dump(char* buffer, size_t size)
5501{
Jean-Michel Trivi52762412012-09-12 18:48:33 -07005502 snprintf(buffer, size, " %05d %03u 0x%08x %05d %04u %01d %05u %08x %08x %05d\n",
Glenn Kasten44deb052012-02-05 18:09:08 -08005503 (mClient == 0) ? getpid_cached : mClient->pid(),
Mathias Agopian65ab4712010-07-14 17:59:35 -07005504 mFormat,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07005505 mChannelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005506 mSessionId,
Glenn Kasten9f2016d2012-11-13 09:58:55 -08005507 mStepCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005508 mState,
5509 mCblk->sampleRate,
5510 mCblk->server,
Jean-Michel Trivi52762412012-09-12 18:48:33 -07005511 mCblk->user,
Glenn Kastenb6037442012-11-14 13:42:25 -08005512 mFrameCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005513}
5514
Glenn Kasten864585d2012-11-06 16:15:41 -08005515bool AudioFlinger::RecordThread::RecordTrack::isOut() const
5516{
5517 return false;
5518}
Mathias Agopian65ab4712010-07-14 17:59:35 -07005519
5520// ----------------------------------------------------------------------------
5521
5522AudioFlinger::PlaybackThread::OutputTrack::OutputTrack(
Glenn Kasten9eaa5572012-01-20 13:32:16 -08005523 PlaybackThread *playbackThread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005524 DuplicatingThread *sourceThread,
5525 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08005526 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07005527 audio_channel_mask_t channelMask,
Glenn Kastene33054e2012-11-14 12:54:39 -08005528 size_t frameCount)
Glenn Kasten73d22752012-03-19 13:38:30 -07005529 : Track(playbackThread, NULL, AUDIO_STREAM_CNT, sampleRate, format, channelMask, frameCount,
5530 NULL, 0, IAudioFlinger::TRACK_DEFAULT),
Glenn Kastenb929e412012-11-08 12:13:58 -08005531 mActive(false), mSourceThread(sourceThread), mBuffers(NULL)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005532{
5533
Mathias Agopian65ab4712010-07-14 17:59:35 -07005534 if (mCblk != NULL) {
Glenn Kastenb929e412012-11-08 12:13:58 -08005535 mBuffers = (char*)mCblk + sizeof(audio_track_cblk_t);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005536 mOutBuffer.frameCount = 0;
5537 playbackThread->mTracks.add(this);
Steve Block3856b092011-10-20 11:56:00 +01005538 ALOGV("OutputTrack constructor mCblk %p, mBuffer %p, mCblk->buffers %p, " \
Glenn Kasten3b16c762012-11-14 08:44:39 -08005539 "mCblk->frameCount %d, mCblk->sampleRate %u, mChannelMask 0x%08x mBufferEnd %p",
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07005540 mCblk, mBuffer, mCblk->buffers,
5541 mCblk->frameCount, mCblk->sampleRate, mChannelMask, mBufferEnd);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005542 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00005543 ALOGW("Error creating output track on thread %p", playbackThread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005544 }
5545}
5546
5547AudioFlinger::PlaybackThread::OutputTrack::~OutputTrack()
5548{
5549 clearBufferQueue();
5550}
5551
Glenn Kasten3acbd052012-02-28 10:39:56 -08005552status_t AudioFlinger::PlaybackThread::OutputTrack::start(AudioSystem::sync_event_t event,
Eric Laurenta011e352012-03-29 15:51:43 -07005553 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005554{
Glenn Kasten3acbd052012-02-28 10:39:56 -08005555 status_t status = Track::start(event, triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005556 if (status != NO_ERROR) {
5557 return status;
5558 }
5559
5560 mActive = true;
5561 mRetryCount = 127;
5562 return status;
5563}
5564
5565void AudioFlinger::PlaybackThread::OutputTrack::stop()
5566{
5567 Track::stop();
5568 clearBufferQueue();
5569 mOutBuffer.frameCount = 0;
5570 mActive = false;
5571}
5572
5573bool AudioFlinger::PlaybackThread::OutputTrack::write(int16_t* data, uint32_t frames)
5574{
5575 Buffer *pInBuffer;
5576 Buffer inBuffer;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07005577 uint32_t channelCount = mChannelCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005578 bool outputBufferFull = false;
5579 inBuffer.frameCount = frames;
5580 inBuffer.i16 = data;
5581
5582 uint32_t waitTimeLeftMs = mSourceThread->waitTimeMs();
5583
5584 if (!mActive && frames != 0) {
Glenn Kasten3acbd052012-02-28 10:39:56 -08005585 start();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005586 sp<ThreadBase> thread = mThread.promote();
5587 if (thread != 0) {
5588 MixerThread *mixerThread = (MixerThread *)thread.get();
Glenn Kastenb6037442012-11-14 13:42:25 -08005589 if (mFrameCount > frames){
Mathias Agopian65ab4712010-07-14 17:59:35 -07005590 if (mBufferQueue.size() < kMaxOverFlowBuffers) {
Glenn Kastenb6037442012-11-14 13:42:25 -08005591 uint32_t startFrames = (mFrameCount - frames);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005592 pInBuffer = new Buffer;
5593 pInBuffer->mBuffer = new int16_t[startFrames * channelCount];
5594 pInBuffer->frameCount = startFrames;
5595 pInBuffer->i16 = pInBuffer->mBuffer;
5596 memset(pInBuffer->raw, 0, startFrames * channelCount * sizeof(int16_t));
5597 mBufferQueue.add(pInBuffer);
5598 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00005599 ALOGW ("OutputTrack::write() %p no more buffers in queue", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005600 }
5601 }
5602 }
5603 }
5604
5605 while (waitTimeLeftMs) {
5606 // First write pending buffers, then new data
5607 if (mBufferQueue.size()) {
5608 pInBuffer = mBufferQueue.itemAt(0);
5609 } else {
5610 pInBuffer = &inBuffer;
5611 }
5612
5613 if (pInBuffer->frameCount == 0) {
5614 break;
5615 }
5616
5617 if (mOutBuffer.frameCount == 0) {
5618 mOutBuffer.frameCount = pInBuffer->frameCount;
5619 nsecs_t startTime = systemTime();
Glenn Kasten335787f2012-01-20 17:00:00 -08005620 if (obtainBuffer(&mOutBuffer, waitTimeLeftMs) == (status_t)NO_MORE_BUFFERS) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005621 ALOGV ("OutputTrack::write() %p thread %p no more output buffers", this,
5622 mThread.unsafe_get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07005623 outputBufferFull = true;
5624 break;
5625 }
5626 uint32_t waitTimeMs = (uint32_t)ns2ms(systemTime() - startTime);
5627 if (waitTimeLeftMs >= waitTimeMs) {
5628 waitTimeLeftMs -= waitTimeMs;
5629 } else {
5630 waitTimeLeftMs = 0;
5631 }
5632 }
5633
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005634 uint32_t outFrames = pInBuffer->frameCount > mOutBuffer.frameCount ? mOutBuffer.frameCount :
5635 pInBuffer->frameCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005636 memcpy(mOutBuffer.raw, pInBuffer->raw, outFrames * channelCount * sizeof(int16_t));
Glenn Kastenb6037442012-11-14 13:42:25 -08005637 mCblk->stepUserOut(outFrames, mFrameCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005638 pInBuffer->frameCount -= outFrames;
5639 pInBuffer->i16 += outFrames * channelCount;
5640 mOutBuffer.frameCount -= outFrames;
5641 mOutBuffer.i16 += outFrames * channelCount;
5642
5643 if (pInBuffer->frameCount == 0) {
5644 if (mBufferQueue.size()) {
5645 mBufferQueue.removeAt(0);
5646 delete [] pInBuffer->mBuffer;
5647 delete pInBuffer;
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005648 ALOGV("OutputTrack::write() %p thread %p released overflow buffer %d", this,
5649 mThread.unsafe_get(), mBufferQueue.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07005650 } else {
5651 break;
5652 }
5653 }
5654 }
5655
5656 // If we could not write all frames, allocate a buffer and queue it for next time.
5657 if (inBuffer.frameCount) {
5658 sp<ThreadBase> thread = mThread.promote();
5659 if (thread != 0 && !thread->standby()) {
5660 if (mBufferQueue.size() < kMaxOverFlowBuffers) {
5661 pInBuffer = new Buffer;
5662 pInBuffer->mBuffer = new int16_t[inBuffer.frameCount * channelCount];
5663 pInBuffer->frameCount = inBuffer.frameCount;
5664 pInBuffer->i16 = pInBuffer->mBuffer;
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005665 memcpy(pInBuffer->raw, inBuffer.raw, inBuffer.frameCount * channelCount *
5666 sizeof(int16_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07005667 mBufferQueue.add(pInBuffer);
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005668 ALOGV("OutputTrack::write() %p thread %p adding overflow buffer %d", this,
5669 mThread.unsafe_get(), mBufferQueue.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07005670 } else {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005671 ALOGW("OutputTrack::write() %p thread %p no more overflow buffers",
5672 mThread.unsafe_get(), this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005673 }
5674 }
5675 }
5676
5677 // Calling write() with a 0 length buffer, means that no more data will be written:
5678 // If no more buffers are pending, fill output track buffer to make sure it is started
5679 // by output mixer.
5680 if (frames == 0 && mBufferQueue.size() == 0) {
Glenn Kastenb6037442012-11-14 13:42:25 -08005681 if (mCblk->user < mFrameCount) {
5682 frames = mFrameCount - mCblk->user;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005683 pInBuffer = new Buffer;
5684 pInBuffer->mBuffer = new int16_t[frames * channelCount];
5685 pInBuffer->frameCount = frames;
5686 pInBuffer->i16 = pInBuffer->mBuffer;
5687 memset(pInBuffer->raw, 0, frames * channelCount * sizeof(int16_t));
5688 mBufferQueue.add(pInBuffer);
5689 } else if (mActive) {
5690 stop();
5691 }
5692 }
5693
5694 return outputBufferFull;
5695}
5696
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005697status_t AudioFlinger::PlaybackThread::OutputTrack::obtainBuffer(
5698 AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005699{
5700 int active;
5701 status_t result;
5702 audio_track_cblk_t* cblk = mCblk;
5703 uint32_t framesReq = buffer->frameCount;
5704
Glenn Kasten26dd66e2012-10-18 15:51:03 -07005705 ALOGVV("OutputTrack::obtainBuffer user %d, server %d", cblk->user, cblk->server);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005706 buffer->frameCount = 0;
5707
Glenn Kastenb6037442012-11-14 13:42:25 -08005708 uint32_t framesAvail = cblk->framesAvailableOut(mFrameCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005709
5710
5711 if (framesAvail == 0) {
5712 Mutex::Autolock _l(cblk->lock);
5713 goto start_loop_here;
5714 while (framesAvail == 0) {
5715 active = mActive;
Glenn Kastenf6b16782011-12-15 09:51:17 -08005716 if (CC_UNLIKELY(!active)) {
Steve Block3856b092011-10-20 11:56:00 +01005717 ALOGV("Not active and NO_MORE_BUFFERS");
Glenn Kasten335787f2012-01-20 17:00:00 -08005718 return NO_MORE_BUFFERS;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005719 }
5720 result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs));
5721 if (result != NO_ERROR) {
Glenn Kasten335787f2012-01-20 17:00:00 -08005722 return NO_MORE_BUFFERS;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005723 }
5724 // read the server count again
5725 start_loop_here:
Glenn Kastenb6037442012-11-14 13:42:25 -08005726 framesAvail = cblk->framesAvailableOut_l(mFrameCount);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005727 }
5728 }
5729
5730// if (framesAvail < framesReq) {
Glenn Kasten335787f2012-01-20 17:00:00 -08005731// return NO_MORE_BUFFERS;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005732// }
5733
5734 if (framesReq > framesAvail) {
5735 framesReq = framesAvail;
5736 }
5737
5738 uint32_t u = cblk->user;
Glenn Kastenb6037442012-11-14 13:42:25 -08005739 uint32_t bufferEnd = cblk->userBase + mFrameCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005740
Marco Nelissena1472d92012-03-30 14:36:54 -07005741 if (framesReq > bufferEnd - u) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005742 framesReq = bufferEnd - u;
5743 }
5744
5745 buffer->frameCount = framesReq;
Glenn Kasten83a03822012-11-12 07:58:20 -08005746 buffer->raw = cblk->buffer(mBuffers, mFrameSize, u);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005747 return NO_ERROR;
5748}
5749
5750
5751void AudioFlinger::PlaybackThread::OutputTrack::clearBufferQueue()
5752{
5753 size_t size = mBufferQueue.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005754
5755 for (size_t i = 0; i < size; i++) {
Glenn Kastena1117922012-01-26 10:53:32 -08005756 Buffer *pBuffer = mBufferQueue.itemAt(i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005757 delete [] pBuffer->mBuffer;
5758 delete pBuffer;
5759 }
5760 mBufferQueue.clear();
5761}
5762
5763// ----------------------------------------------------------------------------
5764
5765AudioFlinger::Client::Client(const sp<AudioFlinger>& audioFlinger, pid_t pid)
5766 : RefBase(),
5767 mAudioFlinger(audioFlinger),
Glenn Kasten99e53b82012-01-19 08:59:58 -08005768 // 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 -07005769 mMemoryDealer(new MemoryDealer(1024*1024, "AudioFlinger::Client")),
John Grossman4ff14ba2012-02-08 16:37:41 -08005770 mPid(pid),
5771 mTimedTrackCount(0)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005772{
5773 // 1 MB of address space is good for 32 tracks, 8 buffers each, 4 KB/buffer
5774}
5775
5776// Client destructor must be called with AudioFlinger::mLock held
5777AudioFlinger::Client::~Client()
5778{
5779 mAudioFlinger->removeClient_l(mPid);
5780}
5781
Glenn Kasten435dbe62012-01-30 10:15:48 -08005782sp<MemoryDealer> AudioFlinger::Client::heap() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07005783{
5784 return mMemoryDealer;
5785}
5786
John Grossman4ff14ba2012-02-08 16:37:41 -08005787// Reserve one of the limited slots for a timed audio track associated
5788// with this client
5789bool AudioFlinger::Client::reserveTimedTrack()
5790{
5791 const int kMaxTimedTracksPerClient = 4;
5792
5793 Mutex::Autolock _l(mTimedTrackLock);
5794
5795 if (mTimedTrackCount >= kMaxTimedTracksPerClient) {
5796 ALOGW("can not create timed track - pid %d has exceeded the limit",
5797 mPid);
5798 return false;
5799 }
5800
5801 mTimedTrackCount++;
5802 return true;
5803}
5804
5805// Release a slot for a timed audio track
5806void AudioFlinger::Client::releaseTimedTrack()
5807{
5808 Mutex::Autolock _l(mTimedTrackLock);
5809 mTimedTrackCount--;
5810}
5811
Mathias Agopian65ab4712010-07-14 17:59:35 -07005812// ----------------------------------------------------------------------------
5813
5814AudioFlinger::NotificationClient::NotificationClient(const sp<AudioFlinger>& audioFlinger,
5815 const sp<IAudioFlingerClient>& client,
5816 pid_t pid)
Glenn Kasten84afa3b2012-01-25 15:28:08 -08005817 : mAudioFlinger(audioFlinger), mPid(pid), mAudioFlingerClient(client)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005818{
5819}
5820
5821AudioFlinger::NotificationClient::~NotificationClient()
5822{
Mathias Agopian65ab4712010-07-14 17:59:35 -07005823}
5824
5825void AudioFlinger::NotificationClient::binderDied(const wp<IBinder>& who)
5826{
5827 sp<NotificationClient> keep(this);
Glenn Kastena1117922012-01-26 10:53:32 -08005828 mAudioFlinger->removeNotificationClient(mPid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005829}
5830
5831// ----------------------------------------------------------------------------
5832
5833AudioFlinger::TrackHandle::TrackHandle(const sp<AudioFlinger::PlaybackThread::Track>& track)
5834 : BnAudioTrack(),
5835 mTrack(track)
5836{
5837}
5838
5839AudioFlinger::TrackHandle::~TrackHandle() {
5840 // just stop the track on deletion, associated resources
5841 // will be freed from the main thread once all pending buffers have
5842 // been played. Unless it's not in the active track list, in which
5843 // case we free everything now...
5844 mTrack->destroy();
5845}
5846
Glenn Kasten90716c52012-01-26 13:40:12 -08005847sp<IMemory> AudioFlinger::TrackHandle::getCblk() const {
5848 return mTrack->getCblk();
5849}
5850
Glenn Kasten3acbd052012-02-28 10:39:56 -08005851status_t AudioFlinger::TrackHandle::start() {
5852 return mTrack->start();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005853}
5854
5855void AudioFlinger::TrackHandle::stop() {
5856 mTrack->stop();
5857}
5858
5859void AudioFlinger::TrackHandle::flush() {
5860 mTrack->flush();
5861}
5862
5863void AudioFlinger::TrackHandle::mute(bool e) {
5864 mTrack->mute(e);
5865}
5866
5867void AudioFlinger::TrackHandle::pause() {
5868 mTrack->pause();
5869}
5870
Mathias Agopian65ab4712010-07-14 17:59:35 -07005871status_t AudioFlinger::TrackHandle::attachAuxEffect(int EffectId)
5872{
5873 return mTrack->attachAuxEffect(EffectId);
5874}
5875
John Grossman4ff14ba2012-02-08 16:37:41 -08005876status_t AudioFlinger::TrackHandle::allocateTimedBuffer(size_t size,
5877 sp<IMemory>* buffer) {
5878 if (!mTrack->isTimedTrack())
5879 return INVALID_OPERATION;
5880
5881 PlaybackThread::TimedTrack* tt =
5882 reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
5883 return tt->allocateTimedBuffer(size, buffer);
5884}
5885
5886status_t AudioFlinger::TrackHandle::queueTimedBuffer(const sp<IMemory>& buffer,
5887 int64_t pts) {
5888 if (!mTrack->isTimedTrack())
5889 return INVALID_OPERATION;
5890
5891 PlaybackThread::TimedTrack* tt =
5892 reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
5893 return tt->queueTimedBuffer(buffer, pts);
5894}
5895
5896status_t AudioFlinger::TrackHandle::setMediaTimeTransform(
5897 const LinearTransform& xform, int target) {
5898
5899 if (!mTrack->isTimedTrack())
5900 return INVALID_OPERATION;
5901
5902 PlaybackThread::TimedTrack* tt =
5903 reinterpret_cast<PlaybackThread::TimedTrack*>(mTrack.get());
5904 return tt->setMediaTimeTransform(
5905 xform, static_cast<TimedAudioTrack::TargetTimeline>(target));
5906}
5907
Mathias Agopian65ab4712010-07-14 17:59:35 -07005908status_t AudioFlinger::TrackHandle::onTransact(
5909 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
5910{
5911 return BnAudioTrack::onTransact(code, data, reply, flags);
5912}
5913
5914// ----------------------------------------------------------------------------
5915
5916sp<IAudioRecord> AudioFlinger::openRecord(
5917 pid_t pid,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08005918 audio_io_handle_t input,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005919 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08005920 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07005921 audio_channel_mask_t channelMask,
Glenn Kastene33054e2012-11-14 12:54:39 -08005922 size_t frameCount,
Glenn Kastena075db42012-03-06 11:22:44 -08005923 IAudioFlinger::track_flags_t flags,
Glenn Kasten1879fff2012-07-11 15:36:59 -07005924 pid_t tid,
Mathias Agopian65ab4712010-07-14 17:59:35 -07005925 int *sessionId,
5926 status_t *status)
5927{
5928 sp<RecordThread::RecordTrack> recordTrack;
5929 sp<RecordHandle> recordHandle;
5930 sp<Client> client;
Mathias Agopian65ab4712010-07-14 17:59:35 -07005931 status_t lStatus;
5932 RecordThread *thread;
5933 size_t inFrameCount;
5934 int lSessionId;
5935
5936 // check calling permissions
5937 if (!recordingAllowed()) {
5938 lStatus = PERMISSION_DENIED;
5939 goto Exit;
5940 }
5941
5942 // add client to list
5943 { // scope for mLock
5944 Mutex::Autolock _l(mLock);
5945 thread = checkRecordThread_l(input);
5946 if (thread == NULL) {
5947 lStatus = BAD_VALUE;
5948 goto Exit;
5949 }
5950
Glenn Kasten98ec94c2012-01-25 14:28:29 -08005951 client = registerPid_l(pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005952
5953 // If no audio session id is provided, create one here
Dima Zavinfce7a472011-04-19 22:30:36 -07005954 if (sessionId != NULL && *sessionId != AUDIO_SESSION_OUTPUT_MIX) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07005955 lSessionId = *sessionId;
5956 } else {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005957 lSessionId = nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005958 if (sessionId != NULL) {
5959 *sessionId = lSessionId;
5960 }
5961 }
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005962 // create new record track.
5963 // The record track uses one track in mHardwareMixerThread by convention.
Glenn Kasten1879fff2012-07-11 15:36:59 -07005964 recordTrack = thread->createRecordTrack_l(client, sampleRate, format, channelMask,
5965 frameCount, lSessionId, flags, tid, &lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07005966 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07005967 if (lStatus != NO_ERROR) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005968 // remove local strong reference to Client before deleting the RecordTrack so that the
5969 // Client destructor is called by the TrackBase destructor with mLock held
Mathias Agopian65ab4712010-07-14 17:59:35 -07005970 client.clear();
5971 recordTrack.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005972 goto Exit;
5973 }
5974
5975 // return to handle to client
5976 recordHandle = new RecordHandle(recordTrack);
5977 lStatus = NO_ERROR;
5978
5979Exit:
5980 if (status) {
5981 *status = lStatus;
5982 }
5983 return recordHandle;
5984}
5985
5986// ----------------------------------------------------------------------------
5987
Glenn Kasten85ab62c2012-11-01 11:11:38 -07005988AudioFlinger::RecordHandle::RecordHandle(
5989 const sp<AudioFlinger::RecordThread::RecordTrack>& recordTrack)
Mathias Agopian65ab4712010-07-14 17:59:35 -07005990 : BnAudioRecord(),
5991 mRecordTrack(recordTrack)
5992{
5993}
5994
5995AudioFlinger::RecordHandle::~RecordHandle() {
Glenn Kastend96c5722012-04-25 13:44:49 -07005996 stop_nonvirtual();
Glenn Kasten510a3d62012-07-16 14:24:34 -07005997 mRecordTrack->destroy();
Mathias Agopian65ab4712010-07-14 17:59:35 -07005998}
5999
Glenn Kasten90716c52012-01-26 13:40:12 -08006000sp<IMemory> AudioFlinger::RecordHandle::getCblk() const {
6001 return mRecordTrack->getCblk();
6002}
6003
Glenn Kasten85ab62c2012-11-01 11:11:38 -07006004status_t AudioFlinger::RecordHandle::start(int /*AudioSystem::sync_event_t*/ event,
6005 int triggerSession) {
Steve Block3856b092011-10-20 11:56:00 +01006006 ALOGV("RecordHandle::start()");
Glenn Kasten3acbd052012-02-28 10:39:56 -08006007 return mRecordTrack->start((AudioSystem::sync_event_t)event, triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006008}
6009
6010void AudioFlinger::RecordHandle::stop() {
Glenn Kastend96c5722012-04-25 13:44:49 -07006011 stop_nonvirtual();
6012}
6013
6014void AudioFlinger::RecordHandle::stop_nonvirtual() {
Steve Block3856b092011-10-20 11:56:00 +01006015 ALOGV("RecordHandle::stop()");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006016 mRecordTrack->stop();
6017}
6018
Mathias Agopian65ab4712010-07-14 17:59:35 -07006019status_t AudioFlinger::RecordHandle::onTransact(
6020 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
6021{
6022 return BnAudioRecord::onTransact(code, data, reply, flags);
6023}
6024
6025// ----------------------------------------------------------------------------
6026
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006027AudioFlinger::RecordThread::RecordThread(const sp<AudioFlinger>& audioFlinger,
6028 AudioStreamIn *input,
6029 uint32_t sampleRate,
Glenn Kasten254af182012-07-03 14:59:05 -07006030 audio_channel_mask_t channelMask,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08006031 audio_io_handle_t id,
Glenn Kastend06785b2012-09-30 12:29:28 -07006032 audio_devices_t device,
6033 const sp<NBAIO_Sink>& teeSink) :
Eric Laurentf1c04f92012-08-28 14:26:53 -07006034 ThreadBase(audioFlinger, id, AUDIO_DEVICE_NONE, device, RECORD),
Glenn Kasten510a3d62012-07-16 14:24:34 -07006035 mInput(input), mResampler(NULL), mRsmpOutBuffer(NULL), mRsmpInBuffer(NULL),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08006036 // mRsmpInIndex and mInputBytes set by readInputParameters()
Glenn Kasten254af182012-07-03 14:59:05 -07006037 mReqChannelCount(popcount(channelMask)),
Glenn Kastend06785b2012-09-30 12:29:28 -07006038 mReqSampleRate(sampleRate),
Glenn Kasten84afa3b2012-01-25 15:28:08 -08006039 // mBytesRead is only meaningful while active, and so is cleared in start()
6040 // (but might be better to also clear here for dump?)
Glenn Kastend06785b2012-09-30 12:29:28 -07006041 mTeeSink(teeSink)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006042{
Glenn Kasten480b4682012-02-28 12:30:08 -08006043 snprintf(mName, kNameLength, "AudioIn_%X", id);
Eric Laurentfeb0db62011-07-22 09:04:31 -07006044
Mathias Agopian65ab4712010-07-14 17:59:35 -07006045 readInputParameters();
Glenn Kastend06785b2012-09-30 12:29:28 -07006046
Mathias Agopian65ab4712010-07-14 17:59:35 -07006047}
6048
6049
6050AudioFlinger::RecordThread::~RecordThread()
6051{
6052 delete[] mRsmpInBuffer;
Glenn Kastene9dd0172012-01-27 18:08:45 -08006053 delete mResampler;
6054 delete[] mRsmpOutBuffer;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006055}
6056
6057void AudioFlinger::RecordThread::onFirstRef()
6058{
Eric Laurentfeb0db62011-07-22 09:04:31 -07006059 run(mName, PRIORITY_URGENT_AUDIO);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006060}
6061
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006062status_t AudioFlinger::RecordThread::readyToRun()
6063{
6064 status_t status = initCheck();
Steve Block5ff1dd52012-01-05 23:22:43 +00006065 ALOGW_IF(status != NO_ERROR,"RecordThread %p could not initialize", this);
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006066 return status;
6067}
6068
Mathias Agopian65ab4712010-07-14 17:59:35 -07006069bool AudioFlinger::RecordThread::threadLoop()
6070{
6071 AudioBufferProvider::Buffer buffer;
6072 sp<RecordTrack> activeTrack;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006073 Vector< sp<EffectChain> > effectChains;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006074
Eric Laurent44d98482010-09-30 16:12:31 -07006075 nsecs_t lastWarning = 0;
6076
Glenn Kastene4e2a372012-07-23 12:55:09 -07006077 inputStandBy();
Eric Laurentfeb0db62011-07-22 09:04:31 -07006078 acquireWakeLock();
6079
Jean-Michel Trivi4362f532012-09-13 11:44:00 -07006080 // used to verify we've read at least once before evaluating how many bytes were read
Jean-Michel Trivi52762412012-09-12 18:48:33 -07006081 bool readOnce = false;
6082
Mathias Agopian65ab4712010-07-14 17:59:35 -07006083 // start recording
6084 while (!exitPending()) {
6085
6086 processConfigEvents();
6087
6088 { // scope for mLock
6089 Mutex::Autolock _l(mLock);
6090 checkForNewParameters_l();
6091 if (mActiveTrack == 0 && mConfigEvents.isEmpty()) {
Glenn Kastene4e2a372012-07-23 12:55:09 -07006092 standby();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006093
6094 if (exitPending()) break;
6095
Eric Laurentfeb0db62011-07-22 09:04:31 -07006096 releaseWakeLock_l();
Steve Block3856b092011-10-20 11:56:00 +01006097 ALOGV("RecordThread: loop stopping");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006098 // go to sleep
6099 mWaitWorkCV.wait(mLock);
Steve Block3856b092011-10-20 11:56:00 +01006100 ALOGV("RecordThread: loop starting");
Eric Laurentfeb0db62011-07-22 09:04:31 -07006101 acquireWakeLock_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006102 continue;
6103 }
6104 if (mActiveTrack != 0) {
6105 if (mActiveTrack->mState == TrackBase::PAUSING) {
Glenn Kastene4e2a372012-07-23 12:55:09 -07006106 standby();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006107 mActiveTrack.clear();
6108 mStartStopCond.broadcast();
6109 } else if (mActiveTrack->mState == TrackBase::RESUMING) {
6110 if (mReqChannelCount != mActiveTrack->channelCount()) {
6111 mActiveTrack.clear();
6112 mStartStopCond.broadcast();
Jean-Michel Trivi52762412012-09-12 18:48:33 -07006113 } else if (readOnce) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006114 // record start succeeds only if first read from audio input
6115 // succeeds
Jean-Michel Trivi52762412012-09-12 18:48:33 -07006116 if (mBytesRead >= 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006117 mActiveTrack->mState = TrackBase::ACTIVE;
6118 } else {
6119 mActiveTrack.clear();
6120 }
6121 mStartStopCond.broadcast();
6122 }
6123 mStandby = false;
Glenn Kasten510a3d62012-07-16 14:24:34 -07006124 } else if (mActiveTrack->mState == TrackBase::TERMINATED) {
6125 removeTrack_l(mActiveTrack);
6126 mActiveTrack.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006127 }
6128 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006129 lockEffectChains_l(effectChains);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006130 }
6131
6132 if (mActiveTrack != 0) {
6133 if (mActiveTrack->mState != TrackBase::ACTIVE &&
6134 mActiveTrack->mState != TrackBase::RESUMING) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006135 unlockEffectChains(effectChains);
6136 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006137 continue;
6138 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006139 for (size_t i = 0; i < effectChains.size(); i ++) {
6140 effectChains[i]->process_l();
6141 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006142
Mathias Agopian65ab4712010-07-14 17:59:35 -07006143 buffer.frameCount = mFrameCount;
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08006144 if (CC_LIKELY(mActiveTrack->getNextBuffer(&buffer) == NO_ERROR)) {
Jean-Michel Trivi52762412012-09-12 18:48:33 -07006145 readOnce = true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006146 size_t framesOut = buffer.frameCount;
Glenn Kastene0feee32011-12-13 11:53:26 -08006147 if (mResampler == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006148 // no resampling
6149 while (framesOut) {
6150 size_t framesIn = mFrameCount - mRsmpInIndex;
6151 if (framesIn) {
6152 int8_t *src = (int8_t *)mRsmpInBuffer + mRsmpInIndex * mFrameSize;
Glenn Kasten85ab62c2012-11-01 11:11:38 -07006153 int8_t *dst = buffer.i8 + (buffer.frameCount - framesOut) *
Glenn Kasten83a03822012-11-12 07:58:20 -08006154 mActiveTrack->mFrameSize;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006155 if (framesIn > framesOut)
6156 framesIn = framesOut;
6157 mRsmpInIndex += framesIn;
6158 framesOut -= framesIn;
6159 if ((int)mChannelCount == mReqChannelCount ||
Dima Zavinfce7a472011-04-19 22:30:36 -07006160 mFormat != AUDIO_FORMAT_PCM_16_BIT) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006161 memcpy(dst, src, framesIn * mFrameSize);
6162 } else {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006163 if (mChannelCount == 1) {
Glenn Kasten69d79962012-07-19 14:02:22 -07006164 upmix_to_stereo_i16_from_mono_i16((int16_t *)dst,
6165 (int16_t *)src, framesIn);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006166 } else {
Glenn Kasten69d79962012-07-19 14:02:22 -07006167 downmix_to_mono_i16_from_stereo_i16((int16_t *)dst,
6168 (int16_t *)src, framesIn);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006169 }
6170 }
6171 }
6172 if (framesOut && mFrameCount == mRsmpInIndex) {
Glenn Kastend06785b2012-09-30 12:29:28 -07006173 void *readInto;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006174 if (framesOut == mFrameCount &&
Glenn Kasten85ab62c2012-11-01 11:11:38 -07006175 ((int)mChannelCount == mReqChannelCount ||
6176 mFormat != AUDIO_FORMAT_PCM_16_BIT)) {
Glenn Kastend06785b2012-09-30 12:29:28 -07006177 readInto = buffer.raw;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006178 framesOut = 0;
6179 } else {
Glenn Kastend06785b2012-09-30 12:29:28 -07006180 readInto = mRsmpInBuffer;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006181 mRsmpInIndex = 0;
6182 }
Glenn Kastend06785b2012-09-30 12:29:28 -07006183 mBytesRead = mInput->stream->read(mInput->stream, readInto, mInputBytes);
Jean-Michel Trivi52762412012-09-12 18:48:33 -07006184 if (mBytesRead <= 0) {
6185 if ((mBytesRead < 0) && (mActiveTrack->mState == TrackBase::ACTIVE))
6186 {
6187 ALOGE("Error reading audio input");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006188 // Force input into standby so that it tries to
6189 // recover at next read attempt
Glenn Kastene4e2a372012-07-23 12:55:09 -07006190 inputStandBy();
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006191 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006192 }
6193 mRsmpInIndex = mFrameCount;
6194 framesOut = 0;
6195 buffer.frameCount = 0;
Glenn Kastend06785b2012-09-30 12:29:28 -07006196 } else if (mTeeSink != 0) {
6197 (void) mTeeSink->write(readInto,
6198 mBytesRead >> Format_frameBitShift(mTeeSink->format()));
Mathias Agopian65ab4712010-07-14 17:59:35 -07006199 }
6200 }
6201 }
6202 } else {
6203 // resampling
6204
6205 memset(mRsmpOutBuffer, 0, framesOut * 2 * sizeof(int32_t));
6206 // alter output frame count as if we were expecting stereo samples
6207 if (mChannelCount == 1 && mReqChannelCount == 1) {
6208 framesOut >>= 1;
6209 }
Glenn Kasten85ab62c2012-11-01 11:11:38 -07006210 mResampler->resample(mRsmpOutBuffer, framesOut,
6211 this /* AudioBufferProvider* */);
6212 // ditherAndClamp() works as long as all buffers returned by
6213 // mActiveTrack->getNextBuffer() are 32 bit aligned which should be always true.
Mathias Agopian65ab4712010-07-14 17:59:35 -07006214 if (mChannelCount == 2 && mReqChannelCount == 1) {
Glenn Kasten3b21c502011-12-15 09:52:39 -08006215 ditherAndClamp(mRsmpOutBuffer, mRsmpOutBuffer, framesOut);
Glenn Kasten85ab62c2012-11-01 11:11:38 -07006216 // the resampler always outputs stereo samples:
6217 // do post stereo to mono conversion
Glenn Kasten69d79962012-07-19 14:02:22 -07006218 downmix_to_mono_i16_from_stereo_i16(buffer.i16, (int16_t *)mRsmpOutBuffer,
6219 framesOut);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006220 } else {
Glenn Kasten3b21c502011-12-15 09:52:39 -08006221 ditherAndClamp((int32_t *)buffer.raw, mRsmpOutBuffer, framesOut);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006222 }
6223
6224 }
Eric Laurenta011e352012-03-29 15:51:43 -07006225 if (mFramestoDrop == 0) {
6226 mActiveTrack->releaseBuffer(&buffer);
6227 } else {
6228 if (mFramestoDrop > 0) {
6229 mFramestoDrop -= buffer.frameCount;
Eric Laurent29864602012-05-08 18:57:51 -07006230 if (mFramestoDrop <= 0) {
6231 clearSyncStartEvent();
6232 }
6233 } else {
6234 mFramestoDrop += buffer.frameCount;
6235 if (mFramestoDrop >= 0 || mSyncStartEvent == 0 ||
6236 mSyncStartEvent->isCancelled()) {
6237 ALOGW("Synced record %s, session %d, trigger session %d",
6238 (mFramestoDrop >= 0) ? "timed out" : "cancelled",
6239 mActiveTrack->sessionId(),
6240 (mSyncStartEvent != 0) ? mSyncStartEvent->triggerSession() : 0);
6241 clearSyncStartEvent();
Eric Laurenta011e352012-03-29 15:51:43 -07006242 }
6243 }
6244 }
Glenn Kasten04270da2012-07-10 12:55:49 -07006245 mActiveTrack->clearOverflow();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006246 }
6247 // client isn't retrieving buffers fast enough
6248 else {
Eric Laurent44d98482010-09-30 16:12:31 -07006249 if (!mActiveTrack->setOverflow()) {
6250 nsecs_t now = systemTime();
Glenn Kasten7dede872011-12-13 11:04:14 -08006251 if ((now - lastWarning) > kWarningThrottleNs) {
Steve Block5ff1dd52012-01-05 23:22:43 +00006252 ALOGW("RecordThread: buffer overflow");
Eric Laurent44d98482010-09-30 16:12:31 -07006253 lastWarning = now;
6254 }
6255 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006256 // Release the processor for a while before asking for a new buffer.
6257 // This will give the application more chance to read from the buffer and
6258 // clear the overflow.
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006259 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006260 }
6261 }
Eric Laurentec437d82011-07-26 20:54:46 -07006262 // enable changes in effect chain
6263 unlockEffectChains(effectChains);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006264 effectChains.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006265 }
6266
Glenn Kastene4e2a372012-07-23 12:55:09 -07006267 standby();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006268
Glenn Kasten33e6e352012-07-16 15:56:57 -07006269 {
6270 Mutex::Autolock _l(mLock);
6271 mActiveTrack.clear();
6272 mStartStopCond.broadcast();
6273 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006274
Eric Laurentfeb0db62011-07-22 09:04:31 -07006275 releaseWakeLock();
6276
Steve Block3856b092011-10-20 11:56:00 +01006277 ALOGV("RecordThread %p exiting", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006278 return false;
6279}
6280
Glenn Kastene4e2a372012-07-23 12:55:09 -07006281void AudioFlinger::RecordThread::standby()
6282{
6283 if (!mStandby) {
6284 inputStandBy();
6285 mStandby = true;
6286 }
6287}
6288
6289void AudioFlinger::RecordThread::inputStandBy()
6290{
6291 mInput->stream->common.standby(&mInput->stream->common);
6292}
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006293
6294sp<AudioFlinger::RecordThread::RecordTrack> AudioFlinger::RecordThread::createRecordTrack_l(
6295 const sp<AudioFlinger::Client>& client,
6296 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08006297 audio_format_t format,
Glenn Kasten254af182012-07-03 14:59:05 -07006298 audio_channel_mask_t channelMask,
Glenn Kastene33054e2012-11-14 12:54:39 -08006299 size_t frameCount,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006300 int sessionId,
Glenn Kasten1879fff2012-07-11 15:36:59 -07006301 IAudioFlinger::track_flags_t flags,
6302 pid_t tid,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006303 status_t *status)
6304{
6305 sp<RecordTrack> track;
6306 status_t lStatus;
6307
6308 lStatus = initCheck();
6309 if (lStatus != NO_ERROR) {
Steve Block29357bc2012-01-06 19:20:56 +00006310 ALOGE("Audio driver not initialized.");
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006311 goto Exit;
6312 }
6313
Glenn Kasten1879fff2012-07-11 15:36:59 -07006314 // FIXME use flags and tid similar to createTrack_l()
6315
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006316 { // scope for mLock
6317 Mutex::Autolock _l(mLock);
6318
6319 track = new RecordTrack(this, client, sampleRate,
Glenn Kasten5cf034d2012-02-21 10:35:56 -08006320 format, channelMask, frameCount, sessionId);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006321
Glenn Kasten7378ca52012-01-20 13:44:40 -08006322 if (track->getCblk() == 0) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006323 lStatus = NO_MEMORY;
6324 goto Exit;
6325 }
Glenn Kasten510a3d62012-07-16 14:24:34 -07006326 mTracks.add(track);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006327
Eric Laurent59bd0da2011-08-01 09:52:20 -07006328 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
Eric Laurentf1c04f92012-08-28 14:26:53 -07006329 bool suspend = audio_is_bluetooth_sco_device(mInDevice) &&
Glenn Kastenbb4350d2012-07-03 15:56:38 -07006330 mAudioFlinger->btNrecIsOff();
Eric Laurent59bd0da2011-08-01 09:52:20 -07006331 setEffectSuspended_l(FX_IID_AEC, suspend, sessionId);
6332 setEffectSuspended_l(FX_IID_NS, suspend, sessionId);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006333 }
6334 lStatus = NO_ERROR;
6335
6336Exit:
6337 if (status) {
6338 *status = lStatus;
6339 }
6340 return track;
6341}
6342
Eric Laurenta011e352012-03-29 15:51:43 -07006343status_t AudioFlinger::RecordThread::start(RecordThread::RecordTrack* recordTrack,
Glenn Kasten3acbd052012-02-28 10:39:56 -08006344 AudioSystem::sync_event_t event,
Eric Laurenta011e352012-03-29 15:51:43 -07006345 int triggerSession)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006346{
Glenn Kasten58912562012-04-03 10:45:00 -07006347 ALOGV("RecordThread::start event %d, triggerSession %d", event, triggerSession);
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006348 sp<ThreadBase> strongMe = this;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006349 status_t status = NO_ERROR;
Eric Laurenta011e352012-03-29 15:51:43 -07006350
6351 if (event == AudioSystem::SYNC_EVENT_NONE) {
Eric Laurent29864602012-05-08 18:57:51 -07006352 clearSyncStartEvent();
Eric Laurenta011e352012-03-29 15:51:43 -07006353 } else if (event != AudioSystem::SYNC_EVENT_SAME) {
6354 mSyncStartEvent = mAudioFlinger->createSyncEvent(event,
6355 triggerSession,
6356 recordTrack->sessionId(),
6357 syncStartEventCallback,
6358 this);
Eric Laurent29864602012-05-08 18:57:51 -07006359 // Sync event can be cancelled by the trigger session if the track is not in a
6360 // compatible state in which case we start record immediately
6361 if (mSyncStartEvent->isCancelled()) {
6362 clearSyncStartEvent();
6363 } else {
6364 // do not wait for the event for more than AudioSystem::kSyncRecordStartTimeOutMs
6365 mFramestoDrop = - ((AudioSystem::kSyncRecordStartTimeOutMs * mReqSampleRate) / 1000);
6366 }
Eric Laurenta011e352012-03-29 15:51:43 -07006367 }
6368
Mathias Agopian65ab4712010-07-14 17:59:35 -07006369 {
Glenn Kastena7d8d6f2012-01-05 15:41:56 -08006370 AutoMutex lock(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006371 if (mActiveTrack != 0) {
6372 if (recordTrack != mActiveTrack.get()) {
6373 status = -EBUSY;
6374 } else if (mActiveTrack->mState == TrackBase::PAUSING) {
6375 mActiveTrack->mState = TrackBase::ACTIVE;
6376 }
6377 return status;
6378 }
6379
6380 recordTrack->mState = TrackBase::IDLE;
6381 mActiveTrack = recordTrack;
6382 mLock.unlock();
6383 status_t status = AudioSystem::startInput(mId);
6384 mLock.lock();
6385 if (status != NO_ERROR) {
6386 mActiveTrack.clear();
Eric Laurenta011e352012-03-29 15:51:43 -07006387 clearSyncStartEvent();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006388 return status;
6389 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006390 mRsmpInIndex = mFrameCount;
6391 mBytesRead = 0;
Eric Laurent243f5f92011-02-28 16:52:51 -08006392 if (mResampler != NULL) {
6393 mResampler->reset();
6394 }
6395 mActiveTrack->mState = TrackBase::RESUMING;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006396 // signal thread to start
Steve Block3856b092011-10-20 11:56:00 +01006397 ALOGV("Signal record thread");
Eric Laurentb6ba2fd2012-09-24 15:02:17 -07006398 mWaitWorkCV.broadcast();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006399 // do not wait for mStartStopCond if exiting
Glenn Kastenb28686f2012-01-06 08:39:38 -08006400 if (exitPending()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006401 mActiveTrack.clear();
6402 status = INVALID_OPERATION;
6403 goto startError;
6404 }
6405 mStartStopCond.wait(mLock);
6406 if (mActiveTrack == 0) {
Steve Block3856b092011-10-20 11:56:00 +01006407 ALOGV("Record failed to start");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006408 status = BAD_VALUE;
6409 goto startError;
6410 }
Steve Block3856b092011-10-20 11:56:00 +01006411 ALOGV("Record started OK");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006412 return status;
6413 }
6414startError:
6415 AudioSystem::stopInput(mId);
Eric Laurenta011e352012-03-29 15:51:43 -07006416 clearSyncStartEvent();
Mathias Agopian65ab4712010-07-14 17:59:35 -07006417 return status;
6418}
6419
Eric Laurenta011e352012-03-29 15:51:43 -07006420void AudioFlinger::RecordThread::clearSyncStartEvent()
6421{
6422 if (mSyncStartEvent != 0) {
6423 mSyncStartEvent->cancel();
6424 }
6425 mSyncStartEvent.clear();
Eric Laurent29864602012-05-08 18:57:51 -07006426 mFramestoDrop = 0;
Eric Laurenta011e352012-03-29 15:51:43 -07006427}
6428
6429void AudioFlinger::RecordThread::syncStartEventCallback(const wp<SyncEvent>& event)
6430{
6431 sp<SyncEvent> strongEvent = event.promote();
6432
6433 if (strongEvent != 0) {
6434 RecordThread *me = (RecordThread *)strongEvent->cookie();
6435 me->handleSyncStartEvent(strongEvent);
6436 }
6437}
6438
6439void AudioFlinger::RecordThread::handleSyncStartEvent(const sp<SyncEvent>& event)
6440{
Eric Laurent29864602012-05-08 18:57:51 -07006441 if (event == mSyncStartEvent) {
Eric Laurenta011e352012-03-29 15:51:43 -07006442 // TODO: use actual buffer filling status instead of 2 buffers when info is available
6443 // from audio HAL
6444 mFramestoDrop = mFrameCount * 2;
Eric Laurenta011e352012-03-29 15:51:43 -07006445 }
6446}
6447
Glenn Kasten1d491ff2012-07-16 14:28:13 -07006448bool AudioFlinger::RecordThread::stop_l(RecordThread::RecordTrack* recordTrack) {
Steve Block3856b092011-10-20 11:56:00 +01006449 ALOGV("RecordThread::stop");
Glenn Kasten1d491ff2012-07-16 14:28:13 -07006450 if (recordTrack != mActiveTrack.get() || recordTrack->mState == TrackBase::PAUSING) {
6451 return false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006452 }
Glenn Kasten1d491ff2012-07-16 14:28:13 -07006453 recordTrack->mState = TrackBase::PAUSING;
6454 // do not wait for mStartStopCond if exiting
6455 if (exitPending()) {
6456 return true;
6457 }
6458 mStartStopCond.wait(mLock);
6459 // if we have been restarted, recordTrack == mActiveTrack.get() here
6460 if (exitPending() || recordTrack != mActiveTrack.get()) {
6461 ALOGV("Record stopped OK");
6462 return true;
6463 }
6464 return false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006465}
6466
Glenn Kasten106e8a42012-08-02 13:37:12 -07006467bool AudioFlinger::RecordThread::isValidSyncEvent(const sp<SyncEvent>& event) const
Eric Laurenta011e352012-03-29 15:51:43 -07006468{
6469 return false;
6470}
6471
6472status_t AudioFlinger::RecordThread::setSyncEvent(const sp<SyncEvent>& event)
6473{
Glenn Kasten7aa25592012-08-02 16:37:07 -07006474#if 0 // This branch is currently dead code, but is preserved in case it will be needed in future
Eric Laurenta011e352012-03-29 15:51:43 -07006475 if (!isValidSyncEvent(event)) {
6476 return BAD_VALUE;
6477 }
6478
Glenn Kasten510a3d62012-07-16 14:24:34 -07006479 int eventSession = event->triggerSession();
6480 status_t ret = NAME_NOT_FOUND;
6481
Eric Laurenta011e352012-03-29 15:51:43 -07006482 Mutex::Autolock _l(mLock);
6483
Glenn Kasten510a3d62012-07-16 14:24:34 -07006484 for (size_t i = 0; i < mTracks.size(); i++) {
6485 sp<RecordTrack> track = mTracks[i];
6486 if (eventSession == track->sessionId()) {
Glenn Kastend23eedc2012-08-02 13:35:47 -07006487 (void) track->setSyncEvent(event);
Glenn Kasten510a3d62012-07-16 14:24:34 -07006488 ret = NO_ERROR;
6489 }
Eric Laurenta011e352012-03-29 15:51:43 -07006490 }
Glenn Kasten510a3d62012-07-16 14:24:34 -07006491 return ret;
Glenn Kasten7aa25592012-08-02 16:37:07 -07006492#else
6493 return BAD_VALUE;
6494#endif
Glenn Kasten510a3d62012-07-16 14:24:34 -07006495}
6496
6497void AudioFlinger::RecordThread::RecordTrack::destroy()
6498{
6499 // see comments at AudioFlinger::PlaybackThread::Track::destroy()
6500 sp<RecordTrack> keep(this);
6501 {
6502 sp<ThreadBase> thread = mThread.promote();
6503 if (thread != 0) {
6504 if (mState == ACTIVE || mState == RESUMING) {
6505 AudioSystem::stopInput(thread->id());
6506 }
6507 AudioSystem::releaseInput(thread->id());
6508 Mutex::Autolock _l(thread->mLock);
6509 RecordThread *recordThread = (RecordThread *) thread.get();
6510 recordThread->destroyTrack_l(this);
6511 }
6512 }
6513}
6514
6515// destroyTrack_l() must be called with ThreadBase::mLock held
6516void AudioFlinger::RecordThread::destroyTrack_l(const sp<RecordTrack>& track)
6517{
6518 track->mState = TrackBase::TERMINATED;
6519 // active tracks are removed by threadLoop()
6520 if (mActiveTrack != track) {
6521 removeTrack_l(track);
6522 }
6523}
6524
6525void AudioFlinger::RecordThread::removeTrack_l(const sp<RecordTrack>& track)
6526{
6527 mTracks.remove(track);
6528 // need anything related to effects here?
Eric Laurenta011e352012-03-29 15:51:43 -07006529}
6530
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07006531void AudioFlinger::RecordThread::dump(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006532{
Glenn Kasten510a3d62012-07-16 14:24:34 -07006533 dumpInternals(fd, args);
6534 dumpTracks(fd, args);
6535 dumpEffectChains(fd, args);
6536}
6537
6538void AudioFlinger::RecordThread::dumpInternals(int fd, const Vector<String16>& args)
6539{
Mathias Agopian65ab4712010-07-14 17:59:35 -07006540 const size_t SIZE = 256;
6541 char buffer[SIZE];
6542 String8 result;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006543
6544 snprintf(buffer, SIZE, "\nInput thread %p internals\n", this);
6545 result.append(buffer);
6546
6547 if (mActiveTrack != 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006548 snprintf(buffer, SIZE, "In index: %d\n", mRsmpInIndex);
6549 result.append(buffer);
6550 snprintf(buffer, SIZE, "In size: %d\n", mInputBytes);
6551 result.append(buffer);
Glenn Kastene0feee32011-12-13 11:53:26 -08006552 snprintf(buffer, SIZE, "Resampling: %d\n", (mResampler != NULL));
Mathias Agopian65ab4712010-07-14 17:59:35 -07006553 result.append(buffer);
6554 snprintf(buffer, SIZE, "Out channel count: %d\n", mReqChannelCount);
6555 result.append(buffer);
Glenn Kasten3b16c762012-11-14 08:44:39 -08006556 snprintf(buffer, SIZE, "Out sample rate: %u\n", mReqSampleRate);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006557 result.append(buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006558 } else {
Glenn Kasten510a3d62012-07-16 14:24:34 -07006559 result.append("No active record client\n");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006560 }
Glenn Kasten510a3d62012-07-16 14:24:34 -07006561
Mathias Agopian65ab4712010-07-14 17:59:35 -07006562 write(fd, result.string(), result.size());
6563
6564 dumpBase(fd, args);
Glenn Kasten510a3d62012-07-16 14:24:34 -07006565}
6566
6567void AudioFlinger::RecordThread::dumpTracks(int fd, const Vector<String16>& args)
6568{
6569 const size_t SIZE = 256;
6570 char buffer[SIZE];
6571 String8 result;
6572
6573 snprintf(buffer, SIZE, "Input thread %p tracks\n", this);
6574 result.append(buffer);
6575 RecordTrack::appendDumpHeader(result);
6576 for (size_t i = 0; i < mTracks.size(); ++i) {
6577 sp<RecordTrack> track = mTracks[i];
6578 if (track != 0) {
6579 track->dump(buffer, SIZE);
6580 result.append(buffer);
6581 }
6582 }
6583
6584 if (mActiveTrack != 0) {
6585 snprintf(buffer, SIZE, "\nInput thread %p active tracks\n", this);
6586 result.append(buffer);
6587 RecordTrack::appendDumpHeader(result);
6588 mActiveTrack->dump(buffer, SIZE);
6589 result.append(buffer);
6590
6591 }
6592 write(fd, result.string(), result.size());
Mathias Agopian65ab4712010-07-14 17:59:35 -07006593}
6594
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08006595// AudioBufferProvider interface
John Grossman4ff14ba2012-02-08 16:37:41 -08006596status_t AudioFlinger::RecordThread::getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006597{
6598 size_t framesReq = buffer->frameCount;
6599 size_t framesReady = mFrameCount - mRsmpInIndex;
6600 int channelCount;
6601
6602 if (framesReady == 0) {
Dima Zavin799a70e2011-04-18 16:57:27 -07006603 mBytesRead = mInput->stream->read(mInput->stream, mRsmpInBuffer, mInputBytes);
Jean-Michel Trivi4362f532012-09-13 11:44:00 -07006604 if (mBytesRead <= 0) {
6605 if ((mBytesRead < 0) && (mActiveTrack->mState == TrackBase::ACTIVE)) {
6606 ALOGE("RecordThread::getNextBuffer() Error reading audio input");
Mathias Agopian65ab4712010-07-14 17:59:35 -07006607 // Force input into standby so that it tries to
6608 // recover at next read attempt
Glenn Kastene4e2a372012-07-23 12:55:09 -07006609 inputStandBy();
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006610 usleep(kRecordThreadSleepUs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006611 }
Glenn Kastene0feee32011-12-13 11:53:26 -08006612 buffer->raw = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006613 buffer->frameCount = 0;
6614 return NOT_ENOUGH_DATA;
6615 }
6616 mRsmpInIndex = 0;
6617 framesReady = mFrameCount;
6618 }
6619
6620 if (framesReq > framesReady) {
6621 framesReq = framesReady;
6622 }
6623
6624 if (mChannelCount == 1 && mReqChannelCount == 2) {
6625 channelCount = 1;
6626 } else {
6627 channelCount = 2;
6628 }
6629 buffer->raw = mRsmpInBuffer + mRsmpInIndex * channelCount;
6630 buffer->frameCount = framesReq;
6631 return NO_ERROR;
6632}
6633
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08006634// AudioBufferProvider interface
Mathias Agopian65ab4712010-07-14 17:59:35 -07006635void AudioFlinger::RecordThread::releaseBuffer(AudioBufferProvider::Buffer* buffer)
6636{
6637 mRsmpInIndex += buffer->frameCount;
6638 buffer->frameCount = 0;
6639}
6640
6641bool AudioFlinger::RecordThread::checkForNewParameters_l()
6642{
6643 bool reconfig = false;
6644
6645 while (!mNewParameters.isEmpty()) {
6646 status_t status = NO_ERROR;
6647 String8 keyValuePair = mNewParameters[0];
6648 AudioParameter param = AudioParameter(keyValuePair);
6649 int value;
Glenn Kasten58f30212012-01-12 12:27:51 -08006650 audio_format_t reqFormat = mFormat;
Glenn Kasten3b16c762012-11-14 08:44:39 -08006651 uint32_t reqSamplingRate = mReqSampleRate;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006652 int reqChannelCount = mReqChannelCount;
6653
6654 if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
6655 reqSamplingRate = value;
6656 reconfig = true;
6657 }
6658 if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
Glenn Kasten58f30212012-01-12 12:27:51 -08006659 reqFormat = (audio_format_t) value;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006660 reconfig = true;
6661 }
6662 if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
Dima Zavinfce7a472011-04-19 22:30:36 -07006663 reqChannelCount = popcount(value);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006664 reconfig = true;
6665 }
6666 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
6667 // do not accept frame count changes if tracks are open as the track buffer
Glenn Kasten99e53b82012-01-19 08:59:58 -08006668 // size depends on frame count and correct behavior would not be guaranteed
Mathias Agopian65ab4712010-07-14 17:59:35 -07006669 // if frame count is changed after track creation
6670 if (mActiveTrack != 0) {
6671 status = INVALID_OPERATION;
6672 } else {
6673 reconfig = true;
6674 }
6675 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006676 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
6677 // forward device change to effects that have requested to be
6678 // aware of attached audio device.
6679 for (size_t i = 0; i < mEffectChains.size(); i++) {
6680 mEffectChains[i]->setDevice_l(value);
6681 }
Eric Laurentf1c04f92012-08-28 14:26:53 -07006682
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006683 // store input device and output device but do not forward output device to audio HAL.
6684 // Note that status is ignored by the caller for output device
6685 // (see AudioFlinger::setParameters()
Eric Laurentf1c04f92012-08-28 14:26:53 -07006686 if (audio_is_output_devices(value)) {
6687 mOutDevice = value;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006688 status = BAD_VALUE;
6689 } else {
Eric Laurentf1c04f92012-08-28 14:26:53 -07006690 mInDevice = value;
Glenn Kasten85ab62c2012-11-01 11:11:38 -07006691 // disable AEC and NS if the device is a BT SCO headset supporting those
6692 // pre processings
Glenn Kasten510a3d62012-07-16 14:24:34 -07006693 if (mTracks.size() > 0) {
Eric Laurentf1c04f92012-08-28 14:26:53 -07006694 bool suspend = audio_is_bluetooth_sco_device(mInDevice) &&
6695 mAudioFlinger->btNrecIsOff();
Glenn Kasten510a3d62012-07-16 14:24:34 -07006696 for (size_t i = 0; i < mTracks.size(); i++) {
6697 sp<RecordTrack> track = mTracks[i];
6698 setEffectSuspended_l(FX_IID_AEC, suspend, track->sessionId());
6699 setEffectSuspended_l(FX_IID_NS, suspend, track->sessionId());
6700 }
Eric Laurent59bd0da2011-08-01 09:52:20 -07006701 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006702 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006703 }
Eric Laurent57b2dd12012-08-31 17:44:06 -07006704 if (param.getInt(String8(AudioParameter::keyInputSource), value) == NO_ERROR &&
6705 mAudioSource != (audio_source_t)value) {
6706 // forward device change to effects that have requested to be
6707 // aware of attached audio device.
6708 for (size_t i = 0; i < mEffectChains.size(); i++) {
6709 mEffectChains[i]->setAudioSource_l((audio_source_t)value);
6710 }
6711 mAudioSource = (audio_source_t)value;
6712 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07006713 if (status == NO_ERROR) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07006714 status = mInput->stream->common.set_parameters(&mInput->stream->common,
6715 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07006716 if (status == INVALID_OPERATION) {
Glenn Kastene4e2a372012-07-23 12:55:09 -07006717 inputStandBy();
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006718 status = mInput->stream->common.set_parameters(&mInput->stream->common,
6719 keyValuePair.string());
Mathias Agopian65ab4712010-07-14 17:59:35 -07006720 }
6721 if (reconfig) {
6722 if (status == BAD_VALUE &&
Dima Zavin799a70e2011-04-18 16:57:27 -07006723 reqFormat == mInput->stream->common.get_format(&mInput->stream->common) &&
Dima Zavinfce7a472011-04-19 22:30:36 -07006724 reqFormat == AUDIO_FORMAT_PCM_16_BIT &&
Glenn Kasten85ab62c2012-11-01 11:11:38 -07006725 ((int)mInput->stream->common.get_sample_rate(&mInput->stream->common)
6726 <= (2 * reqSamplingRate)) &&
6727 popcount(mInput->stream->common.get_channels(&mInput->stream->common))
6728 <= FCC_2 &&
Glenn Kasten53d76db2012-03-08 12:32:47 -08006729 (reqChannelCount <= FCC_2)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07006730 status = NO_ERROR;
6731 }
6732 if (status == NO_ERROR) {
6733 readInputParameters();
Eric Laurent896adcd2012-09-13 11:18:23 -07006734 sendIoConfigEvent_l(AudioSystem::INPUT_CONFIG_CHANGED);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006735 }
6736 }
6737 }
6738
6739 mNewParameters.removeAt(0);
6740
6741 mParamStatus = status;
6742 mParamCond.signal();
Eric Laurent60cd0a02011-09-13 11:40:21 -07006743 // wait for condition with time out in case the thread calling ThreadBase::setParameters()
6744 // already timed out waiting for the status and will never signal the condition.
Glenn Kasten7dede872011-12-13 11:04:14 -08006745 mWaitWorkCV.waitRelative(mLock, kSetParametersTimeoutNs);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006746 }
6747 return reconfig;
6748}
6749
6750String8 AudioFlinger::RecordThread::getParameters(const String8& keys)
6751{
Dima Zavinfce7a472011-04-19 22:30:36 -07006752 char *s;
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006753 String8 out_s8 = String8();
6754
6755 Mutex::Autolock _l(mLock);
6756 if (initCheck() != NO_ERROR) {
6757 return out_s8;
6758 }
Dima Zavinfce7a472011-04-19 22:30:36 -07006759
Dima Zavin799a70e2011-04-18 16:57:27 -07006760 s = mInput->stream->common.get_parameters(&mInput->stream->common, keys.string());
Dima Zavinfce7a472011-04-19 22:30:36 -07006761 out_s8 = String8(s);
6762 free(s);
6763 return out_s8;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006764}
6765
6766void AudioFlinger::RecordThread::audioConfigChanged_l(int event, int param) {
6767 AudioSystem::OutputDescriptor desc;
Glenn Kastena0d68332012-01-27 16:47:15 -08006768 void *param2 = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006769
6770 switch (event) {
6771 case AudioSystem::INPUT_OPENED:
6772 case AudioSystem::INPUT_CONFIG_CHANGED:
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07006773 desc.channels = mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006774 desc.samplingRate = mSampleRate;
6775 desc.format = mFormat;
6776 desc.frameCount = mFrameCount;
6777 desc.latency = 0;
6778 param2 = &desc;
6779 break;
6780
6781 case AudioSystem::INPUT_CLOSED:
6782 default:
6783 break;
6784 }
6785 mAudioFlinger->audioConfigChanged_l(event, mId, param2);
6786}
6787
6788void AudioFlinger::RecordThread::readInputParameters()
6789{
Glenn Kastene9dd0172012-01-27 18:08:45 -08006790 delete mRsmpInBuffer;
6791 // mRsmpInBuffer is always assigned a new[] below
6792 delete mRsmpOutBuffer;
6793 mRsmpOutBuffer = NULL;
6794 delete mResampler;
Glenn Kastene0feee32011-12-13 11:53:26 -08006795 mResampler = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07006796
Dima Zavin799a70e2011-04-18 16:57:27 -07006797 mSampleRate = mInput->stream->common.get_sample_rate(&mInput->stream->common);
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07006798 mChannelMask = mInput->stream->common.get_channels(&mInput->stream->common);
6799 mChannelCount = (uint16_t)popcount(mChannelMask);
Dima Zavin799a70e2011-04-18 16:57:27 -07006800 mFormat = mInput->stream->common.get_format(&mInput->stream->common);
Glenn Kastenb9980652012-01-11 09:48:27 -08006801 mFrameSize = audio_stream_frame_size(&mInput->stream->common);
Dima Zavin799a70e2011-04-18 16:57:27 -07006802 mInputBytes = mInput->stream->common.get_buffer_size(&mInput->stream->common);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006803 mFrameCount = mInputBytes / mFrameSize;
Glenn Kasten58912562012-04-03 10:45:00 -07006804 mNormalFrameCount = mFrameCount; // not used by record, but used by input effects
Mathias Agopian65ab4712010-07-14 17:59:35 -07006805 mRsmpInBuffer = new int16_t[mFrameCount * mChannelCount];
6806
Glenn Kasten53d76db2012-03-08 12:32:47 -08006807 if (mSampleRate != mReqSampleRate && mChannelCount <= FCC_2 && mReqChannelCount <= FCC_2)
Mathias Agopian65ab4712010-07-14 17:59:35 -07006808 {
6809 int channelCount;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07006810 // optimization: if mono to mono, use the resampler in stereo to stereo mode to avoid
6811 // stereo to mono post process as the resampler always outputs stereo.
Mathias Agopian65ab4712010-07-14 17:59:35 -07006812 if (mChannelCount == 1 && mReqChannelCount == 2) {
6813 channelCount = 1;
6814 } else {
6815 channelCount = 2;
6816 }
6817 mResampler = AudioResampler::create(16, channelCount, mReqSampleRate);
6818 mResampler->setSampleRate(mSampleRate);
6819 mResampler->setVolume(AudioMixer::UNITY_GAIN, AudioMixer::UNITY_GAIN);
6820 mRsmpOutBuffer = new int32_t[mFrameCount * 2];
6821
Glenn Kasten85ab62c2012-11-01 11:11:38 -07006822 // optmization: if mono to mono, alter input frame count as if we were inputing
6823 // stereo samples
Mathias Agopian65ab4712010-07-14 17:59:35 -07006824 if (mChannelCount == 1 && mReqChannelCount == 1) {
6825 mFrameCount >>= 1;
6826 }
6827
6828 }
6829 mRsmpInIndex = mFrameCount;
6830}
6831
6832unsigned int AudioFlinger::RecordThread::getInputFramesLost()
6833{
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006834 Mutex::Autolock _l(mLock);
6835 if (initCheck() != NO_ERROR) {
6836 return 0;
6837 }
6838
Dima Zavin799a70e2011-04-18 16:57:27 -07006839 return mInput->stream->get_input_frames_lost(mInput->stream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07006840}
6841
Glenn Kasten106e8a42012-08-02 13:37:12 -07006842uint32_t AudioFlinger::RecordThread::hasAudioSession(int sessionId) const
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006843{
6844 Mutex::Autolock _l(mLock);
6845 uint32_t result = 0;
6846 if (getEffectChain_l(sessionId) != 0) {
6847 result = EFFECT_SESSION;
6848 }
6849
Glenn Kasten510a3d62012-07-16 14:24:34 -07006850 for (size_t i = 0; i < mTracks.size(); ++i) {
6851 if (sessionId == mTracks[i]->sessionId()) {
6852 result |= TRACK_SESSION;
6853 break;
6854 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07006855 }
6856
6857 return result;
6858}
6859
Glenn Kasten106e8a42012-08-02 13:37:12 -07006860KeyedVector<int, bool> AudioFlinger::RecordThread::sessionIds() const
Eric Laurent59bd0da2011-08-01 09:52:20 -07006861{
Glenn Kasten510a3d62012-07-16 14:24:34 -07006862 KeyedVector<int, bool> ids;
Eric Laurent59bd0da2011-08-01 09:52:20 -07006863 Mutex::Autolock _l(mLock);
Glenn Kasten510a3d62012-07-16 14:24:34 -07006864 for (size_t j = 0; j < mTracks.size(); ++j) {
6865 sp<RecordThread::RecordTrack> track = mTracks[j];
6866 int sessionId = track->sessionId();
6867 if (ids.indexOfKey(sessionId) < 0) {
6868 ids.add(sessionId, true);
6869 }
6870 }
6871 return ids;
Eric Laurent59bd0da2011-08-01 09:52:20 -07006872}
6873
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006874AudioFlinger::AudioStreamIn* AudioFlinger::RecordThread::clearInput()
6875{
6876 Mutex::Autolock _l(mLock);
6877 AudioStreamIn *input = mInput;
6878 mInput = NULL;
6879 return input;
6880}
6881
6882// this method must always be called either with ThreadBase mLock held or inside the thread loop
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08006883audio_stream_t* AudioFlinger::RecordThread::stream() const
Eric Laurentb8ba0a92011-08-07 16:32:26 -07006884{
6885 if (mInput == NULL) {
6886 return NULL;
6887 }
6888 return &mInput->stream->common;
6889}
6890
6891
Mathias Agopian65ab4712010-07-14 17:59:35 -07006892// ----------------------------------------------------------------------------
6893
Eric Laurenta4c5a552012-03-29 10:12:40 -07006894audio_module_handle_t AudioFlinger::loadHwModule(const char *name)
6895{
6896 if (!settingsAllowed()) {
6897 return 0;
6898 }
6899 Mutex::Autolock _l(mLock);
6900 return loadHwModule_l(name);
6901}
6902
6903// loadHwModule_l() must be called with AudioFlinger::mLock held
6904audio_module_handle_t AudioFlinger::loadHwModule_l(const char *name)
6905{
6906 for (size_t i = 0; i < mAudioHwDevs.size(); i++) {
6907 if (strncmp(mAudioHwDevs.valueAt(i)->moduleName(), name, strlen(name)) == 0) {
6908 ALOGW("loadHwModule() module %s already loaded", name);
6909 return mAudioHwDevs.keyAt(i);
6910 }
6911 }
6912
Eric Laurenta4c5a552012-03-29 10:12:40 -07006913 audio_hw_device_t *dev;
6914
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006915 int rc = load_audio_interface(name, &dev);
Eric Laurenta4c5a552012-03-29 10:12:40 -07006916 if (rc) {
6917 ALOGI("loadHwModule() error %d loading module %s ", rc, name);
6918 return 0;
6919 }
6920
6921 mHardwareStatus = AUDIO_HW_INIT;
6922 rc = dev->init_check(dev);
6923 mHardwareStatus = AUDIO_HW_IDLE;
6924 if (rc) {
6925 ALOGI("loadHwModule() init check error %d for module %s ", rc, name);
6926 return 0;
6927 }
6928
John Grossmanee578c02012-07-23 17:05:46 -07006929 // Check and cache this HAL's level of support for master mute and master
6930 // volume. If this is the first HAL opened, and it supports the get
6931 // methods, use the initial values provided by the HAL as the current
6932 // master mute and volume settings.
6933
6934 AudioHwDevice::Flags flags = static_cast<AudioHwDevice::Flags>(0);
6935 { // scope for auto-lock pattern
Eric Laurenta4c5a552012-03-29 10:12:40 -07006936 AutoMutex lock(mHardwareLock);
John Grossmanee578c02012-07-23 17:05:46 -07006937
6938 if (0 == mAudioHwDevs.size()) {
6939 mHardwareStatus = AUDIO_HW_GET_MASTER_VOLUME;
6940 if (NULL != dev->get_master_volume) {
6941 float mv;
6942 if (OK == dev->get_master_volume(dev, &mv)) {
6943 mMasterVolume = mv;
6944 }
6945 }
6946
6947 mHardwareStatus = AUDIO_HW_GET_MASTER_MUTE;
6948 if (NULL != dev->get_master_mute) {
6949 bool mm;
6950 if (OK == dev->get_master_mute(dev, &mm)) {
6951 mMasterMute = mm;
6952 }
6953 }
6954 }
6955
Eric Laurenta4c5a552012-03-29 10:12:40 -07006956 mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
John Grossmanee578c02012-07-23 17:05:46 -07006957 if ((NULL != dev->set_master_volume) &&
6958 (OK == dev->set_master_volume(dev, mMasterVolume))) {
6959 flags = static_cast<AudioHwDevice::Flags>(flags |
6960 AudioHwDevice::AHWD_CAN_SET_MASTER_VOLUME);
6961 }
6962
6963 mHardwareStatus = AUDIO_HW_SET_MASTER_MUTE;
6964 if ((NULL != dev->set_master_mute) &&
6965 (OK == dev->set_master_mute(dev, mMasterMute))) {
6966 flags = static_cast<AudioHwDevice::Flags>(flags |
6967 AudioHwDevice::AHWD_CAN_SET_MASTER_MUTE);
6968 }
6969
Eric Laurenta4c5a552012-03-29 10:12:40 -07006970 mHardwareStatus = AUDIO_HW_IDLE;
6971 }
6972
6973 audio_module_handle_t handle = nextUniqueId();
John Grossmanee578c02012-07-23 17:05:46 -07006974 mAudioHwDevs.add(handle, new AudioHwDevice(name, dev, flags));
Eric Laurenta4c5a552012-03-29 10:12:40 -07006975
6976 ALOGI("loadHwModule() Loaded %s audio interface from %s (%s) handle %d",
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07006977 name, dev->common.module->name, dev->common.module->id, handle);
Eric Laurenta4c5a552012-03-29 10:12:40 -07006978
6979 return handle;
6980
6981}
6982
Glenn Kastencc0f1cf2012-09-24 11:27:18 -07006983// ----------------------------------------------------------------------------
6984
Glenn Kasten3b16c762012-11-14 08:44:39 -08006985uint32_t AudioFlinger::getPrimaryOutputSamplingRate()
Glenn Kastencc0f1cf2012-09-24 11:27:18 -07006986{
6987 Mutex::Autolock _l(mLock);
6988 PlaybackThread *thread = primaryPlaybackThread_l();
6989 return thread != NULL ? thread->sampleRate() : 0;
6990}
6991
Glenn Kastene33054e2012-11-14 12:54:39 -08006992size_t AudioFlinger::getPrimaryOutputFrameCount()
Glenn Kastencc0f1cf2012-09-24 11:27:18 -07006993{
6994 Mutex::Autolock _l(mLock);
6995 PlaybackThread *thread = primaryPlaybackThread_l();
6996 return thread != NULL ? thread->frameCountHAL() : 0;
6997}
6998
6999// ----------------------------------------------------------------------------
7000
Eric Laurenta4c5a552012-03-29 10:12:40 -07007001audio_io_handle_t AudioFlinger::openOutput(audio_module_handle_t module,
7002 audio_devices_t *pDevices,
7003 uint32_t *pSamplingRate,
7004 audio_format_t *pFormat,
7005 audio_channel_mask_t *pChannelMask,
7006 uint32_t *pLatencyMs,
Eric Laurent0ca3cf92012-04-18 09:24:29 -07007007 audio_output_flags_t flags)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007008{
7009 status_t status;
7010 PlaybackThread *thread = NULL;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007011 struct audio_config config = {
7012 sample_rate: pSamplingRate ? *pSamplingRate : 0,
7013 channel_mask: pChannelMask ? *pChannelMask : 0,
7014 format: pFormat ? *pFormat : AUDIO_FORMAT_DEFAULT,
7015 };
7016 audio_stream_out_t *outStream = NULL;
John Grossmanee578c02012-07-23 17:05:46 -07007017 AudioHwDevice *outHwDev;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007018
Eric Laurenta4c5a552012-03-29 10:12:40 -07007019 ALOGV("openOutput(), module %d Device %x, SamplingRate %d, Format %d, Channels %x, flags %x",
7020 module,
Glenn Kastenbb4350d2012-07-03 15:56:38 -07007021 (pDevices != NULL) ? *pDevices : 0,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007022 config.sample_rate,
7023 config.format,
7024 config.channel_mask,
Eric Laurenta4c5a552012-03-29 10:12:40 -07007025 flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007026
7027 if (pDevices == NULL || *pDevices == 0) {
7028 return 0;
7029 }
Dima Zavin799a70e2011-04-18 16:57:27 -07007030
Mathias Agopian65ab4712010-07-14 17:59:35 -07007031 Mutex::Autolock _l(mLock);
7032
Eric Laurenta4c5a552012-03-29 10:12:40 -07007033 outHwDev = findSuitableHwDev_l(module, *pDevices);
Dima Zavin799a70e2011-04-18 16:57:27 -07007034 if (outHwDev == NULL)
7035 return 0;
7036
John Grossmanee578c02012-07-23 17:05:46 -07007037 audio_hw_device_t *hwDevHal = outHwDev->hwDevice();
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007038 audio_io_handle_t id = nextUniqueId();
7039
Glenn Kasten8abf44d2012-02-02 14:16:03 -08007040 mHardwareStatus = AUDIO_HW_OUTPUT_OPEN;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007041
John Grossmanee578c02012-07-23 17:05:46 -07007042 status = hwDevHal->open_output_stream(hwDevHal,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007043 id,
7044 *pDevices,
7045 (audio_output_flags_t)flags,
7046 &config,
7047 &outStream);
7048
Glenn Kasten8abf44d2012-02-02 14:16:03 -08007049 mHardwareStatus = AUDIO_HW_IDLE;
Glenn Kasten85ab62c2012-11-01 11:11:38 -07007050 ALOGV("openOutput() openOutputStream returned output %p, SamplingRate %d, Format %d, "
7051 "Channels %x, status %d",
Dima Zavin799a70e2011-04-18 16:57:27 -07007052 outStream,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007053 config.sample_rate,
7054 config.format,
7055 config.channel_mask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07007056 status);
7057
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007058 if (status == NO_ERROR && outStream != NULL) {
Dima Zavin799a70e2011-04-18 16:57:27 -07007059 AudioStreamOut *output = new AudioStreamOut(outHwDev, outStream);
Dima Zavin799a70e2011-04-18 16:57:27 -07007060
Eric Laurent0ca3cf92012-04-18 09:24:29 -07007061 if ((flags & AUDIO_OUTPUT_FLAG_DIRECT) ||
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007062 (config.format != AUDIO_FORMAT_PCM_16_BIT) ||
7063 (config.channel_mask != AUDIO_CHANNEL_OUT_STEREO)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007064 thread = new DirectOutputThread(this, output, id, *pDevices);
Steve Block3856b092011-10-20 11:56:00 +01007065 ALOGV("openOutput() created direct output: ID %d thread %p", id, thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007066 } else {
7067 thread = new MixerThread(this, output, id, *pDevices);
Steve Block3856b092011-10-20 11:56:00 +01007068 ALOGV("openOutput() created mixer output: ID %d thread %p", id, thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007069 }
7070 mPlaybackThreads.add(id, thread);
7071
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007072 if (pSamplingRate != NULL) *pSamplingRate = config.sample_rate;
7073 if (pFormat != NULL) *pFormat = config.format;
7074 if (pChannelMask != NULL) *pChannelMask = config.channel_mask;
Glenn Kastena0d68332012-01-27 16:47:15 -08007075 if (pLatencyMs != NULL) *pLatencyMs = thread->latency();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007076
7077 // notify client processes of the new output creation
7078 thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
Eric Laurenta4c5a552012-03-29 10:12:40 -07007079
7080 // the first primary output opened designates the primary hw device
Eric Laurent0ca3cf92012-04-18 09:24:29 -07007081 if ((mPrimaryHardwareDev == NULL) && (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
Eric Laurenta4c5a552012-03-29 10:12:40 -07007082 ALOGI("Using module %d has the primary audio interface", module);
7083 mPrimaryHardwareDev = outHwDev;
7084
7085 AutoMutex lock(mHardwareLock);
7086 mHardwareStatus = AUDIO_HW_SET_MODE;
John Grossmanee578c02012-07-23 17:05:46 -07007087 hwDevHal->set_mode(hwDevHal, mMode);
Eric Laurenta4c5a552012-03-29 10:12:40 -07007088 mHardwareStatus = AUDIO_HW_IDLE;
Eric Laurenta4c5a552012-03-29 10:12:40 -07007089 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007090 return id;
7091 }
7092
7093 return 0;
7094}
7095
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007096audio_io_handle_t AudioFlinger::openDuplicateOutput(audio_io_handle_t output1,
7097 audio_io_handle_t output2)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007098{
7099 Mutex::Autolock _l(mLock);
7100 MixerThread *thread1 = checkMixerThread_l(output1);
7101 MixerThread *thread2 = checkMixerThread_l(output2);
7102
7103 if (thread1 == NULL || thread2 == NULL) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07007104 ALOGW("openDuplicateOutput() wrong output mixer type for output %d or %d", output1,
7105 output2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007106 return 0;
7107 }
7108
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007109 audio_io_handle_t id = nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007110 DuplicatingThread *thread = new DuplicatingThread(this, thread1, id);
7111 thread->addOutputTrack(thread2);
7112 mPlaybackThreads.add(id, thread);
7113 // notify client processes of the new output creation
7114 thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
7115 return id;
7116}
7117
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007118status_t AudioFlinger::closeOutput(audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007119{
Glenn Kastend96c5722012-04-25 13:44:49 -07007120 return closeOutput_nonvirtual(output);
7121}
7122
7123status_t AudioFlinger::closeOutput_nonvirtual(audio_io_handle_t output)
7124{
Mathias Agopian65ab4712010-07-14 17:59:35 -07007125 // keep strong reference on the playback thread so that
7126 // it is not destroyed while exit() is executed
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007127 sp<PlaybackThread> thread;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007128 {
7129 Mutex::Autolock _l(mLock);
7130 thread = checkPlaybackThread_l(output);
7131 if (thread == NULL) {
7132 return BAD_VALUE;
7133 }
7134
Steve Block3856b092011-10-20 11:56:00 +01007135 ALOGV("closeOutput() %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007136
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007137 if (thread->type() == ThreadBase::MIXER) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007138 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007139 if (mPlaybackThreads.valueAt(i)->type() == ThreadBase::DUPLICATING) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07007140 DuplicatingThread *dupThread =
7141 (DuplicatingThread *)mPlaybackThreads.valueAt(i).get();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007142 dupThread->removeOutputTrack((MixerThread *)thread.get());
7143 }
7144 }
7145 }
Glenn Kastena1117922012-01-26 10:53:32 -08007146 audioConfigChanged_l(AudioSystem::OUTPUT_CLOSED, output, NULL);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007147 mPlaybackThreads.removeItem(output);
7148 }
7149 thread->exit();
Glenn Kastenb28686f2012-01-06 08:39:38 -08007150 // The thread entity (active unit of execution) is no longer running here,
7151 // but the ThreadBase container still exists.
Mathias Agopian65ab4712010-07-14 17:59:35 -07007152
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007153 if (thread->type() != ThreadBase::DUPLICATING) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007154 AudioStreamOut *out = thread->clearOutput();
Glenn Kasten5798d4e2012-03-08 12:18:35 -08007155 ALOG_ASSERT(out != NULL, "out shouldn't be NULL");
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007156 // from now on thread->mOutput is NULL
John Grossmanee578c02012-07-23 17:05:46 -07007157 out->hwDev()->close_output_stream(out->hwDev(), out->stream);
Dima Zavin799a70e2011-04-18 16:57:27 -07007158 delete out;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007159 }
7160 return NO_ERROR;
7161}
7162
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007163status_t AudioFlinger::suspendOutput(audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007164{
7165 Mutex::Autolock _l(mLock);
7166 PlaybackThread *thread = checkPlaybackThread_l(output);
7167
7168 if (thread == NULL) {
7169 return BAD_VALUE;
7170 }
7171
Steve Block3856b092011-10-20 11:56:00 +01007172 ALOGV("suspendOutput() %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007173 thread->suspend();
7174
7175 return NO_ERROR;
7176}
7177
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007178status_t AudioFlinger::restoreOutput(audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007179{
7180 Mutex::Autolock _l(mLock);
7181 PlaybackThread *thread = checkPlaybackThread_l(output);
7182
7183 if (thread == NULL) {
7184 return BAD_VALUE;
7185 }
7186
Steve Block3856b092011-10-20 11:56:00 +01007187 ALOGV("restoreOutput() %d", output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007188
7189 thread->restore();
7190
7191 return NO_ERROR;
7192}
7193
Eric Laurenta4c5a552012-03-29 10:12:40 -07007194audio_io_handle_t AudioFlinger::openInput(audio_module_handle_t module,
7195 audio_devices_t *pDevices,
7196 uint32_t *pSamplingRate,
7197 audio_format_t *pFormat,
Glenn Kasten254af182012-07-03 14:59:05 -07007198 audio_channel_mask_t *pChannelMask)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007199{
7200 status_t status;
7201 RecordThread *thread = NULL;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007202 struct audio_config config = {
7203 sample_rate: pSamplingRate ? *pSamplingRate : 0,
7204 channel_mask: pChannelMask ? *pChannelMask : 0,
7205 format: pFormat ? *pFormat : AUDIO_FORMAT_DEFAULT,
7206 };
7207 uint32_t reqSamplingRate = config.sample_rate;
7208 audio_format_t reqFormat = config.format;
7209 audio_channel_mask_t reqChannels = config.channel_mask;
7210 audio_stream_in_t *inStream = NULL;
John Grossmanee578c02012-07-23 17:05:46 -07007211 AudioHwDevice *inHwDev;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007212
7213 if (pDevices == NULL || *pDevices == 0) {
7214 return 0;
7215 }
Dima Zavin799a70e2011-04-18 16:57:27 -07007216
Mathias Agopian65ab4712010-07-14 17:59:35 -07007217 Mutex::Autolock _l(mLock);
7218
Eric Laurenta4c5a552012-03-29 10:12:40 -07007219 inHwDev = findSuitableHwDev_l(module, *pDevices);
Dima Zavin799a70e2011-04-18 16:57:27 -07007220 if (inHwDev == NULL)
7221 return 0;
7222
John Grossmanee578c02012-07-23 17:05:46 -07007223 audio_hw_device_t *inHwHal = inHwDev->hwDevice();
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007224 audio_io_handle_t id = nextUniqueId();
7225
John Grossmanee578c02012-07-23 17:05:46 -07007226 status = inHwHal->open_input_stream(inHwHal, id, *pDevices, &config,
Dima Zavin799a70e2011-04-18 16:57:27 -07007227 &inStream);
Glenn Kasten85ab62c2012-11-01 11:11:38 -07007228 ALOGV("openInput() openInputStream returned input %p, SamplingRate %d, Format %d, Channels %x, "
7229 "status %d",
Dima Zavin799a70e2011-04-18 16:57:27 -07007230 inStream,
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007231 config.sample_rate,
7232 config.format,
7233 config.channel_mask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07007234 status);
7235
Glenn Kasten85ab62c2012-11-01 11:11:38 -07007236 // If the input could not be opened with the requested parameters and we can handle the
7237 // conversion internally, try to open again with the proposed parameters. The AudioFlinger can
7238 // resample the input and do mono to stereo or stereo to mono conversions on 16 bit PCM inputs.
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007239 if (status == BAD_VALUE &&
7240 reqFormat == config.format && config.format == AUDIO_FORMAT_PCM_16_BIT &&
7241 (config.sample_rate <= 2 * reqSamplingRate) &&
7242 (popcount(config.channel_mask) <= FCC_2) && (popcount(reqChannels) <= FCC_2)) {
Glenn Kasten254af182012-07-03 14:59:05 -07007243 ALOGV("openInput() reopening with proposed sampling rate and channel mask");
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007244 inStream = NULL;
John Grossmanee578c02012-07-23 17:05:46 -07007245 status = inHwHal->open_input_stream(inHwHal, id, *pDevices, &config, &inStream);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007246 }
7247
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007248 if (status == NO_ERROR && inStream != NULL) {
Glenn Kastend06785b2012-09-30 12:29:28 -07007249
7250 // Try to re-use most recently used Pipe to archive a copy of input for dumpsys,
7251 // or (re-)create if current Pipe is idle and does not match the new format
7252 sp<NBAIO_Sink> teeSink;
7253#ifdef TEE_SINK_INPUT_FRAMES
7254 enum {
7255 TEE_SINK_NO, // don't copy input
7256 TEE_SINK_NEW, // copy input using a new pipe
7257 TEE_SINK_OLD, // copy input using an existing pipe
7258 } kind;
7259 NBAIO_Format format = Format_from_SR_C(inStream->common.get_sample_rate(&inStream->common),
7260 popcount(inStream->common.get_channels(&inStream->common)));
7261 if (format == Format_Invalid) {
7262 kind = TEE_SINK_NO;
7263 } else if (mRecordTeeSink == 0) {
7264 kind = TEE_SINK_NEW;
7265 } else if (mRecordTeeSink->getStrongCount() != 1) {
7266 kind = TEE_SINK_NO;
7267 } else if (format == mRecordTeeSink->format()) {
7268 kind = TEE_SINK_OLD;
7269 } else {
7270 kind = TEE_SINK_NEW;
7271 }
7272 switch (kind) {
7273 case TEE_SINK_NEW: {
7274 Pipe *pipe = new Pipe(TEE_SINK_INPUT_FRAMES, format);
7275 size_t numCounterOffers = 0;
7276 const NBAIO_Format offers[1] = {format};
7277 ssize_t index = pipe->negotiate(offers, 1, NULL, numCounterOffers);
7278 ALOG_ASSERT(index == 0);
7279 PipeReader *pipeReader = new PipeReader(*pipe);
7280 numCounterOffers = 0;
7281 index = pipeReader->negotiate(offers, 1, NULL, numCounterOffers);
7282 ALOG_ASSERT(index == 0);
7283 mRecordTeeSink = pipe;
7284 mRecordTeeSource = pipeReader;
7285 teeSink = pipe;
7286 }
7287 break;
7288 case TEE_SINK_OLD:
7289 teeSink = mRecordTeeSink;
7290 break;
7291 case TEE_SINK_NO:
7292 default:
7293 break;
7294 }
7295#endif
Dima Zavin799a70e2011-04-18 16:57:27 -07007296 AudioStreamIn *input = new AudioStreamIn(inHwDev, inStream);
7297
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007298 // Start record thread
7299 // RecorThread require both input and output device indication to forward to audio
7300 // pre processing modules
Glenn Kastenbb4350d2012-07-03 15:56:38 -07007301 audio_devices_t device = (*pDevices) | primaryOutputDevice_l();
Glenn Kastend06785b2012-09-30 12:29:28 -07007302
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007303 thread = new RecordThread(this,
7304 input,
7305 reqSamplingRate,
7306 reqChannels,
7307 id,
Glenn Kastend06785b2012-09-30 12:29:28 -07007308 device, teeSink);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007309 mRecordThreads.add(id, thread);
Steve Block3856b092011-10-20 11:56:00 +01007310 ALOGV("openInput() created record thread: ID %d thread %p", id, thread);
Glenn Kastena0d68332012-01-27 16:47:15 -08007311 if (pSamplingRate != NULL) *pSamplingRate = reqSamplingRate;
Eric Laurentf7ffb8b2012-04-14 09:06:57 -07007312 if (pFormat != NULL) *pFormat = config.format;
Eric Laurenta4c5a552012-03-29 10:12:40 -07007313 if (pChannelMask != NULL) *pChannelMask = reqChannels;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007314
Mathias Agopian65ab4712010-07-14 17:59:35 -07007315 // notify client processes of the new input creation
7316 thread->audioConfigChanged_l(AudioSystem::INPUT_OPENED);
7317 return id;
7318 }
7319
7320 return 0;
7321}
7322
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007323status_t AudioFlinger::closeInput(audio_io_handle_t input)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007324{
Glenn Kastend96c5722012-04-25 13:44:49 -07007325 return closeInput_nonvirtual(input);
7326}
7327
7328status_t AudioFlinger::closeInput_nonvirtual(audio_io_handle_t input)
7329{
Mathias Agopian65ab4712010-07-14 17:59:35 -07007330 // keep strong reference on the record thread so that
7331 // it is not destroyed while exit() is executed
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007332 sp<RecordThread> thread;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007333 {
7334 Mutex::Autolock _l(mLock);
7335 thread = checkRecordThread_l(input);
Glenn Kastend5903ec2012-03-18 10:33:27 -07007336 if (thread == 0) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007337 return BAD_VALUE;
7338 }
7339
Steve Block3856b092011-10-20 11:56:00 +01007340 ALOGV("closeInput() %d", input);
Glenn Kastena1117922012-01-26 10:53:32 -08007341 audioConfigChanged_l(AudioSystem::INPUT_CLOSED, input, NULL);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007342 mRecordThreads.removeItem(input);
7343 }
7344 thread->exit();
Glenn Kastenb28686f2012-01-06 08:39:38 -08007345 // The thread entity (active unit of execution) is no longer running here,
7346 // but the ThreadBase container still exists.
Mathias Agopian65ab4712010-07-14 17:59:35 -07007347
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007348 AudioStreamIn *in = thread->clearInput();
Glenn Kasten5798d4e2012-03-08 12:18:35 -08007349 ALOG_ASSERT(in != NULL, "in shouldn't be NULL");
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007350 // from now on thread->mInput is NULL
John Grossmanee578c02012-07-23 17:05:46 -07007351 in->hwDev()->close_input_stream(in->hwDev(), in->stream);
Dima Zavin799a70e2011-04-18 16:57:27 -07007352 delete in;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007353
7354 return NO_ERROR;
7355}
7356
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007357status_t AudioFlinger::setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output)
Mathias Agopian65ab4712010-07-14 17:59:35 -07007358{
7359 Mutex::Autolock _l(mLock);
Steve Block3856b092011-10-20 11:56:00 +01007360 ALOGV("setStreamOutput() stream %d to output %d", stream, output);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007361
7362 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
7363 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
Eric Laurent22167852012-06-20 12:26:32 -07007364 thread->invalidateTracks(stream);
Eric Laurentde070132010-07-13 04:45:46 -07007365 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007366
7367 return NO_ERROR;
7368}
7369
7370
7371int AudioFlinger::newAudioSessionId()
7372{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007373 return nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007374}
7375
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007376void AudioFlinger::acquireAudioSessionId(int audioSession)
7377{
7378 Mutex::Autolock _l(mLock);
Glenn Kastenbb001922012-02-03 11:10:26 -08007379 pid_t caller = IPCThreadState::self()->getCallingPid();
Steve Block3856b092011-10-20 11:56:00 +01007380 ALOGV("acquiring %d from %d", audioSession, caller);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08007381 size_t num = mAudioSessionRefs.size();
7382 for (size_t i = 0; i< num; i++) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007383 AudioSessionRef *ref = mAudioSessionRefs.editItemAt(i);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08007384 if (ref->mSessionid == audioSession && ref->mPid == caller) {
7385 ref->mCnt++;
7386 ALOGV(" incremented refcount to %d", ref->mCnt);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007387 return;
7388 }
7389 }
Glenn Kasten84afa3b2012-01-25 15:28:08 -08007390 mAudioSessionRefs.push(new AudioSessionRef(audioSession, caller));
7391 ALOGV(" added new entry for %d", audioSession);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007392}
7393
7394void AudioFlinger::releaseAudioSessionId(int audioSession)
7395{
7396 Mutex::Autolock _l(mLock);
Glenn Kastenbb001922012-02-03 11:10:26 -08007397 pid_t caller = IPCThreadState::self()->getCallingPid();
Steve Block3856b092011-10-20 11:56:00 +01007398 ALOGV("releasing %d from %d", audioSession, caller);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08007399 size_t num = mAudioSessionRefs.size();
7400 for (size_t i = 0; i< num; i++) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007401 AudioSessionRef *ref = mAudioSessionRefs.itemAt(i);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08007402 if (ref->mSessionid == audioSession && ref->mPid == caller) {
7403 ref->mCnt--;
7404 ALOGV(" decremented refcount to %d", ref->mCnt);
7405 if (ref->mCnt == 0) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007406 mAudioSessionRefs.removeAt(i);
7407 delete ref;
7408 purgeStaleEffects_l();
7409 }
7410 return;
7411 }
7412 }
Steve Block5ff1dd52012-01-05 23:22:43 +00007413 ALOGW("session id %d not found for pid %d", audioSession, caller);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007414}
7415
7416void AudioFlinger::purgeStaleEffects_l() {
7417
Steve Block3856b092011-10-20 11:56:00 +01007418 ALOGV("purging stale effects");
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007419
7420 Vector< sp<EffectChain> > chains;
7421
7422 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
7423 sp<PlaybackThread> t = mPlaybackThreads.valueAt(i);
7424 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
7425 sp<EffectChain> ec = t->mEffectChains[j];
Marco Nelissen0270b182011-08-12 14:14:39 -07007426 if (ec->sessionId() > AUDIO_SESSION_OUTPUT_MIX) {
7427 chains.push(ec);
7428 }
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007429 }
7430 }
7431 for (size_t i = 0; i < mRecordThreads.size(); i++) {
7432 sp<RecordThread> t = mRecordThreads.valueAt(i);
7433 for (size_t j = 0; j < t->mEffectChains.size(); j++) {
7434 sp<EffectChain> ec = t->mEffectChains[j];
7435 chains.push(ec);
7436 }
7437 }
7438
7439 for (size_t i = 0; i < chains.size(); i++) {
7440 sp<EffectChain> ec = chains[i];
7441 int sessionid = ec->sessionId();
7442 sp<ThreadBase> t = ec->mThread.promote();
7443 if (t == 0) {
7444 continue;
7445 }
7446 size_t numsessionrefs = mAudioSessionRefs.size();
7447 bool found = false;
7448 for (size_t k = 0; k < numsessionrefs; k++) {
7449 AudioSessionRef *ref = mAudioSessionRefs.itemAt(k);
Glenn Kasten012ca6b2012-03-06 11:22:01 -08007450 if (ref->mSessionid == sessionid) {
Steve Block3856b092011-10-20 11:56:00 +01007451 ALOGV(" session %d still exists for %d with %d refs",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007452 sessionid, ref->mPid, ref->mCnt);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007453 found = true;
7454 break;
7455 }
7456 }
7457 if (!found) {
Eric Laurenta5f44eb2012-06-25 11:38:29 -07007458 Mutex::Autolock _l (t->mLock);
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007459 // remove all effects from the chain
7460 while (ec->mEffects.size()) {
7461 sp<EffectModule> effect = ec->mEffects[0];
7462 effect->unPin();
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007463 t->removeEffect_l(effect);
Eric Laurenta5f44eb2012-06-25 11:38:29 -07007464 if (effect->purgeHandles()) {
7465 t->checkSuspendOnEffectEnabled_l(effect, false, effect->sessionId());
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007466 }
7467 AudioSystem::unregisterEffect(effect->id());
7468 }
7469 }
7470 }
7471 return;
7472}
7473
Mathias Agopian65ab4712010-07-14 17:59:35 -07007474// checkPlaybackThread_l() must be called with AudioFlinger::mLock held
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007475AudioFlinger::PlaybackThread *AudioFlinger::checkPlaybackThread_l(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007476{
Glenn Kastena1117922012-01-26 10:53:32 -08007477 return mPlaybackThreads.valueFor(output).get();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007478}
7479
7480// checkMixerThread_l() must be called with AudioFlinger::mLock held
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007481AudioFlinger::MixerThread *AudioFlinger::checkMixerThread_l(audio_io_handle_t output) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007482{
7483 PlaybackThread *thread = checkPlaybackThread_l(output);
Glenn Kastena1117922012-01-26 10:53:32 -08007484 return thread != NULL && thread->type() != ThreadBase::DIRECT ? (MixerThread *) thread : NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007485}
7486
7487// checkRecordThread_l() must be called with AudioFlinger::mLock held
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007488AudioFlinger::RecordThread *AudioFlinger::checkRecordThread_l(audio_io_handle_t input) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007489{
Glenn Kastena1117922012-01-26 10:53:32 -08007490 return mRecordThreads.valueFor(input).get();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007491}
7492
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007493uint32_t AudioFlinger::nextUniqueId()
Mathias Agopian65ab4712010-07-14 17:59:35 -07007494{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007495 return android_atomic_inc(&mNextUniqueId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007496}
7497
Glenn Kasten02fe1bf2012-02-24 15:42:17 -08007498AudioFlinger::PlaybackThread *AudioFlinger::primaryPlaybackThread_l() const
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007499{
7500 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
7501 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
Eric Laurentb8ba0a92011-08-07 16:32:26 -07007502 AudioStreamOut *output = thread->getOutput();
John Grossmanee578c02012-07-23 17:05:46 -07007503 if (output != NULL && output->audioHwDev == mPrimaryHardwareDev) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007504 return thread;
7505 }
7506 }
7507 return NULL;
7508}
7509
Glenn Kastenbb4350d2012-07-03 15:56:38 -07007510audio_devices_t AudioFlinger::primaryOutputDevice_l() const
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007511{
7512 PlaybackThread *thread = primaryPlaybackThread_l();
7513
7514 if (thread == NULL) {
7515 return 0;
7516 }
7517
Eric Laurentf1c04f92012-08-28 14:26:53 -07007518 return thread->outDevice();
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007519}
7520
Eric Laurenta011e352012-03-29 15:51:43 -07007521sp<AudioFlinger::SyncEvent> AudioFlinger::createSyncEvent(AudioSystem::sync_event_t type,
7522 int triggerSession,
7523 int listenerSession,
7524 sync_event_callback_t callBack,
7525 void *cookie)
7526{
7527 Mutex::Autolock _l(mLock);
7528
7529 sp<SyncEvent> event = new SyncEvent(type, triggerSession, listenerSession, callBack, cookie);
7530 status_t playStatus = NAME_NOT_FOUND;
7531 status_t recStatus = NAME_NOT_FOUND;
7532 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
7533 playStatus = mPlaybackThreads.valueAt(i)->setSyncEvent(event);
7534 if (playStatus == NO_ERROR) {
7535 return event;
7536 }
7537 }
7538 for (size_t i = 0; i < mRecordThreads.size(); i++) {
7539 recStatus = mRecordThreads.valueAt(i)->setSyncEvent(event);
7540 if (recStatus == NO_ERROR) {
7541 return event;
7542 }
7543 }
7544 if (playStatus == NAME_NOT_FOUND || recStatus == NAME_NOT_FOUND) {
7545 mPendingSyncEvents.add(event);
7546 } else {
7547 ALOGV("createSyncEvent() invalid event %d", event->type());
7548 event.clear();
7549 }
7550 return event;
7551}
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007552
Mathias Agopian65ab4712010-07-14 17:59:35 -07007553// ----------------------------------------------------------------------------
7554// Effect management
7555// ----------------------------------------------------------------------------
7556
7557
Glenn Kastenf587ba52012-01-26 16:25:10 -08007558status_t AudioFlinger::queryNumberEffects(uint32_t *numEffects) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007559{
7560 Mutex::Autolock _l(mLock);
7561 return EffectQueryNumberEffects(numEffects);
7562}
7563
Glenn Kastenf587ba52012-01-26 16:25:10 -08007564status_t AudioFlinger::queryEffect(uint32_t index, effect_descriptor_t *descriptor) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007565{
7566 Mutex::Autolock _l(mLock);
7567 return EffectQueryEffect(index, descriptor);
7568}
7569
Glenn Kasten5e92a782012-01-30 07:40:52 -08007570status_t AudioFlinger::getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kastenf587ba52012-01-26 16:25:10 -08007571 effect_descriptor_t *descriptor) const
Mathias Agopian65ab4712010-07-14 17:59:35 -07007572{
7573 Mutex::Autolock _l(mLock);
7574 return EffectGetDescriptor(pUuid, descriptor);
7575}
7576
7577
Mathias Agopian65ab4712010-07-14 17:59:35 -07007578sp<IEffect> AudioFlinger::createEffect(pid_t pid,
7579 effect_descriptor_t *pDesc,
7580 const sp<IEffectClient>& effectClient,
7581 int32_t priority,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007582 audio_io_handle_t io,
Mathias Agopian65ab4712010-07-14 17:59:35 -07007583 int sessionId,
7584 status_t *status,
7585 int *id,
7586 int *enabled)
7587{
7588 status_t lStatus = NO_ERROR;
7589 sp<EffectHandle> handle;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007590 effect_descriptor_t desc;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007591
Glenn Kasten98ec94c2012-01-25 14:28:29 -08007592 ALOGV("createEffect pid %d, effectClient %p, priority %d, sessionId %d, io %d",
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007593 pid, effectClient.get(), priority, sessionId, io);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007594
7595 if (pDesc == NULL) {
7596 lStatus = BAD_VALUE;
7597 goto Exit;
7598 }
7599
Eric Laurent84e9a102010-09-23 16:10:16 -07007600 // check audio settings permission for global effects
Dima Zavinfce7a472011-04-19 22:30:36 -07007601 if (sessionId == AUDIO_SESSION_OUTPUT_MIX && !settingsAllowed()) {
Eric Laurent84e9a102010-09-23 16:10:16 -07007602 lStatus = PERMISSION_DENIED;
7603 goto Exit;
7604 }
7605
Dima Zavinfce7a472011-04-19 22:30:36 -07007606 // Session AUDIO_SESSION_OUTPUT_STAGE is reserved for output stage effects
Eric Laurent84e9a102010-09-23 16:10:16 -07007607 // that can only be created by audio policy manager (running in same process)
Glenn Kasten44deb052012-02-05 18:09:08 -08007608 if (sessionId == AUDIO_SESSION_OUTPUT_STAGE && getpid_cached != pid) {
Eric Laurent84e9a102010-09-23 16:10:16 -07007609 lStatus = PERMISSION_DENIED;
7610 goto Exit;
7611 }
7612
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007613 if (io == 0) {
Dima Zavinfce7a472011-04-19 22:30:36 -07007614 if (sessionId == AUDIO_SESSION_OUTPUT_STAGE) {
Eric Laurent84e9a102010-09-23 16:10:16 -07007615 // output must be specified by AudioPolicyManager when using session
Dima Zavinfce7a472011-04-19 22:30:36 -07007616 // AUDIO_SESSION_OUTPUT_STAGE
Eric Laurent84e9a102010-09-23 16:10:16 -07007617 lStatus = BAD_VALUE;
7618 goto Exit;
Dima Zavinfce7a472011-04-19 22:30:36 -07007619 } else if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
Eric Laurent84e9a102010-09-23 16:10:16 -07007620 // if the output returned by getOutputForEffect() is removed before we lock the
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007621 // mutex below, the call to checkPlaybackThread_l(io) below will detect it
Eric Laurent84e9a102010-09-23 16:10:16 -07007622 // and we will exit safely
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007623 io = AudioSystem::getOutputForEffect(&desc);
Eric Laurent84e9a102010-09-23 16:10:16 -07007624 }
7625 }
7626
Mathias Agopian65ab4712010-07-14 17:59:35 -07007627 {
7628 Mutex::Autolock _l(mLock);
7629
Mathias Agopian65ab4712010-07-14 17:59:35 -07007630
7631 if (!EffectIsNullUuid(&pDesc->uuid)) {
7632 // if uuid is specified, request effect descriptor
7633 lStatus = EffectGetDescriptor(&pDesc->uuid, &desc);
7634 if (lStatus < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007635 ALOGW("createEffect() error %d from EffectGetDescriptor", lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007636 goto Exit;
7637 }
7638 } else {
7639 // if uuid is not specified, look for an available implementation
7640 // of the required type in effect factory
7641 if (EffectIsNullUuid(&pDesc->type)) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007642 ALOGW("createEffect() no effect type");
Mathias Agopian65ab4712010-07-14 17:59:35 -07007643 lStatus = BAD_VALUE;
7644 goto Exit;
7645 }
7646 uint32_t numEffects = 0;
7647 effect_descriptor_t d;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007648 d.flags = 0; // prevent compiler warning
Mathias Agopian65ab4712010-07-14 17:59:35 -07007649 bool found = false;
7650
7651 lStatus = EffectQueryNumberEffects(&numEffects);
7652 if (lStatus < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007653 ALOGW("createEffect() error %d from EffectQueryNumberEffects", lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007654 goto Exit;
7655 }
7656 for (uint32_t i = 0; i < numEffects; i++) {
7657 lStatus = EffectQueryEffect(i, &desc);
7658 if (lStatus < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007659 ALOGW("createEffect() error %d from EffectQueryEffect", lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007660 continue;
7661 }
7662 if (memcmp(&desc.type, &pDesc->type, sizeof(effect_uuid_t)) == 0) {
7663 // If matching type found save effect descriptor. If the session is
7664 // 0 and the effect is not auxiliary, continue enumeration in case
7665 // an auxiliary version of this effect type is available
7666 found = true;
Glenn Kastena189a682012-02-20 12:16:30 -08007667 d = desc;
Dima Zavinfce7a472011-04-19 22:30:36 -07007668 if (sessionId != AUDIO_SESSION_OUTPUT_MIX ||
Mathias Agopian65ab4712010-07-14 17:59:35 -07007669 (desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
7670 break;
7671 }
7672 }
7673 }
7674 if (!found) {
7675 lStatus = BAD_VALUE;
Steve Block5ff1dd52012-01-05 23:22:43 +00007676 ALOGW("createEffect() effect not found");
Mathias Agopian65ab4712010-07-14 17:59:35 -07007677 goto Exit;
7678 }
7679 // For same effect type, chose auxiliary version over insert version if
7680 // connect to output mix (Compliance to OpenSL ES)
Dima Zavinfce7a472011-04-19 22:30:36 -07007681 if (sessionId == AUDIO_SESSION_OUTPUT_MIX &&
Mathias Agopian65ab4712010-07-14 17:59:35 -07007682 (d.flags & EFFECT_FLAG_TYPE_MASK) != EFFECT_FLAG_TYPE_AUXILIARY) {
Glenn Kastena189a682012-02-20 12:16:30 -08007683 desc = d;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007684 }
7685 }
7686
7687 // Do not allow auxiliary effects on a session different from 0 (output mix)
Dima Zavinfce7a472011-04-19 22:30:36 -07007688 if (sessionId != AUDIO_SESSION_OUTPUT_MIX &&
Mathias Agopian65ab4712010-07-14 17:59:35 -07007689 (desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
7690 lStatus = INVALID_OPERATION;
7691 goto Exit;
7692 }
7693
Eric Laurent59255e42011-07-27 19:49:51 -07007694 // check recording permission for visualizer
7695 if ((memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) &&
7696 !recordingAllowed()) {
7697 lStatus = PERMISSION_DENIED;
7698 goto Exit;
7699 }
7700
Mathias Agopian65ab4712010-07-14 17:59:35 -07007701 // return effect descriptor
Glenn Kastena189a682012-02-20 12:16:30 -08007702 *pDesc = desc;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007703
7704 // If output is not specified try to find a matching audio session ID in one of the
7705 // output threads.
Eric Laurent84e9a102010-09-23 16:10:16 -07007706 // If output is 0 here, sessionId is neither SESSION_OUTPUT_STAGE nor SESSION_OUTPUT_MIX
7707 // because of code checking output when entering the function.
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007708 // Note: io is never 0 when creating an effect on an input
7709 if (io == 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007710 // look for the thread where the specified audio session is present
Eric Laurent84e9a102010-09-23 16:10:16 -07007711 for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
7712 if (mPlaybackThreads.valueAt(i)->hasAudioSession(sessionId) != 0) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007713 io = mPlaybackThreads.keyAt(i);
Eric Laurent84e9a102010-09-23 16:10:16 -07007714 break;
Eric Laurent39e94f82010-07-28 01:32:47 -07007715 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007716 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007717 if (io == 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007718 for (size_t i = 0; i < mRecordThreads.size(); i++) {
7719 if (mRecordThreads.valueAt(i)->hasAudioSession(sessionId) != 0) {
7720 io = mRecordThreads.keyAt(i);
7721 break;
7722 }
7723 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007724 }
Eric Laurent84e9a102010-09-23 16:10:16 -07007725 // If no output thread contains the requested session ID, default to
7726 // first output. The effect chain will be moved to the correct output
7727 // thread when a track with the same session ID is created
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007728 if (io == 0 && mPlaybackThreads.size()) {
7729 io = mPlaybackThreads.keyAt(0);
7730 }
Steve Block3856b092011-10-20 11:56:00 +01007731 ALOGV("createEffect() got io %d for effect %s", io, desc.name);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007732 }
7733 ThreadBase *thread = checkRecordThread_l(io);
7734 if (thread == NULL) {
7735 thread = checkPlaybackThread_l(io);
7736 if (thread == NULL) {
Steve Block29357bc2012-01-06 19:20:56 +00007737 ALOGE("createEffect() unknown output thread");
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007738 lStatus = BAD_VALUE;
7739 goto Exit;
Eric Laurent84e9a102010-09-23 16:10:16 -07007740 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007741 }
Eric Laurent84e9a102010-09-23 16:10:16 -07007742
Glenn Kasten98ec94c2012-01-25 14:28:29 -08007743 sp<Client> client = registerPid_l(pid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007744
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007745 // create effect on selected output thread
Eric Laurentde070132010-07-13 04:45:46 -07007746 handle = thread->createEffect_l(client, effectClient, priority, sessionId,
7747 &desc, enabled, &lStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007748 if (handle != 0 && id != NULL) {
7749 *id = handle->id();
7750 }
7751 }
7752
7753Exit:
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007754 if (status != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007755 *status = lStatus;
7756 }
7757 return handle;
7758}
7759
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007760status_t AudioFlinger::moveEffects(int sessionId, audio_io_handle_t srcOutput,
7761 audio_io_handle_t dstOutput)
Eric Laurentde070132010-07-13 04:45:46 -07007762{
Steve Block3856b092011-10-20 11:56:00 +01007763 ALOGV("moveEffects() session %d, srcOutput %d, dstOutput %d",
Eric Laurent59255e42011-07-27 19:49:51 -07007764 sessionId, srcOutput, dstOutput);
Eric Laurentde070132010-07-13 04:45:46 -07007765 Mutex::Autolock _l(mLock);
7766 if (srcOutput == dstOutput) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007767 ALOGW("moveEffects() same dst and src outputs %d", dstOutput);
Eric Laurentde070132010-07-13 04:45:46 -07007768 return NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007769 }
Eric Laurentde070132010-07-13 04:45:46 -07007770 PlaybackThread *srcThread = checkPlaybackThread_l(srcOutput);
7771 if (srcThread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007772 ALOGW("moveEffects() bad srcOutput %d", srcOutput);
Eric Laurentde070132010-07-13 04:45:46 -07007773 return BAD_VALUE;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007774 }
Eric Laurentde070132010-07-13 04:45:46 -07007775 PlaybackThread *dstThread = checkPlaybackThread_l(dstOutput);
7776 if (dstThread == NULL) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007777 ALOGW("moveEffects() bad dstOutput %d", dstOutput);
Eric Laurentde070132010-07-13 04:45:46 -07007778 return BAD_VALUE;
7779 }
7780
7781 Mutex::Autolock _dl(dstThread->mLock);
7782 Mutex::Autolock _sl(srcThread->mLock);
Eric Laurent59255e42011-07-27 19:49:51 -07007783 moveEffectChain_l(sessionId, srcThread, dstThread, false);
Eric Laurentde070132010-07-13 04:45:46 -07007784
Mathias Agopian65ab4712010-07-14 17:59:35 -07007785 return NO_ERROR;
7786}
7787
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007788// moveEffectChain_l must be called with both srcThread and dstThread mLocks held
Eric Laurent59255e42011-07-27 19:49:51 -07007789status_t AudioFlinger::moveEffectChain_l(int sessionId,
Eric Laurentde070132010-07-13 04:45:46 -07007790 AudioFlinger::PlaybackThread *srcThread,
Eric Laurent39e94f82010-07-28 01:32:47 -07007791 AudioFlinger::PlaybackThread *dstThread,
7792 bool reRegister)
Eric Laurentde070132010-07-13 04:45:46 -07007793{
Steve Block3856b092011-10-20 11:56:00 +01007794 ALOGV("moveEffectChain_l() session %d from thread %p to thread %p",
Eric Laurent59255e42011-07-27 19:49:51 -07007795 sessionId, srcThread, dstThread);
Eric Laurentde070132010-07-13 04:45:46 -07007796
Eric Laurent59255e42011-07-27 19:49:51 -07007797 sp<EffectChain> chain = srcThread->getEffectChain_l(sessionId);
Eric Laurentde070132010-07-13 04:45:46 -07007798 if (chain == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007799 ALOGW("moveEffectChain_l() effect chain for session %d not on source thread %p",
Eric Laurent59255e42011-07-27 19:49:51 -07007800 sessionId, srcThread);
Eric Laurentde070132010-07-13 04:45:46 -07007801 return INVALID_OPERATION;
7802 }
7803
Eric Laurent39e94f82010-07-28 01:32:47 -07007804 // remove chain first. This is useful only if reconfiguring effect chain on same output thread,
Eric Laurentde070132010-07-13 04:45:46 -07007805 // so that a new chain is created with correct parameters when first effect is added. This is
Eric Laurentec35a142011-10-05 17:42:25 -07007806 // otherwise unnecessary as removeEffect_l() will remove the chain when last effect is
Eric Laurentde070132010-07-13 04:45:46 -07007807 // removed.
7808 srcThread->removeEffectChain_l(chain);
7809
7810 // transfer all effects one by one so that new effect chain is created on new thread with
7811 // correct buffer sizes and audio parameters and effect engines reconfigured accordingly
Glenn Kasten72ef00d2012-01-17 11:09:42 -08007812 audio_io_handle_t dstOutput = dstThread->id();
Eric Laurent39e94f82010-07-28 01:32:47 -07007813 sp<EffectChain> dstChain;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07007814 uint32_t strategy = 0; // prevent compiler warning
Eric Laurentde070132010-07-13 04:45:46 -07007815 sp<EffectModule> effect = chain->getEffectFromId_l(0);
7816 while (effect != 0) {
7817 srcThread->removeEffect_l(effect);
7818 dstThread->addEffect_l(effect);
Eric Laurentec35a142011-10-05 17:42:25 -07007819 // removeEffect_l() has stopped the effect if it was active so it must be restarted
7820 if (effect->state() == EffectModule::ACTIVE ||
7821 effect->state() == EffectModule::STOPPING) {
7822 effect->start();
7823 }
Eric Laurent39e94f82010-07-28 01:32:47 -07007824 // if the move request is not received from audio policy manager, the effect must be
7825 // re-registered with the new strategy and output
7826 if (dstChain == 0) {
7827 dstChain = effect->chain().promote();
7828 if (dstChain == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007829 ALOGW("moveEffectChain_l() cannot get chain from effect %p", effect.get());
Eric Laurent39e94f82010-07-28 01:32:47 -07007830 srcThread->addEffect_l(effect);
7831 return NO_INIT;
7832 }
7833 strategy = dstChain->strategy();
7834 }
7835 if (reRegister) {
7836 AudioSystem::unregisterEffect(effect->id());
7837 AudioSystem::registerEffect(&effect->desc(),
7838 dstOutput,
7839 strategy,
Eric Laurent59255e42011-07-27 19:49:51 -07007840 sessionId,
Eric Laurent39e94f82010-07-28 01:32:47 -07007841 effect->id());
7842 }
Eric Laurentde070132010-07-13 04:45:46 -07007843 effect = chain->getEffectFromId_l(0);
7844 }
7845
7846 return NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007847}
7848
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007849
Mathias Agopian65ab4712010-07-14 17:59:35 -07007850// PlaybackThread::createEffect_l() must be called with AudioFlinger::mLock held
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007851sp<AudioFlinger::EffectHandle> AudioFlinger::ThreadBase::createEffect_l(
Mathias Agopian65ab4712010-07-14 17:59:35 -07007852 const sp<AudioFlinger::Client>& client,
7853 const sp<IEffectClient>& effectClient,
7854 int32_t priority,
7855 int sessionId,
7856 effect_descriptor_t *desc,
7857 int *enabled,
7858 status_t *status
7859 )
7860{
7861 sp<EffectModule> effect;
7862 sp<EffectHandle> handle;
7863 status_t lStatus;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007864 sp<EffectChain> chain;
Eric Laurentde070132010-07-13 04:45:46 -07007865 bool chainCreated = false;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007866 bool effectCreated = false;
7867 bool effectRegistered = false;
7868
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007869 lStatus = initCheck();
7870 if (lStatus != NO_ERROR) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007871 ALOGW("createEffect_l() Audio driver not initialized.");
Mathias Agopian65ab4712010-07-14 17:59:35 -07007872 goto Exit;
7873 }
7874
7875 // Do not allow effects with session ID 0 on direct output or duplicating threads
7876 // TODO: add rule for hw accelerated effects on direct outputs with non PCM format
Dima Zavinfce7a472011-04-19 22:30:36 -07007877 if (sessionId == AUDIO_SESSION_OUTPUT_MIX && mType != MIXER) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007878 ALOGW("createEffect_l() Cannot add auxiliary effect %s to session %d",
Eric Laurentde070132010-07-13 04:45:46 -07007879 desc->name, sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007880 lStatus = BAD_VALUE;
7881 goto Exit;
7882 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007883 // Only Pre processor effects are allowed on input threads and only on input threads
Glenn Kastena1117922012-01-26 10:53:32 -08007884 if ((mType == RECORD) != ((desc->flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC)) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007885 ALOGW("createEffect_l() effect %s (flags %08x) created on wrong thread type %d",
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007886 desc->name, desc->flags, mType);
7887 lStatus = BAD_VALUE;
7888 goto Exit;
7889 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07007890
Steve Block3856b092011-10-20 11:56:00 +01007891 ALOGV("createEffect_l() thread %p effect %s on session %d", this, desc->name, sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007892
7893 { // scope for mLock
7894 Mutex::Autolock _l(mLock);
7895
7896 // check for existing effect chain with the requested audio session
7897 chain = getEffectChain_l(sessionId);
7898 if (chain == 0) {
7899 // create a new chain for this session
Steve Block3856b092011-10-20 11:56:00 +01007900 ALOGV("createEffect_l() new effect chain for session %d", sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007901 chain = new EffectChain(this, sessionId);
7902 addEffectChain_l(chain);
Eric Laurentde070132010-07-13 04:45:46 -07007903 chain->setStrategy(getStrategyForSession_l(sessionId));
7904 chainCreated = true;
Mathias Agopian65ab4712010-07-14 17:59:35 -07007905 } else {
Eric Laurentcab11242010-07-15 12:50:15 -07007906 effect = chain->getEffectFromDesc_l(desc);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007907 }
7908
Glenn Kasten7fc9a6f2012-01-10 10:46:34 -08007909 ALOGV("createEffect_l() got effect %p on chain %p", effect.get(), chain.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07007910
7911 if (effect == 0) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007912 int id = mAudioFlinger->nextUniqueId();
Mathias Agopian65ab4712010-07-14 17:59:35 -07007913 // Check CPU and memory usage
Eric Laurentde070132010-07-13 04:45:46 -07007914 lStatus = AudioSystem::registerEffect(desc, mId, chain->strategy(), sessionId, id);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007915 if (lStatus != NO_ERROR) {
7916 goto Exit;
7917 }
7918 effectRegistered = true;
7919 // create a new effect module if none present in the chain
Eric Laurentde070132010-07-13 04:45:46 -07007920 effect = new EffectModule(this, chain, desc, id, sessionId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007921 lStatus = effect->status();
7922 if (lStatus != NO_ERROR) {
7923 goto Exit;
7924 }
Eric Laurentcab11242010-07-15 12:50:15 -07007925 lStatus = chain->addEffect_l(effect);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007926 if (lStatus != NO_ERROR) {
7927 goto Exit;
7928 }
7929 effectCreated = true;
7930
Eric Laurentf1c04f92012-08-28 14:26:53 -07007931 effect->setDevice(mOutDevice);
7932 effect->setDevice(mInDevice);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007933 effect->setMode(mAudioFlinger->getMode());
Eric Laurent57b2dd12012-08-31 17:44:06 -07007934 effect->setAudioSource(mAudioSource);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007935 }
7936 // create effect handle and connect it to effect module
7937 handle = new EffectHandle(effect, client, effectClient, priority);
Eric Laurenta5f44eb2012-06-25 11:38:29 -07007938 lStatus = effect->addHandle(handle.get());
Glenn Kastena0d68332012-01-27 16:47:15 -08007939 if (enabled != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007940 *enabled = (int)effect->isEnabled();
7941 }
7942 }
7943
7944Exit:
7945 if (lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) {
Eric Laurentde070132010-07-13 04:45:46 -07007946 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007947 if (effectCreated) {
Eric Laurentde070132010-07-13 04:45:46 -07007948 chain->removeEffect_l(effect);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007949 }
7950 if (effectRegistered) {
Eric Laurentde070132010-07-13 04:45:46 -07007951 AudioSystem::unregisterEffect(effect->id());
7952 }
7953 if (chainCreated) {
7954 removeEffectChain_l(chain);
Mathias Agopian65ab4712010-07-14 17:59:35 -07007955 }
7956 handle.clear();
7957 }
7958
Glenn Kastene53b9ea2012-03-12 16:29:55 -07007959 if (status != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07007960 *status = lStatus;
7961 }
7962 return handle;
7963}
7964
Eric Laurent717e1282012-06-29 16:36:52 -07007965sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect(int sessionId, int effectId)
7966{
7967 Mutex::Autolock _l(mLock);
7968 return getEffect_l(sessionId, effectId);
7969}
7970
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007971sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId)
7972{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007973 sp<EffectChain> chain = getEffectChain_l(sessionId);
Glenn Kasten090f0192012-01-30 13:00:02 -08007974 return chain != 0 ? chain->getEffectFromId_l(effectId) : 0;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007975}
7976
Eric Laurentde070132010-07-13 04:45:46 -07007977// PlaybackThread::addEffect_l() must be called with AudioFlinger::mLock and
7978// PlaybackThread::mLock held
Eric Laurent7c7f10b2011-06-17 21:29:58 -07007979status_t AudioFlinger::ThreadBase::addEffect_l(const sp<EffectModule>& effect)
Eric Laurentde070132010-07-13 04:45:46 -07007980{
7981 // check for existing effect chain with the requested audio session
7982 int sessionId = effect->sessionId();
7983 sp<EffectChain> chain = getEffectChain_l(sessionId);
7984 bool chainCreated = false;
7985
7986 if (chain == 0) {
7987 // create a new chain for this session
Steve Block3856b092011-10-20 11:56:00 +01007988 ALOGV("addEffect_l() new effect chain for session %d", sessionId);
Eric Laurentde070132010-07-13 04:45:46 -07007989 chain = new EffectChain(this, sessionId);
7990 addEffectChain_l(chain);
7991 chain->setStrategy(getStrategyForSession_l(sessionId));
7992 chainCreated = true;
7993 }
Steve Block3856b092011-10-20 11:56:00 +01007994 ALOGV("addEffect_l() %p chain %p effect %p", this, chain.get(), effect.get());
Eric Laurentde070132010-07-13 04:45:46 -07007995
7996 if (chain->getEffectFromId_l(effect->id()) != 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00007997 ALOGW("addEffect_l() %p effect %s already present in chain %p",
Eric Laurentde070132010-07-13 04:45:46 -07007998 this, effect->desc().name, chain.get());
7999 return BAD_VALUE;
8000 }
8001
8002 status_t status = chain->addEffect_l(effect);
8003 if (status != NO_ERROR) {
8004 if (chainCreated) {
8005 removeEffectChain_l(chain);
8006 }
8007 return status;
8008 }
8009
Eric Laurentf1c04f92012-08-28 14:26:53 -07008010 effect->setDevice(mOutDevice);
8011 effect->setDevice(mInDevice);
Eric Laurentde070132010-07-13 04:45:46 -07008012 effect->setMode(mAudioFlinger->getMode());
Eric Laurent57b2dd12012-08-31 17:44:06 -07008013 effect->setAudioSource(mAudioSource);
Eric Laurentde070132010-07-13 04:45:46 -07008014 return NO_ERROR;
8015}
8016
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008017void AudioFlinger::ThreadBase::removeEffect_l(const sp<EffectModule>& effect) {
Eric Laurentde070132010-07-13 04:45:46 -07008018
Steve Block3856b092011-10-20 11:56:00 +01008019 ALOGV("removeEffect_l() %p effect %p", this, effect.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07008020 effect_descriptor_t desc = effect->desc();
Eric Laurentde070132010-07-13 04:45:46 -07008021 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
8022 detachAuxEffect_l(effect->id());
8023 }
8024
8025 sp<EffectChain> chain = effect->chain().promote();
8026 if (chain != 0) {
8027 // remove effect chain if removing last effect
8028 if (chain->removeEffect_l(effect) == 0) {
8029 removeEffectChain_l(chain);
8030 }
8031 } else {
Steve Block5ff1dd52012-01-05 23:22:43 +00008032 ALOGW("removeEffect_l() %p cannot promote chain for effect %p", this, effect.get());
Eric Laurentde070132010-07-13 04:45:46 -07008033 }
8034}
8035
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008036void AudioFlinger::ThreadBase::lockEffectChains_l(
Glenn Kastene53b9ea2012-03-12 16:29:55 -07008037 Vector< sp<AudioFlinger::EffectChain> >& effectChains)
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008038{
8039 effectChains = mEffectChains;
8040 for (size_t i = 0; i < mEffectChains.size(); i++) {
8041 mEffectChains[i]->lock();
8042 }
8043}
8044
8045void AudioFlinger::ThreadBase::unlockEffectChains(
Glenn Kastene53b9ea2012-03-12 16:29:55 -07008046 const Vector< sp<AudioFlinger::EffectChain> >& effectChains)
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008047{
8048 for (size_t i = 0; i < effectChains.size(); i++) {
8049 effectChains[i]->unlock();
8050 }
8051}
8052
8053sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain(int sessionId)
8054{
8055 Mutex::Autolock _l(mLock);
8056 return getEffectChain_l(sessionId);
8057}
8058
Glenn Kasten106e8a42012-08-02 13:37:12 -07008059sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain_l(int sessionId) const
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008060{
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008061 size_t size = mEffectChains.size();
8062 for (size_t i = 0; i < size; i++) {
8063 if (mEffectChains[i]->sessionId() == sessionId) {
Glenn Kasten090f0192012-01-30 13:00:02 -08008064 return mEffectChains[i];
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008065 }
8066 }
Glenn Kasten090f0192012-01-30 13:00:02 -08008067 return 0;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008068}
8069
Glenn Kastenf78aee72012-01-04 11:00:47 -08008070void AudioFlinger::ThreadBase::setMode(audio_mode_t mode)
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008071{
8072 Mutex::Autolock _l(mLock);
8073 size_t size = mEffectChains.size();
8074 for (size_t i = 0; i < size; i++) {
8075 mEffectChains[i]->setMode_l(mode);
8076 }
8077}
8078
8079void AudioFlinger::ThreadBase::disconnectEffect(const sp<EffectModule>& effect,
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008080 EffectHandle *handle,
Glenn Kasten58123c32012-02-03 10:32:24 -08008081 bool unpinIfLast) {
Eric Laurent59255e42011-07-27 19:49:51 -07008082
Mathias Agopian65ab4712010-07-14 17:59:35 -07008083 Mutex::Autolock _l(mLock);
Steve Block3856b092011-10-20 11:56:00 +01008084 ALOGV("disconnectEffect() %p effect %p", this, effect.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07008085 // delete the effect module if removing last handle on it
8086 if (effect->removeHandle(handle) == 0) {
Glenn Kasten58123c32012-02-03 10:32:24 -08008087 if (!effect->isPinned() || unpinIfLast) {
Marco Nelissen3a34bef2011-08-02 13:33:41 -07008088 removeEffect_l(effect);
8089 AudioSystem::unregisterEffect(effect->id());
8090 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008091 }
8092}
8093
8094status_t AudioFlinger::PlaybackThread::addEffectChain_l(const sp<EffectChain>& chain)
8095{
8096 int session = chain->sessionId();
8097 int16_t *buffer = mMixBuffer;
8098 bool ownsBuffer = false;
8099
Steve Block3856b092011-10-20 11:56:00 +01008100 ALOGV("addEffectChain_l() %p on thread %p for session %d", chain.get(), this, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008101 if (session > 0) {
8102 // Only one effect chain can be present in direct output thread and it uses
8103 // the mix buffer as input
8104 if (mType != DIRECT) {
Glenn Kasten58912562012-04-03 10:45:00 -07008105 size_t numSamples = mNormalFrameCount * mChannelCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008106 buffer = new int16_t[numSamples];
8107 memset(buffer, 0, numSamples * sizeof(int16_t));
Steve Block3856b092011-10-20 11:56:00 +01008108 ALOGV("addEffectChain_l() creating new input buffer %p session %d", buffer, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008109 ownsBuffer = true;
8110 }
8111
8112 // Attach all tracks with same session ID to this chain.
8113 for (size_t i = 0; i < mTracks.size(); ++i) {
8114 sp<Track> track = mTracks[i];
8115 if (session == track->sessionId()) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07008116 ALOGV("addEffectChain_l() track->setMainBuffer track %p buffer %p", track.get(),
8117 buffer);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008118 track->setMainBuffer(buffer);
Eric Laurentb469b942011-05-09 12:09:06 -07008119 chain->incTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008120 }
8121 }
8122
8123 // indicate all active tracks in the chain
8124 for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
8125 sp<Track> track = mActiveTracks[i].promote();
8126 if (track == 0) continue;
8127 if (session == track->sessionId()) {
Steve Block3856b092011-10-20 11:56:00 +01008128 ALOGV("addEffectChain_l() activating track %p on session %d", track.get(), session);
Eric Laurentb469b942011-05-09 12:09:06 -07008129 chain->incActiveTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008130 }
8131 }
8132 }
8133
8134 chain->setInBuffer(buffer, ownsBuffer);
8135 chain->setOutBuffer(mMixBuffer);
Dima Zavinfce7a472011-04-19 22:30:36 -07008136 // Effect chain for session AUDIO_SESSION_OUTPUT_STAGE is inserted at end of effect
Eric Laurentde070132010-07-13 04:45:46 -07008137 // chains list in order to be processed last as it contains output stage effects
Dima Zavinfce7a472011-04-19 22:30:36 -07008138 // Effect chain for session AUDIO_SESSION_OUTPUT_MIX is inserted before
8139 // session AUDIO_SESSION_OUTPUT_STAGE to be processed
Mathias Agopian65ab4712010-07-14 17:59:35 -07008140 // after track specific effects and before output stage
Dima Zavinfce7a472011-04-19 22:30:36 -07008141 // It is therefore mandatory that AUDIO_SESSION_OUTPUT_MIX == 0 and
8142 // that AUDIO_SESSION_OUTPUT_STAGE < AUDIO_SESSION_OUTPUT_MIX
Eric Laurentde070132010-07-13 04:45:46 -07008143 // Effect chain for other sessions are inserted at beginning of effect
8144 // chains list to be processed before output mix effects. Relative order between other
8145 // sessions is not important
Mathias Agopian65ab4712010-07-14 17:59:35 -07008146 size_t size = mEffectChains.size();
8147 size_t i = 0;
8148 for (i = 0; i < size; i++) {
8149 if (mEffectChains[i]->sessionId() < session) break;
8150 }
8151 mEffectChains.insertAt(chain, i);
Eric Laurent59255e42011-07-27 19:49:51 -07008152 checkSuspendOnAddEffectChain_l(chain);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008153
8154 return NO_ERROR;
8155}
8156
8157size_t AudioFlinger::PlaybackThread::removeEffectChain_l(const sp<EffectChain>& chain)
8158{
8159 int session = chain->sessionId();
8160
Steve Block3856b092011-10-20 11:56:00 +01008161 ALOGV("removeEffectChain_l() %p from thread %p for session %d", chain.get(), this, session);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008162
8163 for (size_t i = 0; i < mEffectChains.size(); i++) {
8164 if (chain == mEffectChains[i]) {
8165 mEffectChains.removeAt(i);
Eric Laurentb469b942011-05-09 12:09:06 -07008166 // detach all active tracks from the chain
8167 for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
8168 sp<Track> track = mActiveTracks[i].promote();
8169 if (track == 0) continue;
8170 if (session == track->sessionId()) {
Steve Block3856b092011-10-20 11:56:00 +01008171 ALOGV("removeEffectChain_l(): stopping track on chain %p for session Id: %d",
Eric Laurentb469b942011-05-09 12:09:06 -07008172 chain.get(), session);
8173 chain->decActiveTrackCnt();
8174 }
8175 }
8176
Mathias Agopian65ab4712010-07-14 17:59:35 -07008177 // detach all tracks with same session ID from this chain
8178 for (size_t i = 0; i < mTracks.size(); ++i) {
8179 sp<Track> track = mTracks[i];
8180 if (session == track->sessionId()) {
8181 track->setMainBuffer(mMixBuffer);
Eric Laurentb469b942011-05-09 12:09:06 -07008182 chain->decTrackCnt();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008183 }
8184 }
Eric Laurentde070132010-07-13 04:45:46 -07008185 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008186 }
8187 }
8188 return mEffectChains.size();
8189}
8190
Eric Laurentde070132010-07-13 04:45:46 -07008191status_t AudioFlinger::PlaybackThread::attachAuxEffect(
8192 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008193{
8194 Mutex::Autolock _l(mLock);
8195 return attachAuxEffect_l(track, EffectId);
8196}
8197
Eric Laurentde070132010-07-13 04:45:46 -07008198status_t AudioFlinger::PlaybackThread::attachAuxEffect_l(
8199 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008200{
8201 status_t status = NO_ERROR;
8202
8203 if (EffectId == 0) {
8204 track->setAuxBuffer(0, NULL);
8205 } else {
Dima Zavinfce7a472011-04-19 22:30:36 -07008206 // Auxiliary effects are always in audio session AUDIO_SESSION_OUTPUT_MIX
8207 sp<EffectModule> effect = getEffect_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008208 if (effect != 0) {
8209 if ((effect->desc().flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
8210 track->setAuxBuffer(EffectId, (int32_t *)effect->inBuffer());
8211 } else {
8212 status = INVALID_OPERATION;
8213 }
8214 } else {
8215 status = BAD_VALUE;
8216 }
8217 }
8218 return status;
8219}
8220
8221void AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId)
8222{
Glenn Kastene53b9ea2012-03-12 16:29:55 -07008223 for (size_t i = 0; i < mTracks.size(); ++i) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008224 sp<Track> track = mTracks[i];
8225 if (track->auxEffectId() == effectId) {
8226 attachAuxEffect_l(track, 0);
8227 }
8228 }
8229}
8230
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008231status_t AudioFlinger::RecordThread::addEffectChain_l(const sp<EffectChain>& chain)
8232{
8233 // only one chain per input thread
8234 if (mEffectChains.size() != 0) {
8235 return INVALID_OPERATION;
8236 }
Steve Block3856b092011-10-20 11:56:00 +01008237 ALOGV("addEffectChain_l() %p on thread %p", chain.get(), this);
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008238
8239 chain->setInBuffer(NULL);
8240 chain->setOutBuffer(NULL);
8241
Eric Laurent59255e42011-07-27 19:49:51 -07008242 checkSuspendOnAddEffectChain_l(chain);
8243
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008244 mEffectChains.add(chain);
8245
8246 return NO_ERROR;
8247}
8248
8249size_t AudioFlinger::RecordThread::removeEffectChain_l(const sp<EffectChain>& chain)
8250{
Steve Block3856b092011-10-20 11:56:00 +01008251 ALOGV("removeEffectChain_l() %p from thread %p", chain.get(), this);
Steve Block5ff1dd52012-01-05 23:22:43 +00008252 ALOGW_IF(mEffectChains.size() != 1,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008253 "removeEffectChain_l() %p invalid chain size %d on thread %p",
8254 chain.get(), mEffectChains.size(), this);
8255 if (mEffectChains.size() == 1) {
8256 mEffectChains.removeAt(0);
8257 }
8258 return 0;
8259}
8260
Mathias Agopian65ab4712010-07-14 17:59:35 -07008261// ----------------------------------------------------------------------------
8262// EffectModule implementation
8263// ----------------------------------------------------------------------------
8264
8265#undef LOG_TAG
8266#define LOG_TAG "AudioFlinger::EffectModule"
8267
Glenn Kasten9eaa5572012-01-20 13:32:16 -08008268AudioFlinger::EffectModule::EffectModule(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07008269 const wp<AudioFlinger::EffectChain>& chain,
8270 effect_descriptor_t *desc,
8271 int id,
8272 int sessionId)
Glenn Kasten415fa752012-07-02 16:11:18 -07008273 : mPinned(sessionId > AUDIO_SESSION_OUTPUT_MIX),
8274 mThread(thread), mChain(chain), mId(id), mSessionId(sessionId),
Glenn Kastencd2d6102012-07-18 16:49:32 -07008275 mDescriptor(*desc),
Glenn Kasten415fa752012-07-02 16:11:18 -07008276 // mConfig is set by configure() and not used before then
8277 mEffectInterface(NULL),
8278 mStatus(NO_INIT), mState(IDLE),
8279 // mMaxDisableWaitCnt is set by configure() and not used before then
8280 // mDisableWaitCnt is set by process() and updateState() and not used before then
8281 mSuspended(false)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008282{
Steve Block3856b092011-10-20 11:56:00 +01008283 ALOGV("Constructor %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008284 int lStatus;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008285
8286 // create effect engine from effect factory
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008287 mStatus = EffectCreate(&desc->uuid, sessionId, thread->id(), &mEffectInterface);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008288
8289 if (mStatus != NO_ERROR) {
8290 return;
8291 }
8292 lStatus = init();
8293 if (lStatus < 0) {
8294 mStatus = lStatus;
8295 goto Error;
8296 }
8297
Steve Block3856b092011-10-20 11:56:00 +01008298 ALOGV("Constructor success name %s, Interface %p", mDescriptor.name, mEffectInterface);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008299 return;
8300Error:
8301 EffectRelease(mEffectInterface);
8302 mEffectInterface = NULL;
Steve Block3856b092011-10-20 11:56:00 +01008303 ALOGV("Constructor Error %d", mStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008304}
8305
8306AudioFlinger::EffectModule::~EffectModule()
8307{
Steve Block3856b092011-10-20 11:56:00 +01008308 ALOGV("Destructor %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008309 if (mEffectInterface != NULL) {
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008310 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
8311 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC) {
8312 sp<ThreadBase> thread = mThread.promote();
8313 if (thread != 0) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07008314 audio_stream_t *stream = thread->stream();
8315 if (stream != NULL) {
8316 stream->remove_audio_effect(stream, mEffectInterface);
8317 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008318 }
8319 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008320 // release effect engine
8321 EffectRelease(mEffectInterface);
8322 }
8323}
8324
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008325status_t AudioFlinger::EffectModule::addHandle(EffectHandle *handle)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008326{
8327 status_t status;
8328
8329 Mutex::Autolock _l(mLock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008330 int priority = handle->priority();
8331 size_t size = mHandles.size();
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008332 EffectHandle *controlHandle = NULL;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008333 size_t i;
8334 for (i = 0; i < size; i++) {
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008335 EffectHandle *h = mHandles[i];
8336 if (h == NULL || h->destroyed_l()) continue;
8337 // first non destroyed handle is considered in control
8338 if (controlHandle == NULL)
8339 controlHandle = h;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008340 if (h->priority() <= priority) break;
8341 }
8342 // if inserted in first place, move effect control from previous owner to this handle
8343 if (i == 0) {
Eric Laurent59255e42011-07-27 19:49:51 -07008344 bool enabled = false;
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008345 if (controlHandle != NULL) {
8346 enabled = controlHandle->enabled();
8347 controlHandle->setControl(false/*hasControl*/, true /*signal*/, enabled /*enabled*/);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008348 }
Eric Laurent59255e42011-07-27 19:49:51 -07008349 handle->setControl(true /*hasControl*/, false /*signal*/, enabled /*enabled*/);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008350 status = NO_ERROR;
8351 } else {
8352 status = ALREADY_EXISTS;
8353 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008354 ALOGV("addHandle() %p added handle %p in position %d", this, handle, i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008355 mHandles.insertAt(handle, i);
8356 return status;
8357}
8358
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008359size_t AudioFlinger::EffectModule::removeHandle(EffectHandle *handle)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008360{
8361 Mutex::Autolock _l(mLock);
8362 size_t size = mHandles.size();
8363 size_t i;
8364 for (i = 0; i < size; i++) {
8365 if (mHandles[i] == handle) break;
8366 }
8367 if (i == size) {
8368 return size;
8369 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008370 ALOGV("removeHandle() %p removed handle %p in position %d", this, handle, i);
Eric Laurent59255e42011-07-27 19:49:51 -07008371
Mathias Agopian65ab4712010-07-14 17:59:35 -07008372 mHandles.removeAt(i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008373 // if removed from first place, move effect control from this handle to next in line
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008374 if (i == 0) {
8375 EffectHandle *h = controlHandle_l();
8376 if (h != NULL) {
8377 h->setControl(true /*hasControl*/, true /*signal*/ , handle->enabled() /*enabled*/);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008378 }
8379 }
8380
Eric Laurentec437d82011-07-26 20:54:46 -07008381 // Prevent calls to process() and other functions on effect interface from now on.
8382 // The effect engine will be released by the destructor when the last strong reference on
8383 // this object is released which can happen after next process is called.
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008384 if (mHandles.size() == 0 && !mPinned) {
Eric Laurentec437d82011-07-26 20:54:46 -07008385 mState = DESTROYED;
Eric Laurentdac69112010-09-28 14:09:57 -07008386 }
8387
Eric Laurente65c8912012-07-20 15:57:23 -07008388 return mHandles.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008389}
8390
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008391// must be called with EffectModule::mLock held
8392AudioFlinger::EffectHandle *AudioFlinger::EffectModule::controlHandle_l()
Eric Laurent59255e42011-07-27 19:49:51 -07008393{
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008394 // the first valid handle in the list has control over the module
8395 for (size_t i = 0; i < mHandles.size(); i++) {
8396 EffectHandle *h = mHandles[i];
8397 if (h != NULL && !h->destroyed_l()) {
8398 return h;
8399 }
8400 }
8401
8402 return NULL;
Eric Laurent59255e42011-07-27 19:49:51 -07008403}
8404
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008405size_t AudioFlinger::EffectModule::disconnect(EffectHandle *handle, bool unpinIfLast)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008406{
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008407 ALOGV("disconnect() %p handle %p", this, handle);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008408 // keep a strong reference on this EffectModule to avoid calling the
8409 // destructor before we exit
8410 sp<EffectModule> keep(this);
8411 {
8412 sp<ThreadBase> thread = mThread.promote();
8413 if (thread != 0) {
Glenn Kasten58123c32012-02-03 10:32:24 -08008414 thread->disconnectEffect(keep, handle, unpinIfLast);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008415 }
8416 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008417 return mHandles.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008418}
8419
8420void AudioFlinger::EffectModule::updateState() {
8421 Mutex::Autolock _l(mLock);
8422
8423 switch (mState) {
8424 case RESTART:
8425 reset_l();
8426 // FALL THROUGH
8427
8428 case STARTING:
8429 // clear auxiliary effect input buffer for next accumulation
8430 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
8431 memset(mConfig.inputCfg.buffer.raw,
8432 0,
8433 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
8434 }
8435 start_l();
8436 mState = ACTIVE;
8437 break;
8438 case STOPPING:
8439 stop_l();
8440 mDisableWaitCnt = mMaxDisableWaitCnt;
8441 mState = STOPPED;
8442 break;
8443 case STOPPED:
8444 // mDisableWaitCnt is forced to 1 by process() when the engine indicates the end of the
8445 // turn off sequence.
8446 if (--mDisableWaitCnt == 0) {
8447 reset_l();
8448 mState = IDLE;
8449 }
8450 break;
Eric Laurentec437d82011-07-26 20:54:46 -07008451 default: //IDLE , ACTIVE, DESTROYED
Mathias Agopian65ab4712010-07-14 17:59:35 -07008452 break;
8453 }
8454}
8455
8456void AudioFlinger::EffectModule::process()
8457{
8458 Mutex::Autolock _l(mLock);
8459
Eric Laurentec437d82011-07-26 20:54:46 -07008460 if (mState == DESTROYED || mEffectInterface == NULL ||
Mathias Agopian65ab4712010-07-14 17:59:35 -07008461 mConfig.inputCfg.buffer.raw == NULL ||
8462 mConfig.outputCfg.buffer.raw == NULL) {
8463 return;
8464 }
8465
Eric Laurent8f45bd72010-08-31 13:50:07 -07008466 if (isProcessEnabled()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008467 // do 32 bit to 16 bit conversion for auxiliary effect input buffer
8468 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Glenn Kasten3b21c502011-12-15 09:52:39 -08008469 ditherAndClamp(mConfig.inputCfg.buffer.s32,
Mathias Agopian65ab4712010-07-14 17:59:35 -07008470 mConfig.inputCfg.buffer.s32,
Eric Laurentde070132010-07-13 04:45:46 -07008471 mConfig.inputCfg.buffer.frameCount/2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008472 }
8473
8474 // do the actual processing in the effect engine
8475 int ret = (*mEffectInterface)->process(mEffectInterface,
8476 &mConfig.inputCfg.buffer,
8477 &mConfig.outputCfg.buffer);
8478
8479 // force transition to IDLE state when engine is ready
8480 if (mState == STOPPED && ret == -ENODATA) {
8481 mDisableWaitCnt = 1;
8482 }
8483
8484 // clear auxiliary effect input buffer for next accumulation
8485 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Eric Laurent73337482011-01-19 18:36:13 -08008486 memset(mConfig.inputCfg.buffer.raw, 0,
8487 mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07008488 }
8489 } else if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_INSERT &&
Eric Laurent73337482011-01-19 18:36:13 -08008490 mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
8491 // If an insert effect is idle and input buffer is different from output buffer,
8492 // accumulate input onto output
Mathias Agopian65ab4712010-07-14 17:59:35 -07008493 sp<EffectChain> chain = mChain.promote();
Eric Laurentb469b942011-05-09 12:09:06 -07008494 if (chain != 0 && chain->activeTrackCnt() != 0) {
Eric Laurent73337482011-01-19 18:36:13 -08008495 size_t frameCnt = mConfig.inputCfg.buffer.frameCount * 2; //always stereo here
8496 int16_t *in = mConfig.inputCfg.buffer.s16;
8497 int16_t *out = mConfig.outputCfg.buffer.s16;
8498 for (size_t i = 0; i < frameCnt; i++) {
8499 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008500 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008501 }
8502 }
8503}
8504
8505void AudioFlinger::EffectModule::reset_l()
8506{
8507 if (mEffectInterface == NULL) {
8508 return;
8509 }
8510 (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_RESET, 0, NULL, 0, NULL);
8511}
8512
8513status_t AudioFlinger::EffectModule::configure()
8514{
Mathias Agopian65ab4712010-07-14 17:59:35 -07008515 if (mEffectInterface == NULL) {
8516 return NO_INIT;
8517 }
8518
8519 sp<ThreadBase> thread = mThread.promote();
8520 if (thread == 0) {
8521 return DEAD_OBJECT;
8522 }
8523
8524 // TODO: handle configuration of effects replacing track process
Glenn Kasten254af182012-07-03 14:59:05 -07008525 audio_channel_mask_t channelMask = thread->channelMask();
Mathias Agopian65ab4712010-07-14 17:59:35 -07008526
8527 if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
Eric Laurente1315cf2011-05-17 19:16:02 -07008528 mConfig.inputCfg.channels = AUDIO_CHANNEL_OUT_MONO;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008529 } else {
Glenn Kasten254af182012-07-03 14:59:05 -07008530 mConfig.inputCfg.channels = channelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008531 }
Glenn Kasten254af182012-07-03 14:59:05 -07008532 mConfig.outputCfg.channels = channelMask;
Eric Laurente1315cf2011-05-17 19:16:02 -07008533 mConfig.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
8534 mConfig.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008535 mConfig.inputCfg.samplingRate = thread->sampleRate();
8536 mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
8537 mConfig.inputCfg.bufferProvider.cookie = NULL;
8538 mConfig.inputCfg.bufferProvider.getBuffer = NULL;
8539 mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
8540 mConfig.outputCfg.bufferProvider.cookie = NULL;
8541 mConfig.outputCfg.bufferProvider.getBuffer = NULL;
8542 mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
8543 mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
8544 // Insert effect:
Dima Zavinfce7a472011-04-19 22:30:36 -07008545 // - in session AUDIO_SESSION_OUTPUT_MIX or AUDIO_SESSION_OUTPUT_STAGE,
Eric Laurentde070132010-07-13 04:45:46 -07008546 // always overwrites output buffer: input buffer == output buffer
Mathias Agopian65ab4712010-07-14 17:59:35 -07008547 // - in other sessions:
8548 // last effect in the chain accumulates in output buffer: input buffer != output buffer
8549 // other effect: overwrites output buffer: input buffer == output buffer
8550 // Auxiliary effect:
8551 // accumulates in output buffer: input buffer != output buffer
8552 // Therefore: accumulate <=> input buffer != output buffer
8553 if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
8554 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
8555 } else {
8556 mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
8557 }
8558 mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
8559 mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
8560 mConfig.inputCfg.buffer.frameCount = thread->frameCount();
8561 mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
8562
Steve Block3856b092011-10-20 11:56:00 +01008563 ALOGV("configure() %p thread %p buffer %p framecount %d",
Eric Laurentde070132010-07-13 04:45:46 -07008564 this, thread.get(), mConfig.inputCfg.buffer.raw, mConfig.inputCfg.buffer.frameCount);
8565
Mathias Agopian65ab4712010-07-14 17:59:35 -07008566 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07008567 uint32_t size = sizeof(int);
8568 status_t status = (*mEffectInterface)->command(mEffectInterface,
Eric Laurent3d5188b2011-12-16 15:30:36 -08008569 EFFECT_CMD_SET_CONFIG,
Eric Laurent25f43952010-07-28 05:40:18 -07008570 sizeof(effect_config_t),
8571 &mConfig,
8572 &size,
8573 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008574 if (status == 0) {
8575 status = cmdStatus;
8576 }
8577
Marco Nelissenf06c2ed2012-06-06 09:52:31 -07008578 if (status == 0 &&
8579 (memcmp(&mDescriptor.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0)) {
8580 uint32_t buf32[sizeof(effect_param_t) / sizeof(uint32_t) + 2];
8581 effect_param_t *p = (effect_param_t *)buf32;
8582
8583 p->psize = sizeof(uint32_t);
8584 p->vsize = sizeof(uint32_t);
8585 size = sizeof(int);
8586 *(int32_t *)p->data = VISUALIZER_PARAM_LATENCY;
8587
8588 uint32_t latency = 0;
8589 PlaybackThread *pbt = thread->mAudioFlinger->checkPlaybackThread_l(thread->mId);
8590 if (pbt != NULL) {
8591 latency = pbt->latency_l();
8592 }
8593
8594 *((int32_t *)p->data + 1)= latency;
8595 (*mEffectInterface)->command(mEffectInterface,
8596 EFFECT_CMD_SET_PARAM,
8597 sizeof(effect_param_t) + 8,
8598 &buf32,
8599 &size,
8600 &cmdStatus);
8601 }
8602
Mathias Agopian65ab4712010-07-14 17:59:35 -07008603 mMaxDisableWaitCnt = (MAX_DISABLE_TIME_MS * mConfig.outputCfg.samplingRate) /
8604 (1000 * mConfig.outputCfg.buffer.frameCount);
8605
8606 return status;
8607}
8608
8609status_t AudioFlinger::EffectModule::init()
8610{
8611 Mutex::Autolock _l(mLock);
8612 if (mEffectInterface == NULL) {
8613 return NO_INIT;
8614 }
8615 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07008616 uint32_t size = sizeof(status_t);
8617 status_t status = (*mEffectInterface)->command(mEffectInterface,
8618 EFFECT_CMD_INIT,
8619 0,
8620 NULL,
8621 &size,
8622 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008623 if (status == 0) {
8624 status = cmdStatus;
8625 }
8626 return status;
8627}
8628
Eric Laurentec35a142011-10-05 17:42:25 -07008629status_t AudioFlinger::EffectModule::start()
8630{
8631 Mutex::Autolock _l(mLock);
8632 return start_l();
8633}
8634
Mathias Agopian65ab4712010-07-14 17:59:35 -07008635status_t AudioFlinger::EffectModule::start_l()
8636{
8637 if (mEffectInterface == NULL) {
8638 return NO_INIT;
8639 }
8640 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07008641 uint32_t size = sizeof(status_t);
8642 status_t status = (*mEffectInterface)->command(mEffectInterface,
8643 EFFECT_CMD_ENABLE,
8644 0,
8645 NULL,
8646 &size,
8647 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008648 if (status == 0) {
8649 status = cmdStatus;
8650 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008651 if (status == 0 &&
8652 ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
8653 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
8654 sp<ThreadBase> thread = mThread.promote();
8655 if (thread != 0) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07008656 audio_stream_t *stream = thread->stream();
8657 if (stream != NULL) {
8658 stream->add_audio_effect(stream, mEffectInterface);
8659 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008660 }
8661 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008662 return status;
8663}
8664
Eric Laurentec437d82011-07-26 20:54:46 -07008665status_t AudioFlinger::EffectModule::stop()
8666{
8667 Mutex::Autolock _l(mLock);
8668 return stop_l();
8669}
8670
Mathias Agopian65ab4712010-07-14 17:59:35 -07008671status_t AudioFlinger::EffectModule::stop_l()
8672{
8673 if (mEffectInterface == NULL) {
8674 return NO_INIT;
8675 }
8676 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07008677 uint32_t size = sizeof(status_t);
8678 status_t status = (*mEffectInterface)->command(mEffectInterface,
8679 EFFECT_CMD_DISABLE,
8680 0,
8681 NULL,
8682 &size,
8683 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008684 if (status == 0) {
8685 status = cmdStatus;
8686 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008687 if (status == 0 &&
8688 ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC ||
8689 (mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_POST_PROC)) {
8690 sp<ThreadBase> thread = mThread.promote();
8691 if (thread != 0) {
Eric Laurentb8ba0a92011-08-07 16:32:26 -07008692 audio_stream_t *stream = thread->stream();
8693 if (stream != NULL) {
8694 stream->remove_audio_effect(stream, mEffectInterface);
8695 }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008696 }
8697 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07008698 return status;
8699}
8700
Eric Laurent25f43952010-07-28 05:40:18 -07008701status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
8702 uint32_t cmdSize,
8703 void *pCmdData,
8704 uint32_t *replySize,
8705 void *pReplyData)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008706{
8707 Mutex::Autolock _l(mLock);
Glenn Kasten26dd66e2012-10-18 15:51:03 -07008708 ALOGVV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008709
Eric Laurentec437d82011-07-26 20:54:46 -07008710 if (mState == DESTROYED || mEffectInterface == NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008711 return NO_INIT;
8712 }
Eric Laurent25f43952010-07-28 05:40:18 -07008713 status_t status = (*mEffectInterface)->command(mEffectInterface,
8714 cmdCode,
8715 cmdSize,
8716 pCmdData,
8717 replySize,
8718 pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008719 if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
Eric Laurent25f43952010-07-28 05:40:18 -07008720 uint32_t size = (replySize == NULL) ? 0 : *replySize;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008721 for (size_t i = 1; i < mHandles.size(); i++) {
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008722 EffectHandle *h = mHandles[i];
8723 if (h != NULL && !h->destroyed_l()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008724 h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
8725 }
8726 }
8727 }
8728 return status;
8729}
8730
8731status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
8732{
8733 Mutex::Autolock _l(mLock);
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008734 return setEnabled_l(enabled);
8735}
8736
8737// must be called with EffectModule::mLock held
8738status_t AudioFlinger::EffectModule::setEnabled_l(bool enabled)
8739{
8740
Steve Block3856b092011-10-20 11:56:00 +01008741 ALOGV("setEnabled %p enabled %d", this, enabled);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008742
8743 if (enabled != isEnabled()) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07008744 status_t status = AudioSystem::setEffectEnabled(mId, enabled);
8745 if (enabled && status != NO_ERROR) {
8746 return status;
8747 }
8748
Mathias Agopian65ab4712010-07-14 17:59:35 -07008749 switch (mState) {
8750 // going from disabled to enabled
8751 case IDLE:
8752 mState = STARTING;
8753 break;
8754 case STOPPED:
8755 mState = RESTART;
8756 break;
8757 case STOPPING:
8758 mState = ACTIVE;
8759 break;
8760
8761 // going from enabled to disabled
8762 case RESTART:
Eric Laurent8f45bd72010-08-31 13:50:07 -07008763 mState = STOPPED;
8764 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07008765 case STARTING:
8766 mState = IDLE;
8767 break;
8768 case ACTIVE:
8769 mState = STOPPING;
8770 break;
Eric Laurentec437d82011-07-26 20:54:46 -07008771 case DESTROYED:
8772 return NO_ERROR; // simply ignore as we are being destroyed
Mathias Agopian65ab4712010-07-14 17:59:35 -07008773 }
8774 for (size_t i = 1; i < mHandles.size(); i++) {
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008775 EffectHandle *h = mHandles[i];
8776 if (h != NULL && !h->destroyed_l()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008777 h->setEnabled(enabled);
8778 }
8779 }
8780 }
8781 return NO_ERROR;
8782}
8783
Glenn Kastenc59c0042012-02-02 14:06:11 -08008784bool AudioFlinger::EffectModule::isEnabled() const
Mathias Agopian65ab4712010-07-14 17:59:35 -07008785{
8786 switch (mState) {
8787 case RESTART:
8788 case STARTING:
8789 case ACTIVE:
8790 return true;
8791 case IDLE:
8792 case STOPPING:
8793 case STOPPED:
Eric Laurentec437d82011-07-26 20:54:46 -07008794 case DESTROYED:
Mathias Agopian65ab4712010-07-14 17:59:35 -07008795 default:
8796 return false;
8797 }
8798}
8799
Glenn Kastenc59c0042012-02-02 14:06:11 -08008800bool AudioFlinger::EffectModule::isProcessEnabled() const
Eric Laurent8f45bd72010-08-31 13:50:07 -07008801{
8802 switch (mState) {
8803 case RESTART:
8804 case ACTIVE:
8805 case STOPPING:
8806 case STOPPED:
8807 return true;
8808 case IDLE:
8809 case STARTING:
Eric Laurentec437d82011-07-26 20:54:46 -07008810 case DESTROYED:
Eric Laurent8f45bd72010-08-31 13:50:07 -07008811 default:
8812 return false;
8813 }
8814}
8815
Mathias Agopian65ab4712010-07-14 17:59:35 -07008816status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
8817{
8818 Mutex::Autolock _l(mLock);
8819 status_t status = NO_ERROR;
8820
8821 // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
8822 // if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
Eric Laurent8f45bd72010-08-31 13:50:07 -07008823 if (isProcessEnabled() &&
Eric Laurentf997cab2010-07-19 06:24:46 -07008824 ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL ||
8825 (mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_IND)) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008826 status_t cmdStatus;
8827 uint32_t volume[2];
8828 uint32_t *pVolume = NULL;
Eric Laurent25f43952010-07-28 05:40:18 -07008829 uint32_t size = sizeof(volume);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008830 volume[0] = *left;
8831 volume[1] = *right;
8832 if (controller) {
8833 pVolume = volume;
8834 }
Eric Laurent25f43952010-07-28 05:40:18 -07008835 status = (*mEffectInterface)->command(mEffectInterface,
8836 EFFECT_CMD_SET_VOLUME,
8837 size,
8838 volume,
8839 &size,
8840 pVolume);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008841 if (controller && status == NO_ERROR && size == sizeof(volume)) {
8842 *left = volume[0];
8843 *right = volume[1];
8844 }
8845 }
8846 return status;
8847}
8848
Glenn Kastenbb4350d2012-07-03 15:56:38 -07008849status_t AudioFlinger::EffectModule::setDevice(audio_devices_t device)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008850{
Eric Laurentf1c04f92012-08-28 14:26:53 -07008851 if (device == AUDIO_DEVICE_NONE) {
8852 return NO_ERROR;
8853 }
8854
Mathias Agopian65ab4712010-07-14 17:59:35 -07008855 Mutex::Autolock _l(mLock);
8856 status_t status = NO_ERROR;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07008857 if (device && (mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_IND) {
Eric Laurentf1c04f92012-08-28 14:26:53 -07008858 status_t cmdStatus;
8859 uint32_t size = sizeof(status_t);
8860 uint32_t cmd = audio_is_output_devices(device) ? EFFECT_CMD_SET_DEVICE :
8861 EFFECT_CMD_SET_INPUT_DEVICE;
8862 status = (*mEffectInterface)->command(mEffectInterface,
8863 cmd,
8864 sizeof(uint32_t),
8865 &device,
8866 &size,
8867 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008868 }
8869 return status;
8870}
8871
Glenn Kastenf78aee72012-01-04 11:00:47 -08008872status_t AudioFlinger::EffectModule::setMode(audio_mode_t mode)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008873{
8874 Mutex::Autolock _l(mLock);
8875 status_t status = NO_ERROR;
8876 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_MODE_MASK) == EFFECT_FLAG_AUDIO_MODE_IND) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07008877 status_t cmdStatus;
Eric Laurent25f43952010-07-28 05:40:18 -07008878 uint32_t size = sizeof(status_t);
8879 status = (*mEffectInterface)->command(mEffectInterface,
8880 EFFECT_CMD_SET_AUDIO_MODE,
Glenn Kastenf78aee72012-01-04 11:00:47 -08008881 sizeof(audio_mode_t),
Eric Laurente1315cf2011-05-17 19:16:02 -07008882 &mode,
Eric Laurent25f43952010-07-28 05:40:18 -07008883 &size,
8884 &cmdStatus);
Mathias Agopian65ab4712010-07-14 17:59:35 -07008885 if (status == NO_ERROR) {
8886 status = cmdStatus;
8887 }
8888 }
8889 return status;
8890}
8891
Eric Laurent57b2dd12012-08-31 17:44:06 -07008892status_t AudioFlinger::EffectModule::setAudioSource(audio_source_t source)
8893{
8894 Mutex::Autolock _l(mLock);
8895 status_t status = NO_ERROR;
8896 if ((mDescriptor.flags & EFFECT_FLAG_AUDIO_SOURCE_MASK) == EFFECT_FLAG_AUDIO_SOURCE_IND) {
8897 uint32_t size = 0;
8898 status = (*mEffectInterface)->command(mEffectInterface,
8899 EFFECT_CMD_SET_AUDIO_SOURCE,
8900 sizeof(audio_source_t),
8901 &source,
8902 &size,
8903 NULL);
8904 }
8905 return status;
8906}
8907
Eric Laurent59255e42011-07-27 19:49:51 -07008908void AudioFlinger::EffectModule::setSuspended(bool suspended)
8909{
8910 Mutex::Autolock _l(mLock);
8911 mSuspended = suspended;
8912}
Glenn Kastena3a85482012-01-04 11:01:11 -08008913
8914bool AudioFlinger::EffectModule::suspended() const
Eric Laurent59255e42011-07-27 19:49:51 -07008915{
8916 Mutex::Autolock _l(mLock);
8917 return mSuspended;
8918}
8919
Eric Laurenta5f44eb2012-06-25 11:38:29 -07008920bool AudioFlinger::EffectModule::purgeHandles()
8921{
8922 bool enabled = false;
8923 Mutex::Autolock _l(mLock);
8924 for (size_t i = 0; i < mHandles.size(); i++) {
8925 EffectHandle *handle = mHandles[i];
8926 if (handle != NULL && !handle->destroyed_l()) {
8927 handle->effect().clear();
8928 if (handle->hasControl()) {
8929 enabled = handle->enabled();
8930 }
8931 }
8932 }
8933 return enabled;
8934}
8935
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07008936void AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07008937{
8938 const size_t SIZE = 256;
8939 char buffer[SIZE];
8940 String8 result;
8941
8942 snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
8943 result.append(buffer);
8944
8945 bool locked = tryLock(mLock);
8946 // failed to lock - AudioFlinger is probably deadlocked
8947 if (!locked) {
8948 result.append("\t\tCould not lock Fx mutex:\n");
8949 }
8950
8951 result.append("\t\tSession Status State Engine:\n");
8952 snprintf(buffer, SIZE, "\t\t%05d %03d %03d 0x%08x\n",
8953 mSessionId, mStatus, mState, (uint32_t)mEffectInterface);
8954 result.append(buffer);
8955
8956 result.append("\t\tDescriptor:\n");
8957 snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
8958 mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
Glenn Kasten85ab62c2012-11-01 11:11:38 -07008959 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],
8960 mDescriptor.uuid.node[2],
Mathias Agopian65ab4712010-07-14 17:59:35 -07008961 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
8962 result.append(buffer);
8963 snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
Glenn Kasten85ab62c2012-11-01 11:11:38 -07008964 mDescriptor.type.timeLow, mDescriptor.type.timeMid,
8965 mDescriptor.type.timeHiAndVersion,
8966 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],
8967 mDescriptor.type.node[2],
Mathias Agopian65ab4712010-07-14 17:59:35 -07008968 mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
8969 result.append(buffer);
Eric Laurente1315cf2011-05-17 19:16:02 -07008970 snprintf(buffer, SIZE, "\t\t- apiVersion: %08X\n\t\t- flags: %08X\n",
Mathias Agopian65ab4712010-07-14 17:59:35 -07008971 mDescriptor.apiVersion,
8972 mDescriptor.flags);
8973 result.append(buffer);
8974 snprintf(buffer, SIZE, "\t\t- name: %s\n",
8975 mDescriptor.name);
8976 result.append(buffer);
8977 snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
8978 mDescriptor.implementor);
8979 result.append(buffer);
8980
8981 result.append("\t\t- Input configuration:\n");
8982 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
8983 snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
8984 (uint32_t)mConfig.inputCfg.buffer.raw,
8985 mConfig.inputCfg.buffer.frameCount,
8986 mConfig.inputCfg.samplingRate,
8987 mConfig.inputCfg.channels,
8988 mConfig.inputCfg.format);
8989 result.append(buffer);
8990
8991 result.append("\t\t- Output configuration:\n");
8992 result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
8993 snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
8994 (uint32_t)mConfig.outputCfg.buffer.raw,
8995 mConfig.outputCfg.buffer.frameCount,
8996 mConfig.outputCfg.samplingRate,
8997 mConfig.outputCfg.channels,
8998 mConfig.outputCfg.format);
8999 result.append(buffer);
9000
9001 snprintf(buffer, SIZE, "\t\t%d Clients:\n", mHandles.size());
9002 result.append(buffer);
9003 result.append("\t\t\tPid Priority Ctrl Locked client server\n");
9004 for (size_t i = 0; i < mHandles.size(); ++i) {
Eric Laurenta5f44eb2012-06-25 11:38:29 -07009005 EffectHandle *handle = mHandles[i];
9006 if (handle != NULL && !handle->destroyed_l()) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07009007 handle->dump(buffer, SIZE);
9008 result.append(buffer);
9009 }
9010 }
9011
9012 result.append("\n");
9013
9014 write(fd, result.string(), result.length());
9015
9016 if (locked) {
9017 mLock.unlock();
9018 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009019}
9020
9021// ----------------------------------------------------------------------------
9022// EffectHandle implementation
9023// ----------------------------------------------------------------------------
9024
9025#undef LOG_TAG
9026#define LOG_TAG "AudioFlinger::EffectHandle"
9027
9028AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
9029 const sp<AudioFlinger::Client>& client,
9030 const sp<IEffectClient>& effectClient,
9031 int32_t priority)
9032 : BnEffect(),
Marco Nelissen3a34bef2011-08-02 13:33:41 -07009033 mEffect(effect), mEffectClient(effectClient), mClient(client), mCblk(NULL),
Eric Laurenta5f44eb2012-06-25 11:38:29 -07009034 mPriority(priority), mHasControl(false), mEnabled(false), mDestroyed(false)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009035{
Steve Block3856b092011-10-20 11:56:00 +01009036 ALOGV("constructor %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009037
Marco Nelissen3a34bef2011-08-02 13:33:41 -07009038 if (client == 0) {
9039 return;
9040 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009041 int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
9042 mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
9043 if (mCblkMemory != 0) {
9044 mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer());
9045
Glenn Kastena0d68332012-01-27 16:47:15 -08009046 if (mCblk != NULL) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07009047 new(mCblk) effect_param_cblk_t();
9048 mBuffer = (uint8_t *)mCblk + bufOffset;
Glenn Kastene53b9ea2012-03-12 16:29:55 -07009049 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009050 } else {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07009051 ALOGE("not enough memory for Effect size=%u", EFFECT_PARAM_BUFFER_SIZE +
9052 sizeof(effect_param_cblk_t));
Mathias Agopian65ab4712010-07-14 17:59:35 -07009053 return;
9054 }
9055}
9056
9057AudioFlinger::EffectHandle::~EffectHandle()
9058{
Steve Block3856b092011-10-20 11:56:00 +01009059 ALOGV("Destructor %p", this);
Eric Laurenta5f44eb2012-06-25 11:38:29 -07009060
9061 if (mEffect == 0) {
9062 mDestroyed = true;
9063 return;
9064 }
9065 mEffect->lock();
9066 mDestroyed = true;
9067 mEffect->unlock();
Marco Nelissen3a34bef2011-08-02 13:33:41 -07009068 disconnect(false);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009069}
9070
9071status_t AudioFlinger::EffectHandle::enable()
9072{
Steve Block3856b092011-10-20 11:56:00 +01009073 ALOGV("enable %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009074 if (!mHasControl) return INVALID_OPERATION;
9075 if (mEffect == 0) return DEAD_OBJECT;
9076
Eric Laurentdb7c0792011-08-10 10:37:50 -07009077 if (mEnabled) {
9078 return NO_ERROR;
9079 }
9080
Eric Laurent59255e42011-07-27 19:49:51 -07009081 mEnabled = true;
9082
9083 sp<ThreadBase> thread = mEffect->thread().promote();
9084 if (thread != 0) {
9085 thread->checkSuspendOnEffectEnabled(mEffect, true, mEffect->sessionId());
9086 }
9087
9088 // checkSuspendOnEffectEnabled() can suspend this same effect when enabled
9089 if (mEffect->suspended()) {
9090 return NO_ERROR;
9091 }
9092
Eric Laurentdb7c0792011-08-10 10:37:50 -07009093 status_t status = mEffect->setEnabled(true);
9094 if (status != NO_ERROR) {
9095 if (thread != 0) {
9096 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
9097 }
9098 mEnabled = false;
9099 }
9100 return status;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009101}
9102
9103status_t AudioFlinger::EffectHandle::disable()
9104{
Steve Block3856b092011-10-20 11:56:00 +01009105 ALOGV("disable %p", this);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009106 if (!mHasControl) return INVALID_OPERATION;
Eric Laurent59255e42011-07-27 19:49:51 -07009107 if (mEffect == 0) return DEAD_OBJECT;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009108
Eric Laurentdb7c0792011-08-10 10:37:50 -07009109 if (!mEnabled) {
9110 return NO_ERROR;
9111 }
Eric Laurent59255e42011-07-27 19:49:51 -07009112 mEnabled = false;
9113
9114 if (mEffect->suspended()) {
9115 return NO_ERROR;
9116 }
9117
9118 status_t status = mEffect->setEnabled(false);
9119
9120 sp<ThreadBase> thread = mEffect->thread().promote();
9121 if (thread != 0) {
9122 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
9123 }
9124
9125 return status;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009126}
9127
9128void AudioFlinger::EffectHandle::disconnect()
9129{
Marco Nelissen3a34bef2011-08-02 13:33:41 -07009130 disconnect(true);
9131}
9132
Glenn Kasten58123c32012-02-03 10:32:24 -08009133void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast)
Marco Nelissen3a34bef2011-08-02 13:33:41 -07009134{
Glenn Kasten58123c32012-02-03 10:32:24 -08009135 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
Mathias Agopian65ab4712010-07-14 17:59:35 -07009136 if (mEffect == 0) {
9137 return;
9138 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07009139 // restore suspended effects if the disconnected handle was enabled and the last one.
9140 if ((mEffect->disconnect(this, unpinIfLast) == 0) && mEnabled) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07009141 sp<ThreadBase> thread = mEffect->thread().promote();
9142 if (thread != 0) {
9143 thread->checkSuspendOnEffectEnabled(mEffect, false, mEffect->sessionId());
9144 }
Eric Laurent59255e42011-07-27 19:49:51 -07009145 }
9146
Mathias Agopian65ab4712010-07-14 17:59:35 -07009147 // release sp on module => module destructor can be called now
9148 mEffect.clear();
Mathias Agopian65ab4712010-07-14 17:59:35 -07009149 if (mClient != 0) {
Glenn Kastena0d68332012-01-27 16:47:15 -08009150 if (mCblk != NULL) {
Glenn Kasten1a0ae5b2012-02-03 10:24:48 -08009151 // unlike ~TrackBase(), mCblk is never a local new, so don't delete
Marco Nelissen3a34bef2011-08-02 13:33:41 -07009152 mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
9153 }
Glenn Kastendbfafaf2012-01-25 15:27:15 -08009154 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
Glenn Kasten98ec94c2012-01-25 14:28:29 -08009155 // Client destructor must run with AudioFlinger mutex locked
Mathias Agopian65ab4712010-07-14 17:59:35 -07009156 Mutex::Autolock _l(mClient->audioFlinger()->mLock);
9157 mClient.clear();
9158 }
9159}
9160
Eric Laurent25f43952010-07-28 05:40:18 -07009161status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode,
9162 uint32_t cmdSize,
9163 void *pCmdData,
9164 uint32_t *replySize,
9165 void *pReplyData)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009166{
Glenn Kasten26dd66e2012-10-18 15:51:03 -07009167 ALOGVV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p",
9168 cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
Mathias Agopian65ab4712010-07-14 17:59:35 -07009169
9170 // only get parameter command is permitted for applications not controlling the effect
9171 if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
9172 return INVALID_OPERATION;
9173 }
9174 if (mEffect == 0) return DEAD_OBJECT;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07009175 if (mClient == 0) return INVALID_OPERATION;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009176
9177 // handle commands that are not forwarded transparently to effect engine
9178 if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07009179 // No need to trylock() here as this function is executed in the binder thread serving a
9180 // particular client process: no risk to block the whole media server process or mixer
9181 // threads if we are stuck here
Mathias Agopian65ab4712010-07-14 17:59:35 -07009182 Mutex::Autolock _l(mCblk->lock);
9183 if (mCblk->clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
9184 mCblk->serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
9185 mCblk->serverIndex = 0;
9186 mCblk->clientIndex = 0;
9187 return BAD_VALUE;
9188 }
9189 status_t status = NO_ERROR;
9190 while (mCblk->serverIndex < mCblk->clientIndex) {
9191 int reply;
Eric Laurent25f43952010-07-28 05:40:18 -07009192 uint32_t rsize = sizeof(int);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009193 int *p = (int *)(mBuffer + mCblk->serverIndex);
9194 int size = *p++;
9195 if (((uint8_t *)p + size) > mBuffer + mCblk->clientIndex) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009196 ALOGW("command(): invalid parameter block size");
Mathias Agopian65ab4712010-07-14 17:59:35 -07009197 break;
9198 }
9199 effect_param_t *param = (effect_param_t *)p;
9200 if (param->psize == 0 || param->vsize == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009201 ALOGW("command(): null parameter or value size");
Mathias Agopian65ab4712010-07-14 17:59:35 -07009202 mCblk->serverIndex += size;
9203 continue;
9204 }
Eric Laurent25f43952010-07-28 05:40:18 -07009205 uint32_t psize = sizeof(effect_param_t) +
9206 ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) +
9207 param->vsize;
9208 status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM,
9209 psize,
9210 p,
9211 &rsize,
9212 &reply);
Eric Laurentaeae3de2010-09-02 11:56:55 -07009213 // stop at first error encountered
9214 if (ret != NO_ERROR) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07009215 status = ret;
Eric Laurentaeae3de2010-09-02 11:56:55 -07009216 *(int *)pReplyData = reply;
9217 break;
9218 } else if (reply != NO_ERROR) {
9219 *(int *)pReplyData = reply;
9220 break;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009221 }
9222 mCblk->serverIndex += size;
9223 }
9224 mCblk->serverIndex = 0;
9225 mCblk->clientIndex = 0;
9226 return status;
9227 } else if (cmdCode == EFFECT_CMD_ENABLE) {
Eric Laurentaeae3de2010-09-02 11:56:55 -07009228 *(int *)pReplyData = NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009229 return enable();
9230 } else if (cmdCode == EFFECT_CMD_DISABLE) {
Eric Laurentaeae3de2010-09-02 11:56:55 -07009231 *(int *)pReplyData = NO_ERROR;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009232 return disable();
9233 }
9234
9235 return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
9236}
9237
Eric Laurent59255e42011-07-27 19:49:51 -07009238void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009239{
Steve Block3856b092011-10-20 11:56:00 +01009240 ALOGV("setControl %p control %d", this, hasControl);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009241
9242 mHasControl = hasControl;
Eric Laurent59255e42011-07-27 19:49:51 -07009243 mEnabled = enabled;
9244
Mathias Agopian65ab4712010-07-14 17:59:35 -07009245 if (signal && mEffectClient != 0) {
9246 mEffectClient->controlStatusChanged(hasControl);
9247 }
9248}
9249
Eric Laurent25f43952010-07-28 05:40:18 -07009250void AudioFlinger::EffectHandle::commandExecuted(uint32_t cmdCode,
9251 uint32_t cmdSize,
9252 void *pCmdData,
9253 uint32_t replySize,
9254 void *pReplyData)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009255{
9256 if (mEffectClient != 0) {
9257 mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
9258 }
9259}
9260
9261
9262
9263void AudioFlinger::EffectHandle::setEnabled(bool enabled)
9264{
9265 if (mEffectClient != 0) {
9266 mEffectClient->enableStatusChanged(enabled);
9267 }
9268}
9269
9270status_t AudioFlinger::EffectHandle::onTransact(
9271 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
9272{
9273 return BnEffect::onTransact(code, data, reply, flags);
9274}
9275
9276
9277void AudioFlinger::EffectHandle::dump(char* buffer, size_t size)
9278{
Glenn Kastena0d68332012-01-27 16:47:15 -08009279 bool locked = mCblk != NULL && tryLock(mCblk->lock);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009280
9281 snprintf(buffer, size, "\t\t\t%05d %05d %01u %01u %05u %05u\n",
Glenn Kasten44deb052012-02-05 18:09:08 -08009282 (mClient == 0) ? getpid_cached : mClient->pid(),
Mathias Agopian65ab4712010-07-14 17:59:35 -07009283 mPriority,
9284 mHasControl,
9285 !locked,
Marco Nelissen3a34bef2011-08-02 13:33:41 -07009286 mCblk ? mCblk->clientIndex : 0,
9287 mCblk ? mCblk->serverIndex : 0
Mathias Agopian65ab4712010-07-14 17:59:35 -07009288 );
9289
9290 if (locked) {
9291 mCblk->lock.unlock();
9292 }
9293}
9294
9295#undef LOG_TAG
9296#define LOG_TAG "AudioFlinger::EffectChain"
9297
Glenn Kasten9eaa5572012-01-20 13:32:16 -08009298AudioFlinger::EffectChain::EffectChain(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07009299 int sessionId)
Glenn Kasten9eaa5572012-01-20 13:32:16 -08009300 : mThread(thread), mSessionId(sessionId), mActiveTrackCnt(0), mTrackCnt(0), mTailBufferCount(0),
Eric Laurentb469b942011-05-09 12:09:06 -07009301 mOwnInBuffer(false), mVolumeCtrlIdx(-1), mLeftVolume(UINT_MAX), mRightVolume(UINT_MAX),
9302 mNewLeftVolume(UINT_MAX), mNewRightVolume(UINT_MAX)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009303{
Dima Zavinfce7a472011-04-19 22:30:36 -07009304 mStrategy = AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
Glenn Kasten9eaa5572012-01-20 13:32:16 -08009305 if (thread == NULL) {
Eric Laurent544fe9b2011-11-11 15:42:52 -08009306 return;
9307 }
9308 mMaxTailBuffers = ((kProcessTailDurationMs * thread->sampleRate()) / 1000) /
9309 thread->frameCount();
Mathias Agopian65ab4712010-07-14 17:59:35 -07009310}
9311
9312AudioFlinger::EffectChain::~EffectChain()
9313{
9314 if (mOwnInBuffer) {
9315 delete mInBuffer;
9316 }
9317
9318}
9319
Eric Laurent59255e42011-07-27 19:49:51 -07009320// getEffectFromDesc_l() must be called with ThreadBase::mLock held
Glenn Kasten85ab62c2012-11-01 11:11:38 -07009321sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(
9322 effect_descriptor_t *descriptor)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009323{
Mathias Agopian65ab4712010-07-14 17:59:35 -07009324 size_t size = mEffects.size();
9325
9326 for (size_t i = 0; i < size; i++) {
9327 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
Glenn Kasten090f0192012-01-30 13:00:02 -08009328 return mEffects[i];
Mathias Agopian65ab4712010-07-14 17:59:35 -07009329 }
9330 }
Glenn Kasten090f0192012-01-30 13:00:02 -08009331 return 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009332}
9333
Eric Laurent59255e42011-07-27 19:49:51 -07009334// getEffectFromId_l() must be called with ThreadBase::mLock held
Eric Laurentcab11242010-07-15 12:50:15 -07009335sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009336{
Mathias Agopian65ab4712010-07-14 17:59:35 -07009337 size_t size = mEffects.size();
9338
9339 for (size_t i = 0; i < size; i++) {
Eric Laurentde070132010-07-13 04:45:46 -07009340 // by convention, return first effect if id provided is 0 (0 is never a valid id)
9341 if (id == 0 || mEffects[i]->id() == id) {
Glenn Kasten090f0192012-01-30 13:00:02 -08009342 return mEffects[i];
Mathias Agopian65ab4712010-07-14 17:59:35 -07009343 }
9344 }
Glenn Kasten090f0192012-01-30 13:00:02 -08009345 return 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009346}
9347
Eric Laurent59255e42011-07-27 19:49:51 -07009348// getEffectFromType_l() must be called with ThreadBase::mLock held
9349sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
9350 const effect_uuid_t *type)
9351{
Eric Laurent59255e42011-07-27 19:49:51 -07009352 size_t size = mEffects.size();
9353
9354 for (size_t i = 0; i < size; i++) {
9355 if (memcmp(&mEffects[i]->desc().type, type, sizeof(effect_uuid_t)) == 0) {
Glenn Kasten090f0192012-01-30 13:00:02 -08009356 return mEffects[i];
Eric Laurent59255e42011-07-27 19:49:51 -07009357 }
9358 }
Glenn Kasten090f0192012-01-30 13:00:02 -08009359 return 0;
Eric Laurent59255e42011-07-27 19:49:51 -07009360}
9361
Eric Laurent91b14c42012-05-30 12:30:29 -07009362void AudioFlinger::EffectChain::clearInputBuffer()
9363{
9364 Mutex::Autolock _l(mLock);
9365 sp<ThreadBase> thread = mThread.promote();
9366 if (thread == 0) {
9367 ALOGW("clearInputBuffer(): cannot promote mixer thread");
9368 return;
9369 }
9370 clearInputBuffer_l(thread);
9371}
9372
9373// Must be called with EffectChain::mLock locked
9374void AudioFlinger::EffectChain::clearInputBuffer_l(sp<ThreadBase> thread)
9375{
9376 size_t numSamples = thread->frameCount() * thread->channelCount();
9377 memset(mInBuffer, 0, numSamples * sizeof(int16_t));
9378
9379}
9380
Mathias Agopian65ab4712010-07-14 17:59:35 -07009381// Must be called with EffectChain::mLock locked
9382void AudioFlinger::EffectChain::process_l()
9383{
Eric Laurentdac69112010-09-28 14:09:57 -07009384 sp<ThreadBase> thread = mThread.promote();
9385 if (thread == 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009386 ALOGW("process_l(): cannot promote mixer thread");
Eric Laurentdac69112010-09-28 14:09:57 -07009387 return;
9388 }
Dima Zavinfce7a472011-04-19 22:30:36 -07009389 bool isGlobalSession = (mSessionId == AUDIO_SESSION_OUTPUT_MIX) ||
9390 (mSessionId == AUDIO_SESSION_OUTPUT_STAGE);
Eric Laurent544fe9b2011-11-11 15:42:52 -08009391 // always process effects unless no more tracks are on the session and the effect tail
9392 // has been rendered
9393 bool doProcess = true;
Eric Laurentdac69112010-09-28 14:09:57 -07009394 if (!isGlobalSession) {
Eric Laurent544fe9b2011-11-11 15:42:52 -08009395 bool tracksOnSession = (trackCnt() != 0);
Eric Laurentb469b942011-05-09 12:09:06 -07009396
Eric Laurent544fe9b2011-11-11 15:42:52 -08009397 if (!tracksOnSession && mTailBufferCount == 0) {
9398 doProcess = false;
9399 }
9400
9401 if (activeTrackCnt() == 0) {
9402 // if no track is active and the effect tail has not been rendered,
9403 // the input buffer must be cleared here as the mixer process will not do it
9404 if (tracksOnSession || mTailBufferCount > 0) {
Eric Laurent91b14c42012-05-30 12:30:29 -07009405 clearInputBuffer_l(thread);
Eric Laurent544fe9b2011-11-11 15:42:52 -08009406 if (mTailBufferCount > 0) {
9407 mTailBufferCount--;
9408 }
9409 }
9410 }
Eric Laurentdac69112010-09-28 14:09:57 -07009411 }
9412
Mathias Agopian65ab4712010-07-14 17:59:35 -07009413 size_t size = mEffects.size();
Eric Laurent544fe9b2011-11-11 15:42:52 -08009414 if (doProcess) {
Eric Laurentdac69112010-09-28 14:09:57 -07009415 for (size_t i = 0; i < size; i++) {
9416 mEffects[i]->process();
9417 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009418 }
9419 for (size_t i = 0; i < size; i++) {
9420 mEffects[i]->updateState();
9421 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009422}
9423
Eric Laurentcab11242010-07-15 12:50:15 -07009424// addEffect_l() must be called with PlaybackThread::mLock held
Eric Laurentde070132010-07-13 04:45:46 -07009425status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009426{
9427 effect_descriptor_t desc = effect->desc();
9428 uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
9429
9430 Mutex::Autolock _l(mLock);
Eric Laurentde070132010-07-13 04:45:46 -07009431 effect->setChain(this);
9432 sp<ThreadBase> thread = mThread.promote();
9433 if (thread == 0) {
9434 return NO_INIT;
9435 }
9436 effect->setThread(thread);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009437
9438 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
9439 // Auxiliary effects are inserted at the beginning of mEffects vector as
9440 // they are processed first and accumulated in chain input buffer
9441 mEffects.insertAt(effect, 0);
Eric Laurentde070132010-07-13 04:45:46 -07009442
Mathias Agopian65ab4712010-07-14 17:59:35 -07009443 // the input buffer for auxiliary effect contains mono samples in
9444 // 32 bit format. This is to avoid saturation in AudoMixer
9445 // accumulation stage. Saturation is done in EffectModule::process() before
9446 // calling the process in effect engine
9447 size_t numSamples = thread->frameCount();
9448 int32_t *buffer = new int32_t[numSamples];
9449 memset(buffer, 0, numSamples * sizeof(int32_t));
9450 effect->setInBuffer((int16_t *)buffer);
9451 // auxiliary effects output samples to chain input buffer for further processing
9452 // by insert effects
9453 effect->setOutBuffer(mInBuffer);
9454 } else {
9455 // Insert effects are inserted at the end of mEffects vector as they are processed
9456 // after track and auxiliary effects.
9457 // Insert effect order as a function of indicated preference:
9458 // if EFFECT_FLAG_INSERT_EXCLUSIVE, insert in first position or reject if
9459 // another effect is present
9460 // else if EFFECT_FLAG_INSERT_FIRST, insert in first position or after the
9461 // last effect claiming first position
9462 // else if EFFECT_FLAG_INSERT_LAST, insert in last position or before the
9463 // first effect claiming last position
9464 // else if EFFECT_FLAG_INSERT_ANY insert after first or before last
9465 // Reject insertion if an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is
9466 // already present
9467
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009468 size_t size = mEffects.size();
9469 size_t idx_insert = size;
9470 ssize_t idx_insert_first = -1;
9471 ssize_t idx_insert_last = -1;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009472
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009473 for (size_t i = 0; i < size; i++) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07009474 effect_descriptor_t d = mEffects[i]->desc();
9475 uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
9476 uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
9477 if (iMode == EFFECT_FLAG_TYPE_INSERT) {
9478 // check invalid effect chaining combinations
9479 if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
9480 iPref == EFFECT_FLAG_INSERT_EXCLUSIVE) {
Glenn Kasten85ab62c2012-11-01 11:11:38 -07009481 ALOGW("addEffect_l() could not insert effect %s: exclusive conflict with %s",
9482 desc.name, d.name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009483 return INVALID_OPERATION;
9484 }
9485 // remember position of first insert effect and by default
9486 // select this as insert position for new effect
9487 if (idx_insert == size) {
9488 idx_insert = i;
9489 }
9490 // remember position of last insert effect claiming
9491 // first position
9492 if (iPref == EFFECT_FLAG_INSERT_FIRST) {
9493 idx_insert_first = i;
9494 }
9495 // remember position of first insert effect claiming
9496 // last position
9497 if (iPref == EFFECT_FLAG_INSERT_LAST &&
9498 idx_insert_last == -1) {
9499 idx_insert_last = i;
9500 }
9501 }
9502 }
9503
9504 // modify idx_insert from first position if needed
9505 if (insertPref == EFFECT_FLAG_INSERT_LAST) {
9506 if (idx_insert_last != -1) {
9507 idx_insert = idx_insert_last;
9508 } else {
9509 idx_insert = size;
9510 }
9511 } else {
9512 if (idx_insert_first != -1) {
9513 idx_insert = idx_insert_first + 1;
9514 }
9515 }
9516
9517 // always read samples from chain input buffer
9518 effect->setInBuffer(mInBuffer);
9519
9520 // if last effect in the chain, output samples to chain
9521 // output buffer, otherwise to chain input buffer
9522 if (idx_insert == size) {
9523 if (idx_insert != 0) {
9524 mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
9525 mEffects[idx_insert-1]->configure();
9526 }
9527 effect->setOutBuffer(mOutBuffer);
9528 } else {
9529 effect->setOutBuffer(mInBuffer);
9530 }
9531 mEffects.insertAt(effect, idx_insert);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009532
Glenn Kasten85ab62c2012-11-01 11:11:38 -07009533 ALOGV("addEffect_l() effect %p, added in chain %p at rank %d", effect.get(), this,
9534 idx_insert);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009535 }
9536 effect->configure();
9537 return NO_ERROR;
9538}
9539
Eric Laurentcab11242010-07-15 12:50:15 -07009540// removeEffect_l() must be called with PlaybackThread::mLock held
9541size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009542{
9543 Mutex::Autolock _l(mLock);
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009544 size_t size = mEffects.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07009545 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
9546
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009547 for (size_t i = 0; i < size; i++) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07009548 if (effect == mEffects[i]) {
Eric Laurentec437d82011-07-26 20:54:46 -07009549 // calling stop here will remove pre-processing effect from the audio HAL.
9550 // This is safe as we hold the EffectChain mutex which guarantees that we are not in
9551 // the middle of a read from audio HAL
Eric Laurentec35a142011-10-05 17:42:25 -07009552 if (mEffects[i]->state() == EffectModule::ACTIVE ||
9553 mEffects[i]->state() == EffectModule::STOPPING) {
9554 mEffects[i]->stop();
9555 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009556 if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
9557 delete[] effect->inBuffer();
9558 } else {
9559 if (i == size - 1 && i != 0) {
9560 mEffects[i - 1]->setOutBuffer(mOutBuffer);
9561 mEffects[i - 1]->configure();
9562 }
9563 }
9564 mEffects.removeAt(i);
Glenn Kasten85ab62c2012-11-01 11:11:38 -07009565 ALOGV("removeEffect_l() effect %p, removed from chain %p at rank %d", effect.get(),
9566 this, i);
Mathias Agopian65ab4712010-07-14 17:59:35 -07009567 break;
9568 }
9569 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009570
9571 return mEffects.size();
9572}
9573
Eric Laurentcab11242010-07-15 12:50:15 -07009574// setDevice_l() must be called with PlaybackThread::mLock held
Glenn Kastenbb4350d2012-07-03 15:56:38 -07009575void AudioFlinger::EffectChain::setDevice_l(audio_devices_t device)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009576{
9577 size_t size = mEffects.size();
9578 for (size_t i = 0; i < size; i++) {
9579 mEffects[i]->setDevice(device);
9580 }
9581}
9582
Eric Laurentcab11242010-07-15 12:50:15 -07009583// setMode_l() must be called with PlaybackThread::mLock held
Glenn Kastenf78aee72012-01-04 11:00:47 -08009584void AudioFlinger::EffectChain::setMode_l(audio_mode_t mode)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009585{
9586 size_t size = mEffects.size();
9587 for (size_t i = 0; i < size; i++) {
9588 mEffects[i]->setMode(mode);
9589 }
9590}
9591
Eric Laurent57b2dd12012-08-31 17:44:06 -07009592// setAudioSource_l() must be called with PlaybackThread::mLock held
9593void AudioFlinger::EffectChain::setAudioSource_l(audio_source_t source)
9594{
9595 size_t size = mEffects.size();
9596 for (size_t i = 0; i < size; i++) {
9597 mEffects[i]->setAudioSource(source);
9598 }
9599}
9600
Eric Laurentcab11242010-07-15 12:50:15 -07009601// setVolume_l() must be called with PlaybackThread::mLock held
9602bool AudioFlinger::EffectChain::setVolume_l(uint32_t *left, uint32_t *right)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009603{
9604 uint32_t newLeft = *left;
9605 uint32_t newRight = *right;
9606 bool hasControl = false;
Eric Laurentcab11242010-07-15 12:50:15 -07009607 int ctrlIdx = -1;
9608 size_t size = mEffects.size();
Mathias Agopian65ab4712010-07-14 17:59:35 -07009609
Eric Laurentcab11242010-07-15 12:50:15 -07009610 // first update volume controller
9611 for (size_t i = size; i > 0; i--) {
Eric Laurent8f45bd72010-08-31 13:50:07 -07009612 if (mEffects[i - 1]->isProcessEnabled() &&
Eric Laurentcab11242010-07-15 12:50:15 -07009613 (mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) == EFFECT_FLAG_VOLUME_CTRL) {
9614 ctrlIdx = i - 1;
Eric Laurentf997cab2010-07-19 06:24:46 -07009615 hasControl = true;
Eric Laurentcab11242010-07-15 12:50:15 -07009616 break;
9617 }
9618 }
9619
9620 if (ctrlIdx == mVolumeCtrlIdx && *left == mLeftVolume && *right == mRightVolume) {
Eric Laurentf997cab2010-07-19 06:24:46 -07009621 if (hasControl) {
9622 *left = mNewLeftVolume;
9623 *right = mNewRightVolume;
9624 }
9625 return hasControl;
Eric Laurentcab11242010-07-15 12:50:15 -07009626 }
9627
9628 mVolumeCtrlIdx = ctrlIdx;
Eric Laurentf997cab2010-07-19 06:24:46 -07009629 mLeftVolume = newLeft;
9630 mRightVolume = newRight;
Eric Laurentcab11242010-07-15 12:50:15 -07009631
9632 // second get volume update from volume controller
9633 if (ctrlIdx >= 0) {
9634 mEffects[ctrlIdx]->setVolume(&newLeft, &newRight, true);
Eric Laurentf997cab2010-07-19 06:24:46 -07009635 mNewLeftVolume = newLeft;
9636 mNewRightVolume = newRight;
Mathias Agopian65ab4712010-07-14 17:59:35 -07009637 }
9638 // then indicate volume to all other effects in chain.
9639 // Pass altered volume to effects before volume controller
9640 // and requested volume to effects after controller
9641 uint32_t lVol = newLeft;
9642 uint32_t rVol = newRight;
Eric Laurentcab11242010-07-15 12:50:15 -07009643
Mathias Agopian65ab4712010-07-14 17:59:35 -07009644 for (size_t i = 0; i < size; i++) {
Eric Laurentcab11242010-07-15 12:50:15 -07009645 if ((int)i == ctrlIdx) continue;
9646 // this also works for ctrlIdx == -1 when there is no volume controller
9647 if ((int)i > ctrlIdx) {
Mathias Agopian65ab4712010-07-14 17:59:35 -07009648 lVol = *left;
9649 rVol = *right;
9650 }
9651 mEffects[i]->setVolume(&lVol, &rVol, false);
9652 }
9653 *left = newLeft;
9654 *right = newRight;
9655
9656 return hasControl;
9657}
9658
Glenn Kastenbe5f05e2012-07-18 15:24:02 -07009659void AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
Mathias Agopian65ab4712010-07-14 17:59:35 -07009660{
9661 const size_t SIZE = 256;
9662 char buffer[SIZE];
9663 String8 result;
9664
9665 snprintf(buffer, SIZE, "Effects for session %d:\n", mSessionId);
9666 result.append(buffer);
9667
9668 bool locked = tryLock(mLock);
9669 // failed to lock - AudioFlinger is probably deadlocked
9670 if (!locked) {
9671 result.append("\tCould not lock mutex:\n");
9672 }
9673
Eric Laurentcab11242010-07-15 12:50:15 -07009674 result.append("\tNum fx In buffer Out buffer Active tracks:\n");
9675 snprintf(buffer, SIZE, "\t%02d 0x%08x 0x%08x %d\n",
Mathias Agopian65ab4712010-07-14 17:59:35 -07009676 mEffects.size(),
9677 (uint32_t)mInBuffer,
9678 (uint32_t)mOutBuffer,
Mathias Agopian65ab4712010-07-14 17:59:35 -07009679 mActiveTrackCnt);
9680 result.append(buffer);
9681 write(fd, result.string(), result.size());
9682
9683 for (size_t i = 0; i < mEffects.size(); ++i) {
9684 sp<EffectModule> effect = mEffects[i];
9685 if (effect != 0) {
9686 effect->dump(fd, args);
9687 }
9688 }
9689
9690 if (locked) {
9691 mLock.unlock();
9692 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07009693}
9694
Eric Laurent59255e42011-07-27 19:49:51 -07009695// must be called with ThreadBase::mLock held
9696void AudioFlinger::EffectChain::setEffectSuspended_l(
9697 const effect_uuid_t *type, bool suspend)
9698{
9699 sp<SuspendedEffectDesc> desc;
9700 // use effect type UUID timelow as key as there is no real risk of identical
9701 // timeLow fields among effect type UUIDs.
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009702 ssize_t index = mSuspendedEffects.indexOfKey(type->timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07009703 if (suspend) {
9704 if (index >= 0) {
9705 desc = mSuspendedEffects.valueAt(index);
9706 } else {
9707 desc = new SuspendedEffectDesc();
Glenn Kastena189a682012-02-20 12:16:30 -08009708 desc->mType = *type;
Eric Laurent59255e42011-07-27 19:49:51 -07009709 mSuspendedEffects.add(type->timeLow, desc);
Steve Block3856b092011-10-20 11:56:00 +01009710 ALOGV("setEffectSuspended_l() add entry for %08x", type->timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07009711 }
9712 if (desc->mRefCount++ == 0) {
9713 sp<EffectModule> effect = getEffectIfEnabled(type);
9714 if (effect != 0) {
9715 desc->mEffect = effect;
9716 effect->setSuspended(true);
9717 effect->setEnabled(false);
9718 }
9719 }
9720 } else {
9721 if (index < 0) {
9722 return;
9723 }
9724 desc = mSuspendedEffects.valueAt(index);
9725 if (desc->mRefCount <= 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009726 ALOGW("setEffectSuspended_l() restore refcount should not be 0 %d", desc->mRefCount);
Eric Laurent59255e42011-07-27 19:49:51 -07009727 desc->mRefCount = 1;
9728 }
9729 if (--desc->mRefCount == 0) {
Steve Block3856b092011-10-20 11:56:00 +01009730 ALOGV("setEffectSuspended_l() remove entry for %08x", mSuspendedEffects.keyAt(index));
Eric Laurent59255e42011-07-27 19:49:51 -07009731 if (desc->mEffect != 0) {
9732 sp<EffectModule> effect = desc->mEffect.promote();
9733 if (effect != 0) {
9734 effect->setSuspended(false);
Eric Laurenta5f44eb2012-06-25 11:38:29 -07009735 effect->lock();
9736 EffectHandle *handle = effect->controlHandle_l();
9737 if (handle != NULL && !handle->destroyed_l()) {
9738 effect->setEnabled_l(handle->enabled());
Eric Laurent59255e42011-07-27 19:49:51 -07009739 }
Eric Laurenta5f44eb2012-06-25 11:38:29 -07009740 effect->unlock();
Eric Laurent59255e42011-07-27 19:49:51 -07009741 }
9742 desc->mEffect.clear();
9743 }
9744 mSuspendedEffects.removeItemsAt(index);
9745 }
9746 }
9747}
9748
9749// must be called with ThreadBase::mLock held
9750void AudioFlinger::EffectChain::setEffectSuspendedAll_l(bool suspend)
9751{
9752 sp<SuspendedEffectDesc> desc;
9753
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009754 ssize_t index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
Eric Laurent59255e42011-07-27 19:49:51 -07009755 if (suspend) {
9756 if (index >= 0) {
9757 desc = mSuspendedEffects.valueAt(index);
9758 } else {
9759 desc = new SuspendedEffectDesc();
9760 mSuspendedEffects.add((int)kKeyForSuspendAll, desc);
Steve Block3856b092011-10-20 11:56:00 +01009761 ALOGV("setEffectSuspendedAll_l() add entry for 0");
Eric Laurent59255e42011-07-27 19:49:51 -07009762 }
9763 if (desc->mRefCount++ == 0) {
Glenn Kastend0539712012-01-30 12:56:03 -08009764 Vector< sp<EffectModule> > effects;
9765 getSuspendEligibleEffects(effects);
Eric Laurent59255e42011-07-27 19:49:51 -07009766 for (size_t i = 0; i < effects.size(); i++) {
9767 setEffectSuspended_l(&effects[i]->desc().type, true);
9768 }
9769 }
9770 } else {
9771 if (index < 0) {
9772 return;
9773 }
9774 desc = mSuspendedEffects.valueAt(index);
9775 if (desc->mRefCount <= 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009776 ALOGW("setEffectSuspendedAll_l() restore refcount should not be 0 %d", desc->mRefCount);
Eric Laurent59255e42011-07-27 19:49:51 -07009777 desc->mRefCount = 1;
9778 }
9779 if (--desc->mRefCount == 0) {
9780 Vector<const effect_uuid_t *> types;
9781 for (size_t i = 0; i < mSuspendedEffects.size(); i++) {
9782 if (mSuspendedEffects.keyAt(i) == (int)kKeyForSuspendAll) {
9783 continue;
9784 }
9785 types.add(&mSuspendedEffects.valueAt(i)->mType);
9786 }
9787 for (size_t i = 0; i < types.size(); i++) {
9788 setEffectSuspended_l(types[i], false);
9789 }
Glenn Kasten85ab62c2012-11-01 11:11:38 -07009790 ALOGV("setEffectSuspendedAll_l() remove entry for %08x",
9791 mSuspendedEffects.keyAt(index));
Eric Laurent59255e42011-07-27 19:49:51 -07009792 mSuspendedEffects.removeItem((int)kKeyForSuspendAll);
9793 }
9794 }
9795}
9796
Eric Laurent6bffdb82011-09-23 08:40:41 -07009797
9798// The volume effect is used for automated tests only
9799#ifndef OPENSL_ES_H_
9800static const effect_uuid_t SL_IID_VOLUME_ = { 0x09e8ede0, 0xddde, 0x11db, 0xb4f6,
9801 { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } };
9802const effect_uuid_t * const SL_IID_VOLUME = &SL_IID_VOLUME_;
9803#endif //OPENSL_ES_H_
9804
Eric Laurentdb7c0792011-08-10 10:37:50 -07009805bool AudioFlinger::EffectChain::isEffectEligibleForSuspend(const effect_descriptor_t& desc)
9806{
9807 // auxiliary effects and visualizer are never suspended on output mix
9808 if ((mSessionId == AUDIO_SESSION_OUTPUT_MIX) &&
9809 (((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) ||
Eric Laurent6bffdb82011-09-23 08:40:41 -07009810 (memcmp(&desc.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0) ||
9811 (memcmp(&desc.type, SL_IID_VOLUME, sizeof(effect_uuid_t)) == 0))) {
Eric Laurentdb7c0792011-08-10 10:37:50 -07009812 return false;
9813 }
9814 return true;
9815}
9816
Glenn Kasten85ab62c2012-11-01 11:11:38 -07009817void AudioFlinger::EffectChain::getSuspendEligibleEffects(
9818 Vector< sp<AudioFlinger::EffectModule> > &effects)
Eric Laurent59255e42011-07-27 19:49:51 -07009819{
Glenn Kastend0539712012-01-30 12:56:03 -08009820 effects.clear();
Eric Laurent59255e42011-07-27 19:49:51 -07009821 for (size_t i = 0; i < mEffects.size(); i++) {
Glenn Kastend0539712012-01-30 12:56:03 -08009822 if (isEffectEligibleForSuspend(mEffects[i]->desc())) {
9823 effects.add(mEffects[i]);
Eric Laurent59255e42011-07-27 19:49:51 -07009824 }
Eric Laurent59255e42011-07-27 19:49:51 -07009825 }
Eric Laurent59255e42011-07-27 19:49:51 -07009826}
9827
9828sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
9829 const effect_uuid_t *type)
9830{
Glenn Kasten090f0192012-01-30 13:00:02 -08009831 sp<EffectModule> effect = getEffectFromType_l(type);
9832 return effect != 0 && effect->isEnabled() ? effect : 0;
Eric Laurent59255e42011-07-27 19:49:51 -07009833}
9834
9835void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
9836 bool enabled)
9837{
Glenn Kasten8d6a2442012-02-08 14:04:28 -08009838 ssize_t index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07009839 if (enabled) {
9840 if (index < 0) {
9841 // if the effect is not suspend check if all effects are suspended
9842 index = mSuspendedEffects.indexOfKey((int)kKeyForSuspendAll);
9843 if (index < 0) {
9844 return;
9845 }
Eric Laurentdb7c0792011-08-10 10:37:50 -07009846 if (!isEffectEligibleForSuspend(effect->desc())) {
9847 return;
9848 }
Eric Laurent59255e42011-07-27 19:49:51 -07009849 setEffectSuspended_l(&effect->desc().type, enabled);
9850 index = mSuspendedEffects.indexOfKey(effect->desc().type.timeLow);
Eric Laurentdb7c0792011-08-10 10:37:50 -07009851 if (index < 0) {
Steve Block5ff1dd52012-01-05 23:22:43 +00009852 ALOGW("checkSuspendOnEffectEnabled() Fx should be suspended here!");
Eric Laurentdb7c0792011-08-10 10:37:50 -07009853 return;
9854 }
Eric Laurent59255e42011-07-27 19:49:51 -07009855 }
Steve Block3856b092011-10-20 11:56:00 +01009856 ALOGV("checkSuspendOnEffectEnabled() enable suspending fx %08x",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07009857 effect->desc().type.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07009858 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
9859 // if effect is requested to suspended but was not yet enabled, supend it now.
9860 if (desc->mEffect == 0) {
9861 desc->mEffect = effect;
9862 effect->setEnabled(false);
9863 effect->setSuspended(true);
9864 }
9865 } else {
9866 if (index < 0) {
9867 return;
9868 }
Steve Block3856b092011-10-20 11:56:00 +01009869 ALOGV("checkSuspendOnEffectEnabled() disable restoring fx %08x",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07009870 effect->desc().type.timeLow);
Eric Laurent59255e42011-07-27 19:49:51 -07009871 sp<SuspendedEffectDesc> desc = mSuspendedEffects.valueAt(index);
9872 desc->mEffect.clear();
9873 effect->setSuspended(false);
9874 }
9875}
9876
Mathias Agopian65ab4712010-07-14 17:59:35 -07009877#undef LOG_TAG
9878#define LOG_TAG "AudioFlinger"
9879
9880// ----------------------------------------------------------------------------
9881
9882status_t AudioFlinger::onTransact(
9883 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
9884{
9885 return BnAudioFlinger::onTransact(code, data, reply, flags);
9886}
9887
Mathias Agopian65ab4712010-07-14 17:59:35 -07009888}; // namespace android