2008-10-21 14:00:00 +00:00
|
|
|
/* //device/include/server/AudioFlinger/AudioFlinger.cpp
|
|
|
|
**
|
|
|
|
** Copyright 2007, The Android Open Source Project
|
|
|
|
**
|
|
|
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
** you may not use this file except in compliance with the License.
|
|
|
|
** You may obtain a copy of the License at
|
|
|
|
**
|
|
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
**
|
|
|
|
** Unless required by applicable law or agreed to in writing, software
|
|
|
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
** See the License for the specific language governing permissions and
|
|
|
|
** limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#define LOG_TAG "AudioFlinger"
|
|
|
|
//#define LOG_NDEBUG 0
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
|
2009-05-20 02:08:10 +00:00
|
|
|
#include <binder/IServiceManager.h>
|
2008-10-21 14:00:00 +00:00
|
|
|
#include <utils/Log.h>
|
2009-05-20 02:08:10 +00:00
|
|
|
#include <binder/Parcel.h>
|
|
|
|
#include <binder/IPCThreadState.h>
|
2008-10-21 14:00:00 +00:00
|
|
|
#include <utils/String16.h>
|
|
|
|
#include <utils/threads.h>
|
|
|
|
|
2008-12-18 02:05:43 +00:00
|
|
|
#include <cutils/properties.h>
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
#include <media/AudioTrack.h>
|
|
|
|
#include <media/AudioRecord.h>
|
|
|
|
|
|
|
|
#include <private/media/AudioTrackShared.h>
|
2010-06-02 06:49:17 +00:00
|
|
|
#include <private/media/AudioEffectShared.h>
|
2009-01-16 00:12:10 +00:00
|
|
|
#include <hardware_legacy/AudioHardwareInterface.h>
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
#include "AudioMixer.h"
|
|
|
|
#include "AudioFlinger.h"
|
|
|
|
|
2008-12-18 02:05:43 +00:00
|
|
|
#ifdef WITH_A2DP
|
|
|
|
#include "A2dpAudioInterface.h"
|
|
|
|
#endif
|
|
|
|
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
#include "lifevibes.h"
|
|
|
|
#endif
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
#include <media/EffectFactoryApi.h>
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// the sim build doesn't have gettid
|
|
|
|
|
|
|
|
#ifndef HAVE_GETTID
|
|
|
|
# define gettid getpid
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
namespace android {
|
|
|
|
|
2009-03-19 00:39:46 +00:00
|
|
|
static const char* kDeadlockedString = "AudioFlinger may be deadlocked\n";
|
|
|
|
static const char* kHardwareLockedString = "Hardware lock is taken\n";
|
|
|
|
|
2008-12-18 02:05:43 +00:00
|
|
|
//static const nsecs_t kStandbyTimeInNsecs = seconds(3);
|
2008-10-21 14:00:00 +00:00
|
|
|
static const float MAX_GAIN = 4096.0f;
|
2010-06-02 06:49:17 +00:00
|
|
|
static const float MAX_GAIN_INT = 0x1000;
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
// retry counts for buffer fill timeout
|
|
|
|
// 50 * ~20msecs = 1 second
|
|
|
|
static const int8_t kMaxTrackRetries = 50;
|
|
|
|
static const int8_t kMaxTrackStartupRetries = 50;
|
2010-03-11 22:47:00 +00:00
|
|
|
// allow less retry attempts on direct output thread.
|
|
|
|
// direct outputs can be a scarce resource in audio hardware and should
|
|
|
|
// be released as quickly as possible.
|
|
|
|
static const int8_t kMaxTrackRetriesDirect = 2;
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-03-09 18:52:12 +00:00
|
|
|
static const int kDumpLockRetries = 50;
|
|
|
|
static const int kDumpLockSleep = 20000;
|
|
|
|
|
2009-09-30 10:09:03 +00:00
|
|
|
static const nsecs_t kWarningThrottle = seconds(5);
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
#define AUDIOFLINGER_SECURITY_ENABLED 1
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static bool recordingAllowed() {
|
|
|
|
#ifndef HAVE_ANDROID_OS
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
#if AUDIOFLINGER_SECURITY_ENABLED
|
|
|
|
if (getpid() == IPCThreadState::self()->getCallingPid()) return true;
|
|
|
|
bool ok = checkCallingPermission(String16("android.permission.RECORD_AUDIO"));
|
|
|
|
if (!ok) LOGE("Request requires android.permission.RECORD_AUDIO");
|
|
|
|
return ok;
|
|
|
|
#else
|
|
|
|
if (!checkCallingPermission(String16("android.permission.RECORD_AUDIO")))
|
|
|
|
LOGW("WARNING: Need to add android.permission.RECORD_AUDIO to manifest");
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool settingsAllowed() {
|
|
|
|
#ifndef HAVE_ANDROID_OS
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
#if AUDIOFLINGER_SECURITY_ENABLED
|
|
|
|
if (getpid() == IPCThreadState::self()->getCallingPid()) return true;
|
|
|
|
bool ok = checkCallingPermission(String16("android.permission.MODIFY_AUDIO_SETTINGS"));
|
|
|
|
if (!ok) LOGE("Request requires android.permission.MODIFY_AUDIO_SETTINGS");
|
|
|
|
return ok;
|
|
|
|
#else
|
|
|
|
if (!checkCallingPermission(String16("android.permission.MODIFY_AUDIO_SETTINGS")))
|
|
|
|
LOGW("WARNING: Need to add android.permission.MODIFY_AUDIO_SETTINGS to manifest");
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
AudioFlinger::AudioFlinger()
|
2009-03-04 03:31:44 +00:00
|
|
|
: BnAudioFlinger(),
|
2010-06-02 06:49:17 +00:00
|
|
|
mAudioHardware(0), mMasterVolume(1.0f), mMasterMute(false), mNextUniqueId(1)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
|
|
|
mHardwareStatus = AUDIO_HW_IDLE;
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
mAudioHardware = AudioHardwareInterface::create();
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
mHardwareStatus = AUDIO_HW_INIT;
|
|
|
|
if (mAudioHardware->initCheck() == NO_ERROR) {
|
|
|
|
// open 16-bit output stream for s/w mixer
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
setMode(AudioSystem::MODE_NORMAL);
|
|
|
|
|
|
|
|
setMasterVolume(1.0f);
|
|
|
|
setMasterMute(false);
|
2009-07-17 19:17:14 +00:00
|
|
|
} else {
|
2008-10-21 14:00:00 +00:00
|
|
|
LOGE("Couldn't even initialize the stubbed audio hardware!");
|
|
|
|
}
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
LifeVibes::init();
|
2010-05-12 09:05:53 +00:00
|
|
|
mLifeVibesClientPid = -1;
|
2010-03-05 20:18:01 +00:00
|
|
|
#endif
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioFlinger::~AudioFlinger()
|
|
|
|
{
|
2009-08-28 17:39:03 +00:00
|
|
|
while (!mRecordThreads.isEmpty()) {
|
|
|
|
// closeInput() will remove first entry from mRecordThreads
|
|
|
|
closeInput(mRecordThreads.keyAt(0));
|
|
|
|
}
|
|
|
|
while (!mPlaybackThreads.isEmpty()) {
|
|
|
|
// closeOutput() will remove first entry from mPlaybackThreads
|
|
|
|
closeOutput(mPlaybackThreads.keyAt(0));
|
|
|
|
}
|
|
|
|
if (mAudioHardware) {
|
|
|
|
delete mAudioHardware;
|
|
|
|
}
|
2008-12-18 02:05:43 +00:00
|
|
|
}
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-01-22 08:13:42 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
status_t AudioFlinger::dumpClients(int fd, const Vector<String16>& args)
|
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
|
|
|
|
|
|
|
result.append("Clients:\n");
|
|
|
|
for (size_t i = 0; i < mClients.size(); ++i) {
|
|
|
|
wp<Client> wClient = mClients.valueAt(i);
|
|
|
|
if (wClient != 0) {
|
|
|
|
sp<Client> client = wClient.promote();
|
|
|
|
if (client != 0) {
|
|
|
|
snprintf(buffer, SIZE, " pid: %d\n", client->pid());
|
|
|
|
result.append(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
write(fd, result.string(), result.size());
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t AudioFlinger::dumpInternals(int fd, const Vector<String16>& args)
|
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
2009-03-09 18:52:12 +00:00
|
|
|
int hardwareStatus = mHardwareStatus;
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-09 18:52:12 +00:00
|
|
|
snprintf(buffer, SIZE, "Hardware status: %d\n", hardwareStatus);
|
2008-10-21 14:00:00 +00:00
|
|
|
result.append(buffer);
|
|
|
|
write(fd, result.string(), result.size());
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::dumpPermissionDenial(int fd, const Vector<String16>& args)
|
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
|
|
|
snprintf(buffer, SIZE, "Permission Denial: "
|
|
|
|
"can't dump AudioFlinger from pid=%d, uid=%d\n",
|
|
|
|
IPCThreadState::self()->getCallingPid(),
|
|
|
|
IPCThreadState::self()->getCallingUid());
|
|
|
|
result.append(buffer);
|
|
|
|
write(fd, result.string(), result.size());
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-03-19 00:39:46 +00:00
|
|
|
static bool tryLock(Mutex& mutex)
|
|
|
|
{
|
|
|
|
bool locked = false;
|
|
|
|
for (int i = 0; i < kDumpLockRetries; ++i) {
|
|
|
|
if (mutex.tryLock() == NO_ERROR) {
|
|
|
|
locked = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
usleep(kDumpLockSleep);
|
|
|
|
}
|
|
|
|
return locked;
|
|
|
|
}
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
status_t AudioFlinger::dump(int fd, const Vector<String16>& args)
|
|
|
|
{
|
|
|
|
if (checkCallingPermission(String16("android.permission.DUMP")) == false) {
|
|
|
|
dumpPermissionDenial(fd, args);
|
|
|
|
} else {
|
2009-03-19 00:39:46 +00:00
|
|
|
// get state of hardware lock
|
|
|
|
bool hardwareLocked = tryLock(mHardwareLock);
|
|
|
|
if (!hardwareLocked) {
|
|
|
|
String8 result(kHardwareLockedString);
|
|
|
|
write(fd, result.string(), result.size());
|
|
|
|
} else {
|
|
|
|
mHardwareLock.unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool locked = tryLock(mLock);
|
|
|
|
|
|
|
|
// failed to lock - AudioFlinger is probably deadlocked
|
|
|
|
if (!locked) {
|
|
|
|
String8 result(kDeadlockedString);
|
|
|
|
write(fd, result.string(), result.size());
|
2009-03-09 18:52:12 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
dumpClients(fd, args);
|
|
|
|
dumpInternals(fd, args);
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// dump playback threads
|
|
|
|
for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
|
2009-07-28 15:44:33 +00:00
|
|
|
mPlaybackThreads.valueAt(i)->dump(fd, args);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// dump record threads
|
2009-07-23 20:35:01 +00:00
|
|
|
for (size_t i = 0; i < mRecordThreads.size(); i++) {
|
2009-07-28 15:44:33 +00:00
|
|
|
mRecordThreads.valueAt(i)->dump(fd, args);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
if (mAudioHardware) {
|
|
|
|
mAudioHardware->dumpState(fd, args);
|
|
|
|
}
|
2009-03-09 18:52:12 +00:00
|
|
|
if (locked) mLock.unlock();
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
// IAudioFlinger interface
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
sp<IAudioTrack> AudioFlinger::createTrack(
|
|
|
|
pid_t pid,
|
|
|
|
int streamType,
|
|
|
|
uint32_t sampleRate,
|
|
|
|
int format,
|
|
|
|
int channelCount,
|
|
|
|
int frameCount,
|
|
|
|
uint32_t flags,
|
|
|
|
const sp<IMemory>& sharedBuffer,
|
2009-07-28 15:44:33 +00:00
|
|
|
int output,
|
2010-06-02 06:49:17 +00:00
|
|
|
int *sessionId,
|
2009-03-04 03:31:44 +00:00
|
|
|
status_t *status)
|
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
sp<PlaybackThread::Track> track;
|
2009-03-04 03:31:44 +00:00
|
|
|
sp<TrackHandle> trackHandle;
|
|
|
|
sp<Client> client;
|
|
|
|
wp<Client> wclient;
|
|
|
|
status_t lStatus;
|
2010-06-02 06:49:17 +00:00
|
|
|
int lSessionId;
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
if (streamType >= AudioSystem::NUM_STREAM_TYPES) {
|
|
|
|
LOGE("invalid stream type");
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
goto Exit;
|
|
|
|
}
|
2009-01-10 01:51:23 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
2009-07-17 19:17:14 +00:00
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread == NULL) {
|
|
|
|
LOGE("unknown output thread");
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
goto Exit;
|
|
|
|
}
|
2009-01-10 01:51:23 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
wclient = mClients.valueFor(pid);
|
2009-01-10 01:51:23 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
if (wclient != NULL) {
|
|
|
|
client = wclient.promote();
|
|
|
|
} else {
|
|
|
|
client = new Client(this, pid);
|
|
|
|
mClients.add(pid, client);
|
|
|
|
}
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
// If no audio session id is provided, create one here
|
|
|
|
// TODO: enforce same stream type for all tracks in same audio session?
|
|
|
|
// TODO: prevent same audio session on different output threads
|
|
|
|
LOGV("createTrack() sessionId: %d", (sessionId == NULL) ? -2 : *sessionId);
|
|
|
|
if (sessionId != NULL && *sessionId != 0) {
|
|
|
|
lSessionId = *sessionId;
|
|
|
|
} else {
|
|
|
|
lSessionId = nextUniqueId();
|
|
|
|
if (sessionId != NULL) {
|
|
|
|
*sessionId = lSessionId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LOGV("createTrack() lSessionId: %d", lSessionId);
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
track = thread->createTrack_l(client, streamType, sampleRate, format,
|
2010-06-02 06:49:17 +00:00
|
|
|
channelCount, frameCount, sharedBuffer, lSessionId, &lStatus);
|
2009-03-09 18:52:12 +00:00
|
|
|
}
|
|
|
|
if (lStatus == NO_ERROR) {
|
|
|
|
trackHandle = new TrackHandle(track);
|
|
|
|
} else {
|
2009-09-17 12:12:56 +00:00
|
|
|
// remove local strong reference to Client before deleting the Track so that the Client
|
|
|
|
// destructor is called by the TrackBase destructor with mLock held
|
|
|
|
client.clear();
|
2009-03-09 18:52:12 +00:00
|
|
|
track.clear();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
Exit:
|
|
|
|
if(status) {
|
|
|
|
*status = lStatus;
|
|
|
|
}
|
|
|
|
return trackHandle;
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
uint32_t AudioFlinger::sampleRate(int output) const
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread == NULL) {
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGW("sampleRate() unknown thread %d", output);
|
2009-07-17 19:17:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return thread->sampleRate();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
int AudioFlinger::channelCount(int output) const
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread == NULL) {
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGW("channelCount() unknown thread %d", output);
|
2009-07-17 19:17:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return thread->channelCount();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
int AudioFlinger::format(int output) const
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread == NULL) {
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGW("format() unknown thread %d", output);
|
2009-07-17 19:17:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return thread->format();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
size_t AudioFlinger::frameCount(int output) const
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread == NULL) {
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGW("frameCount() unknown thread %d", output);
|
2009-07-17 19:17:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return thread->frameCount();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
uint32_t AudioFlinger::latency(int output) const
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread == NULL) {
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGW("latency() unknown thread %d", output);
|
2009-07-17 19:17:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return thread->latency();
|
2008-12-18 02:05:43 +00:00
|
|
|
}
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
status_t AudioFlinger::setMasterVolume(float value)
|
|
|
|
{
|
|
|
|
// check calling permissions
|
|
|
|
if (!settingsAllowed()) {
|
|
|
|
return PERMISSION_DENIED;
|
|
|
|
}
|
|
|
|
|
|
|
|
// when hw supports master volume, don't scale in sw mixer
|
|
|
|
AutoMutex lock(mHardwareLock);
|
|
|
|
mHardwareStatus = AUDIO_HW_SET_MASTER_VOLUME;
|
|
|
|
if (mAudioHardware->setMasterVolume(value) == NO_ERROR) {
|
2009-03-04 03:31:44 +00:00
|
|
|
value = 1.0f;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
mHardwareStatus = AUDIO_HW_IDLE;
|
2008-12-18 02:05:43 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
mMasterVolume = value;
|
|
|
|
for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
|
2009-07-28 15:44:33 +00:00
|
|
|
mPlaybackThreads.valueAt(i)->setMasterVolume(value);
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
return NO_ERROR;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::setMode(int mode)
|
|
|
|
{
|
|
|
|
// check calling permissions
|
|
|
|
if (!settingsAllowed()) {
|
|
|
|
return PERMISSION_DENIED;
|
|
|
|
}
|
|
|
|
if ((mode < 0) || (mode >= AudioSystem::NUM_MODES)) {
|
|
|
|
LOGW("Illegal value: setMode(%d)", mode);
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoMutex lock(mHardwareLock);
|
|
|
|
mHardwareStatus = AUDIO_HW_SET_MODE;
|
|
|
|
status_t ret = mAudioHardware->setMode(mode);
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
if (NO_ERROR == ret) {
|
|
|
|
LifeVibes::setMode(mode);
|
|
|
|
}
|
|
|
|
#endif
|
2008-10-21 14:00:00 +00:00
|
|
|
mHardwareStatus = AUDIO_HW_IDLE;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::setMicMute(bool state)
|
|
|
|
{
|
|
|
|
// check calling permissions
|
|
|
|
if (!settingsAllowed()) {
|
|
|
|
return PERMISSION_DENIED;
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoMutex lock(mHardwareLock);
|
|
|
|
mHardwareStatus = AUDIO_HW_SET_MIC_MUTE;
|
|
|
|
status_t ret = mAudioHardware->setMicMute(state);
|
|
|
|
mHardwareStatus = AUDIO_HW_IDLE;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioFlinger::getMicMute() const
|
|
|
|
{
|
|
|
|
bool state = AudioSystem::MODE_INVALID;
|
|
|
|
mHardwareStatus = AUDIO_HW_GET_MIC_MUTE;
|
|
|
|
mAudioHardware->getMicMute(&state);
|
|
|
|
mHardwareStatus = AUDIO_HW_IDLE;
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::setMasterMute(bool muted)
|
|
|
|
{
|
|
|
|
// check calling permissions
|
|
|
|
if (!settingsAllowed()) {
|
|
|
|
return PERMISSION_DENIED;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
mMasterMute = muted;
|
|
|
|
for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
|
2009-07-28 15:44:33 +00:00
|
|
|
mPlaybackThreads.valueAt(i)->setMasterMute(muted);
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioFlinger::masterVolume() const
|
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
return mMasterVolume;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioFlinger::masterMute() const
|
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
return mMasterMute;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
status_t AudioFlinger::setStreamVolume(int stream, float value, int output)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
|
|
|
// check calling permissions
|
|
|
|
if (!settingsAllowed()) {
|
|
|
|
return PERMISSION_DENIED;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (stream < 0 || uint32_t(stream) >= AudioSystem::NUM_STREAM_TYPES) {
|
2008-10-21 14:00:00 +00:00
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
2008-12-18 02:05:43 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
AutoMutex lock(mLock);
|
|
|
|
PlaybackThread *thread = NULL;
|
|
|
|
if (output) {
|
|
|
|
thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread == NULL) {
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mStreamTypes[stream].volume = value;
|
|
|
|
|
|
|
|
if (thread == NULL) {
|
2009-10-21 15:14:22 +00:00
|
|
|
for (uint32_t i = 0; i < mPlaybackThreads.size(); i++) {
|
2009-07-28 15:44:33 +00:00
|
|
|
mPlaybackThreads.valueAt(i)->setStreamVolume(stream, value);
|
2009-10-21 15:14:22 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
} else {
|
|
|
|
thread->setStreamVolume(stream, value);
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-10-21 15:14:22 +00:00
|
|
|
return NO_ERROR;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::setStreamMute(int stream, bool muted)
|
|
|
|
{
|
|
|
|
// check calling permissions
|
|
|
|
if (!settingsAllowed()) {
|
|
|
|
return PERMISSION_DENIED;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (stream < 0 || uint32_t(stream) >= AudioSystem::NUM_STREAM_TYPES ||
|
2009-03-26 08:57:59 +00:00
|
|
|
uint32_t(stream) == AudioSystem::ENFORCED_AUDIBLE) {
|
2008-10-21 14:00:00 +00:00
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
2009-03-19 00:39:46 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
mStreamTypes[stream].mute = muted;
|
|
|
|
for (uint32_t i = 0; i < mPlaybackThreads.size(); i++)
|
2009-07-28 15:44:33 +00:00
|
|
|
mPlaybackThreads.valueAt(i)->setStreamMute(stream, muted);
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
float AudioFlinger::streamVolume(int stream, int output) const
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
if (stream < 0 || uint32_t(stream) >= AudioSystem::NUM_STREAM_TYPES) {
|
2008-10-21 14:00:00 +00:00
|
|
|
return 0.0f;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
AutoMutex lock(mLock);
|
|
|
|
float volume;
|
|
|
|
if (output) {
|
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread == NULL) {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
volume = thread->streamVolume(stream);
|
|
|
|
} else {
|
|
|
|
volume = mStreamTypes[stream].volume;
|
|
|
|
}
|
|
|
|
|
2009-04-21 14:56:33 +00:00
|
|
|
return volume;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioFlinger::streamMute(int stream) const
|
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
if (stream < 0 || stream >= (int)AudioSystem::NUM_STREAM_TYPES) {
|
2008-10-21 14:00:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
return mStreamTypes[stream].mute;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2010-01-25 16:49:09 +00:00
|
|
|
bool AudioFlinger::isStreamActive(int stream) const
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-09 10:20:57 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
2009-07-17 19:17:14 +00:00
|
|
|
for (uint32_t i = 0; i < mPlaybackThreads.size(); i++) {
|
2010-01-25 16:49:09 +00:00
|
|
|
if (mPlaybackThreads.valueAt(i)->isStreamActive(stream)) {
|
2009-07-17 19:17:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
status_t AudioFlinger::setParameters(int ioHandle, const String8& keyValuePairs)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t result;
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGV("setParameters(): io %d, keyvalue %s, tid %d, calling tid %d",
|
2009-07-17 19:17:14 +00:00
|
|
|
ioHandle, keyValuePairs.string(), gettid(), IPCThreadState::self()->getCallingPid());
|
|
|
|
// check calling permissions
|
|
|
|
if (!settingsAllowed()) {
|
|
|
|
return PERMISSION_DENIED;
|
2009-01-16 00:12:10 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
AudioParameter param = AudioParameter(keyValuePairs);
|
|
|
|
LifeVibes::setParameters(ioHandle,keyValuePairs);
|
|
|
|
String8 key = String8(AudioParameter::keyRouting);
|
|
|
|
int device;
|
|
|
|
if (NO_ERROR != param.getInt(key, device)) {
|
|
|
|
device = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
key = String8(LifevibesTag);
|
|
|
|
String8 value;
|
|
|
|
int musicEnabled = -1;
|
|
|
|
if (NO_ERROR == param.get(key, value)) {
|
|
|
|
if (value == LifevibesEnable) {
|
2010-05-12 09:05:53 +00:00
|
|
|
mLifeVibesClientPid = IPCThreadState::self()->getCallingPid();
|
2010-03-05 20:18:01 +00:00
|
|
|
musicEnabled = 1;
|
|
|
|
} else if (value == LifevibesDisable) {
|
2010-05-12 09:05:53 +00:00
|
|
|
mLifeVibesClientPid = -1;
|
2010-03-05 20:18:01 +00:00
|
|
|
musicEnabled = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// ioHandle == 0 means the parameters are global to the audio hardware interface
|
|
|
|
if (ioHandle == 0) {
|
|
|
|
AutoMutex lock(mHardwareLock);
|
|
|
|
mHardwareStatus = AUDIO_SET_PARAMETER;
|
|
|
|
result = mAudioHardware->setParameters(keyValuePairs);
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
2010-05-12 09:05:53 +00:00
|
|
|
if (musicEnabled != -1) {
|
2010-03-05 20:18:01 +00:00
|
|
|
LifeVibes::enableMusic((bool) musicEnabled);
|
|
|
|
}
|
|
|
|
#endif
|
2009-07-17 19:17:14 +00:00
|
|
|
mHardwareStatus = AUDIO_HW_IDLE;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-09-29 18:12:57 +00:00
|
|
|
// hold a strong ref on thread in case closeOutput() or closeInput() is called
|
|
|
|
// and the thread is exited once the lock is released
|
|
|
|
sp<ThreadBase> thread;
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
thread = checkPlaybackThread_l(ioHandle);
|
|
|
|
if (thread == NULL) {
|
|
|
|
thread = checkRecordThread_l(ioHandle);
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-09-29 18:12:57 +00:00
|
|
|
if (thread != NULL) {
|
2010-03-05 20:18:01 +00:00
|
|
|
result = thread->setParameters(keyValuePairs);
|
|
|
|
#ifdef LVMX
|
|
|
|
if ((NO_ERROR == result) && (device != -1)) {
|
|
|
|
LifeVibes::setDevice(LifeVibes::threadIdToAudioOutputType(thread->id()), device);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return result;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
String8 AudioFlinger::getParameters(int ioHandle, const String8& keys)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
2009-07-28 15:44:33 +00:00
|
|
|
// LOGV("getParameters() io %d, keys %s, tid %d, calling tid %d",
|
2009-07-17 19:17:14 +00:00
|
|
|
// ioHandle, keys.string(), gettid(), IPCThreadState::self()->getCallingPid());
|
|
|
|
|
|
|
|
if (ioHandle == 0) {
|
|
|
|
return mAudioHardware->getParameters(keys);
|
|
|
|
}
|
2009-09-29 18:12:57 +00:00
|
|
|
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
PlaybackThread *playbackThread = checkPlaybackThread_l(ioHandle);
|
|
|
|
if (playbackThread != NULL) {
|
|
|
|
return playbackThread->getParameters(keys);
|
|
|
|
}
|
|
|
|
RecordThread *recordThread = checkRecordThread_l(ioHandle);
|
|
|
|
if (recordThread != NULL) {
|
|
|
|
return recordThread->getParameters(keys);
|
|
|
|
}
|
|
|
|
return String8("");
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
size_t AudioFlinger::getInputBufferSize(uint32_t sampleRate, int format, int channelCount)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-03-04 03:31:44 +00:00
|
|
|
return mAudioHardware->getInputBufferSize(sampleRate, format, channelCount);
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2010-02-26 10:47:27 +00:00
|
|
|
unsigned int AudioFlinger::getInputFramesLost(int ioHandle)
|
|
|
|
{
|
|
|
|
if (ioHandle == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
RecordThread *recordThread = checkRecordThread_l(ioHandle);
|
|
|
|
if (recordThread != NULL) {
|
|
|
|
return recordThread->getInputFramesLost();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-21 15:14:22 +00:00
|
|
|
status_t AudioFlinger::setVoiceVolume(float value)
|
|
|
|
{
|
|
|
|
// check calling permissions
|
|
|
|
if (!settingsAllowed()) {
|
|
|
|
return PERMISSION_DENIED;
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoMutex lock(mHardwareLock);
|
|
|
|
mHardwareStatus = AUDIO_SET_VOICE_VOLUME;
|
|
|
|
status_t ret = mAudioHardware->setVoiceVolume(value);
|
|
|
|
mHardwareStatus = AUDIO_HW_IDLE;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-01-20 01:37:09 +00:00
|
|
|
status_t AudioFlinger::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames, int output)
|
|
|
|
{
|
|
|
|
status_t status;
|
|
|
|
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
PlaybackThread *playbackThread = checkPlaybackThread_l(output);
|
|
|
|
if (playbackThread != NULL) {
|
|
|
|
return playbackThread->getRenderPosition(halFrames, dspFrames);
|
|
|
|
}
|
|
|
|
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
void AudioFlinger::registerClient(const sp<IAudioFlingerClient>& client)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
2010-05-12 09:05:53 +00:00
|
|
|
int pid = IPCThreadState::self()->getCallingPid();
|
|
|
|
if (mNotificationClients.indexOfKey(pid) < 0) {
|
|
|
|
sp<NotificationClient> notificationClient = new NotificationClient(this,
|
|
|
|
client,
|
|
|
|
pid);
|
|
|
|
LOGV("registerClient() client %p, pid %d", notificationClient.get(), pid);
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2010-05-12 09:05:53 +00:00
|
|
|
mNotificationClients.add(pid, notificationClient);
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2010-05-12 09:05:53 +00:00
|
|
|
sp<IBinder> binder = client->asBinder();
|
|
|
|
binder->linkToDeath(notificationClient);
|
|
|
|
|
|
|
|
// the config change is always sent from playback or record threads to avoid deadlock
|
|
|
|
// with AudioSystem::gLock
|
|
|
|
for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
|
|
|
|
mPlaybackThreads.valueAt(i)->sendConfigEvent(AudioSystem::OUTPUT_OPENED);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < mRecordThreads.size(); i++) {
|
|
|
|
mRecordThreads.valueAt(i)->sendConfigEvent(AudioSystem::INPUT_OPENED);
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-12 09:05:53 +00:00
|
|
|
void AudioFlinger::removeNotificationClient(pid_t pid)
|
|
|
|
{
|
2008-10-21 14:00:00 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
2010-05-12 09:05:53 +00:00
|
|
|
int index = mNotificationClients.indexOfKey(pid);
|
|
|
|
if (index >= 0) {
|
|
|
|
sp <NotificationClient> client = mNotificationClients.valueFor(pid);
|
|
|
|
LOGV("removeNotificationClient() %p, pid %d", client.get(), pid);
|
|
|
|
#ifdef LVMX
|
|
|
|
if (pid == mLifeVibesClientPid) {
|
|
|
|
LOGV("Disabling lifevibes");
|
|
|
|
LifeVibes::enableMusic(false);
|
|
|
|
mLifeVibesClientPid = -1;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2010-05-12 09:05:53 +00:00
|
|
|
#endif
|
|
|
|
mNotificationClients.removeItem(pid);
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-15 14:10:12 +00:00
|
|
|
// audioConfigChanged_l() must be called with AudioFlinger::mLock held
|
2010-05-12 09:05:53 +00:00
|
|
|
void AudioFlinger::audioConfigChanged_l(int event, int ioHandle, void *param2)
|
|
|
|
{
|
2009-11-19 17:00:56 +00:00
|
|
|
size_t size = mNotificationClients.size();
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
2010-05-12 09:05:53 +00:00
|
|
|
mNotificationClients.valueAt(i)->client()->ioConfigChanged(event, ioHandle, param2);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-17 12:12:56 +00:00
|
|
|
// removeClient_l() must be called with AudioFlinger::mLock held
|
|
|
|
void AudioFlinger::removeClient_l(pid_t pid)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-09-17 12:12:56 +00:00
|
|
|
LOGV("removeClient_l() pid %d, tid %d, calling tid %d", pid, gettid(), IPCThreadState::self()->getCallingPid());
|
2009-03-04 03:31:44 +00:00
|
|
|
mClients.removeItem(pid);
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2010-05-12 09:05:53 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-11-19 17:00:56 +00:00
|
|
|
AudioFlinger::ThreadBase::ThreadBase(const sp<AudioFlinger>& audioFlinger, int id)
|
2009-07-17 19:17:14 +00:00
|
|
|
: Thread(false),
|
|
|
|
mAudioFlinger(audioFlinger), mSampleRate(0), mFrameCount(0), mChannelCount(0),
|
2010-05-14 12:45:46 +00:00
|
|
|
mFrameSize(1), mFormat(0), mStandby(false), mId(id), mExiting(false)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
}
|
2009-01-22 08:13:42 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioFlinger::ThreadBase::~ThreadBase()
|
|
|
|
{
|
2009-08-04 16:45:33 +00:00
|
|
|
mParamCond.broadcast();
|
|
|
|
mNewParameters.clear();
|
2009-03-11 19:11:56 +00:00
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::ThreadBase::exit()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-09-29 18:12:57 +00:00
|
|
|
// keep a strong ref on ourself so that we wont get
|
2009-07-17 19:17:14 +00:00
|
|
|
// destroyed in the middle of requestExitAndWait()
|
|
|
|
sp <ThreadBase> strongMe = this;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGV("ThreadBase::exit");
|
|
|
|
{
|
|
|
|
AutoMutex lock(&mLock);
|
2009-11-19 17:00:56 +00:00
|
|
|
mExiting = true;
|
2009-07-17 19:17:14 +00:00
|
|
|
requestExit();
|
|
|
|
mWaitWorkCV.signal();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
requestExitAndWait();
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
uint32_t AudioFlinger::ThreadBase::sampleRate() const
|
|
|
|
{
|
|
|
|
return mSampleRate;
|
2009-01-22 08:13:42 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
int AudioFlinger::ThreadBase::channelCount() const
|
2009-01-22 08:13:42 +00:00
|
|
|
{
|
2010-05-14 12:45:46 +00:00
|
|
|
return (int)mChannelCount;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
int AudioFlinger::ThreadBase::format() const
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
return mFormat;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
size_t AudioFlinger::ThreadBase::frameCount() const
|
|
|
|
{
|
|
|
|
return mFrameCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::ThreadBase::setParameters(const String8& keyValuePairs)
|
|
|
|
{
|
2009-08-04 16:45:33 +00:00
|
|
|
status_t status;
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-08-04 16:45:33 +00:00
|
|
|
LOGV("ThreadBase::setParameters() %s", keyValuePairs.string());
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
2009-08-04 16:45:33 +00:00
|
|
|
mNewParameters.add(keyValuePairs);
|
2009-07-17 19:17:14 +00:00
|
|
|
mWaitWorkCV.signal();
|
2009-09-29 18:12:57 +00:00
|
|
|
// wait condition with timeout in case the thread loop has exited
|
|
|
|
// before the request could be processed
|
|
|
|
if (mParamCond.waitRelative(mLock, seconds(2)) == NO_ERROR) {
|
|
|
|
status = mParamStatus;
|
|
|
|
mWaitWorkCV.signal();
|
|
|
|
} else {
|
|
|
|
status = TIMED_OUT;
|
|
|
|
}
|
2009-08-04 16:45:33 +00:00
|
|
|
return status;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::ThreadBase::sendConfigEvent(int event, int param)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
2009-08-04 16:45:33 +00:00
|
|
|
sendConfigEvent_l(event, param);
|
|
|
|
}
|
|
|
|
|
|
|
|
// sendConfigEvent_l() must be called with ThreadBase::mLock held
|
|
|
|
void AudioFlinger::ThreadBase::sendConfigEvent_l(int event, int param)
|
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
ConfigEvent *configEvent = new ConfigEvent();
|
|
|
|
configEvent->mEvent = event;
|
|
|
|
configEvent->mParam = param;
|
|
|
|
mConfigEvents.add(configEvent);
|
|
|
|
LOGV("sendConfigEvent() num events %d event %d, param %d", mConfigEvents.size(), event, param);
|
|
|
|
mWaitWorkCV.signal();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::ThreadBase::processConfigEvents()
|
|
|
|
{
|
|
|
|
mLock.lock();
|
|
|
|
while(!mConfigEvents.isEmpty()) {
|
|
|
|
LOGV("processConfigEvents() remaining events %d", mConfigEvents.size());
|
|
|
|
ConfigEvent *configEvent = mConfigEvents[0];
|
|
|
|
mConfigEvents.removeAt(0);
|
2010-05-14 10:26:45 +00:00
|
|
|
// release mLock before locking AudioFlinger mLock: lock order is always
|
|
|
|
// AudioFlinger then ThreadBase to avoid cross deadlock
|
2009-07-17 19:17:14 +00:00
|
|
|
mLock.unlock();
|
2010-05-14 10:26:45 +00:00
|
|
|
mAudioFlinger->mLock.lock();
|
|
|
|
audioConfigChanged_l(configEvent->mEvent, configEvent->mParam);
|
|
|
|
mAudioFlinger->mLock.unlock();
|
2009-07-17 19:17:14 +00:00
|
|
|
delete configEvent;
|
|
|
|
mLock.lock();
|
|
|
|
}
|
|
|
|
mLock.unlock();
|
|
|
|
}
|
|
|
|
|
2009-11-07 08:01:32 +00:00
|
|
|
status_t AudioFlinger::ThreadBase::dumpBase(int fd, const Vector<String16>& args)
|
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
|
|
|
|
|
|
|
bool locked = tryLock(mLock);
|
|
|
|
if (!locked) {
|
|
|
|
snprintf(buffer, SIZE, "thread %p maybe dead locked\n", this);
|
|
|
|
write(fd, buffer, strlen(buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(buffer, SIZE, "standby: %d\n", mStandby);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "Sample rate: %d\n", mSampleRate);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "Frame count: %d\n", mFrameCount);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "Channel Count: %d\n", mChannelCount);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "Format: %d\n", mFormat);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "Frame size: %d\n", mFrameSize);
|
|
|
|
result.append(buffer);
|
|
|
|
|
|
|
|
snprintf(buffer, SIZE, "\nPending setParameters commands: \n");
|
|
|
|
result.append(buffer);
|
|
|
|
result.append(" Index Command");
|
|
|
|
for (size_t i = 0; i < mNewParameters.size(); ++i) {
|
|
|
|
snprintf(buffer, SIZE, "\n %02d ", i);
|
|
|
|
result.append(buffer);
|
|
|
|
result.append(mNewParameters[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(buffer, SIZE, "\n\nPending config events: \n");
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, " Index event param\n");
|
|
|
|
result.append(buffer);
|
|
|
|
for (size_t i = 0; i < mConfigEvents.size(); i++) {
|
|
|
|
snprintf(buffer, SIZE, " %02d %02d %d\n", i, mConfigEvents[i]->mEvent, mConfigEvents[i]->mParam);
|
|
|
|
result.append(buffer);
|
|
|
|
}
|
|
|
|
result.append("\n");
|
|
|
|
|
|
|
|
write(fd, result.string(), result.size());
|
|
|
|
|
|
|
|
if (locked) {
|
|
|
|
mLock.unlock();
|
|
|
|
}
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
AudioFlinger::PlaybackThread::PlaybackThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, int id, uint32_t device)
|
2009-11-19 17:00:56 +00:00
|
|
|
: ThreadBase(audioFlinger, id),
|
2009-08-06 15:49:39 +00:00
|
|
|
mMixBuffer(0), mSuspended(0), mBytesWritten(0), mOutput(output),
|
2010-06-02 06:49:17 +00:00
|
|
|
mLastWriteTime(0), mNumWrites(0), mNumDelayedWrites(0), mInWrite(false),
|
|
|
|
mDevice(device)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
readOutputParameters();
|
|
|
|
|
|
|
|
mMasterVolume = mAudioFlinger->masterVolume();
|
|
|
|
mMasterMute = mAudioFlinger->masterMute();
|
|
|
|
|
|
|
|
for (int stream = 0; stream < AudioSystem::NUM_STREAM_TYPES; stream++) {
|
|
|
|
mStreamTypes[stream].volume = mAudioFlinger->streamVolumeInternal(stream);
|
|
|
|
mStreamTypes[stream].mute = mAudioFlinger->streamMute(stream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioFlinger::PlaybackThread::~PlaybackThread()
|
|
|
|
{
|
|
|
|
delete [] mMixBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::PlaybackThread::dump(int fd, const Vector<String16>& args)
|
|
|
|
{
|
|
|
|
dumpInternals(fd, args);
|
|
|
|
dumpTracks(fd, args);
|
2010-06-02 06:49:17 +00:00
|
|
|
dumpEffectChains(fd, args);
|
2009-07-17 19:17:14 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::PlaybackThread::dumpTracks(int fd, const Vector<String16>& args)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
snprintf(buffer, SIZE, "Output thread %p tracks\n", this);
|
2009-03-04 03:31:44 +00:00
|
|
|
result.append(buffer);
|
2010-06-02 06:49:17 +00:00
|
|
|
result.append(" Name Clien Typ Fmt Chn Session Buf S M F SRate LeftV RighV Serv User Main buf Aux Buf\n");
|
2009-03-04 03:31:44 +00:00
|
|
|
for (size_t i = 0; i < mTracks.size(); ++i) {
|
2009-03-31 21:34:35 +00:00
|
|
|
sp<Track> track = mTracks[i];
|
|
|
|
if (track != 0) {
|
|
|
|
track->dump(buffer, SIZE);
|
|
|
|
result.append(buffer);
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
snprintf(buffer, SIZE, "Output thread %p active tracks\n", this);
|
2009-03-04 03:31:44 +00:00
|
|
|
result.append(buffer);
|
2010-06-02 06:49:17 +00:00
|
|
|
result.append(" Name Clien Typ Fmt Chn Session Buf S M F SRate LeftV RighV Serv User Main buf Aux Buf\n");
|
2009-03-04 03:31:44 +00:00
|
|
|
for (size_t i = 0; i < mActiveTracks.size(); ++i) {
|
2009-03-31 21:34:35 +00:00
|
|
|
wp<Track> wTrack = mActiveTracks[i];
|
2009-03-04 03:31:44 +00:00
|
|
|
if (wTrack != 0) {
|
|
|
|
sp<Track> track = wTrack.promote();
|
|
|
|
if (track != 0) {
|
|
|
|
track->dump(buffer, SIZE);
|
|
|
|
result.append(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
write(fd, result.string(), result.size());
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
status_t AudioFlinger::PlaybackThread::dumpEffectChains(int fd, const Vector<String16>& args)
|
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
|
|
|
|
|
|
|
snprintf(buffer, SIZE, "\n- %d Effect Chains:\n", mEffectChains.size());
|
|
|
|
write(fd, buffer, strlen(buffer));
|
|
|
|
|
|
|
|
for (size_t i = 0; i < mEffectChains.size(); ++i) {
|
|
|
|
sp<EffectChain> chain = mEffectChains[i];
|
|
|
|
if (chain != 0) {
|
|
|
|
chain->dump(fd, args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::PlaybackThread::dumpInternals(int fd, const Vector<String16>& args)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
|
|
|
|
2009-11-07 08:01:32 +00:00
|
|
|
snprintf(buffer, SIZE, "\nOutput thread %p internals\n", this);
|
2009-03-04 03:31:44 +00:00
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "last write occurred (msecs): %llu\n", ns2ms(systemTime() - mLastWriteTime));
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "total writes: %d\n", mNumWrites);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "delayed writes: %d\n", mNumDelayedWrites);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "blocked in write: %d\n", mInWrite);
|
|
|
|
result.append(buffer);
|
2009-12-18 13:47:48 +00:00
|
|
|
snprintf(buffer, SIZE, "suspend count: %d\n", mSuspended);
|
|
|
|
result.append(buffer);
|
2010-06-02 06:49:17 +00:00
|
|
|
snprintf(buffer, SIZE, "mix buffer : %p\n", mMixBuffer);
|
|
|
|
result.append(buffer);
|
2009-03-04 03:31:44 +00:00
|
|
|
write(fd, result.string(), result.size());
|
2009-11-07 08:01:32 +00:00
|
|
|
|
|
|
|
dumpBase(fd, args);
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Thread virtuals
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::PlaybackThread::readyToRun()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
if (mSampleRate == 0) {
|
|
|
|
LOGE("No working audio driver found.");
|
|
|
|
return NO_INIT;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGI("AudioFlinger's thread %p ready to run", this);
|
2009-03-04 03:31:44 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::onFirstRef()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
snprintf(buffer, SIZE, "Playback Thread %p", this);
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
run(buffer, ANDROID_PRIORITY_URGENT_AUDIO);
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// PlaybackThread::createTrack_l() must be called with AudioFlinger::mLock held
|
|
|
|
sp<AudioFlinger::PlaybackThread::Track> AudioFlinger::PlaybackThread::createTrack_l(
|
2009-03-04 03:31:44 +00:00
|
|
|
const sp<AudioFlinger::Client>& client,
|
|
|
|
int streamType,
|
|
|
|
uint32_t sampleRate,
|
|
|
|
int format,
|
|
|
|
int channelCount,
|
|
|
|
int frameCount,
|
|
|
|
const sp<IMemory>& sharedBuffer,
|
2010-06-02 06:49:17 +00:00
|
|
|
int sessionId,
|
2009-03-04 03:31:44 +00:00
|
|
|
status_t *status)
|
|
|
|
{
|
|
|
|
sp<Track> track;
|
|
|
|
status_t lStatus;
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (mType == DIRECT) {
|
2010-05-14 12:45:46 +00:00
|
|
|
if (sampleRate != mSampleRate || format != mFormat || channelCount != (int)mChannelCount) {
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGE("createTrack_l() Bad parameter: sampleRate %d format %d, channelCount %d for output %p",
|
|
|
|
sampleRate, format, channelCount, mOutput);
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Resampler implementation limits input sampling rate to 2 x output sampling rate.
|
|
|
|
if (sampleRate > mSampleRate*2) {
|
|
|
|
LOGE("Sample rate out of range: %d mSampleRate %d", sampleRate, mSampleRate);
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (mOutput == 0) {
|
2009-03-09 18:52:12 +00:00
|
|
|
LOGE("Audio driver not initialized.");
|
|
|
|
lStatus = NO_INIT;
|
|
|
|
goto Exit;
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
{ // scope for mLock
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
track = new Track(this, client, streamType, sampleRate, format,
|
2010-06-02 06:49:17 +00:00
|
|
|
channelCount, frameCount, sharedBuffer, sessionId);
|
2009-11-09 12:45:39 +00:00
|
|
|
if (track->getCblk() == NULL || track->name() < 0) {
|
2009-07-17 19:17:14 +00:00
|
|
|
lStatus = NO_MEMORY;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
mTracks.add(track);
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
sp<EffectChain> chain = getEffectChain_l(sessionId);
|
|
|
|
if (chain != 0) {
|
|
|
|
LOGV("createTrack_l() setting main buffer %p", chain->inBuffer());
|
|
|
|
track->setMainBuffer(chain->inBuffer());
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2009-03-09 18:52:12 +00:00
|
|
|
lStatus = NO_ERROR;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
Exit:
|
|
|
|
if(status) {
|
|
|
|
*status = lStatus;
|
|
|
|
}
|
|
|
|
return track;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t AudioFlinger::PlaybackThread::latency() const
|
|
|
|
{
|
|
|
|
if (mOutput) {
|
|
|
|
return mOutput->latency();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::PlaybackThread::setMasterVolume(float value)
|
|
|
|
{
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
int audioOutputType = LifeVibes::getMixerType(mId, mType);
|
|
|
|
if (LifeVibes::audioOutputTypeIsLifeVibes(audioOutputType)) {
|
|
|
|
LifeVibes::setMasterVolume(audioOutputType, value);
|
|
|
|
}
|
|
|
|
#endif
|
2009-07-17 19:17:14 +00:00
|
|
|
mMasterVolume = value;
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::PlaybackThread::setMasterMute(bool muted)
|
|
|
|
{
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
int audioOutputType = LifeVibes::getMixerType(mId, mType);
|
|
|
|
if (LifeVibes::audioOutputTypeIsLifeVibes(audioOutputType)) {
|
|
|
|
LifeVibes::setMasterMute(audioOutputType, muted);
|
|
|
|
}
|
|
|
|
#endif
|
2009-07-17 19:17:14 +00:00
|
|
|
mMasterMute = muted;
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioFlinger::PlaybackThread::masterVolume() const
|
|
|
|
{
|
|
|
|
return mMasterVolume;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioFlinger::PlaybackThread::masterMute() const
|
|
|
|
{
|
|
|
|
return mMasterMute;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::PlaybackThread::setStreamVolume(int stream, float value)
|
|
|
|
{
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
int audioOutputType = LifeVibes::getMixerType(mId, mType);
|
|
|
|
if (LifeVibes::audioOutputTypeIsLifeVibes(audioOutputType)) {
|
|
|
|
LifeVibes::setStreamVolume(audioOutputType, stream, value);
|
|
|
|
}
|
|
|
|
#endif
|
2009-07-17 19:17:14 +00:00
|
|
|
mStreamTypes[stream].volume = value;
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::PlaybackThread::setStreamMute(int stream, bool muted)
|
|
|
|
{
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
int audioOutputType = LifeVibes::getMixerType(mId, mType);
|
|
|
|
if (LifeVibes::audioOutputTypeIsLifeVibes(audioOutputType)) {
|
|
|
|
LifeVibes::setStreamMute(audioOutputType, stream, muted);
|
|
|
|
}
|
|
|
|
#endif
|
2009-07-17 19:17:14 +00:00
|
|
|
mStreamTypes[stream].mute = muted;
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioFlinger::PlaybackThread::streamVolume(int stream) const
|
|
|
|
{
|
|
|
|
return mStreamTypes[stream].volume;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioFlinger::PlaybackThread::streamMute(int stream) const
|
|
|
|
{
|
|
|
|
return mStreamTypes[stream].mute;
|
|
|
|
}
|
|
|
|
|
2010-01-25 16:49:09 +00:00
|
|
|
bool AudioFlinger::PlaybackThread::isStreamActive(int stream) const
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
size_t count = mActiveTracks.size();
|
|
|
|
for (size_t i = 0 ; i < count ; ++i) {
|
|
|
|
sp<Track> t = mActiveTracks[i].promote();
|
|
|
|
if (t == 0) continue;
|
|
|
|
Track* const track = t.get();
|
2010-01-25 16:49:09 +00:00
|
|
|
if (t->type() == stream)
|
2009-07-17 19:17:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// addTrack_l() must be called with ThreadBase::mLock held
|
|
|
|
status_t AudioFlinger::PlaybackThread::addTrack_l(const sp<Track>& track)
|
|
|
|
{
|
|
|
|
status_t status = ALREADY_EXISTS;
|
|
|
|
|
|
|
|
// set retry count for buffer fill
|
|
|
|
track->mRetryCount = kMaxTrackStartupRetries;
|
|
|
|
if (mActiveTracks.indexOf(track) < 0) {
|
|
|
|
// the track is newly added, make sure it fills up all its
|
|
|
|
// buffers before playing. This is to ensure the client will
|
|
|
|
// effectively get the latency it requested.
|
|
|
|
track->mFillingUpStatus = Track::FS_FILLING;
|
|
|
|
track->mResetDone = false;
|
|
|
|
mActiveTracks.add(track);
|
2010-06-02 06:49:17 +00:00
|
|
|
if (track->mainBuffer() != mMixBuffer) {
|
|
|
|
sp<EffectChain> chain = getEffectChain_l(track->sessionId());
|
|
|
|
if (chain != 0) {
|
|
|
|
LOGV("addTrack_l() starting track on chain %p for session %d", chain.get(), track->sessionId());
|
|
|
|
chain->startTrack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status = NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOGV("mWaitWorkCV.broadcast");
|
|
|
|
mWaitWorkCV.broadcast();
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
// destroyTrack_l() must be called with ThreadBase::mLock held
|
|
|
|
void AudioFlinger::PlaybackThread::destroyTrack_l(const sp<Track>& track)
|
|
|
|
{
|
|
|
|
track->mState = TrackBase::TERMINATED;
|
|
|
|
if (mActiveTracks.indexOf(track) < 0) {
|
|
|
|
mTracks.remove(track);
|
|
|
|
deleteTrackName_l(track->name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String8 AudioFlinger::PlaybackThread::getParameters(const String8& keys)
|
|
|
|
{
|
|
|
|
return mOutput->getParameters(keys);
|
|
|
|
}
|
|
|
|
|
2010-05-14 10:26:45 +00:00
|
|
|
// destroyTrack_l() must be called with AudioFlinger::mLock held
|
|
|
|
void AudioFlinger::PlaybackThread::audioConfigChanged_l(int event, int param) {
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioSystem::OutputDescriptor desc;
|
|
|
|
void *param2 = 0;
|
|
|
|
|
2010-05-14 10:26:45 +00:00
|
|
|
LOGV("PlaybackThread::audioConfigChanged_l, thread %p, event %d, param %d", this, event, param);
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
case AudioSystem::OUTPUT_OPENED:
|
|
|
|
case AudioSystem::OUTPUT_CONFIG_CHANGED:
|
2010-05-14 12:45:46 +00:00
|
|
|
desc.channels = mChannels;
|
2009-07-17 19:17:14 +00:00
|
|
|
desc.samplingRate = mSampleRate;
|
|
|
|
desc.format = mFormat;
|
|
|
|
desc.frameCount = mFrameCount;
|
|
|
|
desc.latency = latency();
|
|
|
|
param2 = &desc;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AudioSystem::STREAM_CONFIG_CHANGED:
|
|
|
|
param2 = ¶m;
|
|
|
|
case AudioSystem::OUTPUT_CLOSED:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2009-11-19 17:00:56 +00:00
|
|
|
mAudioFlinger->audioConfigChanged_l(event, mId, param2);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::PlaybackThread::readOutputParameters()
|
|
|
|
{
|
|
|
|
mSampleRate = mOutput->sampleRate();
|
2010-05-14 12:45:46 +00:00
|
|
|
mChannels = mOutput->channels();
|
|
|
|
mChannelCount = (uint16_t)AudioSystem::popCount(mChannels);
|
2009-07-17 19:17:14 +00:00
|
|
|
mFormat = mOutput->format();
|
2010-05-14 12:45:46 +00:00
|
|
|
mFrameSize = (uint16_t)mOutput->frameSize();
|
2009-07-17 19:17:14 +00:00
|
|
|
mFrameCount = mOutput->bufferSize() / mFrameSize;
|
|
|
|
|
|
|
|
// FIXME - Current mixer implementation only supports stereo output: Always
|
|
|
|
// Allocate a stereo buffer even if HW output is mono.
|
2010-06-02 06:49:17 +00:00
|
|
|
if (mMixBuffer != NULL) delete[] mMixBuffer;
|
2009-07-17 19:17:14 +00:00
|
|
|
mMixBuffer = new int16_t[mFrameCount * 2];
|
|
|
|
memset(mMixBuffer, 0, mFrameCount * 2 * sizeof(int16_t));
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
//TODO handle effects reconfig
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
2010-01-20 01:37:09 +00:00
|
|
|
status_t AudioFlinger::PlaybackThread::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames)
|
|
|
|
{
|
|
|
|
if (halFrames == 0 || dspFrames == 0) {
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
if (mOutput == 0) {
|
|
|
|
return INVALID_OPERATION;
|
|
|
|
}
|
|
|
|
*halFrames = mBytesWritten/mOutput->frameSize();
|
|
|
|
|
|
|
|
return mOutput->getRenderPosition(dspFrames);
|
|
|
|
}
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
bool AudioFlinger::PlaybackThread::hasAudioSession(int sessionId)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
if (getEffectChain_l(sessionId) != 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < mTracks.size(); ++i) {
|
|
|
|
sp<Track> track = mTracks[i];
|
|
|
|
if (sessionId == track->sessionId()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<AudioFlinger::EffectChain> AudioFlinger::PlaybackThread::getEffectChain(int sessionId)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
return getEffectChain_l(sessionId);
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<AudioFlinger::EffectChain> AudioFlinger::PlaybackThread::getEffectChain_l(int sessionId)
|
|
|
|
{
|
|
|
|
sp<EffectChain> chain;
|
|
|
|
|
|
|
|
size_t size = mEffectChains.size();
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
if (mEffectChains[i]->sessionId() == sessionId) {
|
|
|
|
chain = mEffectChains[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return chain;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
AudioFlinger::MixerThread::MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, int id, uint32_t device)
|
|
|
|
: PlaybackThread(audioFlinger, output, id, device),
|
2009-07-17 19:17:14 +00:00
|
|
|
mAudioMixer(0)
|
|
|
|
{
|
|
|
|
mType = PlaybackThread::MIXER;
|
|
|
|
mAudioMixer = new AudioMixer(mFrameCount, mSampleRate);
|
|
|
|
|
|
|
|
// FIXME - Current mixer implementation only supports stereo output
|
|
|
|
if (mChannelCount == 1) {
|
|
|
|
LOGE("Invalid audio hardware channel count");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioFlinger::MixerThread::~MixerThread()
|
|
|
|
{
|
|
|
|
delete mAudioMixer;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioFlinger::MixerThread::threadLoop()
|
|
|
|
{
|
|
|
|
Vector< sp<Track> > tracksToRemove;
|
2009-11-10 07:32:22 +00:00
|
|
|
uint32_t mixerStatus = MIXER_IDLE;
|
2009-07-17 19:17:14 +00:00
|
|
|
nsecs_t standbyTime = systemTime();
|
|
|
|
size_t mixBufferSize = mFrameCount * mFrameSize;
|
2009-09-30 10:09:03 +00:00
|
|
|
// FIXME: Relaxed timing because of a certain device that can't meet latency
|
|
|
|
// Should be reduced to 2x after the vendor fixes the driver issue
|
|
|
|
nsecs_t maxPeriod = seconds(mFrameCount) / mSampleRate * 3;
|
|
|
|
nsecs_t lastWarning = 0;
|
2009-11-10 07:32:22 +00:00
|
|
|
bool longStandbyExit = false;
|
|
|
|
uint32_t activeSleepTime = activeSleepTimeUs();
|
|
|
|
uint32_t idleSleepTime = idleSleepTimeUs();
|
|
|
|
uint32_t sleepTime = idleSleepTime;
|
2010-06-02 06:49:17 +00:00
|
|
|
Vector< sp<EffectChain> > effectChains;
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
while (!exitPending())
|
|
|
|
{
|
|
|
|
processConfigEvents();
|
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
mixerStatus = MIXER_IDLE;
|
2009-07-17 19:17:14 +00:00
|
|
|
{ // scope for mLock
|
|
|
|
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
if (checkForNewParameters_l()) {
|
|
|
|
mixBufferSize = mFrameCount * mFrameSize;
|
2009-09-30 10:09:03 +00:00
|
|
|
// FIXME: Relaxed timing because of a certain device that can't meet latency
|
|
|
|
// Should be reduced to 2x after the vendor fixes the driver issue
|
|
|
|
maxPeriod = seconds(mFrameCount) / mSampleRate * 3;
|
2009-11-10 07:32:22 +00:00
|
|
|
activeSleepTime = activeSleepTimeUs();
|
|
|
|
idleSleepTime = idleSleepTimeUs();
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const SortedVector< wp<Track> >& activeTracks = mActiveTracks;
|
|
|
|
|
|
|
|
// put audio hardware into standby after short delay
|
|
|
|
if UNLIKELY((!activeTracks.size() && systemTime() > standbyTime) ||
|
|
|
|
mSuspended) {
|
|
|
|
if (!mStandby) {
|
|
|
|
LOGV("Audio hardware entering standby, mixer %p, mSuspended %d\n", this, mSuspended);
|
|
|
|
mOutput->standby();
|
|
|
|
mStandby = true;
|
|
|
|
mBytesWritten = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!activeTracks.size() && mConfigEvents.isEmpty()) {
|
|
|
|
// we're about to wait, flush the binder command buffer
|
|
|
|
IPCThreadState::self()->flushCommands();
|
|
|
|
|
|
|
|
if (exitPending()) break;
|
|
|
|
|
|
|
|
// wait until we have something to do...
|
|
|
|
LOGV("MixerThread %p TID %d going to sleep\n", this, gettid());
|
|
|
|
mWaitWorkCV.wait(mLock);
|
|
|
|
LOGV("MixerThread %p TID %d waking up\n", this, gettid());
|
|
|
|
|
|
|
|
if (mMasterMute == false) {
|
|
|
|
char value[PROPERTY_VALUE_MAX];
|
|
|
|
property_get("ro.audio.silent", value, "0");
|
|
|
|
if (atoi(value)) {
|
|
|
|
LOGD("Silence is golden");
|
|
|
|
setMasterMute(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
standbyTime = systemTime() + kStandbyTimeInNsecs;
|
2009-11-10 07:32:22 +00:00
|
|
|
sleepTime = idleSleepTime;
|
2009-07-17 19:17:14 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
mixerStatus = prepareTracks_l(activeTracks, &tracksToRemove);
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
// prevent any changes in effect chain list and in each effect chain
|
|
|
|
// during mixing and effect process as the audio buffers could be deleted
|
|
|
|
// or modified if an effect is created or deleted
|
|
|
|
effectChains = mEffectChains;
|
|
|
|
lockEffectChains_l();
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
if (LIKELY(mixerStatus == MIXER_TRACKS_READY)) {
|
2009-09-22 07:35:48 +00:00
|
|
|
// mix buffers...
|
2010-06-02 06:49:17 +00:00
|
|
|
mAudioMixer->process();
|
2009-09-22 07:35:48 +00:00
|
|
|
sleepTime = 0;
|
|
|
|
standbyTime = systemTime() + kStandbyTimeInNsecs;
|
2010-06-02 06:49:17 +00:00
|
|
|
//TODO: delay standby when effects have a tail
|
2009-09-07 15:38:38 +00:00
|
|
|
} else {
|
2009-10-06 03:29:18 +00:00
|
|
|
// If no tracks are ready, sleep once for the duration of an output
|
|
|
|
// buffer size, then write 0s to the output
|
|
|
|
if (sleepTime == 0) {
|
2009-11-10 07:32:22 +00:00
|
|
|
if (mixerStatus == MIXER_TRACKS_ENABLED) {
|
|
|
|
sleepTime = activeSleepTime;
|
|
|
|
} else {
|
|
|
|
sleepTime = idleSleepTime;
|
|
|
|
}
|
|
|
|
} else if (mBytesWritten != 0 ||
|
|
|
|
(mixerStatus == MIXER_TRACKS_ENABLED && longStandbyExit)) {
|
2010-06-02 06:49:17 +00:00
|
|
|
memset (mMixBuffer, 0, mixBufferSize);
|
2009-09-07 15:38:38 +00:00
|
|
|
sleepTime = 0;
|
2009-11-10 07:32:22 +00:00
|
|
|
LOGV_IF((mBytesWritten == 0 && (mixerStatus == MIXER_TRACKS_ENABLED && longStandbyExit)), "anticipated start");
|
2009-09-07 15:38:38 +00:00
|
|
|
}
|
2010-06-02 06:49:17 +00:00
|
|
|
// TODO add standby time extension fct of effect tail
|
2009-09-22 07:35:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mSuspended) {
|
2009-11-10 07:32:22 +00:00
|
|
|
sleepTime = idleSleepTime;
|
2009-09-22 07:35:48 +00:00
|
|
|
}
|
|
|
|
// sleepTime == 0 means we must write to audio hardware
|
|
|
|
if (sleepTime == 0) {
|
2010-06-02 06:49:17 +00:00
|
|
|
for (size_t i = 0; i < effectChains.size(); i ++) {
|
|
|
|
effectChains[i]->process_l();
|
|
|
|
}
|
|
|
|
// enable changes in effect chain
|
|
|
|
unlockEffectChains();
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
int audioOutputType = LifeVibes::getMixerType(mId, mType);
|
|
|
|
if (LifeVibes::audioOutputTypeIsLifeVibes(audioOutputType)) {
|
2010-06-02 06:49:17 +00:00
|
|
|
LifeVibes::process(audioOutputType, mMixBuffer, mixBufferSize);
|
2010-03-05 20:18:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
2010-06-02 06:49:17 +00:00
|
|
|
mLastWriteTime = systemTime();
|
|
|
|
mInWrite = true;
|
|
|
|
mBytesWritten += mixBufferSize;
|
|
|
|
|
|
|
|
int bytesWritten = (int)mOutput->write(mMixBuffer, mixBufferSize);
|
2010-01-20 01:37:09 +00:00
|
|
|
if (bytesWritten < 0) mBytesWritten -= mixBufferSize;
|
2009-09-22 07:35:48 +00:00
|
|
|
mNumWrites++;
|
|
|
|
mInWrite = false;
|
2009-09-30 10:09:03 +00:00
|
|
|
nsecs_t now = systemTime();
|
|
|
|
nsecs_t delta = now - mLastWriteTime;
|
2009-09-22 07:35:48 +00:00
|
|
|
if (delta > maxPeriod) {
|
|
|
|
mNumDelayedWrites++;
|
2009-09-30 10:09:03 +00:00
|
|
|
if ((now - lastWarning) > kWarningThrottle) {
|
|
|
|
LOGW("write blocked for %llu msecs, %d delayed writes, thread %p",
|
|
|
|
ns2ms(delta), mNumDelayedWrites, this);
|
|
|
|
lastWarning = now;
|
|
|
|
}
|
2009-11-10 07:32:22 +00:00
|
|
|
if (mStandby) {
|
|
|
|
longStandbyExit = true;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-11-10 07:32:22 +00:00
|
|
|
mStandby = false;
|
2009-09-22 07:35:48 +00:00
|
|
|
} else {
|
2010-06-02 06:49:17 +00:00
|
|
|
// enable changes in effect chain
|
|
|
|
unlockEffectChains();
|
2009-09-22 07:35:48 +00:00
|
|
|
usleep(sleepTime);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// finally let go of all our tracks, without the lock held
|
|
|
|
// since we can't guarantee the destructors won't acquire that
|
|
|
|
// same lock.
|
|
|
|
tracksToRemove.clear();
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
// Effect chains will be actually deleted here if they were removed from
|
|
|
|
// mEffectChains list during mixing or effects processing
|
|
|
|
effectChains.clear();
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!mStandby) {
|
|
|
|
mOutput->standby();
|
|
|
|
}
|
|
|
|
|
|
|
|
LOGV("MixerThread %p exiting", this);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// prepareTracks_l() must be called with ThreadBase::mLock held
|
2009-11-10 07:32:22 +00:00
|
|
|
uint32_t AudioFlinger::MixerThread::prepareTracks_l(const SortedVector< wp<Track> >& activeTracks, Vector< sp<Track> > *tracksToRemove)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
uint32_t mixerStatus = MIXER_IDLE;
|
2009-07-17 19:17:14 +00:00
|
|
|
// find out which tracks need to be processed
|
|
|
|
size_t count = activeTracks.size();
|
2010-06-02 06:49:17 +00:00
|
|
|
size_t mixedTracks = 0;
|
|
|
|
size_t tracksWithEffect = 0;
|
2010-03-05 20:18:01 +00:00
|
|
|
|
|
|
|
float masterVolume = mMasterVolume;
|
|
|
|
bool masterMute = mMasterMute;
|
|
|
|
|
|
|
|
#ifdef LVMX
|
|
|
|
bool tracksConnectedChanged = false;
|
|
|
|
bool stateChanged = false;
|
|
|
|
|
|
|
|
int audioOutputType = LifeVibes::getMixerType(mId, mType);
|
|
|
|
if (LifeVibes::audioOutputTypeIsLifeVibes(audioOutputType))
|
|
|
|
{
|
|
|
|
int activeTypes = 0;
|
|
|
|
for (size_t i=0 ; i<count ; i++) {
|
|
|
|
sp<Track> t = activeTracks[i].promote();
|
|
|
|
if (t == 0) continue;
|
|
|
|
Track* const track = t.get();
|
|
|
|
int iTracktype=track->type();
|
|
|
|
activeTypes |= 1<<track->type();
|
|
|
|
}
|
|
|
|
LifeVibes::computeVolumes(audioOutputType, activeTypes, tracksConnectedChanged, stateChanged, masterVolume, masterMute);
|
|
|
|
}
|
|
|
|
#endif
|
2010-06-02 06:49:17 +00:00
|
|
|
// Delegate master volume control to effect in output mix effect chain if needed
|
|
|
|
sp<EffectChain> chain = getEffectChain_l(0);
|
|
|
|
if (chain != 0) {
|
|
|
|
uint32_t v = (uint32_t)(masterVolume * (1 << 24));
|
|
|
|
chain->setVolume(&v, &v);
|
|
|
|
masterVolume = (float)((v + (1 << 23)) >> 24);
|
|
|
|
chain.clear();
|
|
|
|
}
|
2010-03-05 20:18:01 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
for (size_t i=0 ; i<count ; i++) {
|
|
|
|
sp<Track> t = activeTracks[i].promote();
|
|
|
|
if (t == 0) continue;
|
|
|
|
|
|
|
|
Track* const track = t.get();
|
|
|
|
audio_track_cblk_t* cblk = track->cblk();
|
|
|
|
|
|
|
|
// The first time a track is added we wait
|
|
|
|
// for all its buffers to be filled before processing it
|
|
|
|
mAudioMixer->setActiveTrack(track->name());
|
|
|
|
if (cblk->framesReady() && (track->isReady() || track->isStopped()) &&
|
2010-03-31 19:21:17 +00:00
|
|
|
!track->isPaused() && !track->isTerminated())
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
2009-12-18 13:47:48 +00:00
|
|
|
//LOGV("track %d u=%08x, s=%08x [OK] on thread %p", track->name(), cblk->user, cblk->server, this);
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
mixedTracks++;
|
|
|
|
|
|
|
|
// track->mainBuffer() != mMixBuffer means there is an effect chain
|
|
|
|
// connected to the track
|
|
|
|
chain.clear();
|
|
|
|
if (track->mainBuffer() != mMixBuffer) {
|
|
|
|
chain = getEffectChain_l(track->sessionId());
|
|
|
|
// Delegate volume control to effect in track effect chain if needed
|
|
|
|
if (chain != 0) {
|
|
|
|
tracksWithEffect++;
|
|
|
|
} else {
|
|
|
|
LOGW("prepareTracks_l(): track %08x attached to effect but no chain found on session %d",
|
|
|
|
track->name(), track->sessionId());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int param = AudioMixer::VOLUME;
|
|
|
|
if (track->mFillingUpStatus == Track::FS_FILLED) {
|
|
|
|
// no ramp for the first volume setting
|
|
|
|
track->mFillingUpStatus = Track::FS_ACTIVE;
|
|
|
|
if (track->mState == TrackBase::RESUMING) {
|
|
|
|
track->mState = TrackBase::ACTIVE;
|
|
|
|
param = AudioMixer::RAMP_VOLUME;
|
|
|
|
}
|
|
|
|
} else if (cblk->server != 0) {
|
|
|
|
// If the track is stopped before the first frame was mixed,
|
|
|
|
// do not apply ramp
|
|
|
|
param = AudioMixer::RAMP_VOLUME;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// compute volume for this track
|
2010-06-02 06:49:17 +00:00
|
|
|
int16_t left, right, aux;
|
2010-03-05 20:18:01 +00:00
|
|
|
if (track->isMuted() || masterMute || track->isPausing() ||
|
2009-07-17 19:17:14 +00:00
|
|
|
mStreamTypes[track->type()].mute) {
|
2010-06-02 06:49:17 +00:00
|
|
|
left = right = aux = 0;
|
2009-07-17 19:17:14 +00:00
|
|
|
if (track->isPausing()) {
|
|
|
|
track->setPaused();
|
|
|
|
}
|
|
|
|
} else {
|
2010-03-05 20:18:01 +00:00
|
|
|
// read original volumes with volume control
|
2009-07-17 19:17:14 +00:00
|
|
|
float typeVolume = mStreamTypes[track->type()].volume;
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
bool streamMute=false;
|
|
|
|
// read the volume from the LivesVibes audio engine.
|
|
|
|
if (LifeVibes::audioOutputTypeIsLifeVibes(audioOutputType))
|
|
|
|
{
|
|
|
|
LifeVibes::getStreamVolumes(audioOutputType, track->type(), &typeVolume, &streamMute);
|
|
|
|
if (streamMute) {
|
|
|
|
typeVolume = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
float v = masterVolume * typeVolume;
|
2010-06-02 06:49:17 +00:00
|
|
|
uint32_t vl = (uint32_t)(v * cblk->volume[0]) << 12;
|
|
|
|
uint32_t vr = (uint32_t)(v * cblk->volume[1]) << 12;
|
|
|
|
|
|
|
|
// Delegate volume control to effect in track effect chain if needed
|
|
|
|
if (chain != 0 && chain->setVolume(&vl, &vr)) {
|
|
|
|
// Do not ramp volume is volume is controlled by effect
|
|
|
|
param = AudioMixer::VOLUME;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert volumes from 8.24 to 4.12 format
|
|
|
|
uint32_t v_clamped = (vl + (1 << 11)) >> 12;
|
|
|
|
if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
|
2009-07-17 19:17:14 +00:00
|
|
|
left = int16_t(v_clamped);
|
2010-06-02 06:49:17 +00:00
|
|
|
v_clamped = (vr + (1 << 11)) >> 12;
|
|
|
|
if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
|
2009-07-17 19:17:14 +00:00
|
|
|
right = int16_t(v_clamped);
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
v_clamped = (uint32_t)(v * cblk->sendLevel);
|
|
|
|
if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
|
|
|
|
aux = int16_t(v_clamped);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2010-06-02 06:49:17 +00:00
|
|
|
|
2010-03-05 20:18:01 +00:00
|
|
|
#ifdef LVMX
|
|
|
|
if ( tracksConnectedChanged || stateChanged )
|
|
|
|
{
|
|
|
|
// only do the ramp when the volume is changed by the user / application
|
|
|
|
param = AudioMixer::VOLUME;
|
|
|
|
}
|
|
|
|
#endif
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
// XXX: these things DON'T need to be done each time
|
|
|
|
mAudioMixer->setBufferProvider(track);
|
|
|
|
mAudioMixer->enable(AudioMixer::MIXING);
|
|
|
|
|
|
|
|
mAudioMixer->setParameter(param, AudioMixer::VOLUME0, (void *)left);
|
|
|
|
mAudioMixer->setParameter(param, AudioMixer::VOLUME1, (void *)right);
|
|
|
|
mAudioMixer->setParameter(param, AudioMixer::AUXLEVEL, (void *)aux);
|
2009-07-17 19:17:14 +00:00
|
|
|
mAudioMixer->setParameter(
|
|
|
|
AudioMixer::TRACK,
|
2010-06-02 06:49:17 +00:00
|
|
|
AudioMixer::FORMAT, (void *)track->format());
|
2009-07-17 19:17:14 +00:00
|
|
|
mAudioMixer->setParameter(
|
|
|
|
AudioMixer::TRACK,
|
2010-06-02 06:49:17 +00:00
|
|
|
AudioMixer::CHANNEL_COUNT, (void *)track->channelCount());
|
2009-07-17 19:17:14 +00:00
|
|
|
mAudioMixer->setParameter(
|
|
|
|
AudioMixer::RESAMPLE,
|
|
|
|
AudioMixer::SAMPLE_RATE,
|
2010-06-02 06:49:17 +00:00
|
|
|
(void *)(cblk->sampleRate));
|
|
|
|
mAudioMixer->setParameter(
|
|
|
|
AudioMixer::TRACK,
|
|
|
|
AudioMixer::MAIN_BUFFER, (void *)track->mainBuffer());
|
|
|
|
mAudioMixer->setParameter(
|
|
|
|
AudioMixer::TRACK,
|
|
|
|
AudioMixer::AUX_BUFFER, (void *)track->auxBuffer());
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
// reset retry count
|
|
|
|
track->mRetryCount = kMaxTrackRetries;
|
2009-11-10 07:32:22 +00:00
|
|
|
mixerStatus = MIXER_TRACKS_READY;
|
2009-07-17 19:17:14 +00:00
|
|
|
} else {
|
2009-12-18 13:47:48 +00:00
|
|
|
//LOGV("track %d u=%08x, s=%08x [NOT READY] on thread %p", track->name(), cblk->user, cblk->server, this);
|
2009-07-17 19:17:14 +00:00
|
|
|
if (track->isStopped()) {
|
|
|
|
track->reset();
|
|
|
|
}
|
|
|
|
if (track->isTerminated() || track->isStopped() || track->isPaused()) {
|
|
|
|
// We have consumed all the buffers of this track.
|
|
|
|
// Remove it from the list of active tracks.
|
|
|
|
tracksToRemove->add(track);
|
|
|
|
} else {
|
|
|
|
// No buffers for this track. Give it a few chances to
|
|
|
|
// fill a buffer, then remove it from active list.
|
|
|
|
if (--(track->mRetryCount) <= 0) {
|
2009-10-06 03:29:18 +00:00
|
|
|
LOGV("BUFFER TIMEOUT: remove(%d) from active list on thread %p", track->name(), this);
|
2009-07-17 19:17:14 +00:00
|
|
|
tracksToRemove->add(track);
|
2009-11-10 07:32:22 +00:00
|
|
|
} else if (mixerStatus != MIXER_TRACKS_READY) {
|
|
|
|
mixerStatus = MIXER_TRACKS_ENABLED;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
2010-06-02 06:49:17 +00:00
|
|
|
mAudioMixer->disable(AudioMixer::MIXING);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove all the tracks that need to be...
|
|
|
|
count = tracksToRemove->size();
|
|
|
|
if (UNLIKELY(count)) {
|
|
|
|
for (size_t i=0 ; i<count ; i++) {
|
|
|
|
const sp<Track>& track = tracksToRemove->itemAt(i);
|
|
|
|
mActiveTracks.remove(track);
|
2010-06-02 06:49:17 +00:00
|
|
|
if (track->mainBuffer() != mMixBuffer) {
|
|
|
|
chain = getEffectChain_l(track->sessionId());
|
|
|
|
if (chain != 0) {
|
|
|
|
LOGV("stopping track on chain %p for session Id: %d", chain.get(), track->sessionId());
|
|
|
|
chain->stopTrack();
|
|
|
|
}
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
if (track->isTerminated()) {
|
|
|
|
mTracks.remove(track);
|
|
|
|
deleteTrackName_l(track->mName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
// mix buffer must be cleared if all tracks are connected to an
|
|
|
|
// effect chain as in this case the mixer will not write to
|
|
|
|
// mix buffer and track effects will accumulate into it
|
|
|
|
if (mixedTracks != 0 && mixedTracks == tracksWithEffect) {
|
|
|
|
memset(mMixBuffer, 0, mFrameCount * mChannelCount * sizeof(int16_t));
|
|
|
|
}
|
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
return mixerStatus;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
2010-05-14 10:26:45 +00:00
|
|
|
void AudioFlinger::MixerThread::invalidateTracks(int streamType)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
2010-05-14 10:26:45 +00:00
|
|
|
LOGV ("MixerThread::invalidateTracks() mixer %p, streamType %d, mTracks.size %d", this, streamType, mTracks.size());
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
size_t size = mTracks.size();
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
sp<Track> t = mTracks[i];
|
|
|
|
if (t->type() == streamType) {
|
2010-05-14 10:26:45 +00:00
|
|
|
t->mCblk->lock.lock();
|
|
|
|
t->mCblk->flags |= CBLK_INVALID_ON;
|
|
|
|
t->mCblk->cv.signal();
|
|
|
|
t->mCblk->lock.unlock();
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// getTrackName_l() must be called with ThreadBase::mLock held
|
|
|
|
int AudioFlinger::MixerThread::getTrackName_l()
|
|
|
|
{
|
|
|
|
return mAudioMixer->getTrackName();
|
|
|
|
}
|
|
|
|
|
|
|
|
// deleteTrackName_l() must be called with ThreadBase::mLock held
|
|
|
|
void AudioFlinger::MixerThread::deleteTrackName_l(int name)
|
|
|
|
{
|
2009-12-07 18:53:10 +00:00
|
|
|
LOGV("remove track (%d) and delete from mixer", name);
|
2009-07-17 19:17:14 +00:00
|
|
|
mAudioMixer->deleteTrackName(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkForNewParameters_l() must be called with ThreadBase::mLock held
|
|
|
|
bool AudioFlinger::MixerThread::checkForNewParameters_l()
|
|
|
|
{
|
|
|
|
bool reconfig = false;
|
|
|
|
|
2009-08-04 16:45:33 +00:00
|
|
|
while (!mNewParameters.isEmpty()) {
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t status = NO_ERROR;
|
2009-08-04 16:45:33 +00:00
|
|
|
String8 keyValuePair = mNewParameters[0];
|
|
|
|
AudioParameter param = AudioParameter(keyValuePair);
|
2009-07-17 19:17:14 +00:00
|
|
|
int value;
|
2009-08-04 16:45:33 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
|
|
|
|
reconfig = true;
|
|
|
|
}
|
|
|
|
if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
|
|
|
|
if (value != AudioSystem::PCM_16_BIT) {
|
|
|
|
status = BAD_VALUE;
|
|
|
|
} else {
|
|
|
|
reconfig = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
|
|
|
|
if (value != AudioSystem::CHANNEL_OUT_STEREO) {
|
|
|
|
status = BAD_VALUE;
|
|
|
|
} else {
|
|
|
|
reconfig = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
|
|
|
|
// do not accept frame count changes if tracks are open as the track buffer
|
|
|
|
// size depends on frame count and correct behavior would not be garantied
|
|
|
|
// if frame count is changed after track creation
|
|
|
|
if (!mTracks.isEmpty()) {
|
|
|
|
status = INVALID_OPERATION;
|
|
|
|
} else {
|
|
|
|
reconfig = true;
|
|
|
|
}
|
|
|
|
}
|
2010-06-02 06:49:17 +00:00
|
|
|
if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
|
|
|
|
// forward device change to effects that have requested to be
|
|
|
|
// aware of attached audio device.
|
|
|
|
mDevice = (uint32_t)value;
|
|
|
|
for (size_t i = 0; i < mEffectChains.size(); i++) {
|
|
|
|
mEffectChains[i]->setDevice(mDevice);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (status == NO_ERROR) {
|
2009-08-04 16:45:33 +00:00
|
|
|
status = mOutput->setParameters(keyValuePair);
|
2009-07-17 19:17:14 +00:00
|
|
|
if (!mStandby && status == INVALID_OPERATION) {
|
|
|
|
mOutput->standby();
|
|
|
|
mStandby = true;
|
|
|
|
mBytesWritten = 0;
|
2009-08-04 16:45:33 +00:00
|
|
|
status = mOutput->setParameters(keyValuePair);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
if (status == NO_ERROR && reconfig) {
|
|
|
|
delete mAudioMixer;
|
|
|
|
readOutputParameters();
|
|
|
|
mAudioMixer = new AudioMixer(mFrameCount, mSampleRate);
|
|
|
|
for (size_t i = 0; i < mTracks.size() ; i++) {
|
|
|
|
int name = getTrackName_l();
|
|
|
|
if (name < 0) break;
|
|
|
|
mTracks[i]->mName = name;
|
2009-08-10 15:15:12 +00:00
|
|
|
// limit track sample rate to 2 x new output sample rate
|
|
|
|
if (mTracks[i]->mCblk->sampleRate > 2 * sampleRate()) {
|
|
|
|
mTracks[i]->mCblk->sampleRate = 2 * sampleRate();
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-08-04 16:45:33 +00:00
|
|
|
sendConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
2009-11-07 08:01:32 +00:00
|
|
|
|
|
|
|
mNewParameters.removeAt(0);
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
mParamStatus = status;
|
|
|
|
mParamCond.signal();
|
2009-08-04 16:45:33 +00:00
|
|
|
mWaitWorkCV.wait(mLock);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
return reconfig;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::MixerThread::dumpInternals(int fd, const Vector<String16>& args)
|
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
|
|
|
|
|
|
|
PlaybackThread::dumpInternals(fd, args);
|
|
|
|
|
|
|
|
snprintf(buffer, SIZE, "AudioMixer tracks: %08x\n", mAudioMixer->trackNames());
|
|
|
|
result.append(buffer);
|
|
|
|
write(fd, result.string(), result.size());
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
uint32_t AudioFlinger::MixerThread::activeSleepTimeUs()
|
2009-10-06 03:29:18 +00:00
|
|
|
{
|
2009-11-10 07:32:22 +00:00
|
|
|
return (uint32_t)(mOutput->latency() * 1000) / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t AudioFlinger::MixerThread::idleSleepTimeUs()
|
|
|
|
{
|
|
|
|
return (uint32_t)((mFrameCount * 1000) / mSampleRate) * 1000;
|
2009-10-06 03:29:18 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2010-06-02 06:49:17 +00:00
|
|
|
AudioFlinger::DirectOutputThread::DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, int id, uint32_t device)
|
|
|
|
: PlaybackThread(audioFlinger, output, id, device)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
mType = PlaybackThread::DIRECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioFlinger::DirectOutputThread::~DirectOutputThread()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
static inline int16_t clamp16(int32_t sample)
|
|
|
|
{
|
|
|
|
if ((sample>>15) ^ (sample>>31))
|
|
|
|
sample = 0x7FFF ^ (sample>>31);
|
|
|
|
return sample;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
int32_t mul(int16_t in, int16_t v)
|
|
|
|
{
|
|
|
|
#if defined(__arm__) && !defined(__thumb__)
|
|
|
|
int32_t out;
|
|
|
|
asm( "smulbb %[out], %[in], %[v] \n"
|
|
|
|
: [out]"=r"(out)
|
|
|
|
: [in]"%r"(in), [v]"r"(v)
|
|
|
|
: );
|
|
|
|
return out;
|
|
|
|
#else
|
|
|
|
return in * int32_t(v);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::DirectOutputThread::applyVolume(uint16_t leftVol, uint16_t rightVol, bool ramp)
|
|
|
|
{
|
|
|
|
// Do not apply volume on compressed audio
|
|
|
|
if (!AudioSystem::isLinearPCM(mFormat)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert to signed 16 bit before volume calculation
|
|
|
|
if (mFormat == AudioSystem::PCM_8_BIT) {
|
|
|
|
size_t count = mFrameCount * mChannelCount;
|
|
|
|
uint8_t *src = (uint8_t *)mMixBuffer + count-1;
|
|
|
|
int16_t *dst = mMixBuffer + count-1;
|
|
|
|
while(count--) {
|
|
|
|
*dst-- = (int16_t)(*src--^0x80) << 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t frameCount = mFrameCount;
|
|
|
|
int16_t *out = mMixBuffer;
|
|
|
|
if (ramp) {
|
|
|
|
if (mChannelCount == 1) {
|
|
|
|
int32_t d = ((int32_t)leftVol - (int32_t)mLeftVolShort) << 16;
|
|
|
|
int32_t vlInc = d / (int32_t)frameCount;
|
|
|
|
int32_t vl = ((int32_t)mLeftVolShort << 16);
|
|
|
|
do {
|
|
|
|
out[0] = clamp16(mul(out[0], vl >> 16) >> 12);
|
|
|
|
out++;
|
|
|
|
vl += vlInc;
|
|
|
|
} while (--frameCount);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
int32_t d = ((int32_t)leftVol - (int32_t)mLeftVolShort) << 16;
|
|
|
|
int32_t vlInc = d / (int32_t)frameCount;
|
|
|
|
d = ((int32_t)rightVol - (int32_t)mRightVolShort) << 16;
|
|
|
|
int32_t vrInc = d / (int32_t)frameCount;
|
|
|
|
int32_t vl = ((int32_t)mLeftVolShort << 16);
|
|
|
|
int32_t vr = ((int32_t)mRightVolShort << 16);
|
|
|
|
do {
|
|
|
|
out[0] = clamp16(mul(out[0], vl >> 16) >> 12);
|
|
|
|
out[1] = clamp16(mul(out[1], vr >> 16) >> 12);
|
|
|
|
out += 2;
|
|
|
|
vl += vlInc;
|
|
|
|
vr += vrInc;
|
|
|
|
} while (--frameCount);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (mChannelCount == 1) {
|
|
|
|
do {
|
|
|
|
out[0] = clamp16(mul(out[0], leftVol) >> 12);
|
|
|
|
out++;
|
|
|
|
} while (--frameCount);
|
|
|
|
} else {
|
|
|
|
do {
|
|
|
|
out[0] = clamp16(mul(out[0], leftVol) >> 12);
|
|
|
|
out[1] = clamp16(mul(out[1], rightVol) >> 12);
|
|
|
|
out += 2;
|
|
|
|
} while (--frameCount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert back to unsigned 8 bit after volume calculation
|
|
|
|
if (mFormat == AudioSystem::PCM_8_BIT) {
|
|
|
|
size_t count = mFrameCount * mChannelCount;
|
|
|
|
int16_t *src = mMixBuffer;
|
|
|
|
uint8_t *dst = (uint8_t *)mMixBuffer;
|
|
|
|
while(count--) {
|
|
|
|
*dst++ = (uint8_t)(((int32_t)*src++ + (1<<7)) >> 8)^0x80;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mLeftVolShort = leftVol;
|
|
|
|
mRightVolShort = rightVol;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
bool AudioFlinger::DirectOutputThread::threadLoop()
|
|
|
|
{
|
2009-11-10 07:32:22 +00:00
|
|
|
uint32_t mixerStatus = MIXER_IDLE;
|
2009-07-17 19:17:14 +00:00
|
|
|
sp<Track> trackToRemove;
|
|
|
|
sp<Track> activeTrack;
|
|
|
|
nsecs_t standbyTime = systemTime();
|
|
|
|
int8_t *curBuf;
|
|
|
|
size_t mixBufferSize = mFrameCount*mFrameSize;
|
2009-11-10 07:32:22 +00:00
|
|
|
uint32_t activeSleepTime = activeSleepTimeUs();
|
|
|
|
uint32_t idleSleepTime = idleSleepTimeUs();
|
|
|
|
uint32_t sleepTime = idleSleepTime;
|
2010-03-11 22:47:00 +00:00
|
|
|
// use shorter standby delay as on normal output to release
|
|
|
|
// hardware resources as soon as possible
|
|
|
|
nsecs_t standbyDelay = microseconds(activeSleepTime*2);
|
2009-11-10 07:32:22 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
while (!exitPending())
|
|
|
|
{
|
2010-06-02 06:49:17 +00:00
|
|
|
bool rampVolume;
|
|
|
|
uint16_t leftVol;
|
|
|
|
uint16_t rightVol;
|
|
|
|
Vector< sp<EffectChain> > effectChains;
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
processConfigEvents();
|
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
mixerStatus = MIXER_IDLE;
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
{ // scope for the mLock
|
|
|
|
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
if (checkForNewParameters_l()) {
|
|
|
|
mixBufferSize = mFrameCount*mFrameSize;
|
2009-11-10 07:32:22 +00:00
|
|
|
activeSleepTime = activeSleepTimeUs();
|
|
|
|
idleSleepTime = idleSleepTimeUs();
|
2010-03-11 22:47:00 +00:00
|
|
|
standbyDelay = microseconds(activeSleepTime*2);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// put audio hardware into standby after short delay
|
|
|
|
if UNLIKELY((!mActiveTracks.size() && systemTime() > standbyTime) ||
|
|
|
|
mSuspended) {
|
|
|
|
// wait until we have something to do...
|
|
|
|
if (!mStandby) {
|
|
|
|
LOGV("Audio hardware entering standby, mixer %p\n", this);
|
|
|
|
mOutput->standby();
|
|
|
|
mStandby = true;
|
|
|
|
mBytesWritten = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mActiveTracks.size() && mConfigEvents.isEmpty()) {
|
|
|
|
// we're about to wait, flush the binder command buffer
|
|
|
|
IPCThreadState::self()->flushCommands();
|
|
|
|
|
|
|
|
if (exitPending()) break;
|
|
|
|
|
|
|
|
LOGV("DirectOutputThread %p TID %d going to sleep\n", this, gettid());
|
|
|
|
mWaitWorkCV.wait(mLock);
|
|
|
|
LOGV("DirectOutputThread %p TID %d waking up in active mode\n", this, gettid());
|
|
|
|
|
|
|
|
if (mMasterMute == false) {
|
|
|
|
char value[PROPERTY_VALUE_MAX];
|
|
|
|
property_get("ro.audio.silent", value, "0");
|
|
|
|
if (atoi(value)) {
|
|
|
|
LOGD("Silence is golden");
|
|
|
|
setMasterMute(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-11 22:47:00 +00:00
|
|
|
standbyTime = systemTime() + standbyDelay;
|
2009-11-10 07:32:22 +00:00
|
|
|
sleepTime = idleSleepTime;
|
2009-07-17 19:17:14 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
effectChains = mEffectChains;
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// find out which tracks need to be processed
|
|
|
|
if (mActiveTracks.size() != 0) {
|
|
|
|
sp<Track> t = mActiveTracks[0].promote();
|
|
|
|
if (t == 0) continue;
|
|
|
|
|
|
|
|
Track* const track = t.get();
|
|
|
|
audio_track_cblk_t* cblk = track->cblk();
|
|
|
|
|
|
|
|
// The first time a track is added we wait
|
|
|
|
// for all its buffers to be filled before processing it
|
|
|
|
if (cblk->framesReady() && (track->isReady() || track->isStopped()) &&
|
2010-04-09 13:11:48 +00:00
|
|
|
!track->isPaused() && !track->isTerminated())
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
//LOGV("track %d u=%08x, s=%08x [OK]", track->name(), cblk->user, cblk->server);
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
if (track->mFillingUpStatus == Track::FS_FILLED) {
|
|
|
|
track->mFillingUpStatus = Track::FS_ACTIVE;
|
|
|
|
mLeftVolFloat = mRightVolFloat = 0;
|
|
|
|
mLeftVolShort = mRightVolShort = 0;
|
|
|
|
if (track->mState == TrackBase::RESUMING) {
|
|
|
|
track->mState = TrackBase::ACTIVE;
|
|
|
|
rampVolume = true;
|
|
|
|
}
|
|
|
|
} else if (cblk->server != 0) {
|
|
|
|
// If the track is stopped before the first frame was mixed,
|
|
|
|
// do not apply ramp
|
|
|
|
rampVolume = true;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
// compute volume for this track
|
|
|
|
float left, right;
|
|
|
|
if (track->isMuted() || mMasterMute || track->isPausing() ||
|
|
|
|
mStreamTypes[track->type()].mute) {
|
|
|
|
left = right = 0;
|
|
|
|
if (track->isPausing()) {
|
|
|
|
track->setPaused();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
float typeVolume = mStreamTypes[track->type()].volume;
|
|
|
|
float v = mMasterVolume * typeVolume;
|
|
|
|
float v_clamped = v * cblk->volume[0];
|
|
|
|
if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
|
|
|
|
left = v_clamped/MAX_GAIN;
|
|
|
|
v_clamped = v * cblk->volume[1];
|
|
|
|
if (v_clamped > MAX_GAIN) v_clamped = MAX_GAIN;
|
|
|
|
right = v_clamped/MAX_GAIN;
|
|
|
|
}
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
if (left != mLeftVolFloat || right != mRightVolFloat) {
|
|
|
|
mLeftVolFloat = left;
|
|
|
|
mRightVolFloat = right;
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
// If audio HAL implements volume control,
|
|
|
|
// force software volume to nominal value
|
|
|
|
if (mOutput->setVolume(left, right) == NO_ERROR) {
|
|
|
|
left = 1.0f;
|
|
|
|
right = 1.0f;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
// Convert volumes from float to 8.24
|
|
|
|
uint32_t vl = (uint32_t)(left * (1 << 24));
|
|
|
|
uint32_t vr = (uint32_t)(right * (1 << 24));
|
|
|
|
|
|
|
|
// Delegate volume control to effect in track effect chain if needed
|
|
|
|
// only one effect chain can be present on DirectOutputThread, so if
|
|
|
|
// there is one, the track is connected to it
|
|
|
|
if (!effectChains.isEmpty()) {
|
|
|
|
// Do not ramp volume is volume is controlled by effect
|
|
|
|
if(effectChains[0]->setVolume(&vl, &vr)) {
|
|
|
|
rampVolume = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert volumes from 8.24 to 4.12 format
|
|
|
|
uint32_t v_clamped = (vl + (1 << 11)) >> 12;
|
|
|
|
if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
|
|
|
|
leftVol = (uint16_t)v_clamped;
|
|
|
|
v_clamped = (vr + (1 << 11)) >> 12;
|
|
|
|
if (v_clamped > MAX_GAIN_INT) v_clamped = MAX_GAIN_INT;
|
|
|
|
rightVol = (uint16_t)v_clamped;
|
|
|
|
} else {
|
|
|
|
leftVol = mLeftVolShort;
|
|
|
|
rightVol = mRightVolShort;
|
|
|
|
rampVolume = false;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// reset retry count
|
2010-03-11 22:47:00 +00:00
|
|
|
track->mRetryCount = kMaxTrackRetriesDirect;
|
2009-07-17 19:17:14 +00:00
|
|
|
activeTrack = t;
|
2009-11-10 07:32:22 +00:00
|
|
|
mixerStatus = MIXER_TRACKS_READY;
|
2009-07-17 19:17:14 +00:00
|
|
|
} else {
|
|
|
|
//LOGV("track %d u=%08x, s=%08x [NOT READY]", track->name(), cblk->user, cblk->server);
|
|
|
|
if (track->isStopped()) {
|
|
|
|
track->reset();
|
|
|
|
}
|
|
|
|
if (track->isTerminated() || track->isStopped() || track->isPaused()) {
|
|
|
|
// We have consumed all the buffers of this track.
|
|
|
|
// Remove it from the list of active tracks.
|
|
|
|
trackToRemove = track;
|
|
|
|
} else {
|
|
|
|
// No buffers for this track. Give it a few chances to
|
|
|
|
// fill a buffer, then remove it from active list.
|
|
|
|
if (--(track->mRetryCount) <= 0) {
|
|
|
|
LOGV("BUFFER TIMEOUT: remove(%d) from active list", track->name());
|
|
|
|
trackToRemove = track;
|
2009-11-10 07:32:22 +00:00
|
|
|
} else {
|
|
|
|
mixerStatus = MIXER_TRACKS_ENABLED;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-11-10 07:32:22 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// remove all the tracks that need to be...
|
|
|
|
if (UNLIKELY(trackToRemove != 0)) {
|
|
|
|
mActiveTracks.remove(trackToRemove);
|
2010-06-02 06:49:17 +00:00
|
|
|
if (!effectChains.isEmpty()) {
|
|
|
|
LOGV("stopping track on chain %p for session Id: %d", effectChains[0].get(), trackToRemove->sessionId());
|
|
|
|
effectChains[0]->stopTrack();
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
if (trackToRemove->isTerminated()) {
|
|
|
|
mTracks.remove(trackToRemove);
|
|
|
|
deleteTrackName_l(trackToRemove->mName);
|
|
|
|
}
|
|
|
|
}
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
lockEffectChains_l();
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
if (LIKELY(mixerStatus == MIXER_TRACKS_READY)) {
|
2009-09-22 07:35:48 +00:00
|
|
|
AudioBufferProvider::Buffer buffer;
|
|
|
|
size_t frameCount = mFrameCount;
|
|
|
|
curBuf = (int8_t *)mMixBuffer;
|
|
|
|
// output audio to hardware
|
2010-06-02 06:49:17 +00:00
|
|
|
while (frameCount) {
|
2009-09-22 07:35:48 +00:00
|
|
|
buffer.frameCount = frameCount;
|
|
|
|
activeTrack->getNextBuffer(&buffer);
|
|
|
|
if (UNLIKELY(buffer.raw == 0)) {
|
|
|
|
memset(curBuf, 0, frameCount * mFrameSize);
|
|
|
|
break;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-09-22 07:35:48 +00:00
|
|
|
memcpy(curBuf, buffer.raw, buffer.frameCount * mFrameSize);
|
|
|
|
frameCount -= buffer.frameCount;
|
|
|
|
curBuf += buffer.frameCount * mFrameSize;
|
|
|
|
activeTrack->releaseBuffer(&buffer);
|
|
|
|
}
|
|
|
|
sleepTime = 0;
|
2010-03-11 22:47:00 +00:00
|
|
|
standbyTime = systemTime() + standbyDelay;
|
2009-09-22 07:35:48 +00:00
|
|
|
} else {
|
2009-10-06 03:29:18 +00:00
|
|
|
if (sleepTime == 0) {
|
2009-11-10 07:32:22 +00:00
|
|
|
if (mixerStatus == MIXER_TRACKS_ENABLED) {
|
|
|
|
sleepTime = activeSleepTime;
|
|
|
|
} else {
|
|
|
|
sleepTime = idleSleepTime;
|
|
|
|
}
|
2009-10-06 03:29:18 +00:00
|
|
|
} else if (mBytesWritten != 0 && AudioSystem::isLinearPCM(mFormat)) {
|
2009-09-22 07:35:48 +00:00
|
|
|
memset (mMixBuffer, 0, mFrameCount * mFrameSize);
|
2009-09-07 15:38:38 +00:00
|
|
|
sleepTime = 0;
|
|
|
|
}
|
2009-09-22 07:35:48 +00:00
|
|
|
}
|
2009-09-07 15:38:38 +00:00
|
|
|
|
2009-09-22 07:35:48 +00:00
|
|
|
if (mSuspended) {
|
2009-11-10 07:32:22 +00:00
|
|
|
sleepTime = idleSleepTime;
|
2009-09-22 07:35:48 +00:00
|
|
|
}
|
|
|
|
// sleepTime == 0 means we must write to audio hardware
|
|
|
|
if (sleepTime == 0) {
|
2010-06-02 06:49:17 +00:00
|
|
|
if (mixerStatus == MIXER_TRACKS_READY) {
|
|
|
|
applyVolume(leftVol, rightVol, rampVolume);
|
|
|
|
}
|
|
|
|
for (size_t i = 0; i < effectChains.size(); i ++) {
|
|
|
|
effectChains[i]->process_l();
|
|
|
|
}
|
|
|
|
unlockEffectChains();
|
|
|
|
|
2009-09-22 07:35:48 +00:00
|
|
|
mLastWriteTime = systemTime();
|
|
|
|
mInWrite = true;
|
2010-01-20 01:37:09 +00:00
|
|
|
mBytesWritten += mixBufferSize;
|
2009-09-22 07:35:48 +00:00
|
|
|
int bytesWritten = (int)mOutput->write(mMixBuffer, mixBufferSize);
|
2010-01-20 01:37:09 +00:00
|
|
|
if (bytesWritten < 0) mBytesWritten -= mixBufferSize;
|
2009-09-22 07:35:48 +00:00
|
|
|
mNumWrites++;
|
|
|
|
mInWrite = false;
|
|
|
|
mStandby = false;
|
|
|
|
} else {
|
2010-06-02 06:49:17 +00:00
|
|
|
unlockEffectChains();
|
2009-09-22 07:35:48 +00:00
|
|
|
usleep(sleepTime);
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// finally let go of removed track, without the lock held
|
|
|
|
// since we can't guarantee the destructors won't acquire that
|
|
|
|
// same lock.
|
|
|
|
trackToRemove.clear();
|
|
|
|
activeTrack.clear();
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
// Effect chains will be actually deleted here if they were removed from
|
|
|
|
// mEffectChains list during mixing or effects processing
|
|
|
|
effectChains.clear();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (!mStandby) {
|
|
|
|
mOutput->standby();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGV("DirectOutputThread %p exiting", this);
|
|
|
|
return false;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// getTrackName_l() must be called with ThreadBase::mLock held
|
|
|
|
int AudioFlinger::DirectOutputThread::getTrackName_l()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
return 0;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// deleteTrackName_l() must be called with ThreadBase::mLock held
|
|
|
|
void AudioFlinger::DirectOutputThread::deleteTrackName_l(int name)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// checkForNewParameters_l() must be called with ThreadBase::mLock held
|
|
|
|
bool AudioFlinger::DirectOutputThread::checkForNewParameters_l()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
bool reconfig = false;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-08-04 16:45:33 +00:00
|
|
|
while (!mNewParameters.isEmpty()) {
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t status = NO_ERROR;
|
2009-08-04 16:45:33 +00:00
|
|
|
String8 keyValuePair = mNewParameters[0];
|
|
|
|
AudioParameter param = AudioParameter(keyValuePair);
|
2009-07-17 19:17:14 +00:00
|
|
|
int value;
|
2009-08-04 16:45:33 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
|
|
|
|
// do not accept frame count changes if tracks are open as the track buffer
|
|
|
|
// size depends on frame count and correct behavior would not be garantied
|
|
|
|
// if frame count is changed after track creation
|
|
|
|
if (!mTracks.isEmpty()) {
|
|
|
|
status = INVALID_OPERATION;
|
|
|
|
} else {
|
|
|
|
reconfig = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (status == NO_ERROR) {
|
2009-08-04 16:45:33 +00:00
|
|
|
status = mOutput->setParameters(keyValuePair);
|
2009-07-17 19:17:14 +00:00
|
|
|
if (!mStandby && status == INVALID_OPERATION) {
|
|
|
|
mOutput->standby();
|
|
|
|
mStandby = true;
|
|
|
|
mBytesWritten = 0;
|
2009-08-04 16:45:33 +00:00
|
|
|
status = mOutput->setParameters(keyValuePair);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
if (status == NO_ERROR && reconfig) {
|
|
|
|
readOutputParameters();
|
2009-08-04 16:45:33 +00:00
|
|
|
sendConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
2009-11-07 08:01:32 +00:00
|
|
|
|
|
|
|
mNewParameters.removeAt(0);
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
mParamStatus = status;
|
|
|
|
mParamCond.signal();
|
2009-08-04 16:45:33 +00:00
|
|
|
mWaitWorkCV.wait(mLock);
|
2009-01-22 08:13:42 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
return reconfig;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
uint32_t AudioFlinger::DirectOutputThread::activeSleepTimeUs()
|
2009-10-06 03:29:18 +00:00
|
|
|
{
|
|
|
|
uint32_t time;
|
|
|
|
if (AudioSystem::isLinearPCM(mFormat)) {
|
2009-11-10 07:32:22 +00:00
|
|
|
time = (uint32_t)(mOutput->latency() * 1000) / 2;
|
|
|
|
} else {
|
|
|
|
time = 10000;
|
|
|
|
}
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t AudioFlinger::DirectOutputThread::idleSleepTimeUs()
|
|
|
|
{
|
|
|
|
uint32_t time;
|
|
|
|
if (AudioSystem::isLinearPCM(mFormat)) {
|
|
|
|
time = (uint32_t)((mFrameCount * 1000) / mSampleRate) * 1000;
|
2009-10-06 03:29:18 +00:00
|
|
|
} else {
|
|
|
|
time = 10000;
|
|
|
|
}
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-11-19 17:00:56 +00:00
|
|
|
AudioFlinger::DuplicatingThread::DuplicatingThread(const sp<AudioFlinger>& audioFlinger, AudioFlinger::MixerThread* mainThread, int id)
|
2010-06-02 06:49:17 +00:00
|
|
|
: MixerThread(audioFlinger, mainThread->getOutput(), id, mainThread->device()), mWaitTimeMs(UINT_MAX)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
mType = PlaybackThread::DUPLICATING;
|
|
|
|
addOutputTrack(mainThread);
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioFlinger::DuplicatingThread::~DuplicatingThread()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-12-07 18:53:10 +00:00
|
|
|
for (size_t i = 0; i < mOutputTracks.size(); i++) {
|
|
|
|
mOutputTracks[i]->destroy();
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
mOutputTracks.clear();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
bool AudioFlinger::DuplicatingThread::threadLoop()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
Vector< sp<Track> > tracksToRemove;
|
2009-11-10 07:32:22 +00:00
|
|
|
uint32_t mixerStatus = MIXER_IDLE;
|
2009-07-17 19:17:14 +00:00
|
|
|
nsecs_t standbyTime = systemTime();
|
|
|
|
size_t mixBufferSize = mFrameCount*mFrameSize;
|
|
|
|
SortedVector< sp<OutputTrack> > outputTracks;
|
2009-10-06 03:29:18 +00:00
|
|
|
uint32_t writeFrames = 0;
|
2009-11-10 07:32:22 +00:00
|
|
|
uint32_t activeSleepTime = activeSleepTimeUs();
|
|
|
|
uint32_t idleSleepTime = idleSleepTimeUs();
|
|
|
|
uint32_t sleepTime = idleSleepTime;
|
2010-06-02 06:49:17 +00:00
|
|
|
Vector< sp<EffectChain> > effectChains;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
while (!exitPending())
|
|
|
|
{
|
|
|
|
processConfigEvents();
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
mixerStatus = MIXER_IDLE;
|
2009-07-17 19:17:14 +00:00
|
|
|
{ // scope for the mLock
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (checkForNewParameters_l()) {
|
|
|
|
mixBufferSize = mFrameCount*mFrameSize;
|
2009-12-18 13:47:48 +00:00
|
|
|
updateWaitTime();
|
2009-11-10 07:32:22 +00:00
|
|
|
activeSleepTime = activeSleepTimeUs();
|
|
|
|
idleSleepTime = idleSleepTimeUs();
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
const SortedVector< wp<Track> >& activeTracks = mActiveTracks;
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
for (size_t i = 0; i < mOutputTracks.size(); i++) {
|
|
|
|
outputTracks.add(mOutputTracks[i]);
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// put audio hardware into standby after short delay
|
|
|
|
if UNLIKELY((!activeTracks.size() && systemTime() > standbyTime) ||
|
|
|
|
mSuspended) {
|
|
|
|
if (!mStandby) {
|
|
|
|
for (size_t i = 0; i < outputTracks.size(); i++) {
|
|
|
|
outputTracks[i]->stop();
|
|
|
|
}
|
|
|
|
mStandby = true;
|
|
|
|
mBytesWritten = 0;
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (!activeTracks.size() && mConfigEvents.isEmpty()) {
|
|
|
|
// we're about to wait, flush the binder command buffer
|
|
|
|
IPCThreadState::self()->flushCommands();
|
|
|
|
outputTracks.clear();
|
|
|
|
|
|
|
|
if (exitPending()) break;
|
|
|
|
|
|
|
|
LOGV("DuplicatingThread %p TID %d going to sleep\n", this, gettid());
|
|
|
|
mWaitWorkCV.wait(mLock);
|
|
|
|
LOGV("DuplicatingThread %p TID %d waking up\n", this, gettid());
|
|
|
|
if (mMasterMute == false) {
|
|
|
|
char value[PROPERTY_VALUE_MAX];
|
|
|
|
property_get("ro.audio.silent", value, "0");
|
|
|
|
if (atoi(value)) {
|
|
|
|
LOGD("Silence is golden");
|
|
|
|
setMasterMute(true);
|
|
|
|
}
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
standbyTime = systemTime() + kStandbyTimeInNsecs;
|
2009-11-10 07:32:22 +00:00
|
|
|
sleepTime = idleSleepTime;
|
2009-07-17 19:17:14 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
mixerStatus = prepareTracks_l(activeTracks, &tracksToRemove);
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
// prevent any changes in effect chain list and in each effect chain
|
|
|
|
// during mixing and effect process as the audio buffers could be deleted
|
|
|
|
// or modified if an effect is created or deleted
|
|
|
|
effectChains = mEffectChains;
|
|
|
|
lockEffectChains_l();
|
2009-09-22 07:35:48 +00:00
|
|
|
}
|
2009-01-22 08:13:42 +00:00
|
|
|
|
2009-11-10 07:32:22 +00:00
|
|
|
if (LIKELY(mixerStatus == MIXER_TRACKS_READY)) {
|
2009-07-17 19:17:14 +00:00
|
|
|
// mix buffers...
|
2009-12-18 13:47:48 +00:00
|
|
|
if (outputsReady(outputTracks)) {
|
2010-06-02 06:49:17 +00:00
|
|
|
mAudioMixer->process();
|
2009-12-18 13:47:48 +00:00
|
|
|
} else {
|
2010-06-02 06:49:17 +00:00
|
|
|
memset(mMixBuffer, 0, mixBufferSize);
|
2009-12-18 13:47:48 +00:00
|
|
|
}
|
2009-09-22 07:35:48 +00:00
|
|
|
sleepTime = 0;
|
2009-10-06 03:29:18 +00:00
|
|
|
writeFrames = mFrameCount;
|
2009-07-17 19:17:14 +00:00
|
|
|
} else {
|
2009-10-06 03:29:18 +00:00
|
|
|
if (sleepTime == 0) {
|
2009-11-10 07:32:22 +00:00
|
|
|
if (mixerStatus == MIXER_TRACKS_ENABLED) {
|
|
|
|
sleepTime = activeSleepTime;
|
|
|
|
} else {
|
|
|
|
sleepTime = idleSleepTime;
|
|
|
|
}
|
2009-10-06 03:29:18 +00:00
|
|
|
} else if (mBytesWritten != 0) {
|
|
|
|
// flush remaining overflow buffers in output tracks
|
|
|
|
for (size_t i = 0; i < outputTracks.size(); i++) {
|
|
|
|
if (outputTracks[i]->isActive()) {
|
|
|
|
sleepTime = 0;
|
|
|
|
writeFrames = 0;
|
2010-06-02 06:49:17 +00:00
|
|
|
memset(mMixBuffer, 0, mixBufferSize);
|
2009-10-06 03:29:18 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
2009-09-22 07:35:48 +00:00
|
|
|
|
|
|
|
if (mSuspended) {
|
2009-11-10 07:32:22 +00:00
|
|
|
sleepTime = idleSleepTime;
|
2009-09-22 07:35:48 +00:00
|
|
|
}
|
|
|
|
// sleepTime == 0 means we must write to audio hardware
|
|
|
|
if (sleepTime == 0) {
|
2010-06-02 06:49:17 +00:00
|
|
|
for (size_t i = 0; i < effectChains.size(); i ++) {
|
|
|
|
effectChains[i]->process_l();
|
|
|
|
}
|
|
|
|
// enable changes in effect chain
|
|
|
|
unlockEffectChains();
|
|
|
|
|
2009-10-06 03:29:18 +00:00
|
|
|
standbyTime = systemTime() + kStandbyTimeInNsecs;
|
2009-09-22 07:35:48 +00:00
|
|
|
for (size_t i = 0; i < outputTracks.size(); i++) {
|
2010-06-02 06:49:17 +00:00
|
|
|
outputTracks[i]->write(mMixBuffer, writeFrames);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-09-22 07:35:48 +00:00
|
|
|
mStandby = false;
|
|
|
|
mBytesWritten += mixBufferSize;
|
2009-07-17 19:17:14 +00:00
|
|
|
} else {
|
2010-06-02 06:49:17 +00:00
|
|
|
// enable changes in effect chain
|
|
|
|
unlockEffectChains();
|
2009-09-22 07:35:48 +00:00
|
|
|
usleep(sleepTime);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// finally let go of all our tracks, without the lock held
|
|
|
|
// since we can't guarantee the destructors won't acquire that
|
|
|
|
// same lock.
|
|
|
|
tracksToRemove.clear();
|
|
|
|
outputTracks.clear();
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
// Effect chains will be actually deleted here if they were removed from
|
|
|
|
// mEffectChains list during mixing or effects processing
|
|
|
|
effectChains.clear();
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
return false;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::DuplicatingThread::addOutputTrack(MixerThread *thread)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
int frameCount = (3 * mFrameCount * mSampleRate) / thread->sampleRate();
|
|
|
|
OutputTrack *outputTrack = new OutputTrack((ThreadBase *)thread,
|
2009-12-18 13:47:48 +00:00
|
|
|
this,
|
2009-07-17 19:17:14 +00:00
|
|
|
mSampleRate,
|
|
|
|
mFormat,
|
|
|
|
mChannelCount,
|
|
|
|
frameCount);
|
2009-08-11 06:22:32 +00:00
|
|
|
if (outputTrack->cblk() != NULL) {
|
|
|
|
thread->setStreamVolume(AudioSystem::NUM_STREAM_TYPES, 1.0f);
|
|
|
|
mOutputTracks.add(outputTrack);
|
|
|
|
LOGV("addOutputTrack() track %p, on thread %p", outputTrack, thread);
|
2009-12-18 13:47:48 +00:00
|
|
|
updateWaitTime();
|
2009-08-11 06:22:32 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::DuplicatingThread::removeOutputTrack(MixerThread *thread)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
for (size_t i = 0; i < mOutputTracks.size(); i++) {
|
|
|
|
if (mOutputTracks[i]->thread() == (ThreadBase *)thread) {
|
2009-08-11 06:22:32 +00:00
|
|
|
mOutputTracks[i]->destroy();
|
2009-07-17 19:17:14 +00:00
|
|
|
mOutputTracks.removeAt(i);
|
2009-12-18 13:47:48 +00:00
|
|
|
updateWaitTime();
|
2009-07-17 19:17:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LOGV("removeOutputTrack(): unkonwn thread: %p", thread);
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-12-18 13:47:48 +00:00
|
|
|
void AudioFlinger::DuplicatingThread::updateWaitTime()
|
|
|
|
{
|
|
|
|
mWaitTimeMs = UINT_MAX;
|
|
|
|
for (size_t i = 0; i < mOutputTracks.size(); i++) {
|
|
|
|
sp<ThreadBase> strong = mOutputTracks[i]->thread().promote();
|
|
|
|
if (strong != NULL) {
|
|
|
|
uint32_t waitTimeMs = (strong->frameCount() * 2 * 1000) / strong->sampleRate();
|
|
|
|
if (waitTimeMs < mWaitTimeMs) {
|
|
|
|
mWaitTimeMs = waitTimeMs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool AudioFlinger::DuplicatingThread::outputsReady(SortedVector< sp<OutputTrack> > &outputTracks)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < outputTracks.size(); i++) {
|
|
|
|
sp <ThreadBase> thread = outputTracks[i]->thread().promote();
|
|
|
|
if (thread == 0) {
|
|
|
|
LOGW("DuplicatingThread::outputsReady() could not promote thread on output track %p", outputTracks[i].get());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
|
|
|
|
if (playbackThread->standby() && !playbackThread->isSuspended()) {
|
|
|
|
LOGV("DuplicatingThread output track %p on thread %p Not Ready", outputTracks[i].get(), thread.get());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t AudioFlinger::DuplicatingThread::activeSleepTimeUs()
|
|
|
|
{
|
|
|
|
return (mWaitTimeMs * 1000) / 2;
|
|
|
|
}
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-03-09 18:52:12 +00:00
|
|
|
// TrackBase constructor must be called with AudioFlinger::mLock held
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioFlinger::ThreadBase::TrackBase::TrackBase(
|
|
|
|
const wp<ThreadBase>& thread,
|
2008-10-21 14:00:00 +00:00
|
|
|
const sp<Client>& client,
|
|
|
|
uint32_t sampleRate,
|
|
|
|
int format,
|
|
|
|
int channelCount,
|
2008-12-18 02:05:43 +00:00
|
|
|
int frameCount,
|
2009-03-04 03:31:44 +00:00
|
|
|
uint32_t flags,
|
2010-06-02 06:49:17 +00:00
|
|
|
const sp<IMemory>& sharedBuffer,
|
|
|
|
int sessionId)
|
2008-10-21 14:00:00 +00:00
|
|
|
: RefBase(),
|
2009-07-17 19:17:14 +00:00
|
|
|
mThread(thread),
|
2008-10-21 14:00:00 +00:00
|
|
|
mClient(client),
|
2009-09-09 12:16:08 +00:00
|
|
|
mCblk(0),
|
2008-12-18 02:05:43 +00:00
|
|
|
mFrameCount(0),
|
2008-10-21 14:00:00 +00:00
|
|
|
mState(IDLE),
|
2008-12-18 02:05:43 +00:00
|
|
|
mClientTid(-1),
|
|
|
|
mFormat(format),
|
2010-06-02 06:49:17 +00:00
|
|
|
mFlags(flags & ~SYSTEM_FLAGS_MASK),
|
|
|
|
mSessionId(sessionId)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2008-12-18 02:05:43 +00:00
|
|
|
LOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(), sharedBuffer->size());
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
// LOGD("Creating track with %d buffers @ %d bytes", bufferCount, bufferSize);
|
2008-12-18 02:05:43 +00:00
|
|
|
size_t size = sizeof(audio_track_cblk_t);
|
|
|
|
size_t bufferSize = frameCount*channelCount*sizeof(int16_t);
|
|
|
|
if (sharedBuffer == 0) {
|
|
|
|
size += bufferSize;
|
|
|
|
}
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
if (client != NULL) {
|
|
|
|
mCblkMemory = client->heap()->allocate(size);
|
|
|
|
if (mCblkMemory != 0) {
|
|
|
|
mCblk = static_cast<audio_track_cblk_t *>(mCblkMemory->pointer());
|
|
|
|
if (mCblk) { // construct the shared structure in-place.
|
|
|
|
new(mCblk) audio_track_cblk_t();
|
|
|
|
// clear all buffers
|
|
|
|
mCblk->frameCount = frameCount;
|
2009-07-07 14:10:45 +00:00
|
|
|
mCblk->sampleRate = sampleRate;
|
2010-05-14 12:45:46 +00:00
|
|
|
mCblk->channelCount = (uint8_t)channelCount;
|
2009-03-04 03:31:44 +00:00
|
|
|
if (sharedBuffer == 0) {
|
|
|
|
mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
|
|
|
|
memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
|
|
|
|
// Force underrun condition to avoid false underrun callback until first data is
|
|
|
|
// written to buffer
|
2010-05-14 10:26:45 +00:00
|
|
|
mCblk->flags = CBLK_UNDERRUN_ON;
|
2009-03-04 03:31:44 +00:00
|
|
|
} else {
|
|
|
|
mBuffer = sharedBuffer->pointer();
|
|
|
|
}
|
|
|
|
mBufferEnd = (uint8_t *)mBuffer + bufferSize;
|
2008-12-18 02:05:43 +00:00
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
} else {
|
|
|
|
LOGE("not enough memory for AudioTrack size=%u", size);
|
|
|
|
client->heap()->dump("AudioTrack");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mCblk = (audio_track_cblk_t *)(new uint8_t[size]);
|
|
|
|
if (mCblk) { // construct the shared structure in-place.
|
|
|
|
new(mCblk) audio_track_cblk_t();
|
|
|
|
// clear all buffers
|
|
|
|
mCblk->frameCount = frameCount;
|
2009-07-07 14:10:45 +00:00
|
|
|
mCblk->sampleRate = sampleRate;
|
2010-05-14 12:45:46 +00:00
|
|
|
mCblk->channelCount = (uint8_t)channelCount;
|
2009-03-04 03:31:44 +00:00
|
|
|
mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
|
|
|
|
memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
|
|
|
|
// Force underrun condition to avoid false underrun callback until first data is
|
|
|
|
// written to buffer
|
2010-05-14 10:26:45 +00:00
|
|
|
mCblk->flags = CBLK_UNDERRUN_ON;
|
2009-03-04 03:31:44 +00:00
|
|
|
mBufferEnd = (uint8_t *)mBuffer + bufferSize;
|
|
|
|
}
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 13:02:45 +00:00
|
|
|
AudioFlinger::ThreadBase::TrackBase::~TrackBase()
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-03-04 03:31:44 +00:00
|
|
|
if (mCblk) {
|
2009-07-17 19:17:14 +00:00
|
|
|
mCblk->~audio_track_cblk_t(); // destroy our shared-structure.
|
|
|
|
if (mClient == NULL) {
|
|
|
|
delete mCblk;
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
mCblkMemory.clear(); // and free the shared memory
|
2009-09-17 12:12:56 +00:00
|
|
|
if (mClient != NULL) {
|
|
|
|
Mutex::Autolock _l(mClient->audioFlinger()->mLock);
|
|
|
|
mClient.clear();
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 13:02:45 +00:00
|
|
|
void AudioFlinger::ThreadBase::TrackBase::releaseBuffer(AudioBufferProvider::Buffer* buffer)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
|
|
|
buffer->raw = 0;
|
2008-12-18 02:05:43 +00:00
|
|
|
mFrameCount = buffer->frameCount;
|
2008-10-21 14:00:00 +00:00
|
|
|
step();
|
2008-12-18 02:05:43 +00:00
|
|
|
buffer->frameCount = 0;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 13:02:45 +00:00
|
|
|
bool AudioFlinger::ThreadBase::TrackBase::step() {
|
2008-10-21 14:00:00 +00:00
|
|
|
bool result;
|
|
|
|
audio_track_cblk_t* cblk = this->cblk();
|
2008-12-18 02:05:43 +00:00
|
|
|
|
|
|
|
result = cblk->stepServer(mFrameCount);
|
2008-10-21 14:00:00 +00:00
|
|
|
if (!result) {
|
|
|
|
LOGV("stepServer failed acquiring cblk mutex");
|
|
|
|
mFlags |= STEPSERVER_FAILED;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-09-16 13:02:45 +00:00
|
|
|
void AudioFlinger::ThreadBase::TrackBase::reset() {
|
2008-10-21 14:00:00 +00:00
|
|
|
audio_track_cblk_t* cblk = this->cblk();
|
|
|
|
|
|
|
|
cblk->user = 0;
|
|
|
|
cblk->server = 0;
|
2008-12-18 02:05:43 +00:00
|
|
|
cblk->userBase = 0;
|
|
|
|
cblk->serverBase = 0;
|
2009-03-04 03:31:44 +00:00
|
|
|
mFlags &= (uint32_t)(~SYSTEM_FLAGS_MASK);
|
2008-12-18 02:05:43 +00:00
|
|
|
LOGV("TrackBase::reset");
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 13:02:45 +00:00
|
|
|
sp<IMemory> AudioFlinger::ThreadBase::TrackBase::getCblk() const
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
|
|
|
return mCblkMemory;
|
|
|
|
}
|
|
|
|
|
2009-09-16 13:02:45 +00:00
|
|
|
int AudioFlinger::ThreadBase::TrackBase::sampleRate() const {
|
2009-03-19 00:39:46 +00:00
|
|
|
return (int)mCblk->sampleRate;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 13:02:45 +00:00
|
|
|
int AudioFlinger::ThreadBase::TrackBase::channelCount() const {
|
2010-05-14 12:45:46 +00:00
|
|
|
return (int)mCblk->channelCount;
|
2008-12-18 02:05:43 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 13:02:45 +00:00
|
|
|
void* AudioFlinger::ThreadBase::TrackBase::getBuffer(uint32_t offset, uint32_t frames) const {
|
2008-12-18 02:05:43 +00:00
|
|
|
audio_track_cblk_t* cblk = this->cblk();
|
2009-07-17 19:17:14 +00:00
|
|
|
int8_t *bufferStart = (int8_t *)mBuffer + (offset-cblk->serverBase)*cblk->frameSize;
|
|
|
|
int8_t *bufferEnd = bufferStart + frames * cblk->frameSize;
|
2008-12-18 02:05:43 +00:00
|
|
|
|
|
|
|
// Check validity of returned pointer in case the track control block would have been corrupted.
|
2009-07-17 19:17:14 +00:00
|
|
|
if (bufferStart < mBuffer || bufferStart > bufferEnd || bufferEnd > mBufferEnd ||
|
|
|
|
((unsigned long)bufferStart & (unsigned long)(cblk->frameSize - 1))) {
|
2009-03-19 00:39:46 +00:00
|
|
|
LOGE("TrackBase::getBuffer buffer out of range:\n start: %p, end %p , mBuffer %p mBufferEnd %p\n \
|
2010-05-14 12:45:46 +00:00
|
|
|
server %d, serverBase %d, user %d, userBase %d, channelCount %d",
|
2008-12-18 02:05:43 +00:00
|
|
|
bufferStart, bufferEnd, mBuffer, mBufferEnd,
|
2010-05-14 12:45:46 +00:00
|
|
|
cblk->server, cblk->serverBase, cblk->user, cblk->userBase, cblk->channelCount);
|
2008-12-18 02:05:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bufferStart;
|
|
|
|
}
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// Track constructor must be called with AudioFlinger::mLock and ThreadBase::mLock held
|
|
|
|
AudioFlinger::PlaybackThread::Track::Track(
|
|
|
|
const wp<ThreadBase>& thread,
|
2008-10-21 14:00:00 +00:00
|
|
|
const sp<Client>& client,
|
|
|
|
int streamType,
|
|
|
|
uint32_t sampleRate,
|
|
|
|
int format,
|
|
|
|
int channelCount,
|
2008-12-18 02:05:43 +00:00
|
|
|
int frameCount,
|
2010-06-02 06:49:17 +00:00
|
|
|
const sp<IMemory>& sharedBuffer,
|
|
|
|
int sessionId)
|
|
|
|
: TrackBase(thread, client, sampleRate, format, channelCount, frameCount, 0, sharedBuffer, sessionId),
|
|
|
|
mMute(false), mSharedBuffer(sharedBuffer), mName(-1), mMainBuffer(NULL), mAuxBuffer(NULL), mAuxEffectId(0)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-09-09 12:16:08 +00:00
|
|
|
if (mCblk != NULL) {
|
|
|
|
sp<ThreadBase> baseThread = thread.promote();
|
|
|
|
if (baseThread != 0) {
|
|
|
|
PlaybackThread *playbackThread = (PlaybackThread *)baseThread.get();
|
|
|
|
mName = playbackThread->getTrackName_l();
|
2010-06-02 06:49:17 +00:00
|
|
|
mMainBuffer = playbackThread->mixBuffer();
|
2009-09-09 12:16:08 +00:00
|
|
|
}
|
|
|
|
LOGV("Track constructor name %d, calling thread %d", mName, IPCThreadState::self()->getCallingPid());
|
|
|
|
if (mName < 0) {
|
|
|
|
LOGE("no more track names available");
|
|
|
|
}
|
|
|
|
mVolume[0] = 1.0f;
|
|
|
|
mVolume[1] = 1.0f;
|
|
|
|
mStreamType = streamType;
|
|
|
|
// NOTE: audio_track_cblk_t::frameSize for 8 bit PCM data is based on a sample size of
|
|
|
|
// 16 bit because data is converted to 16 bit before being stored in buffer by AudioTrack
|
|
|
|
mCblk->frameSize = AudioSystem::isLinearPCM(format) ? channelCount * sizeof(int16_t) : sizeof(int8_t);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioFlinger::PlaybackThread::Track::~Track()
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGV("PlaybackThread::Track destructor");
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
2009-12-01 10:17:41 +00:00
|
|
|
Mutex::Autolock _l(thread->mLock);
|
2009-07-17 19:17:14 +00:00
|
|
|
mState = TERMINATED;
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::Track::destroy()
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
// NOTE: destroyTrack_l() can remove a strong reference to this Track
|
2009-03-09 18:52:12 +00:00
|
|
|
// by removing it from mTracks vector, so there is a risk that this Tracks's
|
2009-07-17 19:17:14 +00:00
|
|
|
// desctructor is called. As the destructor needs to lock mLock,
|
|
|
|
// we must acquire a strong reference on this Track before locking mLock
|
2009-03-09 18:52:12 +00:00
|
|
|
// here so that the destructor is called only when exiting this function.
|
2009-07-17 19:17:14 +00:00
|
|
|
// On the other hand, as long as Track::destroy() is only called by
|
|
|
|
// TrackHandle destructor, the TrackHandle still holds a strong ref on
|
2009-03-09 18:52:12 +00:00
|
|
|
// this Track with its member mTrack.
|
|
|
|
sp<Track> keep(this);
|
2009-07-17 19:17:14 +00:00
|
|
|
{ // scope for mLock
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
2009-12-01 10:17:41 +00:00
|
|
|
if (!isOutputTrack()) {
|
|
|
|
if (mState == ACTIVE || mState == RESUMING) {
|
|
|
|
AudioSystem::stopOutput(thread->id(), (AudioSystem::stream_type)mStreamType);
|
|
|
|
}
|
|
|
|
AudioSystem::releaseOutput(thread->id());
|
2009-11-19 17:00:56 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(thread->mLock);
|
|
|
|
PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
|
|
|
|
playbackThread->destroyTrack_l(this);
|
|
|
|
}
|
2009-03-09 18:52:12 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::Track::dump(char* buffer, size_t size)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2010-06-02 06:49:17 +00:00
|
|
|
snprintf(buffer, size, " %05d %05d %03u %03u %03u %05u %04u %1d %1d %1d %05u %05u %05u 0x%08x 0x%08x 0x%08x 0x%08x\n",
|
2008-10-21 14:00:00 +00:00
|
|
|
mName - AudioMixer::TRACK0,
|
2009-03-04 03:31:44 +00:00
|
|
|
(mClient == NULL) ? getpid() : mClient->pid(),
|
2008-10-21 14:00:00 +00:00
|
|
|
mStreamType,
|
|
|
|
mFormat,
|
2010-05-14 12:45:46 +00:00
|
|
|
mCblk->channelCount,
|
2010-06-02 06:49:17 +00:00
|
|
|
mSessionId,
|
2008-12-18 02:05:43 +00:00
|
|
|
mFrameCount,
|
2008-10-21 14:00:00 +00:00
|
|
|
mState,
|
|
|
|
mMute,
|
|
|
|
mFillingUpStatus,
|
|
|
|
mCblk->sampleRate,
|
|
|
|
mCblk->volume[0],
|
|
|
|
mCblk->volume[1],
|
|
|
|
mCblk->server,
|
2010-06-02 06:49:17 +00:00
|
|
|
mCblk->user,
|
|
|
|
(int)mMainBuffer,
|
|
|
|
(int)mAuxBuffer);
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::PlaybackThread::Track::getNextBuffer(AudioBufferProvider::Buffer* buffer)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
|
|
|
audio_track_cblk_t* cblk = this->cblk();
|
2008-12-18 02:05:43 +00:00
|
|
|
uint32_t framesReady;
|
|
|
|
uint32_t framesReq = buffer->frameCount;
|
|
|
|
|
|
|
|
// Check if last stepServer failed, try to step now
|
2008-10-21 14:00:00 +00:00
|
|
|
if (mFlags & TrackBase::STEPSERVER_FAILED) {
|
|
|
|
if (!step()) goto getNextBuffer_exit;
|
|
|
|
LOGV("stepServer recovered");
|
|
|
|
mFlags &= ~TrackBase::STEPSERVER_FAILED;
|
|
|
|
}
|
|
|
|
|
2008-12-18 02:05:43 +00:00
|
|
|
framesReady = cblk->framesReady();
|
|
|
|
|
|
|
|
if (LIKELY(framesReady)) {
|
|
|
|
uint32_t s = cblk->server;
|
|
|
|
uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
|
|
|
|
|
|
|
|
bufferEnd = (cblk->loopEnd < bufferEnd) ? cblk->loopEnd : bufferEnd;
|
|
|
|
if (framesReq > framesReady) {
|
|
|
|
framesReq = framesReady;
|
|
|
|
}
|
|
|
|
if (s + framesReq > bufferEnd) {
|
|
|
|
framesReq = bufferEnd - s;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer->raw = getBuffer(s, framesReq);
|
|
|
|
if (buffer->raw == 0) goto getNextBuffer_exit;
|
|
|
|
|
|
|
|
buffer->frameCount = framesReq;
|
|
|
|
return NO_ERROR;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
2008-12-18 02:05:43 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
getNextBuffer_exit:
|
|
|
|
buffer->raw = 0;
|
|
|
|
buffer->frameCount = 0;
|
2009-10-06 03:29:18 +00:00
|
|
|
LOGV("getNextBuffer() no more data for track %d on thread %p", mName, mThread.unsafe_get());
|
2008-10-21 14:00:00 +00:00
|
|
|
return NOT_ENOUGH_DATA;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
bool AudioFlinger::PlaybackThread::Track::isReady() const {
|
2008-10-21 14:00:00 +00:00
|
|
|
if (mFillingUpStatus != FS_FILLING) return true;
|
2008-12-18 02:05:43 +00:00
|
|
|
|
|
|
|
if (mCblk->framesReady() >= mCblk->frameCount ||
|
2010-05-14 10:26:45 +00:00
|
|
|
(mCblk->flags & CBLK_FORCEREADY_MSK)) {
|
2008-10-21 14:00:00 +00:00
|
|
|
mFillingUpStatus = FS_FILLED;
|
2010-05-14 10:26:45 +00:00
|
|
|
mCblk->flags &= ~CBLK_FORCEREADY_MSK;
|
2008-10-21 14:00:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::PlaybackThread::Track::start()
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-11-19 17:00:56 +00:00
|
|
|
status_t status = NO_ERROR;
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGV("start(%d), calling thread %d", mName, IPCThreadState::self()->getCallingPid());
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
Mutex::Autolock _l(thread->mLock);
|
2009-11-19 17:00:56 +00:00
|
|
|
int state = mState;
|
|
|
|
// here the track could be either new, or restarted
|
|
|
|
// in both cases "unstop" the track
|
|
|
|
if (mState == PAUSED) {
|
|
|
|
mState = TrackBase::RESUMING;
|
|
|
|
LOGV("PAUSED => RESUMING (%d) on thread %p", mName, this);
|
|
|
|
} else {
|
|
|
|
mState = TrackBase::ACTIVE;
|
|
|
|
LOGV("? => ACTIVE (%d) on thread %p", mName, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isOutputTrack() && state != ACTIVE && state != RESUMING) {
|
|
|
|
thread->mLock.unlock();
|
|
|
|
status = AudioSystem::startOutput(thread->id(), (AudioSystem::stream_type)mStreamType);
|
|
|
|
thread->mLock.lock();
|
|
|
|
}
|
|
|
|
if (status == NO_ERROR) {
|
|
|
|
PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
|
|
|
|
playbackThread->addTrack_l(this);
|
|
|
|
} else {
|
|
|
|
mState = state;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
status = BAD_VALUE;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-11-19 17:00:56 +00:00
|
|
|
return status;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::Track::stop()
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGV("stop(%d), calling thread %d", mName, IPCThreadState::self()->getCallingPid());
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
Mutex::Autolock _l(thread->mLock);
|
2009-11-19 17:00:56 +00:00
|
|
|
int state = mState;
|
2009-07-17 19:17:14 +00:00
|
|
|
if (mState > STOPPED) {
|
|
|
|
mState = STOPPED;
|
|
|
|
// If the track is not active (PAUSED and buffers full), flush buffers
|
|
|
|
PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
|
|
|
|
if (playbackThread->mActiveTracks.indexOf(this) < 0) {
|
|
|
|
reset();
|
|
|
|
}
|
2009-10-06 03:29:18 +00:00
|
|
|
LOGV("(> STOPPED) => STOPPED (%d) on thread %p", mName, playbackThread);
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
2009-11-19 17:00:56 +00:00
|
|
|
if (!isOutputTrack() && (state == ACTIVE || state == RESUMING)) {
|
|
|
|
thread->mLock.unlock();
|
|
|
|
AudioSystem::stopOutput(thread->id(), (AudioSystem::stream_type)mStreamType);
|
|
|
|
thread->mLock.lock();
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::Track::pause()
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-03-04 03:31:44 +00:00
|
|
|
LOGV("pause(%d), calling thread %d", mName, IPCThreadState::self()->getCallingPid());
|
2009-07-17 19:17:14 +00:00
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
Mutex::Autolock _l(thread->mLock);
|
|
|
|
if (mState == ACTIVE || mState == RESUMING) {
|
|
|
|
mState = PAUSING;
|
2009-10-06 03:29:18 +00:00
|
|
|
LOGV("ACTIVE/RESUMING => PAUSING (%d) on thread %p", mName, thread.get());
|
2009-11-19 17:00:56 +00:00
|
|
|
if (!isOutputTrack()) {
|
|
|
|
thread->mLock.unlock();
|
|
|
|
AudioSystem::stopOutput(thread->id(), (AudioSystem::stream_type)mStreamType);
|
|
|
|
thread->mLock.lock();
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::Track::flush()
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
|
|
|
LOGV("flush(%d)", mName);
|
2009-07-17 19:17:14 +00:00
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
Mutex::Autolock _l(thread->mLock);
|
|
|
|
if (mState != STOPPED && mState != PAUSED && mState != PAUSING) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// No point remaining in PAUSED state after a flush => go to
|
|
|
|
// STOPPED state
|
|
|
|
mState = STOPPED;
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
mCblk->lock.lock();
|
|
|
|
// NOTE: reset() will reset cblk->user and cblk->server with
|
|
|
|
// the risk that at the same time, the AudioMixer is trying to read
|
|
|
|
// data. In this case, getNextBuffer() would return a NULL pointer
|
|
|
|
// as audio buffer => the AudioMixer code MUST always test that pointer
|
|
|
|
// returned by getNextBuffer() is not NULL!
|
|
|
|
reset();
|
|
|
|
mCblk->lock.unlock();
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::Track::reset()
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2008-12-18 02:05:43 +00:00
|
|
|
// Do not reset twice to avoid discarding data written just after a flush and before
|
|
|
|
// the audioflinger thread detects the track is stopped.
|
|
|
|
if (!mResetDone) {
|
|
|
|
TrackBase::reset();
|
|
|
|
// Force underrun condition to avoid false underrun callback until first data is
|
|
|
|
// written to buffer
|
2010-05-14 10:26:45 +00:00
|
|
|
mCblk->flags |= CBLK_UNDERRUN_ON;
|
|
|
|
mCblk->flags &= ~CBLK_FORCEREADY_MSK;
|
2009-07-17 19:17:14 +00:00
|
|
|
mFillingUpStatus = FS_FILLING;
|
2008-12-18 02:05:43 +00:00
|
|
|
mResetDone = true;
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::Track::mute(bool muted)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
|
|
|
mMute = muted;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::Track::setVolume(float left, float right)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
|
|
|
mVolume[0] = left;
|
|
|
|
mVolume[1] = right;
|
|
|
|
}
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
status_t AudioFlinger::PlaybackThread::Track::attachAuxEffect(int EffectId)
|
|
|
|
{
|
|
|
|
status_t status = DEAD_OBJECT;
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
|
|
|
|
status = playbackThread->attachAuxEffect(this, EffectId);
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::PlaybackThread::Track::setAuxBuffer(int EffectId, int32_t *buffer)
|
|
|
|
{
|
|
|
|
mAuxEffectId = EffectId;
|
|
|
|
mAuxBuffer = buffer;
|
|
|
|
}
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-03-09 18:52:12 +00:00
|
|
|
// RecordTrack constructor must be called with AudioFlinger::mLock held
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioFlinger::RecordThread::RecordTrack::RecordTrack(
|
|
|
|
const wp<ThreadBase>& thread,
|
2009-03-04 03:31:44 +00:00
|
|
|
const sp<Client>& client,
|
|
|
|
uint32_t sampleRate,
|
|
|
|
int format,
|
|
|
|
int channelCount,
|
|
|
|
int frameCount,
|
2010-06-02 06:49:17 +00:00
|
|
|
uint32_t flags,
|
|
|
|
int sessionId)
|
2009-07-17 19:17:14 +00:00
|
|
|
: TrackBase(thread, client, sampleRate, format,
|
2010-06-02 06:49:17 +00:00
|
|
|
channelCount, frameCount, flags, 0, sessionId),
|
2009-07-17 19:17:14 +00:00
|
|
|
mOverflow(false)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-09-09 12:16:08 +00:00
|
|
|
if (mCblk != NULL) {
|
|
|
|
LOGV("RecordTrack constructor, size %d", (int)mBufferEnd - (int)mBuffer);
|
|
|
|
if (format == AudioSystem::PCM_16_BIT) {
|
|
|
|
mCblk->frameSize = channelCount * sizeof(int16_t);
|
|
|
|
} else if (format == AudioSystem::PCM_8_BIT) {
|
|
|
|
mCblk->frameSize = channelCount * sizeof(int8_t);
|
|
|
|
} else {
|
|
|
|
mCblk->frameSize = sizeof(int8_t);
|
|
|
|
}
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioFlinger::RecordThread::RecordTrack::~RecordTrack()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-11-19 17:00:56 +00:00
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
AudioSystem::releaseInput(thread->id());
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::RecordThread::RecordTrack::getNextBuffer(AudioBufferProvider::Buffer* buffer)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
audio_track_cblk_t* cblk = this->cblk();
|
|
|
|
uint32_t framesAvail;
|
|
|
|
uint32_t framesReq = buffer->frameCount;
|
|
|
|
|
|
|
|
// Check if last stepServer failed, try to step now
|
|
|
|
if (mFlags & TrackBase::STEPSERVER_FAILED) {
|
|
|
|
if (!step()) goto getNextBuffer_exit;
|
|
|
|
LOGV("stepServer recovered");
|
|
|
|
mFlags &= ~TrackBase::STEPSERVER_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
framesAvail = cblk->framesAvailable_l();
|
|
|
|
|
|
|
|
if (LIKELY(framesAvail)) {
|
|
|
|
uint32_t s = cblk->server;
|
|
|
|
uint32_t bufferEnd = cblk->serverBase + cblk->frameCount;
|
|
|
|
|
|
|
|
if (framesReq > framesAvail) {
|
|
|
|
framesReq = framesAvail;
|
|
|
|
}
|
|
|
|
if (s + framesReq > bufferEnd) {
|
|
|
|
framesReq = bufferEnd - s;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer->raw = getBuffer(s, framesReq);
|
|
|
|
if (buffer->raw == 0) goto getNextBuffer_exit;
|
|
|
|
|
|
|
|
buffer->frameCount = framesReq;
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
getNextBuffer_exit:
|
|
|
|
buffer->raw = 0;
|
|
|
|
buffer->frameCount = 0;
|
|
|
|
return NOT_ENOUGH_DATA;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::RecordThread::RecordTrack::start()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
RecordThread *recordThread = (RecordThread *)thread.get();
|
|
|
|
return recordThread->start(this);
|
2009-11-19 17:00:56 +00:00
|
|
|
} else {
|
|
|
|
return BAD_VALUE;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::RecordThread::RecordTrack::stop()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
RecordThread *recordThread = (RecordThread *)thread.get();
|
|
|
|
recordThread->stop(this);
|
|
|
|
TrackBase::reset();
|
|
|
|
// Force overerrun condition to avoid false overrun callback until first data is
|
|
|
|
// read from buffer
|
2010-05-14 10:26:45 +00:00
|
|
|
mCblk->flags |= CBLK_UNDERRUN_ON;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-11-07 08:01:32 +00:00
|
|
|
void AudioFlinger::RecordThread::RecordTrack::dump(char* buffer, size_t size)
|
|
|
|
{
|
2010-06-02 06:49:17 +00:00
|
|
|
snprintf(buffer, size, " %05d %03u %03u %05d %04u %01d %05u %08x %08x\n",
|
2009-11-07 08:01:32 +00:00
|
|
|
(mClient == NULL) ? getpid() : mClient->pid(),
|
|
|
|
mFormat,
|
2010-05-14 12:45:46 +00:00
|
|
|
mCblk->channelCount,
|
2010-06-02 06:49:17 +00:00
|
|
|
mSessionId,
|
2009-11-07 08:01:32 +00:00
|
|
|
mFrameCount,
|
|
|
|
mState,
|
|
|
|
mCblk->sampleRate,
|
|
|
|
mCblk->server,
|
|
|
|
mCblk->user);
|
|
|
|
}
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioFlinger::PlaybackThread::OutputTrack::OutputTrack(
|
|
|
|
const wp<ThreadBase>& thread,
|
2009-12-18 13:47:48 +00:00
|
|
|
DuplicatingThread *sourceThread,
|
2009-03-04 03:31:44 +00:00
|
|
|
uint32_t sampleRate,
|
|
|
|
int format,
|
|
|
|
int channelCount,
|
|
|
|
int frameCount)
|
2010-06-02 06:49:17 +00:00
|
|
|
: Track(thread, NULL, AudioSystem::NUM_STREAM_TYPES, sampleRate, format, channelCount, frameCount, NULL, 0),
|
2009-12-18 13:47:48 +00:00
|
|
|
mActive(false), mSourceThread(sourceThread)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
PlaybackThread *playbackThread = (PlaybackThread *)thread.unsafe_get();
|
2009-08-11 06:22:32 +00:00
|
|
|
if (mCblk != NULL) {
|
2010-05-14 10:26:45 +00:00
|
|
|
mCblk->flags |= CBLK_DIRECTION_OUT;
|
2009-08-11 06:22:32 +00:00
|
|
|
mCblk->buffers = (char*)mCblk + sizeof(audio_track_cblk_t);
|
|
|
|
mCblk->volume[0] = mCblk->volume[1] = 0x1000;
|
|
|
|
mOutBuffer.frameCount = 0;
|
|
|
|
playbackThread->mTracks.add(this);
|
2010-05-14 12:45:46 +00:00
|
|
|
LOGV("OutputTrack constructor mCblk %p, mBuffer %p, mCblk->buffers %p, mCblk->frameCount %d, mCblk->sampleRate %d, mCblk->channelCount %d mBufferEnd %p",
|
|
|
|
mCblk, mBuffer, mCblk->buffers, mCblk->frameCount, mCblk->sampleRate, mCblk->channelCount, mBufferEnd);
|
2009-08-11 06:22:32 +00:00
|
|
|
} else {
|
|
|
|
LOGW("Error creating output track on thread %p", playbackThread);
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioFlinger::PlaybackThread::OutputTrack::~OutputTrack()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
2009-08-11 06:22:32 +00:00
|
|
|
clearBufferQueue();
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::PlaybackThread::OutputTrack::start()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
status_t status = Track::start();
|
2009-07-17 19:17:14 +00:00
|
|
|
if (status != NO_ERROR) {
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
mActive = true;
|
2009-03-04 03:31:44 +00:00
|
|
|
mRetryCount = 127;
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::OutputTrack::stop()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
Track::stop();
|
|
|
|
clearBufferQueue();
|
|
|
|
mOutBuffer.frameCount = 0;
|
2009-07-17 19:17:14 +00:00
|
|
|
mActive = false;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
bool AudioFlinger::PlaybackThread::OutputTrack::write(int16_t* data, uint32_t frames)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
Buffer *pInBuffer;
|
|
|
|
Buffer inBuffer;
|
2010-05-14 12:45:46 +00:00
|
|
|
uint32_t channelCount = mCblk->channelCount;
|
2009-07-17 19:17:14 +00:00
|
|
|
bool outputBufferFull = false;
|
2009-03-04 03:31:44 +00:00
|
|
|
inBuffer.frameCount = frames;
|
|
|
|
inBuffer.i16 = data;
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-12-18 13:47:48 +00:00
|
|
|
uint32_t waitTimeLeftMs = mSourceThread->waitTimeMs();
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-10-06 03:29:18 +00:00
|
|
|
if (!mActive && frames != 0) {
|
2009-07-17 19:17:14 +00:00
|
|
|
start();
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
MixerThread *mixerThread = (MixerThread *)thread.get();
|
|
|
|
if (mCblk->frameCount > frames){
|
|
|
|
if (mBufferQueue.size() < kMaxOverFlowBuffers) {
|
|
|
|
uint32_t startFrames = (mCblk->frameCount - frames);
|
|
|
|
pInBuffer = new Buffer;
|
2010-05-14 12:45:46 +00:00
|
|
|
pInBuffer->mBuffer = new int16_t[startFrames * channelCount];
|
2009-07-17 19:17:14 +00:00
|
|
|
pInBuffer->frameCount = startFrames;
|
|
|
|
pInBuffer->i16 = pInBuffer->mBuffer;
|
2010-05-14 12:45:46 +00:00
|
|
|
memset(pInBuffer->raw, 0, startFrames * channelCount * sizeof(int16_t));
|
2009-07-17 19:17:14 +00:00
|
|
|
mBufferQueue.add(pInBuffer);
|
|
|
|
} else {
|
|
|
|
LOGW ("OutputTrack::write() %p no more buffers in queue", this);
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
while (waitTimeLeftMs) {
|
2009-03-04 03:31:44 +00:00
|
|
|
// First write pending buffers, then new data
|
|
|
|
if (mBufferQueue.size()) {
|
|
|
|
pInBuffer = mBufferQueue.itemAt(0);
|
|
|
|
} else {
|
|
|
|
pInBuffer = &inBuffer;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
if (pInBuffer->frameCount == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
if (mOutBuffer.frameCount == 0) {
|
|
|
|
mOutBuffer.frameCount = pInBuffer->frameCount;
|
2009-07-17 19:17:14 +00:00
|
|
|
nsecs_t startTime = systemTime();
|
|
|
|
if (obtainBuffer(&mOutBuffer, waitTimeLeftMs) == (status_t)AudioTrack::NO_MORE_BUFFERS) {
|
2009-12-18 13:47:48 +00:00
|
|
|
LOGV ("OutputTrack::write() %p thread %p no more output buffers", this, mThread.unsafe_get());
|
2009-07-17 19:17:14 +00:00
|
|
|
outputBufferFull = true;
|
2009-03-04 03:31:44 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
uint32_t waitTimeMs = (uint32_t)ns2ms(systemTime() - startTime);
|
|
|
|
if (waitTimeLeftMs >= waitTimeMs) {
|
|
|
|
waitTimeLeftMs -= waitTimeMs;
|
|
|
|
} else {
|
|
|
|
waitTimeLeftMs = 0;
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
uint32_t outFrames = pInBuffer->frameCount > mOutBuffer.frameCount ? mOutBuffer.frameCount : pInBuffer->frameCount;
|
2010-05-14 12:45:46 +00:00
|
|
|
memcpy(mOutBuffer.raw, pInBuffer->raw, outFrames * channelCount * sizeof(int16_t));
|
2009-03-04 03:31:44 +00:00
|
|
|
mCblk->stepUser(outFrames);
|
|
|
|
pInBuffer->frameCount -= outFrames;
|
2010-05-14 12:45:46 +00:00
|
|
|
pInBuffer->i16 += outFrames * channelCount;
|
2009-03-04 03:31:44 +00:00
|
|
|
mOutBuffer.frameCount -= outFrames;
|
2010-05-14 12:45:46 +00:00
|
|
|
mOutBuffer.i16 += outFrames * channelCount;
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
if (pInBuffer->frameCount == 0) {
|
|
|
|
if (mBufferQueue.size()) {
|
|
|
|
mBufferQueue.removeAt(0);
|
|
|
|
delete [] pInBuffer->mBuffer;
|
|
|
|
delete pInBuffer;
|
2009-12-18 13:47:48 +00:00
|
|
|
LOGV("OutputTrack::write() %p thread %p released overflow buffer %d", this, mThread.unsafe_get(), mBufferQueue.size());
|
2009-03-04 03:31:44 +00:00
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
// If we could not write all frames, allocate a buffer and queue it for next time.
|
|
|
|
if (inBuffer.frameCount) {
|
2009-12-18 13:47:48 +00:00
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0 && !thread->standby()) {
|
|
|
|
if (mBufferQueue.size() < kMaxOverFlowBuffers) {
|
|
|
|
pInBuffer = new Buffer;
|
2010-05-14 12:45:46 +00:00
|
|
|
pInBuffer->mBuffer = new int16_t[inBuffer.frameCount * channelCount];
|
2009-12-18 13:47:48 +00:00
|
|
|
pInBuffer->frameCount = inBuffer.frameCount;
|
|
|
|
pInBuffer->i16 = pInBuffer->mBuffer;
|
2010-05-14 12:45:46 +00:00
|
|
|
memcpy(pInBuffer->raw, inBuffer.raw, inBuffer.frameCount * channelCount * sizeof(int16_t));
|
2009-12-18 13:47:48 +00:00
|
|
|
mBufferQueue.add(pInBuffer);
|
|
|
|
LOGV("OutputTrack::write() %p thread %p adding overflow buffer %d", this, mThread.unsafe_get(), mBufferQueue.size());
|
|
|
|
} else {
|
|
|
|
LOGW("OutputTrack::write() %p thread %p no more overflow buffers", mThread.unsafe_get(), this);
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
// Calling write() with a 0 length buffer, means that no more data will be written:
|
2009-07-17 19:17:14 +00:00
|
|
|
// If no more buffers are pending, fill output track buffer to make sure it is started
|
2009-03-04 03:31:44 +00:00
|
|
|
// by output mixer.
|
2009-07-17 19:17:14 +00:00
|
|
|
if (frames == 0 && mBufferQueue.size() == 0) {
|
|
|
|
if (mCblk->user < mCblk->frameCount) {
|
|
|
|
frames = mCblk->frameCount - mCblk->user;
|
|
|
|
pInBuffer = new Buffer;
|
2010-05-14 12:45:46 +00:00
|
|
|
pInBuffer->mBuffer = new int16_t[frames * channelCount];
|
2009-07-17 19:17:14 +00:00
|
|
|
pInBuffer->frameCount = frames;
|
|
|
|
pInBuffer->i16 = pInBuffer->mBuffer;
|
2010-05-14 12:45:46 +00:00
|
|
|
memset(pInBuffer->raw, 0, frames * channelCount * sizeof(int16_t));
|
2009-07-17 19:17:14 +00:00
|
|
|
mBufferQueue.add(pInBuffer);
|
2009-10-06 03:29:18 +00:00
|
|
|
} else if (mActive) {
|
2009-07-17 19:17:14 +00:00
|
|
|
stop();
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
return outputBufferFull;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::PlaybackThread::OutputTrack::obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
int active;
|
|
|
|
status_t result;
|
|
|
|
audio_track_cblk_t* cblk = mCblk;
|
|
|
|
uint32_t framesReq = buffer->frameCount;
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// LOGV("OutputTrack::obtainBuffer user %d, server %d", cblk->user, cblk->server);
|
2009-03-04 03:31:44 +00:00
|
|
|
buffer->frameCount = 0;
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
uint32_t framesAvail = cblk->framesAvailable();
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
if (framesAvail == 0) {
|
2009-07-17 19:17:14 +00:00
|
|
|
Mutex::Autolock _l(cblk->lock);
|
|
|
|
goto start_loop_here;
|
|
|
|
while (framesAvail == 0) {
|
|
|
|
active = mActive;
|
|
|
|
if (UNLIKELY(!active)) {
|
|
|
|
LOGV("Not active and NO_MORE_BUFFERS");
|
|
|
|
return AudioTrack::NO_MORE_BUFFERS;
|
|
|
|
}
|
|
|
|
result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs));
|
|
|
|
if (result != NO_ERROR) {
|
|
|
|
return AudioTrack::NO_MORE_BUFFERS;
|
|
|
|
}
|
|
|
|
// read the server count again
|
|
|
|
start_loop_here:
|
|
|
|
framesAvail = cblk->framesAvailable_l();
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// if (framesAvail < framesReq) {
|
|
|
|
// return AudioTrack::NO_MORE_BUFFERS;
|
|
|
|
// }
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
if (framesReq > framesAvail) {
|
|
|
|
framesReq = framesAvail;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t u = cblk->user;
|
|
|
|
uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
|
|
|
|
|
|
|
|
if (u + framesReq > bufferEnd) {
|
|
|
|
framesReq = bufferEnd - u;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer->frameCount = framesReq;
|
|
|
|
buffer->raw = (void *)cblk->buffer(u);
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::PlaybackThread::OutputTrack::clearBufferQueue()
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
size_t size = mBufferQueue.size();
|
|
|
|
Buffer *pBuffer;
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
pBuffer = mBufferQueue.itemAt(i);
|
|
|
|
delete [] pBuffer->mBuffer;
|
|
|
|
delete pBuffer;
|
|
|
|
}
|
|
|
|
mBufferQueue.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
AudioFlinger::Client::Client(const sp<AudioFlinger>& audioFlinger, pid_t pid)
|
|
|
|
: RefBase(),
|
|
|
|
mAudioFlinger(audioFlinger),
|
2010-01-26 03:00:00 +00:00
|
|
|
mMemoryDealer(new MemoryDealer(1024*1024, "AudioFlinger::Client")),
|
2009-03-04 03:31:44 +00:00
|
|
|
mPid(pid)
|
|
|
|
{
|
|
|
|
// 1 MB of address space is good for 32 tracks, 8 buffers each, 4 KB/buffer
|
|
|
|
}
|
|
|
|
|
2009-09-17 12:12:56 +00:00
|
|
|
// Client destructor must be called with AudioFlinger::mLock held
|
2009-03-04 03:31:44 +00:00
|
|
|
AudioFlinger::Client::~Client()
|
|
|
|
{
|
2009-09-17 12:12:56 +00:00
|
|
|
mAudioFlinger->removeClient_l(mPid);
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const sp<MemoryDealer>& AudioFlinger::Client::heap() const
|
|
|
|
{
|
|
|
|
return mMemoryDealer;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2010-05-12 09:05:53 +00:00
|
|
|
AudioFlinger::NotificationClient::NotificationClient(const sp<AudioFlinger>& audioFlinger,
|
|
|
|
const sp<IAudioFlingerClient>& client,
|
|
|
|
pid_t pid)
|
|
|
|
: mAudioFlinger(audioFlinger), mPid(pid), mClient(client)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioFlinger::NotificationClient::~NotificationClient()
|
|
|
|
{
|
|
|
|
mClient.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::NotificationClient::binderDied(const wp<IBinder>& who)
|
|
|
|
{
|
|
|
|
sp<NotificationClient> keep(this);
|
|
|
|
{
|
|
|
|
mAudioFlinger->removeNotificationClient(mPid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioFlinger::TrackHandle::TrackHandle(const sp<AudioFlinger::PlaybackThread::Track>& track)
|
2008-10-21 14:00:00 +00:00
|
|
|
: BnAudioTrack(),
|
|
|
|
mTrack(track)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioFlinger::TrackHandle::~TrackHandle() {
|
|
|
|
// just stop the track on deletion, associated resources
|
|
|
|
// will be freed from the main thread once all pending buffers have
|
|
|
|
// been played. Unless it's not in the active track list, in which
|
|
|
|
// case we free everything now...
|
|
|
|
mTrack->destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::TrackHandle::start() {
|
|
|
|
return mTrack->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::TrackHandle::stop() {
|
|
|
|
mTrack->stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::TrackHandle::flush() {
|
|
|
|
mTrack->flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::TrackHandle::mute(bool e) {
|
|
|
|
mTrack->mute(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::TrackHandle::pause() {
|
|
|
|
mTrack->pause();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::TrackHandle::setVolume(float left, float right) {
|
|
|
|
mTrack->setVolume(left, right);
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<IMemory> AudioFlinger::TrackHandle::getCblk() const {
|
|
|
|
return mTrack->getCblk();
|
|
|
|
}
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
status_t AudioFlinger::TrackHandle::attachAuxEffect(int EffectId)
|
|
|
|
{
|
|
|
|
return mTrack->attachAuxEffect(EffectId);
|
|
|
|
}
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
status_t AudioFlinger::TrackHandle::onTransact(
|
|
|
|
uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
|
|
|
|
{
|
|
|
|
return BnAudioTrack::onTransact(code, data, reply, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
sp<IAudioRecord> AudioFlinger::openRecord(
|
|
|
|
pid_t pid,
|
2009-07-28 15:44:33 +00:00
|
|
|
int input,
|
2008-10-21 14:00:00 +00:00
|
|
|
uint32_t sampleRate,
|
|
|
|
int format,
|
|
|
|
int channelCount,
|
2008-12-18 02:05:43 +00:00
|
|
|
int frameCount,
|
|
|
|
uint32_t flags,
|
2010-06-02 06:49:17 +00:00
|
|
|
int *sessionId,
|
2008-12-18 02:05:43 +00:00
|
|
|
status_t *status)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
sp<RecordThread::RecordTrack> recordTrack;
|
2008-10-21 14:00:00 +00:00
|
|
|
sp<RecordHandle> recordHandle;
|
|
|
|
sp<Client> client;
|
|
|
|
wp<Client> wclient;
|
2008-12-18 02:05:43 +00:00
|
|
|
status_t lStatus;
|
2009-07-17 19:17:14 +00:00
|
|
|
RecordThread *thread;
|
|
|
|
size_t inFrameCount;
|
2010-06-02 06:49:17 +00:00
|
|
|
int lSessionId;
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
// check calling permissions
|
|
|
|
if (!recordingAllowed()) {
|
2008-12-18 02:05:43 +00:00
|
|
|
lStatus = PERMISSION_DENIED;
|
2008-10-21 14:00:00 +00:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add client to list
|
2009-03-09 18:52:12 +00:00
|
|
|
{ // scope for mLock
|
2008-10-21 14:00:00 +00:00
|
|
|
Mutex::Autolock _l(mLock);
|
2009-07-17 19:17:14 +00:00
|
|
|
thread = checkRecordThread_l(input);
|
|
|
|
if (thread == NULL) {
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
wclient = mClients.valueFor(pid);
|
|
|
|
if (wclient != NULL) {
|
|
|
|
client = wclient.promote();
|
|
|
|
} else {
|
|
|
|
client = new Client(this, pid);
|
|
|
|
mClients.add(pid, client);
|
|
|
|
}
|
2008-12-18 02:05:43 +00:00
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
// If no audio session id is provided, create one here
|
|
|
|
if (sessionId != NULL && *sessionId != 0) {
|
|
|
|
lSessionId = *sessionId;
|
|
|
|
} else {
|
|
|
|
lSessionId = nextUniqueId();
|
|
|
|
if (sessionId != NULL) {
|
|
|
|
*sessionId = lSessionId;
|
|
|
|
}
|
|
|
|
}
|
2009-03-09 18:52:12 +00:00
|
|
|
// create new record track. The record track uses one track in mHardwareMixerThread by convention.
|
2009-07-17 19:17:14 +00:00
|
|
|
recordTrack = new RecordThread::RecordTrack(thread, client, sampleRate,
|
2010-06-02 06:49:17 +00:00
|
|
|
format, channelCount, frameCount, flags, lSessionId);
|
2009-03-09 18:52:12 +00:00
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
if (recordTrack->getCblk() == NULL) {
|
2009-09-17 12:12:56 +00:00
|
|
|
// remove local strong reference to Client before deleting the RecordTrack so that the Client
|
|
|
|
// destructor is called by the TrackBase destructor with mLock held
|
|
|
|
client.clear();
|
2009-03-04 03:31:44 +00:00
|
|
|
recordTrack.clear();
|
|
|
|
lStatus = NO_MEMORY;
|
|
|
|
goto Exit;
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
// return to handle to client
|
|
|
|
recordHandle = new RecordHandle(recordTrack);
|
2008-12-18 02:05:43 +00:00
|
|
|
lStatus = NO_ERROR;
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
Exit:
|
2008-12-18 02:05:43 +00:00
|
|
|
if (status) {
|
|
|
|
*status = lStatus;
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
return recordHandle;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioFlinger::RecordHandle::RecordHandle(const sp<AudioFlinger::RecordThread::RecordTrack>& recordTrack)
|
2008-10-21 14:00:00 +00:00
|
|
|
: BnAudioRecord(),
|
|
|
|
mRecordTrack(recordTrack)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-12-18 02:05:43 +00:00
|
|
|
AudioFlinger::RecordHandle::~RecordHandle() {
|
|
|
|
stop();
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
status_t AudioFlinger::RecordHandle::start() {
|
|
|
|
LOGV("RecordHandle::start()");
|
|
|
|
return mRecordTrack->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::RecordHandle::stop() {
|
|
|
|
LOGV("RecordHandle::stop()");
|
|
|
|
mRecordTrack->stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<IMemory> AudioFlinger::RecordHandle::getCblk() const {
|
|
|
|
return mRecordTrack->getCblk();
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::RecordHandle::onTransact(
|
|
|
|
uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
|
|
|
|
{
|
|
|
|
return BnAudioRecord::onTransact(code, data, reply, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-11-19 17:00:56 +00:00
|
|
|
AudioFlinger::RecordThread::RecordThread(const sp<AudioFlinger>& audioFlinger, AudioStreamIn *input, uint32_t sampleRate, uint32_t channels, int id) :
|
|
|
|
ThreadBase(audioFlinger, id),
|
2009-07-17 19:17:14 +00:00
|
|
|
mInput(input), mResampler(0), mRsmpOutBuffer(0), mRsmpInBuffer(0)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
mReqChannelCount = AudioSystem::popCount(channels);
|
|
|
|
mReqSampleRate = sampleRate;
|
|
|
|
readInputParameters();
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
AudioFlinger::RecordThread::~RecordThread()
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
delete[] mRsmpInBuffer;
|
|
|
|
if (mResampler != 0) {
|
|
|
|
delete mResampler;
|
|
|
|
delete[] mRsmpOutBuffer;
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::RecordThread::onFirstRef()
|
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
|
|
|
|
snprintf(buffer, SIZE, "Record Thread %p", this);
|
|
|
|
|
|
|
|
run(buffer, PRIORITY_URGENT_AUDIO);
|
|
|
|
}
|
2009-11-19 17:00:56 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
bool AudioFlinger::RecordThread::threadLoop()
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2008-12-18 02:05:43 +00:00
|
|
|
AudioBufferProvider::Buffer buffer;
|
2009-07-17 19:17:14 +00:00
|
|
|
sp<RecordTrack> activeTrack;
|
2008-10-21 14:00:00 +00:00
|
|
|
|
|
|
|
// start recording
|
|
|
|
while (!exitPending()) {
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
processConfigEvents();
|
|
|
|
|
|
|
|
{ // scope for mLock
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
checkForNewParameters_l();
|
|
|
|
if (mActiveTrack == 0 && mConfigEvents.isEmpty()) {
|
|
|
|
if (!mStandby) {
|
|
|
|
mInput->standby();
|
|
|
|
mStandby = true;
|
2008-12-18 02:05:43 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (exitPending()) break;
|
|
|
|
|
|
|
|
LOGV("RecordThread: loop stopping");
|
|
|
|
// go to sleep
|
2008-10-21 14:00:00 +00:00
|
|
|
mWaitWorkCV.wait(mLock);
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGV("RecordThread: loop starting");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (mActiveTrack != 0) {
|
|
|
|
if (mActiveTrack->mState == TrackBase::PAUSING) {
|
2009-12-05 13:20:01 +00:00
|
|
|
if (!mStandby) {
|
|
|
|
mInput->standby();
|
|
|
|
mStandby = true;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
mActiveTrack.clear();
|
|
|
|
mStartStopCond.broadcast();
|
|
|
|
} else if (mActiveTrack->mState == TrackBase::RESUMING) {
|
|
|
|
if (mReqChannelCount != mActiveTrack->channelCount()) {
|
|
|
|
mActiveTrack.clear();
|
2009-12-05 13:20:01 +00:00
|
|
|
mStartStopCond.broadcast();
|
|
|
|
} else if (mBytesRead != 0) {
|
|
|
|
// record start succeeds only if first read from audio input
|
|
|
|
// succeeds
|
|
|
|
if (mBytesRead > 0) {
|
|
|
|
mActiveTrack->mState = TrackBase::ACTIVE;
|
|
|
|
} else {
|
|
|
|
mActiveTrack.clear();
|
|
|
|
}
|
|
|
|
mStartStopCond.broadcast();
|
2008-12-18 02:05:43 +00:00
|
|
|
}
|
2009-12-05 13:20:01 +00:00
|
|
|
mStandby = false;
|
2008-12-18 02:05:43 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mActiveTrack != 0) {
|
2009-12-05 13:20:01 +00:00
|
|
|
if (mActiveTrack->mState != TrackBase::ACTIVE &&
|
|
|
|
mActiveTrack->mState != TrackBase::RESUMING) {
|
2009-11-19 17:00:56 +00:00
|
|
|
usleep(5000);
|
|
|
|
continue;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
buffer.frameCount = mFrameCount;
|
|
|
|
if (LIKELY(mActiveTrack->getNextBuffer(&buffer) == NO_ERROR)) {
|
|
|
|
size_t framesOut = buffer.frameCount;
|
|
|
|
if (mResampler == 0) {
|
|
|
|
// no resampling
|
|
|
|
while (framesOut) {
|
|
|
|
size_t framesIn = mFrameCount - mRsmpInIndex;
|
|
|
|
if (framesIn) {
|
|
|
|
int8_t *src = (int8_t *)mRsmpInBuffer + mRsmpInIndex * mFrameSize;
|
|
|
|
int8_t *dst = buffer.i8 + (buffer.frameCount - framesOut) * mActiveTrack->mCblk->frameSize;
|
|
|
|
if (framesIn > framesOut)
|
|
|
|
framesIn = framesOut;
|
|
|
|
mRsmpInIndex += framesIn;
|
|
|
|
framesOut -= framesIn;
|
2010-05-14 12:45:46 +00:00
|
|
|
if ((int)mChannelCount == mReqChannelCount ||
|
2009-07-17 19:17:14 +00:00
|
|
|
mFormat != AudioSystem::PCM_16_BIT) {
|
|
|
|
memcpy(dst, src, framesIn * mFrameSize);
|
|
|
|
} else {
|
|
|
|
int16_t *src16 = (int16_t *)src;
|
|
|
|
int16_t *dst16 = (int16_t *)dst;
|
|
|
|
if (mChannelCount == 1) {
|
|
|
|
while (framesIn--) {
|
|
|
|
*dst16++ = *src16;
|
|
|
|
*dst16++ = *src16++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while (framesIn--) {
|
|
|
|
*dst16++ = (int16_t)(((int32_t)*src16 + (int32_t)*(src16 + 1)) >> 1);
|
|
|
|
src16 += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (framesOut && mFrameCount == mRsmpInIndex) {
|
|
|
|
if (framesOut == mFrameCount &&
|
2010-05-14 12:45:46 +00:00
|
|
|
((int)mChannelCount == mReqChannelCount || mFormat != AudioSystem::PCM_16_BIT)) {
|
2009-12-05 13:20:01 +00:00
|
|
|
mBytesRead = mInput->read(buffer.raw, mInputBytes);
|
2009-07-17 19:17:14 +00:00
|
|
|
framesOut = 0;
|
|
|
|
} else {
|
2009-12-05 13:20:01 +00:00
|
|
|
mBytesRead = mInput->read(mRsmpInBuffer, mInputBytes);
|
2009-07-17 19:17:14 +00:00
|
|
|
mRsmpInIndex = 0;
|
|
|
|
}
|
2009-12-05 13:20:01 +00:00
|
|
|
if (mBytesRead < 0) {
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGE("Error reading audio input");
|
2009-12-05 13:20:01 +00:00
|
|
|
if (mActiveTrack->mState == TrackBase::ACTIVE) {
|
2010-03-03 02:38:06 +00:00
|
|
|
// Force input into standby so that it tries to
|
|
|
|
// recover at next read attempt
|
|
|
|
mInput->standby();
|
|
|
|
usleep(5000);
|
2009-12-05 13:20:01 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
mRsmpInIndex = mFrameCount;
|
|
|
|
framesOut = 0;
|
|
|
|
buffer.frameCount = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// resampling
|
|
|
|
|
|
|
|
memset(mRsmpOutBuffer, 0, framesOut * 2 * sizeof(int32_t));
|
|
|
|
// alter output frame count as if we were expecting stereo samples
|
|
|
|
if (mChannelCount == 1 && mReqChannelCount == 1) {
|
|
|
|
framesOut >>= 1;
|
|
|
|
}
|
|
|
|
mResampler->resample(mRsmpOutBuffer, framesOut, this);
|
|
|
|
// ditherAndClamp() works as long as all buffers returned by mActiveTrack->getNextBuffer()
|
|
|
|
// are 32 bit aligned which should be always true.
|
|
|
|
if (mChannelCount == 2 && mReqChannelCount == 1) {
|
|
|
|
AudioMixer::ditherAndClamp(mRsmpOutBuffer, mRsmpOutBuffer, framesOut);
|
|
|
|
// the resampler always outputs stereo samples: do post stereo to mono conversion
|
|
|
|
int16_t *src = (int16_t *)mRsmpOutBuffer;
|
|
|
|
int16_t *dst = buffer.i16;
|
|
|
|
while (framesOut--) {
|
|
|
|
*dst++ = (int16_t)(((int32_t)*src + (int32_t)*(src + 1)) >> 1);
|
|
|
|
src += 2;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
AudioMixer::ditherAndClamp((int32_t *)buffer.raw, mRsmpOutBuffer, framesOut);
|
|
|
|
}
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
mActiveTrack->releaseBuffer(&buffer);
|
|
|
|
mActiveTrack->overflow();
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
// client isn't retrieving buffers fast enough
|
|
|
|
else {
|
2009-07-17 19:17:14 +00:00
|
|
|
if (!mActiveTrack->setOverflow())
|
|
|
|
LOGW("RecordThread: buffer overflow");
|
2008-12-18 02:05:43 +00:00
|
|
|
// Release the processor for a while before asking for a new buffer.
|
|
|
|
// This will give the application more chance to read from the buffer and
|
|
|
|
// clear the overflow.
|
|
|
|
usleep(5000);
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-18 02:05:43 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (!mStandby) {
|
|
|
|
mInput->standby();
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
mActiveTrack.clear();
|
|
|
|
|
2009-11-19 17:00:56 +00:00
|
|
|
mStartStopCond.broadcast();
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGV("RecordThread %p exiting", this);
|
2008-12-18 02:05:43 +00:00
|
|
|
return false;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::RecordThread::start(RecordThread::RecordTrack* recordTrack)
|
2008-10-21 14:00:00 +00:00
|
|
|
{
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGV("RecordThread::start");
|
2009-11-19 17:00:56 +00:00
|
|
|
sp <ThreadBase> strongMe = this;
|
|
|
|
status_t status = NO_ERROR;
|
|
|
|
{
|
|
|
|
AutoMutex lock(&mLock);
|
|
|
|
if (mActiveTrack != 0) {
|
|
|
|
if (recordTrack != mActiveTrack.get()) {
|
|
|
|
status = -EBUSY;
|
|
|
|
} else if (mActiveTrack->mState == TrackBase::PAUSING) {
|
2009-12-05 13:20:01 +00:00
|
|
|
mActiveTrack->mState = TrackBase::ACTIVE;
|
2009-11-19 17:00:56 +00:00
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-11-19 17:00:56 +00:00
|
|
|
recordTrack->mState = TrackBase::IDLE;
|
|
|
|
mActiveTrack = recordTrack;
|
|
|
|
mLock.unlock();
|
|
|
|
status_t status = AudioSystem::startInput(mId);
|
|
|
|
mLock.lock();
|
|
|
|
if (status != NO_ERROR) {
|
|
|
|
mActiveTrack.clear();
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
mActiveTrack->mState = TrackBase::RESUMING;
|
2009-12-05 13:20:01 +00:00
|
|
|
mRsmpInIndex = mFrameCount;
|
|
|
|
mBytesRead = 0;
|
2009-11-19 17:00:56 +00:00
|
|
|
// signal thread to start
|
|
|
|
LOGV("Signal record thread");
|
|
|
|
mWaitWorkCV.signal();
|
|
|
|
// do not wait for mStartStopCond if exiting
|
|
|
|
if (mExiting) {
|
|
|
|
mActiveTrack.clear();
|
|
|
|
status = INVALID_OPERATION;
|
|
|
|
goto startError;
|
|
|
|
}
|
|
|
|
mStartStopCond.wait(mLock);
|
|
|
|
if (mActiveTrack == 0) {
|
|
|
|
LOGV("Record failed to start");
|
|
|
|
status = BAD_VALUE;
|
|
|
|
goto startError;
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGV("Record started OK");
|
2009-11-19 17:00:56 +00:00
|
|
|
return status;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
2009-11-19 17:00:56 +00:00
|
|
|
startError:
|
|
|
|
AudioSystem::stopInput(mId);
|
|
|
|
return status;
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
void AudioFlinger::RecordThread::stop(RecordThread::RecordTrack* recordTrack) {
|
|
|
|
LOGV("RecordThread::stop");
|
2009-11-19 17:00:56 +00:00
|
|
|
sp <ThreadBase> strongMe = this;
|
|
|
|
{
|
|
|
|
AutoMutex lock(&mLock);
|
|
|
|
if (mActiveTrack != 0 && recordTrack == mActiveTrack.get()) {
|
|
|
|
mActiveTrack->mState = TrackBase::PAUSING;
|
|
|
|
// do not wait for mStartStopCond if exiting
|
|
|
|
if (mExiting) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mStartStopCond.wait(mLock);
|
|
|
|
// if we have been restarted, recordTrack == mActiveTrack.get() here
|
|
|
|
if (mActiveTrack == 0 || recordTrack != mActiveTrack.get()) {
|
|
|
|
mLock.unlock();
|
|
|
|
AudioSystem::stopInput(mId);
|
|
|
|
mLock.lock();
|
2009-12-05 13:20:01 +00:00
|
|
|
LOGV("Record stopped OK");
|
2009-11-19 17:00:56 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-18 02:05:43 +00:00
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::RecordThread::dump(int fd, const Vector<String16>& args)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
|
|
|
pid_t pid = 0;
|
|
|
|
|
2009-11-07 08:01:32 +00:00
|
|
|
snprintf(buffer, SIZE, "\nInput thread %p internals\n", this);
|
|
|
|
result.append(buffer);
|
|
|
|
|
|
|
|
if (mActiveTrack != 0) {
|
|
|
|
result.append("Active Track:\n");
|
2010-06-02 06:49:17 +00:00
|
|
|
result.append(" Clien Fmt Chn Session Buf S SRate Serv User\n");
|
2009-11-07 08:01:32 +00:00
|
|
|
mActiveTrack->dump(buffer, SIZE);
|
|
|
|
result.append(buffer);
|
|
|
|
|
|
|
|
snprintf(buffer, SIZE, "In index: %d\n", mRsmpInIndex);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "In size: %d\n", mInputBytes);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "Resampling: %d\n", (mResampler != 0));
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "Out channel count: %d\n", mReqChannelCount);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "Out sample rate: %d\n", mReqSampleRate);
|
2009-03-04 03:31:44 +00:00
|
|
|
result.append(buffer);
|
2009-11-07 08:01:32 +00:00
|
|
|
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
} else {
|
|
|
|
result.append("No record client\n");
|
|
|
|
}
|
|
|
|
write(fd, result.string(), result.size());
|
2009-11-07 08:01:32 +00:00
|
|
|
|
|
|
|
dumpBase(fd, args);
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
2008-10-21 14:00:00 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t AudioFlinger::RecordThread::getNextBuffer(AudioBufferProvider::Buffer* buffer)
|
|
|
|
{
|
|
|
|
size_t framesReq = buffer->frameCount;
|
|
|
|
size_t framesReady = mFrameCount - mRsmpInIndex;
|
|
|
|
int channelCount;
|
|
|
|
|
|
|
|
if (framesReady == 0) {
|
2009-12-05 13:20:01 +00:00
|
|
|
mBytesRead = mInput->read(mRsmpInBuffer, mInputBytes);
|
|
|
|
if (mBytesRead < 0) {
|
2009-07-17 19:17:14 +00:00
|
|
|
LOGE("RecordThread::getNextBuffer() Error reading audio input");
|
2009-12-05 13:20:01 +00:00
|
|
|
if (mActiveTrack->mState == TrackBase::ACTIVE) {
|
2010-03-03 02:38:06 +00:00
|
|
|
// Force input into standby so that it tries to
|
|
|
|
// recover at next read attempt
|
|
|
|
mInput->standby();
|
|
|
|
usleep(5000);
|
2009-12-05 13:20:01 +00:00
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
buffer->raw = 0;
|
|
|
|
buffer->frameCount = 0;
|
|
|
|
return NOT_ENOUGH_DATA;
|
|
|
|
}
|
|
|
|
mRsmpInIndex = 0;
|
|
|
|
framesReady = mFrameCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (framesReq > framesReady) {
|
|
|
|
framesReq = framesReady;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mChannelCount == 1 && mReqChannelCount == 2) {
|
|
|
|
channelCount = 1;
|
|
|
|
} else {
|
|
|
|
channelCount = 2;
|
|
|
|
}
|
|
|
|
buffer->raw = mRsmpInBuffer + mRsmpInIndex * channelCount;
|
|
|
|
buffer->frameCount = framesReq;
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::RecordThread::releaseBuffer(AudioBufferProvider::Buffer* buffer)
|
|
|
|
{
|
|
|
|
mRsmpInIndex += buffer->frameCount;
|
|
|
|
buffer->frameCount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioFlinger::RecordThread::checkForNewParameters_l()
|
|
|
|
{
|
|
|
|
bool reconfig = false;
|
|
|
|
|
2009-08-04 16:45:33 +00:00
|
|
|
while (!mNewParameters.isEmpty()) {
|
2009-07-17 19:17:14 +00:00
|
|
|
status_t status = NO_ERROR;
|
2009-08-04 16:45:33 +00:00
|
|
|
String8 keyValuePair = mNewParameters[0];
|
|
|
|
AudioParameter param = AudioParameter(keyValuePair);
|
2009-07-17 19:17:14 +00:00
|
|
|
int value;
|
|
|
|
int reqFormat = mFormat;
|
|
|
|
int reqSamplingRate = mReqSampleRate;
|
|
|
|
int reqChannelCount = mReqChannelCount;
|
2009-08-04 16:45:33 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
|
|
|
|
reqSamplingRate = value;
|
|
|
|
reconfig = true;
|
|
|
|
}
|
|
|
|
if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
|
|
|
|
reqFormat = value;
|
|
|
|
reconfig = true;
|
|
|
|
}
|
|
|
|
if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
|
|
|
|
reqChannelCount = AudioSystem::popCount(value);
|
|
|
|
reconfig = true;
|
|
|
|
}
|
|
|
|
if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
|
|
|
|
// do not accept frame count changes if tracks are open as the track buffer
|
|
|
|
// size depends on frame count and correct behavior would not be garantied
|
|
|
|
// if frame count is changed after track creation
|
|
|
|
if (mActiveTrack != 0) {
|
|
|
|
status = INVALID_OPERATION;
|
|
|
|
} else {
|
|
|
|
reconfig = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (status == NO_ERROR) {
|
2009-08-04 16:45:33 +00:00
|
|
|
status = mInput->setParameters(keyValuePair);
|
2009-07-17 19:17:14 +00:00
|
|
|
if (status == INVALID_OPERATION) {
|
|
|
|
mInput->standby();
|
2009-08-04 16:45:33 +00:00
|
|
|
status = mInput->setParameters(keyValuePair);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
if (reconfig) {
|
|
|
|
if (status == BAD_VALUE &&
|
|
|
|
reqFormat == mInput->format() && reqFormat == AudioSystem::PCM_16_BIT &&
|
|
|
|
((int)mInput->sampleRate() <= 2 * reqSamplingRate) &&
|
|
|
|
(AudioSystem::popCount(mInput->channels()) < 3) && (reqChannelCount < 3)) {
|
|
|
|
status = NO_ERROR;
|
|
|
|
}
|
|
|
|
if (status == NO_ERROR) {
|
|
|
|
readInputParameters();
|
2009-08-04 16:45:33 +00:00
|
|
|
sendConfigEvent_l(AudioSystem::INPUT_CONFIG_CHANGED);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-07 08:01:32 +00:00
|
|
|
|
|
|
|
mNewParameters.removeAt(0);
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
mParamStatus = status;
|
|
|
|
mParamCond.signal();
|
2009-08-04 16:45:33 +00:00
|
|
|
mWaitWorkCV.wait(mLock);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
return reconfig;
|
|
|
|
}
|
|
|
|
|
|
|
|
String8 AudioFlinger::RecordThread::getParameters(const String8& keys)
|
|
|
|
{
|
|
|
|
return mInput->getParameters(keys);
|
|
|
|
}
|
|
|
|
|
2010-05-14 10:26:45 +00:00
|
|
|
void AudioFlinger::RecordThread::audioConfigChanged_l(int event, int param) {
|
2009-07-17 19:17:14 +00:00
|
|
|
AudioSystem::OutputDescriptor desc;
|
|
|
|
void *param2 = 0;
|
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
case AudioSystem::INPUT_OPENED:
|
|
|
|
case AudioSystem::INPUT_CONFIG_CHANGED:
|
2010-05-14 12:45:46 +00:00
|
|
|
desc.channels = mChannels;
|
2009-07-17 19:17:14 +00:00
|
|
|
desc.samplingRate = mSampleRate;
|
|
|
|
desc.format = mFormat;
|
|
|
|
desc.frameCount = mFrameCount;
|
|
|
|
desc.latency = 0;
|
|
|
|
param2 = &desc;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AudioSystem::INPUT_CLOSED:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2009-11-19 17:00:56 +00:00
|
|
|
mAudioFlinger->audioConfigChanged_l(event, mId, param2);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::RecordThread::readInputParameters()
|
|
|
|
{
|
|
|
|
if (mRsmpInBuffer) delete mRsmpInBuffer;
|
|
|
|
if (mRsmpOutBuffer) delete mRsmpOutBuffer;
|
|
|
|
if (mResampler) delete mResampler;
|
|
|
|
mResampler = 0;
|
|
|
|
|
|
|
|
mSampleRate = mInput->sampleRate();
|
2010-05-14 12:45:46 +00:00
|
|
|
mChannels = mInput->channels();
|
|
|
|
mChannelCount = (uint16_t)AudioSystem::popCount(mChannels);
|
2009-07-17 19:17:14 +00:00
|
|
|
mFormat = mInput->format();
|
2010-05-14 12:45:46 +00:00
|
|
|
mFrameSize = (uint16_t)mInput->frameSize();
|
2009-07-17 19:17:14 +00:00
|
|
|
mInputBytes = mInput->bufferSize();
|
|
|
|
mFrameCount = mInputBytes / mFrameSize;
|
|
|
|
mRsmpInBuffer = new int16_t[mFrameCount * mChannelCount];
|
|
|
|
|
|
|
|
if (mSampleRate != mReqSampleRate && mChannelCount < 3 && mReqChannelCount < 3)
|
|
|
|
{
|
|
|
|
int channelCount;
|
|
|
|
// optmization: if mono to mono, use the resampler in stereo to stereo mode to avoid
|
|
|
|
// stereo to mono post process as the resampler always outputs stereo.
|
|
|
|
if (mChannelCount == 1 && mReqChannelCount == 2) {
|
|
|
|
channelCount = 1;
|
|
|
|
} else {
|
|
|
|
channelCount = 2;
|
|
|
|
}
|
|
|
|
mResampler = AudioResampler::create(16, channelCount, mReqSampleRate);
|
|
|
|
mResampler->setSampleRate(mSampleRate);
|
|
|
|
mResampler->setVolume(AudioMixer::UNITY_GAIN, AudioMixer::UNITY_GAIN);
|
|
|
|
mRsmpOutBuffer = new int32_t[mFrameCount * 2];
|
|
|
|
|
|
|
|
// optmization: if mono to mono, alter input frame count as if we were inputing stereo samples
|
|
|
|
if (mChannelCount == 1 && mReqChannelCount == 1) {
|
|
|
|
mFrameCount >>= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
mRsmpInIndex = mFrameCount;
|
|
|
|
}
|
|
|
|
|
2010-02-26 10:47:27 +00:00
|
|
|
unsigned int AudioFlinger::RecordThread::getInputFramesLost()
|
|
|
|
{
|
|
|
|
return mInput->getInputFramesLost();
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
int AudioFlinger::openOutput(uint32_t *pDevices,
|
2009-07-17 19:17:14 +00:00
|
|
|
uint32_t *pSamplingRate,
|
|
|
|
uint32_t *pFormat,
|
|
|
|
uint32_t *pChannels,
|
|
|
|
uint32_t *pLatencyMs,
|
|
|
|
uint32_t flags)
|
|
|
|
{
|
|
|
|
status_t status;
|
|
|
|
PlaybackThread *thread = NULL;
|
|
|
|
mHardwareStatus = AUDIO_HW_OUTPUT_OPEN;
|
|
|
|
uint32_t samplingRate = pSamplingRate ? *pSamplingRate : 0;
|
|
|
|
uint32_t format = pFormat ? *pFormat : 0;
|
|
|
|
uint32_t channels = pChannels ? *pChannels : 0;
|
|
|
|
uint32_t latency = pLatencyMs ? *pLatencyMs : 0;
|
|
|
|
|
|
|
|
LOGV("openOutput(), Device %x, SamplingRate %d, Format %d, Channels %x, flags %x",
|
|
|
|
pDevices ? *pDevices : 0,
|
|
|
|
samplingRate,
|
|
|
|
format,
|
|
|
|
channels,
|
|
|
|
flags);
|
|
|
|
|
|
|
|
if (pDevices == NULL || *pDevices == 0) {
|
2009-07-28 15:44:33 +00:00
|
|
|
return 0;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
AudioStreamOut *output = mAudioHardware->openOutputStream(*pDevices,
|
|
|
|
(int *)&format,
|
|
|
|
&channels,
|
|
|
|
&samplingRate,
|
|
|
|
&status);
|
|
|
|
LOGV("openOutput() openOutputStream returned output %p, SamplingRate %d, Format %d, Channels %x, status %d",
|
|
|
|
output,
|
|
|
|
samplingRate,
|
|
|
|
format,
|
|
|
|
channels,
|
|
|
|
status);
|
|
|
|
|
|
|
|
mHardwareStatus = AUDIO_HW_IDLE;
|
|
|
|
if (output != 0) {
|
2010-06-02 06:49:17 +00:00
|
|
|
int id = nextUniqueId();
|
2009-07-17 19:17:14 +00:00
|
|
|
if ((flags & AudioSystem::OUTPUT_FLAG_DIRECT) ||
|
|
|
|
(format != AudioSystem::PCM_16_BIT) ||
|
|
|
|
(channels != AudioSystem::CHANNEL_OUT_STEREO)) {
|
2010-06-02 06:49:17 +00:00
|
|
|
thread = new DirectOutputThread(this, output, id, *pDevices);
|
|
|
|
LOGV("openOutput() created direct output: ID %d thread %p", id, thread);
|
2009-07-17 19:17:14 +00:00
|
|
|
} else {
|
2010-06-02 06:49:17 +00:00
|
|
|
thread = new MixerThread(this, output, id, *pDevices);
|
|
|
|
LOGV("openOutput() created mixer output: ID %d thread %p", id, thread);
|
2010-03-05 20:18:01 +00:00
|
|
|
|
|
|
|
#ifdef LVMX
|
|
|
|
unsigned bitsPerSample =
|
|
|
|
(format == AudioSystem::PCM_16_BIT) ? 16 :
|
|
|
|
((format == AudioSystem::PCM_8_BIT) ? 8 : 0);
|
|
|
|
unsigned channelCount = (channels == AudioSystem::CHANNEL_OUT_STEREO) ? 2 : 1;
|
|
|
|
int audioOutputType = LifeVibes::threadIdToAudioOutputType(thread->id());
|
|
|
|
|
|
|
|
LifeVibes::init_aot(audioOutputType, samplingRate, bitsPerSample, channelCount);
|
|
|
|
LifeVibes::setDevice(audioOutputType, *pDevices);
|
|
|
|
#endif
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
2010-06-02 06:49:17 +00:00
|
|
|
mPlaybackThreads.add(id, thread);
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
if (pSamplingRate) *pSamplingRate = samplingRate;
|
|
|
|
if (pFormat) *pFormat = format;
|
|
|
|
if (pChannels) *pChannels = channels;
|
|
|
|
if (pLatencyMs) *pLatencyMs = thread->latency();
|
2009-12-05 13:20:01 +00:00
|
|
|
|
2010-05-14 10:26:45 +00:00
|
|
|
// notify client processes of the new output creation
|
|
|
|
thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
|
2010-06-02 06:49:17 +00:00
|
|
|
return id;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
2009-12-05 13:20:01 +00:00
|
|
|
return 0;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
int AudioFlinger::openDuplicateOutput(int output1, int output2)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
2009-07-28 15:44:33 +00:00
|
|
|
MixerThread *thread1 = checkMixerThread_l(output1);
|
|
|
|
MixerThread *thread2 = checkMixerThread_l(output2);
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
if (thread1 == NULL || thread2 == NULL) {
|
|
|
|
LOGW("openDuplicateOutput() wrong output mixer type for output %d or %d", output1, output2);
|
|
|
|
return 0;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
int id = nextUniqueId();
|
|
|
|
DuplicatingThread *thread = new DuplicatingThread(this, thread1, id);
|
2009-07-28 15:44:33 +00:00
|
|
|
thread->addOutputTrack(thread2);
|
2010-06-02 06:49:17 +00:00
|
|
|
mPlaybackThreads.add(id, thread);
|
2010-05-14 10:26:45 +00:00
|
|
|
// notify client processes of the new output creation
|
|
|
|
thread->audioConfigChanged_l(AudioSystem::OUTPUT_OPENED);
|
2010-06-02 06:49:17 +00:00
|
|
|
return id;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
status_t AudioFlinger::closeOutput(int output)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
2009-08-04 15:37:05 +00:00
|
|
|
// keep strong reference on the playback thread so that
|
|
|
|
// it is not destroyed while exit() is executed
|
|
|
|
sp <PlaybackThread> thread;
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread == NULL) {
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGV("closeOutput() %d", output);
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
if (thread->type() == PlaybackThread::MIXER) {
|
|
|
|
for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
|
2009-07-28 15:44:33 +00:00
|
|
|
if (mPlaybackThreads.valueAt(i)->type() == PlaybackThread::DUPLICATING) {
|
|
|
|
DuplicatingThread *dupThread = (DuplicatingThread *)mPlaybackThreads.valueAt(i).get();
|
2009-08-04 15:37:05 +00:00
|
|
|
dupThread->removeOutputTrack((MixerThread *)thread.get());
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-09-15 14:10:12 +00:00
|
|
|
void *param2 = 0;
|
2009-11-19 17:00:56 +00:00
|
|
|
audioConfigChanged_l(AudioSystem::OUTPUT_CLOSED, output, param2);
|
2009-07-28 15:44:33 +00:00
|
|
|
mPlaybackThreads.removeItem(output);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
thread->exit();
|
|
|
|
|
2009-08-04 15:37:05 +00:00
|
|
|
if (thread->type() != PlaybackThread::DUPLICATING) {
|
|
|
|
mAudioHardware->closeOutputStream(thread->getOutput());
|
|
|
|
}
|
2009-07-17 19:17:14 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
status_t AudioFlinger::suspendOutput(int output)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
|
|
|
|
if (thread == NULL) {
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGV("suspendOutput() %d", output);
|
2009-07-17 19:17:14 +00:00
|
|
|
thread->suspend();
|
|
|
|
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
status_t AudioFlinger::restoreOutput(int output)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
|
|
|
|
if (thread == NULL) {
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGV("restoreOutput() %d", output);
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
thread->restore();
|
|
|
|
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
int AudioFlinger::openInput(uint32_t *pDevices,
|
2009-07-17 19:17:14 +00:00
|
|
|
uint32_t *pSamplingRate,
|
|
|
|
uint32_t *pFormat,
|
|
|
|
uint32_t *pChannels,
|
|
|
|
uint32_t acoustics)
|
|
|
|
{
|
|
|
|
status_t status;
|
|
|
|
RecordThread *thread = NULL;
|
|
|
|
uint32_t samplingRate = pSamplingRate ? *pSamplingRate : 0;
|
|
|
|
uint32_t format = pFormat ? *pFormat : 0;
|
|
|
|
uint32_t channels = pChannels ? *pChannels : 0;
|
|
|
|
uint32_t reqSamplingRate = samplingRate;
|
|
|
|
uint32_t reqFormat = format;
|
|
|
|
uint32_t reqChannels = channels;
|
|
|
|
|
|
|
|
if (pDevices == NULL || *pDevices == 0) {
|
2009-07-28 15:44:33 +00:00
|
|
|
return 0;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
AudioStreamIn *input = mAudioHardware->openInputStream(*pDevices,
|
|
|
|
(int *)&format,
|
|
|
|
&channels,
|
|
|
|
&samplingRate,
|
|
|
|
&status,
|
|
|
|
(AudioSystem::audio_in_acoustics)acoustics);
|
|
|
|
LOGV("openInput() openInputStream returned input %p, SamplingRate %d, Format %d, Channels %x, acoustics %x, status %d",
|
|
|
|
input,
|
|
|
|
samplingRate,
|
|
|
|
format,
|
|
|
|
channels,
|
|
|
|
acoustics,
|
|
|
|
status);
|
|
|
|
|
|
|
|
// If the input could not be opened with the requested parameters and we can handle the conversion internally,
|
|
|
|
// try to open again with the proposed parameters. The AudioFlinger can resample the input and do mono to stereo
|
|
|
|
// or stereo to mono conversions on 16 bit PCM inputs.
|
|
|
|
if (input == 0 && status == BAD_VALUE &&
|
|
|
|
reqFormat == format && format == AudioSystem::PCM_16_BIT &&
|
|
|
|
(samplingRate <= 2 * reqSamplingRate) &&
|
|
|
|
(AudioSystem::popCount(channels) < 3) && (AudioSystem::popCount(reqChannels) < 3)) {
|
|
|
|
LOGV("openInput() reopening with proposed sampling rate and channels");
|
|
|
|
input = mAudioHardware->openInputStream(*pDevices,
|
|
|
|
(int *)&format,
|
|
|
|
&channels,
|
|
|
|
&samplingRate,
|
|
|
|
&status,
|
|
|
|
(AudioSystem::audio_in_acoustics)acoustics);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (input != 0) {
|
2010-06-02 06:49:17 +00:00
|
|
|
int id = nextUniqueId();
|
2009-07-17 19:17:14 +00:00
|
|
|
// Start record thread
|
2010-06-02 06:49:17 +00:00
|
|
|
thread = new RecordThread(this, input, reqSamplingRate, reqChannels, id);
|
|
|
|
mRecordThreads.add(id, thread);
|
|
|
|
LOGV("openInput() created record thread: ID %d thread %p", id, thread);
|
2009-07-17 19:17:14 +00:00
|
|
|
if (pSamplingRate) *pSamplingRate = reqSamplingRate;
|
|
|
|
if (pFormat) *pFormat = format;
|
|
|
|
if (pChannels) *pChannels = reqChannels;
|
|
|
|
|
|
|
|
input->standby();
|
2009-12-05 13:20:01 +00:00
|
|
|
|
2010-05-14 10:26:45 +00:00
|
|
|
// notify client processes of the new input creation
|
|
|
|
thread->audioConfigChanged_l(AudioSystem::INPUT_OPENED);
|
2010-06-02 06:49:17 +00:00
|
|
|
return id;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
2009-12-05 13:20:01 +00:00
|
|
|
return 0;
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
status_t AudioFlinger::closeInput(int input)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
2009-08-04 15:37:05 +00:00
|
|
|
// keep strong reference on the record thread so that
|
|
|
|
// it is not destroyed while exit() is executed
|
|
|
|
sp <RecordThread> thread;
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
thread = checkRecordThread_l(input);
|
|
|
|
if (thread == NULL) {
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGV("closeInput() %d", input);
|
2009-09-15 14:10:12 +00:00
|
|
|
void *param2 = 0;
|
2009-11-19 17:00:56 +00:00
|
|
|
audioConfigChanged_l(AudioSystem::INPUT_CLOSED, input, param2);
|
2009-07-28 15:44:33 +00:00
|
|
|
mRecordThreads.removeItem(input);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
thread->exit();
|
|
|
|
|
2009-08-04 15:37:05 +00:00
|
|
|
mAudioHardware->closeInputStream(thread->getInput());
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
status_t AudioFlinger::setStreamOutput(uint32_t stream, int output)
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
MixerThread *dstThread = checkMixerThread_l(output);
|
|
|
|
if (dstThread == NULL) {
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGW("setStreamOutput() bad output id %d", output);
|
2009-07-17 19:17:14 +00:00
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
2009-07-28 15:44:33 +00:00
|
|
|
LOGV("setStreamOutput() stream %d to output %d", stream, output);
|
2010-05-14 10:26:45 +00:00
|
|
|
audioConfigChanged_l(AudioSystem::STREAM_CONFIG_CHANGED, output, &stream);
|
2009-07-17 19:17:14 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
|
2009-07-28 15:44:33 +00:00
|
|
|
PlaybackThread *thread = mPlaybackThreads.valueAt(i).get();
|
2009-07-17 19:17:14 +00:00
|
|
|
if (thread != dstThread &&
|
|
|
|
thread->type() != PlaybackThread::DIRECT) {
|
|
|
|
MixerThread *srcThread = (MixerThread *)thread;
|
2010-05-14 10:26:45 +00:00
|
|
|
srcThread->invalidateTracks(stream);
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
2009-09-01 12:56:26 +00:00
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
|
|
|
|
int AudioFlinger::newAudioSessionId()
|
|
|
|
{
|
|
|
|
return nextUniqueId();
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// checkPlaybackThread_l() must be called with AudioFlinger::mLock held
|
2009-07-28 15:44:33 +00:00
|
|
|
AudioFlinger::PlaybackThread *AudioFlinger::checkPlaybackThread_l(int output) const
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
PlaybackThread *thread = NULL;
|
2009-07-28 15:44:33 +00:00
|
|
|
if (mPlaybackThreads.indexOfKey(output) >= 0) {
|
|
|
|
thread = (PlaybackThread *)mPlaybackThreads.valueFor(output).get();
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkMixerThread_l() must be called with AudioFlinger::mLock held
|
2009-07-28 15:44:33 +00:00
|
|
|
AudioFlinger::MixerThread *AudioFlinger::checkMixerThread_l(int output) const
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread != NULL) {
|
|
|
|
if (thread->type() == PlaybackThread::DIRECT) {
|
|
|
|
thread = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (MixerThread *)thread;
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkRecordThread_l() must be called with AudioFlinger::mLock held
|
2009-07-28 15:44:33 +00:00
|
|
|
AudioFlinger::RecordThread *AudioFlinger::checkRecordThread_l(int input) const
|
2009-07-17 19:17:14 +00:00
|
|
|
{
|
|
|
|
RecordThread *thread = NULL;
|
2009-07-28 15:44:33 +00:00
|
|
|
if (mRecordThreads.indexOfKey(input) >= 0) {
|
|
|
|
thread = (RecordThread *)mRecordThreads.valueFor(input).get();
|
2009-07-17 19:17:14 +00:00
|
|
|
}
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
2010-06-02 06:49:17 +00:00
|
|
|
int AudioFlinger::nextUniqueId()
|
|
|
|
{
|
|
|
|
return android_atomic_inc(&mNextUniqueId);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Effect management
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
status_t AudioFlinger::loadEffectLibrary(const char *libPath, int *handle)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
return EffectLoadLibrary(libPath, handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::unloadEffectLibrary(int handle)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
return EffectUnloadLibrary(handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::queryNumberEffects(uint32_t *numEffects)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
return EffectQueryNumberEffects(numEffects);
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::queryNextEffect(effect_descriptor_t *descriptor)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
return EffectQueryNext(descriptor);
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::getEffectDescriptor(effect_uuid_t *pUuid, effect_descriptor_t *descriptor)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
return EffectGetDescriptor(pUuid, descriptor);
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<IEffect> AudioFlinger::createEffect(pid_t pid,
|
|
|
|
effect_descriptor_t *pDesc,
|
|
|
|
const sp<IEffectClient>& effectClient,
|
|
|
|
int32_t priority,
|
|
|
|
int output,
|
|
|
|
int sessionId,
|
|
|
|
status_t *status,
|
|
|
|
int *id,
|
|
|
|
int *enabled)
|
|
|
|
{
|
|
|
|
status_t lStatus = NO_ERROR;
|
|
|
|
sp<EffectHandle> handle;
|
|
|
|
effect_interface_t itfe;
|
|
|
|
effect_descriptor_t desc;
|
|
|
|
sp<Client> client;
|
|
|
|
wp<Client> wclient;
|
|
|
|
|
|
|
|
LOGV("createEffect pid %d, client %p, priority %d, sessionId %d, output %d", pid, effectClient.get(), priority, sessionId, output);
|
|
|
|
|
|
|
|
if (pDesc == NULL) {
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
if (!EffectIsNullUuid(&pDesc->uuid)) {
|
|
|
|
// if uuid is specified, request effect descriptor
|
|
|
|
lStatus = EffectGetDescriptor(&pDesc->uuid, &desc);
|
|
|
|
if (lStatus < 0) {
|
|
|
|
LOGW("createEffect() error %d from EffectGetDescriptor", lStatus);
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// if uuid is not specified, look for an available implementation
|
|
|
|
// of the required type in effect factory
|
|
|
|
if (EffectIsNullUuid(&pDesc->type)) {
|
|
|
|
LOGW("createEffect() no effect type");
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
uint32_t numEffects = 0;
|
|
|
|
effect_descriptor_t d;
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
lStatus = EffectQueryNumberEffects(&numEffects);
|
|
|
|
if (lStatus < 0) {
|
|
|
|
LOGW("createEffect() error %d from EffectQueryNumberEffects", lStatus);
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
for (; numEffects > 0; numEffects--) {
|
|
|
|
lStatus = EffectQueryNext(&desc);
|
|
|
|
if (lStatus < 0) {
|
|
|
|
LOGW("createEffect() error %d from EffectQueryNext", lStatus);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (memcmp(&desc.type, &pDesc->type, sizeof(effect_uuid_t)) == 0) {
|
|
|
|
// If matching type found save effect descriptor. If the session is
|
|
|
|
// 0 and the effect is not auxiliary, continue enumeration in case
|
|
|
|
// an auxiliary version of this effect type is available
|
|
|
|
found = true;
|
|
|
|
memcpy(&d, &desc, sizeof(effect_descriptor_t));
|
|
|
|
if (sessionId != 0 ||
|
|
|
|
(desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
LOGW("createEffect() effect not found");
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
// For same effect type, chose auxiliary version over insert version if
|
|
|
|
// connect to output mix (Compliance to OpenSL ES)
|
|
|
|
if (sessionId == 0 &&
|
|
|
|
(d.flags & EFFECT_FLAG_TYPE_MASK) != EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
memcpy(&desc, &d, sizeof(effect_descriptor_t));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not allow auxiliary effects on a session different from 0 (output mix)
|
|
|
|
if (sessionId != 0 &&
|
|
|
|
(desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
lStatus = INVALID_OPERATION;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return effect descriptor
|
|
|
|
memcpy(pDesc, &desc, sizeof(effect_descriptor_t));
|
|
|
|
|
|
|
|
// If output is not specified try to find a matching audio session ID in one of the
|
|
|
|
// output threads.
|
|
|
|
// TODO: allow attachment of effect to inputs
|
|
|
|
if (output == 0) {
|
|
|
|
if (sessionId == 0) {
|
|
|
|
// default to first output
|
|
|
|
// TODO: define criteria to choose output when not specified. Or
|
|
|
|
// receive output from audio policy manager
|
|
|
|
if (mPlaybackThreads.size() != 0) {
|
|
|
|
output = mPlaybackThreads.keyAt(0);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// look for the thread where the specified audio session is present
|
|
|
|
for (size_t i = 0; i < mPlaybackThreads.size(); i++) {
|
|
|
|
if (mPlaybackThreads.valueAt(i)->hasAudioSession(sessionId)) {
|
|
|
|
output = mPlaybackThreads.keyAt(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PlaybackThread *thread = checkPlaybackThread_l(output);
|
|
|
|
if (thread == NULL) {
|
|
|
|
LOGE("unknown output thread");
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
wclient = mClients.valueFor(pid);
|
|
|
|
|
|
|
|
if (wclient != NULL) {
|
|
|
|
client = wclient.promote();
|
|
|
|
} else {
|
|
|
|
client = new Client(this, pid);
|
|
|
|
mClients.add(pid, client);
|
|
|
|
}
|
|
|
|
|
|
|
|
// create effect on selected output trhead
|
|
|
|
handle = thread->createEffect_l(client, effectClient, priority, sessionId, &desc, enabled, &lStatus);
|
|
|
|
if (handle != 0 && id != NULL) {
|
|
|
|
*id = handle->id();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
if(status) {
|
|
|
|
*status = lStatus;
|
|
|
|
}
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
// PlaybackThread::createEffect_l() must be called with AudioFlinger::mLock held
|
|
|
|
sp<AudioFlinger::EffectHandle> AudioFlinger::PlaybackThread::createEffect_l(
|
|
|
|
const sp<AudioFlinger::Client>& client,
|
|
|
|
const sp<IEffectClient>& effectClient,
|
|
|
|
int32_t priority,
|
|
|
|
int sessionId,
|
|
|
|
effect_descriptor_t *desc,
|
|
|
|
int *enabled,
|
|
|
|
status_t *status
|
|
|
|
)
|
|
|
|
{
|
|
|
|
sp<EffectModule> effect;
|
|
|
|
sp<EffectHandle> handle;
|
|
|
|
status_t lStatus;
|
|
|
|
sp<Track> track;
|
|
|
|
sp<EffectChain> chain;
|
|
|
|
bool effectCreated = false;
|
|
|
|
|
|
|
|
if (mOutput == 0) {
|
|
|
|
LOGW("createEffect_l() Audio driver not initialized.");
|
|
|
|
lStatus = NO_INIT;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not allow auxiliary effect on session other than 0
|
|
|
|
if ((desc->flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY &&
|
|
|
|
sessionId != 0) {
|
|
|
|
LOGW("createEffect_l() Cannot add auxiliary effect %s to session %d", desc->name, sessionId);
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not allow effects with session ID 0 on direct output or duplicating threads
|
|
|
|
// TODO: add rule for hw accelerated effects on direct outputs with non PCM format
|
|
|
|
if (sessionId == 0 && mType != MIXER) {
|
|
|
|
LOGW("createEffect_l() Cannot add auxiliary effect %s to session %d", desc->name, sessionId);
|
|
|
|
lStatus = BAD_VALUE;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOGV("createEffect_l() thread %p effect %s on session %d", this, desc->name, sessionId);
|
|
|
|
|
|
|
|
{ // scope for mLock
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
// check for existing effect chain with the requested audio session
|
|
|
|
chain = getEffectChain_l(sessionId);
|
|
|
|
if (chain == 0) {
|
|
|
|
// create a new chain for this session
|
|
|
|
LOGV("createEffect_l() new effect chain for session %d", sessionId);
|
|
|
|
chain = new EffectChain(this, sessionId);
|
|
|
|
addEffectChain_l(chain);
|
|
|
|
} else {
|
|
|
|
effect = chain->getEffectFromDesc(desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
LOGV("createEffect_l() got effect %p on chain %p", effect == 0 ? 0 : effect.get(), chain.get());
|
|
|
|
|
|
|
|
if (effect == 0) {
|
|
|
|
// create a new effect module if none present in the chain
|
|
|
|
effectCreated = true;
|
|
|
|
effect = new EffectModule(this, chain, desc, mAudioFlinger->nextUniqueId(), sessionId);
|
|
|
|
lStatus = effect->status();
|
|
|
|
if (lStatus != NO_ERROR) {
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
//TODO: handle CPU load and memory usage here
|
|
|
|
lStatus = chain->addEffect(effect);
|
|
|
|
if (lStatus != NO_ERROR) {
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
effect->setDevice(mDevice);
|
|
|
|
}
|
|
|
|
// create effect handle and connect it to effect module
|
|
|
|
handle = new EffectHandle(effect, client, effectClient, priority);
|
|
|
|
lStatus = effect->addHandle(handle);
|
|
|
|
if (enabled) {
|
|
|
|
*enabled = (int)effect->isEnabled();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
if (lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) {
|
|
|
|
if (chain != 0 && effectCreated) {
|
|
|
|
if (chain->removeEffect(effect) == 0) {
|
|
|
|
removeEffectChain_l(chain);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
handle.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(status) {
|
|
|
|
*status = lStatus;
|
|
|
|
}
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::PlaybackThread::addEffectChain_l(const sp<EffectChain>& chain)
|
|
|
|
{
|
|
|
|
int session = chain->sessionId();
|
|
|
|
int16_t *buffer = mMixBuffer;
|
|
|
|
|
|
|
|
LOGV("addEffectChain_l() %p on thread %p for session %d", chain.get(), this, session);
|
|
|
|
if (session == 0) {
|
|
|
|
chain->setInBuffer(buffer, false);
|
|
|
|
chain->setOutBuffer(buffer);
|
|
|
|
// Effect chain for session 0 is inserted at end of effect chains list
|
|
|
|
// to be processed last as it contains output mix effects to apply after
|
|
|
|
// all track specific effects
|
|
|
|
mEffectChains.add(chain);
|
|
|
|
} else {
|
|
|
|
bool ownsBuffer = false;
|
|
|
|
// Only one effect chain can be present in direct output thread and it uses
|
|
|
|
// the mix buffer as input
|
|
|
|
if (mType != DIRECT) {
|
|
|
|
size_t numSamples = mFrameCount * mChannelCount;
|
|
|
|
buffer = new int16_t[numSamples];
|
|
|
|
memset(buffer, 0, numSamples * sizeof(int16_t));
|
|
|
|
LOGV("addEffectChain_l() creating new input buffer %p session %d", buffer, session);
|
|
|
|
ownsBuffer = true;
|
|
|
|
}
|
|
|
|
chain->setInBuffer(buffer, ownsBuffer);
|
|
|
|
chain->setOutBuffer(mMixBuffer);
|
|
|
|
// Effect chain for session other than 0 is inserted at beginning of effect
|
|
|
|
// chains list to be processed before output mix effects. Relative order between
|
|
|
|
// sessions other than 0 is not important
|
|
|
|
mEffectChains.insertAt(chain, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attach all tracks with same session ID to this chain.
|
|
|
|
for (size_t i = 0; i < mTracks.size(); ++i) {
|
|
|
|
sp<Track> track = mTracks[i];
|
|
|
|
if (session == track->sessionId()) {
|
|
|
|
LOGV("addEffectChain_l() track->setMainBuffer track %p buffer %p", track.get(), buffer);
|
|
|
|
track->setMainBuffer(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// indicate all active tracks in the chain
|
|
|
|
for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
|
|
|
|
sp<Track> track = mActiveTracks[i].promote();
|
|
|
|
if (track == 0) continue;
|
|
|
|
if (session == track->sessionId()) {
|
|
|
|
LOGV("addEffectChain_l() activating track %p on session %d", track.get(), session);
|
|
|
|
chain->startTrack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t AudioFlinger::PlaybackThread::removeEffectChain_l(const sp<EffectChain>& chain)
|
|
|
|
{
|
|
|
|
int session = chain->sessionId();
|
|
|
|
|
|
|
|
LOGV("removeEffectChain_l() %p from thread %p for session %d", chain.get(), this, session);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < mEffectChains.size(); i++) {
|
|
|
|
if (chain == mEffectChains[i]) {
|
|
|
|
mEffectChains.removeAt(i);
|
|
|
|
// detach all tracks with same session ID from this chain
|
|
|
|
for (size_t i = 0; i < mTracks.size(); ++i) {
|
|
|
|
sp<Track> track = mTracks[i];
|
|
|
|
if (session == track->sessionId()) {
|
|
|
|
track->setMainBuffer(mMixBuffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return mEffectChains.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::PlaybackThread::lockEffectChains_l()
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < mEffectChains.size(); i++) {
|
|
|
|
mEffectChains[i]->lock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::PlaybackThread::unlockEffectChains()
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
for (size_t i = 0; i < mEffectChains.size(); i++) {
|
|
|
|
mEffectChains[i]->unlock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<AudioFlinger::EffectModule> AudioFlinger::PlaybackThread::getEffect_l(int sessionId, int effectId)
|
|
|
|
{
|
|
|
|
sp<EffectModule> effect;
|
|
|
|
|
|
|
|
sp<EffectChain> chain = getEffectChain_l(sessionId);
|
|
|
|
if (chain != 0) {
|
|
|
|
effect = chain->getEffectFromId(effectId);
|
|
|
|
}
|
|
|
|
return effect;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::PlaybackThread::attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
return attachAuxEffect_l(track, EffectId);
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::PlaybackThread::attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
|
|
|
|
{
|
|
|
|
status_t status = NO_ERROR;
|
|
|
|
|
|
|
|
if (EffectId == 0) {
|
|
|
|
track->setAuxBuffer(0, NULL);
|
|
|
|
} else {
|
|
|
|
// Auxiliary effects are always in audio session 0
|
|
|
|
sp<EffectModule> effect = getEffect_l(0, EffectId);
|
|
|
|
if (effect != 0) {
|
|
|
|
if ((effect->desc().flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
track->setAuxBuffer(EffectId, (int32_t *)effect->inBuffer());
|
|
|
|
} else {
|
|
|
|
status = INVALID_OPERATION;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
status = BAD_VALUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < mTracks.size(); ++i) {
|
|
|
|
sp<Track> track = mTracks[i];
|
|
|
|
if (track->auxEffectId() == effectId) {
|
|
|
|
attachAuxEffect_l(track, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// EffectModule implementation
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#undef LOG_TAG
|
|
|
|
#define LOG_TAG "AudioFlinger::EffectModule"
|
|
|
|
|
|
|
|
AudioFlinger::EffectModule::EffectModule(const wp<ThreadBase>& wThread,
|
|
|
|
const wp<AudioFlinger::EffectChain>& chain,
|
|
|
|
effect_descriptor_t *desc,
|
|
|
|
int id,
|
|
|
|
int sessionId)
|
|
|
|
: mThread(wThread), mChain(chain), mId(id), mSessionId(sessionId), mEffectInterface(NULL),
|
|
|
|
mStatus(NO_INIT), mState(IDLE)
|
|
|
|
{
|
|
|
|
LOGV("Constructor %p", this);
|
|
|
|
int lStatus;
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PlaybackThread *p = (PlaybackThread *)thread.get();
|
|
|
|
|
|
|
|
memcpy(&mDescriptor, desc, sizeof(effect_descriptor_t));
|
|
|
|
|
|
|
|
// create effect engine from effect factory
|
|
|
|
mStatus = EffectCreate(&desc->uuid, &mEffectInterface);
|
|
|
|
if (mStatus != NO_ERROR) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
lStatus = init();
|
|
|
|
if (lStatus < 0) {
|
|
|
|
mStatus = lStatus;
|
|
|
|
goto Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOGV("Constructor success name %s, Interface %p", mDescriptor.name, mEffectInterface);
|
|
|
|
return;
|
|
|
|
Error:
|
|
|
|
EffectRelease(mEffectInterface);
|
|
|
|
mEffectInterface = NULL;
|
|
|
|
LOGV("Constructor Error %d", mStatus);
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioFlinger::EffectModule::~EffectModule()
|
|
|
|
{
|
|
|
|
LOGV("Destructor %p", this);
|
|
|
|
if (mEffectInterface != NULL) {
|
|
|
|
// release effect engine
|
|
|
|
EffectRelease(mEffectInterface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectModule::addHandle(sp<EffectHandle>& handle)
|
|
|
|
{
|
|
|
|
status_t status;
|
|
|
|
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
// First handle in mHandles has highest priority and controls the effect module
|
|
|
|
int priority = handle->priority();
|
|
|
|
size_t size = mHandles.size();
|
|
|
|
sp<EffectHandle> h;
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
h = mHandles[i].promote();
|
|
|
|
if (h == 0) continue;
|
|
|
|
if (h->priority() <= priority) break;
|
|
|
|
}
|
|
|
|
// if inserted in first place, move effect control from previous owner to this handle
|
|
|
|
if (i == 0) {
|
|
|
|
if (h != 0) {
|
|
|
|
h->setControl(false, true);
|
|
|
|
}
|
|
|
|
handle->setControl(true, false);
|
|
|
|
status = NO_ERROR;
|
|
|
|
} else {
|
|
|
|
status = ALREADY_EXISTS;
|
|
|
|
}
|
|
|
|
mHandles.insertAt(handle, i);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t AudioFlinger::EffectModule::removeHandle(const wp<EffectHandle>& handle)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
size_t size = mHandles.size();
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
if (mHandles[i] == handle) break;
|
|
|
|
}
|
|
|
|
if (i == size) {
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
mHandles.removeAt(i);
|
|
|
|
size = mHandles.size();
|
|
|
|
// if removed from first place, move effect control from this handle to next in line
|
|
|
|
if (i == 0 && size != 0) {
|
|
|
|
sp<EffectHandle> h = mHandles[0].promote();
|
|
|
|
if (h != 0) {
|
|
|
|
h->setControl(true, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::EffectModule::disconnect(const wp<EffectHandle>& handle)
|
|
|
|
{
|
|
|
|
// keep a strong reference on this EffectModule to avoid calling the
|
|
|
|
// destructor before we exit
|
|
|
|
sp<EffectModule> keep(this);
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
Mutex::Autolock _l(thread->mLock);
|
|
|
|
// delete the effect module if removing last handle on it
|
|
|
|
if (removeHandle(handle) == 0) {
|
|
|
|
PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
|
|
|
|
if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
playbackThread->detachAuxEffect_l(mId);
|
|
|
|
}
|
|
|
|
sp<EffectChain> chain = mChain.promote();
|
|
|
|
if (chain != 0) {
|
|
|
|
// remove effect chain if remove last effect
|
|
|
|
if (chain->removeEffect(keep) == 0) {
|
|
|
|
playbackThread->removeEffectChain_l(chain);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::EffectModule::process()
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
if (mEffectInterface == NULL || mConfig.inputCfg.buffer.raw == NULL || mConfig.outputCfg.buffer.raw == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mState != IDLE) {
|
|
|
|
// do 32 bit to 16 bit conversion for auxiliary effect input buffer
|
|
|
|
if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
AudioMixer::ditherAndClamp(mConfig.inputCfg.buffer.s32,
|
|
|
|
mConfig.inputCfg.buffer.s32,
|
|
|
|
mConfig.inputCfg.buffer.frameCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: handle effects with buffer provider
|
|
|
|
if (mState != ACTIVE) {
|
|
|
|
uint32_t count = mConfig.inputCfg.buffer.frameCount;
|
|
|
|
int32_t amp = 32767L << 16;
|
|
|
|
int32_t step = amp / count;
|
|
|
|
int16_t *pIn = mConfig.inputCfg.buffer.s16;
|
|
|
|
int16_t *pOut = mConfig.outputCfg.buffer.s16;
|
|
|
|
int inChannels;
|
|
|
|
int outChannels;
|
|
|
|
|
|
|
|
if (mConfig.inputCfg.channels == CHANNEL_MONO) {
|
|
|
|
inChannels = 1;
|
|
|
|
} else {
|
|
|
|
inChannels = 2;
|
|
|
|
}
|
|
|
|
if (mConfig.outputCfg.channels == CHANNEL_MONO) {
|
|
|
|
outChannels = 1;
|
|
|
|
} else {
|
|
|
|
outChannels = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (mState) {
|
|
|
|
case RESET:
|
|
|
|
reset();
|
|
|
|
// clear auxiliary effect input buffer for next accumulation
|
|
|
|
if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
memset(mConfig.inputCfg.buffer.raw, 0, mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
|
|
|
|
}
|
|
|
|
step = -step;
|
|
|
|
mState = STARTING;
|
|
|
|
break;
|
|
|
|
case STARTING:
|
|
|
|
start();
|
|
|
|
amp = 0;
|
|
|
|
pOut = mConfig.inputCfg.buffer.s16;
|
|
|
|
outChannels = inChannels;
|
|
|
|
mState = ACTIVE;
|
|
|
|
break;
|
|
|
|
case STOPPING:
|
|
|
|
step = -step;
|
|
|
|
pOut = mConfig.inputCfg.buffer.s16;
|
|
|
|
outChannels = inChannels;
|
|
|
|
mState = STOPPED;
|
|
|
|
break;
|
|
|
|
case STOPPED:
|
|
|
|
stop();
|
|
|
|
amp = 0;
|
|
|
|
mState = IDLE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ramp volume down or up before activating or deactivating the effect
|
|
|
|
if (inChannels == 1) {
|
|
|
|
if (outChannels == 1) {
|
|
|
|
while (count--) {
|
|
|
|
*pOut++ = (int16_t)(((int32_t)*pIn++ * (amp >> 16)) >> 15);
|
|
|
|
amp += step;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while (count--) {
|
|
|
|
int32_t smp = (int16_t)(((int32_t)*pIn++ * (amp >> 16)) >> 15);
|
|
|
|
*pOut++ = smp;
|
|
|
|
*pOut++ = smp;
|
|
|
|
amp += step;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (outChannels == 1) {
|
|
|
|
while (count--) {
|
|
|
|
int32_t smp = (((int32_t)*pIn * (amp >> 16)) >> 16) +
|
|
|
|
(((int32_t)*(pIn + 1) * (amp >> 16)) >> 16);
|
|
|
|
pIn += 2;
|
|
|
|
*pOut++ = (int16_t)smp;
|
|
|
|
amp += step;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while (count--) {
|
|
|
|
*pOut++ = (int16_t)((int32_t)*pIn++ * (amp >> 16)) >> 15;
|
|
|
|
*pOut++ = (int16_t)((int32_t)*pIn++ * (amp >> 16)) >> 15;
|
|
|
|
amp += step;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mState == STARTING || mState == IDLE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// do the actual processing in the effect engine
|
|
|
|
(*mEffectInterface)->process(mEffectInterface, &mConfig.inputCfg.buffer, &mConfig.outputCfg.buffer);
|
|
|
|
|
|
|
|
// clear auxiliary effect input buffer for next accumulation
|
|
|
|
if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
memset(mConfig.inputCfg.buffer.raw, 0, mConfig.inputCfg.buffer.frameCount*sizeof(int32_t));
|
|
|
|
}
|
|
|
|
} else if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_INSERT &&
|
|
|
|
mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw){
|
|
|
|
// If an insert effect is idle and input buffer is different from output buffer, copy input to
|
|
|
|
// output
|
|
|
|
sp<EffectChain> chain = mChain.promote();
|
|
|
|
if (chain != 0 && chain->activeTracks() != 0) {
|
|
|
|
size_t size = mConfig.inputCfg.buffer.frameCount * sizeof(int16_t);
|
|
|
|
if (mConfig.inputCfg.channels == CHANNEL_STEREO) {
|
|
|
|
size *= 2;
|
|
|
|
}
|
|
|
|
memcpy(mConfig.outputCfg.buffer.raw, mConfig.inputCfg.buffer.raw, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::EffectModule::reset()
|
|
|
|
{
|
|
|
|
if (mEffectInterface == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
(*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_RESET, 0, NULL, 0, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectModule::configure()
|
|
|
|
{
|
|
|
|
uint32_t channels;
|
|
|
|
if (mEffectInterface == NULL) {
|
|
|
|
return NO_INIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread == 0) {
|
|
|
|
return DEAD_OBJECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: handle configuration of effects replacing track process
|
|
|
|
if (thread->channelCount() == 1) {
|
|
|
|
channels = CHANNEL_MONO;
|
|
|
|
} else {
|
|
|
|
channels = CHANNEL_STEREO;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((mDescriptor.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
mConfig.inputCfg.channels = CHANNEL_MONO;
|
|
|
|
} else {
|
|
|
|
mConfig.inputCfg.channels = channels;
|
|
|
|
}
|
|
|
|
mConfig.outputCfg.channels = channels;
|
|
|
|
mConfig.inputCfg.format = PCM_FORMAT_S15;
|
|
|
|
mConfig.outputCfg.format = PCM_FORMAT_S15;
|
|
|
|
mConfig.inputCfg.samplingRate = thread->sampleRate();
|
|
|
|
mConfig.outputCfg.samplingRate = mConfig.inputCfg.samplingRate;
|
|
|
|
mConfig.inputCfg.bufferProvider.cookie = NULL;
|
|
|
|
mConfig.inputCfg.bufferProvider.getBuffer = NULL;
|
|
|
|
mConfig.inputCfg.bufferProvider.releaseBuffer = NULL;
|
|
|
|
mConfig.outputCfg.bufferProvider.cookie = NULL;
|
|
|
|
mConfig.outputCfg.bufferProvider.getBuffer = NULL;
|
|
|
|
mConfig.outputCfg.bufferProvider.releaseBuffer = NULL;
|
|
|
|
mConfig.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
|
|
|
|
// Insert effect:
|
|
|
|
// - in session 0, always overwrites output buffer: input buffer == output buffer
|
|
|
|
// - in other sessions:
|
|
|
|
// last effect in the chain accumulates in output buffer: input buffer != output buffer
|
|
|
|
// other effect: overwrites output buffer: input buffer == output buffer
|
|
|
|
// Auxiliary effect:
|
|
|
|
// accumulates in output buffer: input buffer != output buffer
|
|
|
|
// Therefore: accumulate <=> input buffer != output buffer
|
|
|
|
if (mConfig.inputCfg.buffer.raw != mConfig.outputCfg.buffer.raw) {
|
|
|
|
mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
|
|
|
|
} else {
|
|
|
|
mConfig.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_WRITE;
|
|
|
|
}
|
|
|
|
mConfig.inputCfg.mask = EFFECT_CONFIG_ALL;
|
|
|
|
mConfig.outputCfg.mask = EFFECT_CONFIG_ALL;
|
|
|
|
mConfig.inputCfg.buffer.frameCount = thread->frameCount();
|
|
|
|
mConfig.outputCfg.buffer.frameCount = mConfig.inputCfg.buffer.frameCount;
|
|
|
|
|
|
|
|
status_t cmdStatus;
|
|
|
|
int size = sizeof(int);
|
|
|
|
status_t status = (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_CONFIGURE, sizeof(effect_config_t), &mConfig, &size, &cmdStatus);
|
|
|
|
if (status == 0) {
|
|
|
|
status = cmdStatus;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectModule::init()
|
|
|
|
{
|
|
|
|
if (mEffectInterface == NULL) {
|
|
|
|
return NO_INIT;
|
|
|
|
}
|
|
|
|
status_t cmdStatus;
|
|
|
|
int size = sizeof(status_t);
|
|
|
|
status_t status = (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_INIT, 0, NULL, &size, &cmdStatus);
|
|
|
|
if (status == 0) {
|
|
|
|
status = cmdStatus;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectModule::start()
|
|
|
|
{
|
|
|
|
if (mEffectInterface == NULL) {
|
|
|
|
return NO_INIT;
|
|
|
|
}
|
|
|
|
status_t cmdStatus;
|
|
|
|
int size = sizeof(status_t);
|
|
|
|
status_t status = (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_ENABLE, 0, NULL, &size, &cmdStatus);
|
|
|
|
if (status == 0) {
|
|
|
|
status = cmdStatus;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectModule::stop()
|
|
|
|
{
|
|
|
|
if (mEffectInterface == NULL) {
|
|
|
|
return NO_INIT;
|
|
|
|
}
|
|
|
|
status_t cmdStatus;
|
|
|
|
int size = sizeof(status_t);
|
|
|
|
status_t status = (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_DISABLE, 0, NULL, &size, &cmdStatus);
|
|
|
|
if (status == 0) {
|
|
|
|
status = cmdStatus;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectModule::command(int cmdCode, int cmdSize, void *pCmdData, int *replySize, void *pReplyData)
|
|
|
|
{
|
|
|
|
LOGV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface);
|
|
|
|
|
|
|
|
if (mEffectInterface == NULL) {
|
|
|
|
return NO_INIT;
|
|
|
|
}
|
|
|
|
status_t status = (*mEffectInterface)->command(mEffectInterface, cmdCode, cmdSize, pCmdData, replySize, pReplyData);
|
|
|
|
if (cmdCode != EFFECT_CMD_GET_PARAM && status == NO_ERROR) {
|
|
|
|
int size = (replySize == NULL) ? 0 : *replySize;
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
for (size_t i = 1; i < mHandles.size(); i++) {
|
|
|
|
sp<EffectHandle> h = mHandles[i].promote();
|
|
|
|
if (h != 0) {
|
|
|
|
h->commandExecuted(cmdCode, cmdSize, pCmdData, size, pReplyData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
LOGV("setEnabled %p enabled %d", this, enabled);
|
|
|
|
|
|
|
|
if (enabled != isEnabled()) {
|
|
|
|
switch (mState) {
|
|
|
|
// going from disabled to enabled
|
|
|
|
case IDLE:
|
|
|
|
mState = RESET;
|
|
|
|
break;
|
|
|
|
case STOPPING:
|
|
|
|
mState = ACTIVE;
|
|
|
|
break;
|
|
|
|
case STOPPED:
|
|
|
|
mState = STARTING;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// going from enabled to disabled
|
|
|
|
case RESET:
|
|
|
|
mState = IDLE;
|
|
|
|
break;
|
|
|
|
case STARTING:
|
|
|
|
mState = STOPPED;
|
|
|
|
break;
|
|
|
|
case ACTIVE:
|
|
|
|
mState = STOPPING;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (size_t i = 1; i < mHandles.size(); i++) {
|
|
|
|
sp<EffectHandle> h = mHandles[i].promote();
|
|
|
|
if (h != 0) {
|
|
|
|
h->setEnabled(enabled);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioFlinger::EffectModule::isEnabled()
|
|
|
|
{
|
|
|
|
switch (mState) {
|
|
|
|
case RESET:
|
|
|
|
case STARTING:
|
|
|
|
case ACTIVE:
|
|
|
|
return true;
|
|
|
|
case IDLE:
|
|
|
|
case STOPPING:
|
|
|
|
case STOPPED:
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
|
|
|
|
{
|
|
|
|
status_t status = NO_ERROR;
|
|
|
|
|
|
|
|
// Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
|
|
|
|
// if controller flag is set (Note that controller == TRUE => EFFECT_FLAG_VOLUME_CTRL set)
|
|
|
|
if ((mDescriptor.flags & EFFECT_FLAG_VOLUME_MASK) & (EFFECT_FLAG_VOLUME_CTRL|EFFECT_FLAG_VOLUME_IND)) {
|
|
|
|
status_t cmdStatus;
|
|
|
|
uint32_t volume[2];
|
|
|
|
uint32_t *pVolume = NULL;
|
|
|
|
int size = sizeof(volume);
|
|
|
|
volume[0] = *left;
|
|
|
|
volume[1] = *right;
|
|
|
|
if (controller) {
|
|
|
|
pVolume = volume;
|
|
|
|
}
|
|
|
|
status = (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_SET_VOLUME, size, volume, &size, pVolume);
|
|
|
|
if (controller && status == NO_ERROR && size == sizeof(volume)) {
|
|
|
|
*left = volume[0];
|
|
|
|
*right = volume[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectModule::setDevice(uint32_t device)
|
|
|
|
{
|
|
|
|
status_t status = NO_ERROR;
|
|
|
|
if ((mDescriptor.flags & EFFECT_FLAG_DEVICE_MASK) == EFFECT_FLAG_DEVICE_MASK) {
|
|
|
|
status_t cmdStatus;
|
|
|
|
int size = sizeof(status_t);
|
|
|
|
status = (*mEffectInterface)->command(mEffectInterface, EFFECT_CMD_SET_DEVICE, sizeof(uint32_t), &device, &size, &cmdStatus);
|
|
|
|
if (status == NO_ERROR) {
|
|
|
|
status = cmdStatus;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args)
|
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
|
|
|
|
|
|
|
snprintf(buffer, SIZE, "\tEffect ID %d:\n", mId);
|
|
|
|
result.append(buffer);
|
|
|
|
|
|
|
|
bool locked = tryLock(mLock);
|
|
|
|
// failed to lock - AudioFlinger is probably deadlocked
|
|
|
|
if (!locked) {
|
|
|
|
result.append("\t\tCould not lock Fx mutex:\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
result.append("\t\tSession Status State Engine:\n");
|
|
|
|
snprintf(buffer, SIZE, "\t\t%05d %03d %03d 0x%08x\n",
|
|
|
|
mSessionId, mStatus, mState, (uint32_t)mEffectInterface);
|
|
|
|
result.append(buffer);
|
|
|
|
|
|
|
|
result.append("\t\tDescriptor:\n");
|
|
|
|
snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
|
|
|
|
mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
|
|
|
|
mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],mDescriptor.uuid.node[2],
|
|
|
|
mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "\t\t- TYPE: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
|
|
|
|
mDescriptor.type.timeLow, mDescriptor.type.timeMid, mDescriptor.type.timeHiAndVersion,
|
|
|
|
mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],mDescriptor.type.node[2],
|
|
|
|
mDescriptor.type.node[3],mDescriptor.type.node[4],mDescriptor.type.node[5]);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "\t\t- apiVersion: %04X\n\t\t- flags: %08X\n",
|
|
|
|
mDescriptor.apiVersion,
|
|
|
|
mDescriptor.flags);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "\t\t- name: %s\n",
|
|
|
|
mDescriptor.name);
|
|
|
|
result.append(buffer);
|
|
|
|
snprintf(buffer, SIZE, "\t\t- implementor: %s\n",
|
|
|
|
mDescriptor.implementor);
|
|
|
|
result.append(buffer);
|
|
|
|
|
|
|
|
result.append("\t\t- Input configuration:\n");
|
|
|
|
result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
|
|
|
|
snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
|
|
|
|
(uint32_t)mConfig.inputCfg.buffer.raw,
|
|
|
|
mConfig.inputCfg.buffer.frameCount,
|
|
|
|
mConfig.inputCfg.samplingRate,
|
|
|
|
mConfig.inputCfg.channels,
|
|
|
|
mConfig.inputCfg.format);
|
|
|
|
result.append(buffer);
|
|
|
|
|
|
|
|
result.append("\t\t- Output configuration:\n");
|
|
|
|
result.append("\t\t\tBuffer Frames Smp rate Channels Format\n");
|
|
|
|
snprintf(buffer, SIZE, "\t\t\t0x%08x %05d %05d %08x %d\n",
|
|
|
|
(uint32_t)mConfig.outputCfg.buffer.raw,
|
|
|
|
mConfig.outputCfg.buffer.frameCount,
|
|
|
|
mConfig.outputCfg.samplingRate,
|
|
|
|
mConfig.outputCfg.channels,
|
|
|
|
mConfig.outputCfg.format);
|
|
|
|
result.append(buffer);
|
|
|
|
|
|
|
|
snprintf(buffer, SIZE, "\t\t%d Clients:\n", mHandles.size());
|
|
|
|
result.append(buffer);
|
|
|
|
result.append("\t\t\tPid Priority Ctrl Locked client server\n");
|
|
|
|
for (size_t i = 0; i < mHandles.size(); ++i) {
|
|
|
|
sp<EffectHandle> handle = mHandles[i].promote();
|
|
|
|
if (handle != 0) {
|
|
|
|
handle->dump(buffer, SIZE);
|
|
|
|
result.append(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result.append("\n");
|
|
|
|
|
|
|
|
write(fd, result.string(), result.length());
|
|
|
|
|
|
|
|
if (locked) {
|
|
|
|
mLock.unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// EffectHandle implementation
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#undef LOG_TAG
|
|
|
|
#define LOG_TAG "AudioFlinger::EffectHandle"
|
|
|
|
|
|
|
|
AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
|
|
|
|
const sp<AudioFlinger::Client>& client,
|
|
|
|
const sp<IEffectClient>& effectClient,
|
|
|
|
int32_t priority)
|
|
|
|
: BnEffect(),
|
|
|
|
mEffect(effect), mEffectClient(effectClient), mClient(client), mPriority(priority), mHasControl(false)
|
|
|
|
{
|
|
|
|
LOGV("constructor %p", this);
|
|
|
|
|
|
|
|
int bufOffset = ((sizeof(effect_param_cblk_t) - 1) / sizeof(int) + 1) * sizeof(int);
|
|
|
|
mCblkMemory = client->heap()->allocate(EFFECT_PARAM_BUFFER_SIZE + bufOffset);
|
|
|
|
if (mCblkMemory != 0) {
|
|
|
|
mCblk = static_cast<effect_param_cblk_t *>(mCblkMemory->pointer());
|
|
|
|
|
|
|
|
if (mCblk) {
|
|
|
|
new(mCblk) effect_param_cblk_t();
|
|
|
|
mBuffer = (uint8_t *)mCblk + bufOffset;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LOGE("not enough memory for Effect size=%u", EFFECT_PARAM_BUFFER_SIZE + sizeof(effect_param_cblk_t));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioFlinger::EffectHandle::~EffectHandle()
|
|
|
|
{
|
|
|
|
LOGV("Destructor %p", this);
|
|
|
|
disconnect();
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectHandle::enable()
|
|
|
|
{
|
|
|
|
if (!mHasControl) return INVALID_OPERATION;
|
|
|
|
if (mEffect == 0) return DEAD_OBJECT;
|
|
|
|
|
|
|
|
return mEffect->setEnabled(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectHandle::disable()
|
|
|
|
{
|
|
|
|
if (!mHasControl) return INVALID_OPERATION;
|
|
|
|
if (mEffect == NULL) return DEAD_OBJECT;
|
|
|
|
|
|
|
|
return mEffect->setEnabled(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::EffectHandle::disconnect()
|
|
|
|
{
|
|
|
|
if (mEffect == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mEffect->disconnect(this);
|
|
|
|
// release sp on module => module destructor can be called now
|
|
|
|
mEffect.clear();
|
|
|
|
if (mCblk) {
|
|
|
|
mCblk->~effect_param_cblk_t(); // destroy our shared-structure.
|
|
|
|
}
|
|
|
|
mCblkMemory.clear(); // and free the shared memory
|
|
|
|
if (mClient != 0) {
|
|
|
|
Mutex::Autolock _l(mClient->audioFlinger()->mLock);
|
|
|
|
mClient.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectHandle::command(int cmdCode, int cmdSize, void *pCmdData, int *replySize, void *pReplyData)
|
|
|
|
{
|
|
|
|
LOGV("command(), cmdCode: %d, mHasControl: %d, mEffect: %p", cmdCode, mHasControl, (mEffect == 0) ? 0 : mEffect.get());
|
|
|
|
|
|
|
|
// only get parameter command is permitted for applications not controlling the effect
|
|
|
|
if (!mHasControl && cmdCode != EFFECT_CMD_GET_PARAM) {
|
|
|
|
return INVALID_OPERATION;
|
|
|
|
}
|
|
|
|
if (mEffect == 0) return DEAD_OBJECT;
|
|
|
|
|
|
|
|
// handle commands that are not forwarded transparently to effect engine
|
|
|
|
if (cmdCode == EFFECT_CMD_SET_PARAM_COMMIT) {
|
|
|
|
// No need to trylock() here as this function is executed in the binder thread serving a particular client process:
|
|
|
|
// no risk to block the whole media server process or mixer threads is we are stuck here
|
|
|
|
Mutex::Autolock _l(mCblk->lock);
|
|
|
|
if (mCblk->clientIndex > EFFECT_PARAM_BUFFER_SIZE ||
|
|
|
|
mCblk->serverIndex > EFFECT_PARAM_BUFFER_SIZE) {
|
|
|
|
mCblk->serverIndex = 0;
|
|
|
|
mCblk->clientIndex = 0;
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
status_t status = NO_ERROR;
|
|
|
|
while (mCblk->serverIndex < mCblk->clientIndex) {
|
|
|
|
int reply;
|
|
|
|
int rsize = sizeof(int);
|
|
|
|
int *p = (int *)(mBuffer + mCblk->serverIndex);
|
|
|
|
int size = *p++;
|
|
|
|
effect_param_t *param = (effect_param_t *)p;
|
|
|
|
int psize = sizeof(effect_param_t) + ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) + param->vsize;
|
|
|
|
status_t ret = mEffect->command(EFFECT_CMD_SET_PARAM, psize, p, &rsize, &reply);
|
|
|
|
if (ret == NO_ERROR) {
|
|
|
|
if (reply != NO_ERROR) {
|
|
|
|
status = reply;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
status = ret;
|
|
|
|
}
|
|
|
|
mCblk->serverIndex += size;
|
|
|
|
}
|
|
|
|
mCblk->serverIndex = 0;
|
|
|
|
mCblk->clientIndex = 0;
|
|
|
|
return status;
|
|
|
|
} else if (cmdCode == EFFECT_CMD_ENABLE) {
|
|
|
|
return enable();
|
|
|
|
} else if (cmdCode == EFFECT_CMD_DISABLE) {
|
|
|
|
return disable();
|
|
|
|
}
|
|
|
|
|
|
|
|
return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<IMemory> AudioFlinger::EffectHandle::getCblk() const {
|
|
|
|
return mCblkMemory;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal)
|
|
|
|
{
|
|
|
|
LOGV("setControl %p control %d", this, hasControl);
|
|
|
|
|
|
|
|
mHasControl = hasControl;
|
|
|
|
if (signal && mEffectClient != 0) {
|
|
|
|
mEffectClient->controlStatusChanged(hasControl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::EffectHandle::commandExecuted(int cmdCode, int cmdSize, void *pCmdData, int replySize, void *pReplyData)
|
|
|
|
{
|
|
|
|
if (mEffectClient != 0) {
|
|
|
|
mEffectClient->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void AudioFlinger::EffectHandle::setEnabled(bool enabled)
|
|
|
|
{
|
|
|
|
if (mEffectClient != 0) {
|
|
|
|
mEffectClient->enableStatusChanged(enabled);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectHandle::onTransact(
|
|
|
|
uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
|
|
|
|
{
|
|
|
|
return BnEffect::onTransact(code, data, reply, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AudioFlinger::EffectHandle::dump(char* buffer, size_t size)
|
|
|
|
{
|
|
|
|
bool locked = tryLock(mCblk->lock);
|
|
|
|
|
|
|
|
snprintf(buffer, size, "\t\t\t%05d %05d %01u %01u %05u %05u\n",
|
|
|
|
(mClient == NULL) ? getpid() : mClient->pid(),
|
|
|
|
mPriority,
|
|
|
|
mHasControl,
|
|
|
|
!locked,
|
|
|
|
mCblk->clientIndex,
|
|
|
|
mCblk->serverIndex
|
|
|
|
);
|
|
|
|
|
|
|
|
if (locked) {
|
|
|
|
mCblk->lock.unlock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef LOG_TAG
|
|
|
|
#define LOG_TAG "AudioFlinger::EffectChain"
|
|
|
|
|
|
|
|
AudioFlinger::EffectChain::EffectChain(const wp<ThreadBase>& wThread,
|
|
|
|
int sessionId)
|
|
|
|
: mThread(wThread), mSessionId(sessionId), mVolumeCtrlIdx(-1), mActiveTrackCnt(0), mOwnInBuffer(false)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioFlinger::EffectChain::~EffectChain()
|
|
|
|
{
|
|
|
|
if (mOwnInBuffer) {
|
|
|
|
delete mInBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc(effect_descriptor_t *descriptor)
|
|
|
|
{
|
|
|
|
sp<EffectModule> effect;
|
|
|
|
size_t size = mEffects.size();
|
|
|
|
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
|
|
|
|
effect = mEffects[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return effect;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId(int id)
|
|
|
|
{
|
|
|
|
sp<EffectModule> effect;
|
|
|
|
size_t size = mEffects.size();
|
|
|
|
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
if (mEffects[i]->id() == id) {
|
|
|
|
effect = mEffects[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return effect;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Must be called with EffectChain::mLock locked
|
|
|
|
void AudioFlinger::EffectChain::process_l()
|
|
|
|
{
|
|
|
|
size_t size = mEffects.size();
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
mEffects[i]->process();
|
|
|
|
}
|
|
|
|
// if no track is active, input buffer must be cleared here as the mixer process
|
|
|
|
// will not do it
|
|
|
|
if (mSessionId != 0 && activeTracks() == 0) {
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread != 0) {
|
|
|
|
size_t numSamples = thread->frameCount() * thread->channelCount();
|
|
|
|
memset(mInBuffer, 0, numSamples * sizeof(int16_t));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectChain::addEffect(sp<EffectModule>& effect)
|
|
|
|
{
|
|
|
|
effect_descriptor_t desc = effect->desc();
|
|
|
|
uint32_t insertPref = desc.flags & EFFECT_FLAG_INSERT_MASK;
|
|
|
|
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
// Auxiliary effects are inserted at the beginning of mEffects vector as
|
|
|
|
// they are processed first and accumulated in chain input buffer
|
|
|
|
mEffects.insertAt(effect, 0);
|
|
|
|
sp<ThreadBase> thread = mThread.promote();
|
|
|
|
if (thread == 0) {
|
|
|
|
return NO_INIT;
|
|
|
|
}
|
|
|
|
// the input buffer for auxiliary effect contains mono samples in
|
|
|
|
// 32 bit format. This is to avoid saturation in AudoMixer
|
|
|
|
// accumulation stage. Saturation is done in EffectModule::process() before
|
|
|
|
// calling the process in effect engine
|
|
|
|
size_t numSamples = thread->frameCount();
|
|
|
|
int32_t *buffer = new int32_t[numSamples];
|
|
|
|
memset(buffer, 0, numSamples * sizeof(int32_t));
|
|
|
|
effect->setInBuffer((int16_t *)buffer);
|
|
|
|
// auxiliary effects output samples to chain input buffer for further processing
|
|
|
|
// by insert effects
|
|
|
|
effect->setOutBuffer(mInBuffer);
|
|
|
|
} else {
|
|
|
|
// Insert effects are inserted at the end of mEffects vector as they are processed
|
|
|
|
// after track and auxiliary effects.
|
|
|
|
// Insert effect order:
|
|
|
|
// if EFFECT_FLAG_INSERT_FIRST or EFFECT_FLAG_INSERT_EXCLUSIVE insert as first insert effect
|
|
|
|
// else if EFFECT_FLAG_INSERT_ANY insert after first or before last
|
|
|
|
// else insert as last insert effect
|
|
|
|
// Reject insertion if:
|
|
|
|
// - EFFECT_FLAG_INSERT_EXCLUSIVE and another effect is present
|
|
|
|
// - an effect with EFFECT_FLAG_INSERT_EXCLUSIVE is present
|
|
|
|
// - EFFECT_FLAG_INSERT_FIRST or EFFECT_FLAG_INSERT_LAST and an effect with same
|
|
|
|
// preference is present
|
|
|
|
|
|
|
|
int size = (int)mEffects.size();
|
|
|
|
int idx_insert = size;
|
|
|
|
int idx_insert_first = -1;
|
|
|
|
int idx_insert_last = -1;
|
|
|
|
|
|
|
|
for (int i = 0; i < size; i++) {
|
|
|
|
effect_descriptor_t d = mEffects[i]->desc();
|
|
|
|
uint32_t iMode = d.flags & EFFECT_FLAG_TYPE_MASK;
|
|
|
|
uint32_t iPref = d.flags & EFFECT_FLAG_INSERT_MASK;
|
|
|
|
if (iMode == EFFECT_FLAG_TYPE_INSERT) {
|
|
|
|
// check invalid effect chaining combinations
|
|
|
|
if (insertPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
|
|
|
|
iPref == EFFECT_FLAG_INSERT_EXCLUSIVE ||
|
|
|
|
(insertPref != EFFECT_FLAG_INSERT_ANY
|
|
|
|
&& insertPref == iPref)) {
|
|
|
|
return INVALID_OPERATION;
|
|
|
|
}
|
|
|
|
// remember position of first insert effect
|
|
|
|
if (idx_insert == size) {
|
|
|
|
idx_insert = i;
|
|
|
|
}
|
|
|
|
// remember position of insert effect claiming
|
|
|
|
// first place
|
|
|
|
if (iPref == EFFECT_FLAG_INSERT_FIRST) {
|
|
|
|
idx_insert_first = i;
|
|
|
|
}
|
|
|
|
// remember position of insert effect claiming
|
|
|
|
// last place
|
|
|
|
if (iPref == EFFECT_FLAG_INSERT_LAST) {
|
|
|
|
idx_insert_last = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// modify idx_insert from first place if needed
|
|
|
|
if (idx_insert_first != -1) {
|
|
|
|
idx_insert = idx_insert_first + 1;
|
|
|
|
} else if (idx_insert_last != -1) {
|
|
|
|
idx_insert = idx_insert_last;
|
|
|
|
} else if (insertPref == EFFECT_FLAG_INSERT_LAST) {
|
|
|
|
idx_insert = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
// always read samples from chain input buffer
|
|
|
|
effect->setInBuffer(mInBuffer);
|
|
|
|
|
|
|
|
// if last effect in the chain, output samples to chain
|
|
|
|
// output buffer, otherwise to chain input buffer
|
|
|
|
if (idx_insert == size) {
|
|
|
|
if (idx_insert != 0) {
|
|
|
|
mEffects[idx_insert-1]->setOutBuffer(mInBuffer);
|
|
|
|
mEffects[idx_insert-1]->configure();
|
|
|
|
}
|
|
|
|
effect->setOutBuffer(mOutBuffer);
|
|
|
|
} else {
|
|
|
|
effect->setOutBuffer(mInBuffer);
|
|
|
|
}
|
|
|
|
status_t status = mEffects.insertAt(effect, idx_insert);
|
|
|
|
// Always give volume control to last effect in chain with volume control capability
|
|
|
|
if (((desc.flags & EFFECT_FLAG_VOLUME_MASK) & EFFECT_FLAG_VOLUME_CTRL) &&
|
|
|
|
mVolumeCtrlIdx < idx_insert) {
|
|
|
|
mVolumeCtrlIdx = idx_insert;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOGV("addEffect() effect %p, added in chain %p at rank %d status %d", effect.get(), this, idx_insert, status);
|
|
|
|
}
|
|
|
|
effect->configure();
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t AudioFlinger::EffectChain::removeEffect(const sp<EffectModule>& effect)
|
|
|
|
{
|
|
|
|
Mutex::Autolock _l(mLock);
|
|
|
|
|
|
|
|
int size = (int)mEffects.size();
|
|
|
|
int i;
|
|
|
|
uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK;
|
|
|
|
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
if (effect == mEffects[i]) {
|
|
|
|
if (type == EFFECT_FLAG_TYPE_AUXILIARY) {
|
|
|
|
delete[] effect->inBuffer();
|
|
|
|
} else {
|
|
|
|
if (i == size - 1 && i != 0) {
|
|
|
|
mEffects[i - 1]->setOutBuffer(mOutBuffer);
|
|
|
|
mEffects[i - 1]->configure();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mEffects.removeAt(i);
|
|
|
|
LOGV("removeEffect() effect %p, removed from chain %p at rank %d", effect.get(), this, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Return volume control to last effect in chain with volume control capability
|
|
|
|
if (mVolumeCtrlIdx == i) {
|
|
|
|
size = (int)mEffects.size();
|
|
|
|
for (i = size; i > 0; i--) {
|
|
|
|
if ((mEffects[i - 1]->desc().flags & EFFECT_FLAG_VOLUME_MASK) & EFFECT_FLAG_VOLUME_CTRL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// mVolumeCtrlIdx reset to -1 if no effect found with volume control flag set
|
|
|
|
mVolumeCtrlIdx = i - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mEffects.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioFlinger::EffectChain::setDevice(uint32_t device)
|
|
|
|
{
|
|
|
|
size_t size = mEffects.size();
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
mEffects[i]->setDevice(device);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioFlinger::EffectChain::setVolume(uint32_t *left, uint32_t *right)
|
|
|
|
{
|
|
|
|
uint32_t newLeft = *left;
|
|
|
|
uint32_t newRight = *right;
|
|
|
|
bool hasControl = false;
|
|
|
|
|
|
|
|
// first get volume update from volume controller
|
|
|
|
if (mVolumeCtrlIdx >= 0) {
|
|
|
|
mEffects[mVolumeCtrlIdx]->setVolume(&newLeft, &newRight, true);
|
|
|
|
hasControl = true;
|
|
|
|
}
|
|
|
|
// then indicate volume to all other effects in chain.
|
|
|
|
// Pass altered volume to effects before volume controller
|
|
|
|
// and requested volume to effects after controller
|
|
|
|
uint32_t lVol = newLeft;
|
|
|
|
uint32_t rVol = newRight;
|
|
|
|
size_t size = mEffects.size();
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
if ((int)i == mVolumeCtrlIdx) continue;
|
|
|
|
// this also works for mVolumeCtrlIdx == -1 when there is no volume controller
|
|
|
|
if ((int)i > mVolumeCtrlIdx) {
|
|
|
|
lVol = *left;
|
|
|
|
rVol = *right;
|
|
|
|
}
|
|
|
|
mEffects[i]->setVolume(&lVol, &rVol, false);
|
|
|
|
}
|
|
|
|
*left = newLeft;
|
|
|
|
*right = newRight;
|
|
|
|
|
|
|
|
return hasControl;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getVolumeController()
|
|
|
|
{
|
|
|
|
sp<EffectModule> effect;
|
|
|
|
if (mVolumeCtrlIdx >= 0) {
|
|
|
|
effect = mEffects[mVolumeCtrlIdx];
|
|
|
|
}
|
|
|
|
return effect;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t AudioFlinger::EffectChain::dump(int fd, const Vector<String16>& args)
|
|
|
|
{
|
|
|
|
const size_t SIZE = 256;
|
|
|
|
char buffer[SIZE];
|
|
|
|
String8 result;
|
|
|
|
|
|
|
|
snprintf(buffer, SIZE, "Effects for session %d:\n", mSessionId);
|
|
|
|
result.append(buffer);
|
|
|
|
|
|
|
|
bool locked = tryLock(mLock);
|
|
|
|
// failed to lock - AudioFlinger is probably deadlocked
|
|
|
|
if (!locked) {
|
|
|
|
result.append("\tCould not lock mutex:\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
result.append("\tNum fx In buffer Out buffer Vol ctrl Active tracks:\n");
|
|
|
|
snprintf(buffer, SIZE, "\t%02d 0x%08x 0x%08x %02d %d\n",
|
|
|
|
mEffects.size(),
|
|
|
|
(uint32_t)mInBuffer,
|
|
|
|
(uint32_t)mOutBuffer,
|
|
|
|
(mVolumeCtrlIdx == -1) ? 0 : mEffects[mVolumeCtrlIdx]->id(),
|
|
|
|
mActiveTrackCnt);
|
|
|
|
result.append(buffer);
|
|
|
|
write(fd, result.string(), result.size());
|
|
|
|
|
|
|
|
for (size_t i = 0; i < mEffects.size(); ++i) {
|
|
|
|
sp<EffectModule> effect = mEffects[i];
|
|
|
|
if (effect != 0) {
|
|
|
|
effect->dump(fd, args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (locked) {
|
|
|
|
mLock.unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef LOG_TAG
|
|
|
|
#define LOG_TAG "AudioFlinger"
|
|
|
|
|
2009-07-17 19:17:14 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
status_t AudioFlinger::onTransact(
|
|
|
|
uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
|
|
|
|
{
|
|
|
|
return BnAudioFlinger::onTransact(code, data, reply, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2009-07-17 19:17:14 +00:00
|
|
|
|
2008-10-21 14:00:00 +00:00
|
|
|
void AudioFlinger::instantiate() {
|
|
|
|
defaultServiceManager()->addService(
|
|
|
|
String16("media.audio_flinger"), new AudioFlinger());
|
|
|
|
}
|
|
|
|
|
|
|
|
}; // namespace android
|