Bug 1218629 - Save audio volume for each device to setting db r=alwu

This commit is contained in:
Sotaro Ikeda 2015-12-23 23:31:34 -08:00
Родитель c69876f082
Коммит 0c72c57ef8
3 изменённых файлов: 114 добавлений и 208 удалений

Просмотреть файл

@ -126,12 +126,22 @@ static const uint32_t sChannelStreamTbl[NUMBER_OF_AUDIO_CHANNELS] = {
AUDIO_STREAM_SYSTEM, // AudioChannel::System
};
// Mappings AudioOutputProfiles to strings.
static const nsAttrValue::EnumTable kAudioOutputProfilesTable[] = {
{ "primary", DEVICE_PRIMARY },
{ "headset", DEVICE_HEADSET },
{ "bluetooth", DEVICE_BLUETOOTH },
{ nullptr }
struct AudioDeviceInfo {
/** The string the value maps to */
const char* tag;
/** The enum value that maps to this string */
uint32_t value;
};
// Mappings audio output devices to strings.
static const AudioDeviceInfo kAudioDeviceInfos[] = {
{ "earpiece", AUDIO_DEVICE_OUT_EARPIECE },
{ "speaker", AUDIO_DEVICE_OUT_SPEAKER },
{ "wired_headset", AUDIO_DEVICE_OUT_WIRED_HEADSET },
{ "wired_headphone", AUDIO_DEVICE_OUT_WIRED_HEADPHONE },
{ "bt_scoheadset", AUDIO_DEVICE_OUT_BLUETOOTH_SCO_HEADSET },
{ "bt_a2dp", AUDIO_DEVICE_OUT_BLUETOOTH_A2DP },
};
static const int kBtSampleRate = 8000;
@ -261,7 +271,7 @@ AudioManager::HandleAudioFlingerDied()
// Enable volume change notification
mIsVolumeInited = true;
mAudioOutProfileUpdated = 0;
mAudioOutDevicesUpdated = 0;
MaybeUpdateVolumeSettingToDatabase(true);
}
@ -288,19 +298,20 @@ public:
for (uint32_t idx = 0; idx < MOZ_ARRAY_LENGTH(gVolumeData); ++idx) {
NS_ConvertASCIItoUTF16 volumeType(gVolumeData[idx].mChannelName);
if (StringBeginsWith(aName, volumeType)) {
AudioOutputProfiles profile = GetProfileFromSettingName(aName);
MOZ_ASSERT(profile != DEVICE_ERROR);
int32_t stream = gVolumeData[idx].mStreamType;
uint32_t volIndex = aResult.isInt32() ?
aResult.toInt32() : sDefaultStreamVolumeTbl[stream];
nsresult rv = audioManager->ValidateVolumeIndex(stream, volIndex);
if (NS_WARN_IF(NS_FAILED(rv))) {
mPromiseHolder.Reject("Error : invalid volume index.", __func__);
return rv;
uint32_t device = GetDeviceFromSettingName(aName);
MOZ_ASSERT(device != AUDIO_DEVICE_NONE);
if (aResult.isInt32()) {
int32_t stream = gVolumeData[idx].mStreamType;
uint32_t volIndex = aResult.toInt32();
nsresult rv = audioManager->ValidateVolumeIndex(stream, volIndex);
if (NS_WARN_IF(NS_FAILED(rv))) {
mPromiseHolder.Reject("Error : invalid volume index.", __func__);
return rv;
}
audioManager->SetStreamVolumeForDevice(stream, volIndex, device);
}
audioManager->InitVolumeForProfile(profile, stream, volIndex);
if (++mInitCounter == DEVICE_TOTAL_NUMBER * MOZ_ARRAY_LENGTH(gVolumeData)) {
if (++mInitCounter == MOZ_ARRAY_LENGTH(kAudioDeviceInfos) * MOZ_ARRAY_LENGTH(gVolumeData)) {
mPromiseHolder.Resolve(true, __func__);
}
return NS_OK;
@ -319,15 +330,15 @@ public:
protected:
~VolumeInitCallback() {}
AudioOutputProfiles GetProfileFromSettingName(const nsAString& aName) const
uint32_t GetDeviceFromSettingName(const nsAString& aName) const
{
for (uint32_t idx = 0; kAudioOutputProfilesTable[idx].tag; ++idx) {
NS_ConvertASCIItoUTF16 profile(kAudioOutputProfilesTable[idx].tag);
if (StringEndsWith(aName, profile)) {
return static_cast<AudioOutputProfiles>(kAudioOutputProfilesTable[idx].value);
for (uint32_t idx = 0; idx < MOZ_ARRAY_LENGTH(kAudioDeviceInfos); ++idx) {
NS_ConvertASCIItoUTF16 device(kAudioDeviceInfos[idx].tag);
if (StringEndsWith(aName, device)) {
return kAudioDeviceInfos[idx].value;
}
}
return DEVICE_ERROR;
return AUDIO_DEVICE_NONE;
}
RefPtr<VolumeInitPromise> mPromise;
@ -364,9 +375,10 @@ AudioManager::IsFmOutConnected()
NS_IMPL_ISUPPORTS(AudioManager, nsIAudioManager, nsIObserver)
void
AudioManager::AudioOutProfileUpdated(AudioOutputProfiles aProfile)
AudioManager::AudioOutDeviceUpdated(uint32_t aDevice)
{
mAudioOutProfileUpdated |= (1 << aProfile);
MOZ_ASSERT(audio_is_output_device(aDevice));
mAudioOutDevicesUpdated |= aDevice;
}
void
@ -672,7 +684,7 @@ AudioManager::HandleHeadphoneSwitchEvent(const hal::SwitchEvent& aEvent)
AudioManager::AudioManager()
: mPhoneState(PHONE_STATE_CURRENT)
, mIsVolumeInited(false)
, mAudioOutProfileUpdated(0)
, mAudioOutDevicesUpdated(0)
, mSwitchDone(true)
#if defined(MOZ_B2G_BT) || ANDROID_VERSION >= 17
, mBluetoothA2dpEnabled(false)
@ -685,6 +697,10 @@ AudioManager::AudioManager()
, mMuteCallToRIL(false)
#endif
{
for (uint32_t idx = 0; idx < MOZ_ARRAY_LENGTH(kAudioDeviceInfos); ++idx) {
mAudioDeviceTableIdMaps.Put(kAudioDeviceInfos[idx].value, idx);
}
AudioSystem::setErrorCallback(BinderDeadCallback);
#if ANDROID_VERSION >= 21
android::sp<GonkAudioPortCallback> callback = new GonkAudioPortCallback();
@ -697,6 +713,11 @@ AudioManager::AudioManager()
new VolumeStreamState(*this, static_cast<audio_stream_type_t>(loop));
mStreamStates.AppendElement(streamState);
}
// Initialize stream volumes with default values
for (int32_t streamType = 0; streamType < AUDIO_STREAM_MAX; streamType++) {
uint32_t volIndex = sDefaultStreamVolumeTbl[streamType];
SetStreamVolumeForDevice(streamType, volIndex, AUDIO_DEVICE_OUT_DEFAULT);
}
UpdateCachedActiveDevicesForStreams();
RegisterSwitchObserver(hal::SWITCH_HEADPHONES, mObserver);
@ -978,31 +999,17 @@ AudioManager::ValidateVolumeIndex(int32_t aStream, uint32_t aIndex) const
}
nsresult
AudioManager::SetStreamVolumeForProfile(AudioOutputProfiles aProfile,
int32_t aStream,
uint32_t aIndex)
AudioManager::SetStreamVolumeForDevice(int32_t aStream,
uint32_t aIndex,
uint32_t aDevice)
{
if (aStream <= AUDIO_STREAM_DEFAULT || aStream >= AUDIO_STREAM_MAX) {
return NS_ERROR_INVALID_ARG;
}
int32_t streamAlias = sStreamVolumeAliasTbl[aStream];
VolumeStreamState* state = mStreamStates[streamAlias].get();
// Rescaling of index is not necessary.
switch (aProfile) {
case DEVICE_PRIMARY:
state->SetVolumeIndexToAliasStreams(aIndex, AUDIO_DEVICE_OUT_SPEAKER);
break;
case DEVICE_HEADSET:
state->SetVolumeIndexToAliasStreams(aIndex, AUDIO_DEVICE_OUT_WIRED_HEADSET);
break;
case DEVICE_BLUETOOTH:
state->SetVolumeIndexToAliasStreams(aIndex, AUDIO_DEVICE_OUT_BLUETOOTH_A2DP);
break;
default:
break;
}
return NS_OK;
VolumeStreamState* streamState = mStreamStates[streamAlias].get();
return streamState->SetVolumeIndexToAliasStreams(aIndex, aDevice);
}
nsresult
@ -1056,17 +1063,15 @@ AudioManager::GetStreamVolumeIndex(int32_t aStream, uint32_t *aIndex)
}
nsAutoCString
AudioManager::AppendProfileToVolumeSetting(const char* aName, AudioOutputProfiles aProfile)
AudioManager::AppendDeviceToVolumeSetting(const char* aName, uint32_t aDevice)
{
nsAutoCString topic;
topic.Assign(aName);
for (uint32_t idx = 0; kAudioOutputProfilesTable[idx].tag; ++idx) {
if (kAudioOutputProfilesTable[idx].value == aProfile) {
topic.Append(".");
topic.Append(kAudioOutputProfilesTable[idx].tag);
break;
}
}
topic.Append(".");
uint32_t index = 0;
DebugOnly<bool> exist = mAudioDeviceTableIdMaps.Get(aDevice, &index);
MOZ_ASSERT(exist);
topic.Append(kAudioDeviceInfos[index].tag);
return topic;
}
@ -1088,37 +1093,29 @@ AudioManager::InitVolumeFromDatabase()
RefPtr<VolumeInitCallback> callback = new VolumeInitCallback();
MOZ_ASSERT(callback);
callback->GetPromise()->Then(AbstractThread::MainThread(), __func__, this,
&AudioManager::InitProfileVolumeSucceeded,
&AudioManager::InitProfileVolumeFailed);
&AudioManager::InitDeviceVolumeSucceeded,
&AudioManager::InitDeviceVolumeFailed);
for (uint32_t idx = 0; idx < MOZ_ARRAY_LENGTH(gVolumeData); ++idx) {
for (uint32_t profile = 0; profile < DEVICE_TOTAL_NUMBER; ++profile) {
lock->Get(AppendProfileToVolumeSetting(gVolumeData[idx].mChannelName,
static_cast<AudioOutputProfiles>(profile)).get(), callback);
for (uint32_t idx2 = 0; idx2 < MOZ_ARRAY_LENGTH(kAudioDeviceInfos); ++idx2) {
lock->Get(AppendDeviceToVolumeSetting(gVolumeData[idx].mChannelName,
kAudioDeviceInfos[idx2].value).get(),
callback);
}
}
}
void
AudioManager::InitProfileVolumeSucceeded()
AudioManager::InitDeviceVolumeSucceeded()
{
mIsVolumeInited = true;
MaybeUpdateVolumeSettingToDatabase(true);
}
void
AudioManager::InitProfileVolumeFailed(const char* aError)
AudioManager::InitDeviceVolumeFailed(const char* aError)
{
// Initialize stream volumes with default values
for (uint32_t idx = 0; idx < MOZ_ARRAY_LENGTH(gVolumeData); ++idx) {
for (int32_t profile = 0; profile < DEVICE_TOTAL_NUMBER; ++profile) {
int32_t stream = gVolumeData[idx].mStreamType;
uint32_t volIndex = sDefaultStreamVolumeTbl[stream];
InitVolumeForProfile(static_cast<AudioOutputProfiles>(profile),
stream,
volIndex);
}
}
// Default volume of AUDIO_DEVICE_OUT_DEFAULT is already set.
mIsVolumeInited = true;
MaybeUpdateVolumeSettingToDatabase(true);
NS_WARNING(aError);
@ -1153,7 +1150,7 @@ AudioManager::MaybeUpdateVolumeSettingToDatabase(bool aForce)
}
// For reducing the code dependency, Gaia doesn't need to know the
// profile volume, it only need to care about different volume categories.
// device volume, it only need to care about different volume categories.
// However, we need to send the setting volume to the permanent database,
// so that we can store the volume setting even if the phone reboots.
@ -1165,29 +1162,21 @@ AudioManager::MaybeUpdateVolumeSettingToDatabase(bool aForce)
continue;
}
if (mAudioOutProfileUpdated & (1 << DEVICE_PRIMARY)) {
volume = streamState->GetVolumeIndex(AUDIO_DEVICE_OUT_SPEAKER);
uint32_t remainingDevices = mAudioOutDevicesUpdated;
for (uint32_t i = 0; remainingDevices != 0; i++) {
uint32_t device = (1 << i);
if ((device & remainingDevices) == 0) {
continue;
}
remainingDevices &= ~device;
if (!mAudioDeviceTableIdMaps.Get(device, nullptr)) {
continue;
}
volume = streamState->GetVolumeIndex(device);
value.setInt32(volume);
lock->Set(AppendProfileToVolumeSetting(
gVolumeData[idx].mChannelName,
DEVICE_PRIMARY).get(),
value, nullptr, nullptr);
}
if (mAudioOutProfileUpdated & (1 << DEVICE_HEADSET)) {
volume = streamState->GetVolumeIndex(AUDIO_DEVICE_OUT_WIRED_HEADSET);
value.setInt32(volume);
lock->Set(AppendProfileToVolumeSetting(
gVolumeData[idx].mChannelName,
DEVICE_HEADSET).get(),
value, nullptr, nullptr);
}
if (mAudioOutProfileUpdated & (1 << DEVICE_BLUETOOTH)) {
volume = streamState->GetVolumeIndex(AUDIO_DEVICE_OUT_BLUETOOTH_A2DP);
value.setInt32(volume);
lock->Set(AppendProfileToVolumeSetting(
gVolumeData[idx].mChannelName,
DEVICE_BLUETOOTH).get(),
value, nullptr, nullptr);
lock->Set(AppendDeviceToVolumeSetting(gVolumeData[idx].mChannelName,
device).get(),
value, nullptr, nullptr);
}
}
@ -1197,21 +1186,8 @@ AudioManager::MaybeUpdateVolumeSettingToDatabase(bool aForce)
mStreamStates[streamType]->ClearDevicesChanged();
mStreamStates[streamType]->ClearVolumeIndexesChanged();
}
// Clear mAudioOutProfileUpdated
mAudioOutProfileUpdated = 0;
}
void
AudioManager::InitVolumeForProfile(AudioOutputProfiles aProfile,
int32_t aStreamType,
uint32_t aIndex)
{
// Set volume to streams of aStreamType and devices of Profile.
for (int32_t streamType = 0; streamType < AUDIO_STREAM_MAX; streamType++) {
if (aStreamType == sStreamVolumeAliasTbl[streamType]) {
SetStreamVolumeForProfile(aProfile, streamType, aIndex);
}
}
// Clear mAudioOutDevicesUpdated
mAudioOutDevicesUpdated = 0;
}
void
@ -1250,7 +1226,9 @@ AudioManager::GetDevicesForStream(int32_t aStream, bool aFromCache)
return static_cast<uint32_t>(devices);
#else
return AUDIO_DEVICE_OUT_DEFAULT;
// Per audio out device volume is not supported.
// Use AUDIO_DEVICE_OUT_SPEAKER just to store audio volume to DB.
return AUDIO_DEVICE_OUT_SPEAKER;
#endif
}
@ -1383,7 +1361,7 @@ AudioManager::VolumeStreamState::SetVolumeIndexToActiveDevices(uint32_t aIndex)
// AudioPolicyManager::setStreamVolumeIndex() set volumes of all active
// devices for stream.
nsresult rv = SetVolumeIndexToAliasDevices(aIndex, device);
nsresult rv = SetVolumeIndex(aIndex, device);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
@ -1395,7 +1373,7 @@ AudioManager::VolumeStreamState::SetVolumeIndexToActiveDevices(uint32_t aIndex)
if (device != AUDIO_DEVICE_OUT_SPEAKER &&
mStreamType == AUDIO_STREAM_NOTIFICATION) {
// Rescaling of index is not necessary.
rv = SetVolumeIndexToAliasDevices(aIndex, AUDIO_DEVICE_OUT_SPEAKER);
rv = SetVolumeIndex(aIndex, AUDIO_DEVICE_OUT_SPEAKER);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
@ -1414,7 +1392,8 @@ AudioManager::VolumeStreamState::SetVolumeIndexToAliasStreams(uint32_t aIndex,
// No update
return NS_OK;
}
nsresult rv = SetVolumeIndexToAliasDevices(aIndex, aDevice);
nsresult rv = SetVolumeIndex(aIndex, aDevice);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
@ -1430,65 +1409,7 @@ AudioManager::VolumeStreamState::SetVolumeIndexToAliasStreams(uint32_t aIndex,
}
}
}
return NS_OK;
}
nsresult
AudioManager::VolumeStreamState::SetVolumeIndexToAliasDevices(uint32_t aIndex,
uint32_t aDevice)
{
#if ANDROID_VERSION >= 17
nsresult rv = NS_ERROR_FAILURE;
switch (aDevice) {
case AUDIO_DEVICE_OUT_EARPIECE:
case AUDIO_DEVICE_OUT_SPEAKER:
// Apply volume index of DEVICE_PRIMARY devices
rv = SetVolumeIndex(aIndex, AUDIO_DEVICE_OUT_EARPIECE);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
rv = SetVolumeIndex(aIndex, AUDIO_DEVICE_OUT_SPEAKER);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
mManager.AudioOutProfileUpdated(DEVICE_PRIMARY);
break;
case AUDIO_DEVICE_OUT_WIRED_HEADSET:
case AUDIO_DEVICE_OUT_WIRED_HEADPHONE:
// Apply volume index of DEVICE_HEADSET devices
rv = SetVolumeIndex(aIndex, AUDIO_DEVICE_OUT_WIRED_HEADSET);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
rv = SetVolumeIndex(aIndex, AUDIO_DEVICE_OUT_WIRED_HEADPHONE);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
mManager.AudioOutProfileUpdated(DEVICE_HEADSET);
break;
case AUDIO_DEVICE_OUT_BLUETOOTH_SCO_HEADSET:
case AUDIO_DEVICE_OUT_BLUETOOTH_A2DP:
// Apply volume index of DEVICE_BLUETOOTH devices
rv = SetVolumeIndex(aIndex, AUDIO_DEVICE_OUT_BLUETOOTH_SCO_HEADSET);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
rv = SetVolumeIndex(aIndex, AUDIO_DEVICE_OUT_BLUETOOTH_A2DP);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
mManager.AudioOutProfileUpdated(DEVICE_BLUETOOTH);
break;
default:
rv = SetVolumeIndex(aIndex, aDevice);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
break;
}
#else
SetVolumeIndex(aIndex, aDevice);
#endif
return NS_OK;
}
@ -1502,6 +1423,7 @@ AudioManager::VolumeStreamState::SetVolumeIndex(uint32_t aIndex,
if (aUpdateCache) {
mVolumeIndexes.Put(aDevice, aIndex);
mIsVolumeIndexesChanged = true;
mManager.AudioOutDeviceUpdated(aDevice);
}
rv = AudioSystem::setStreamVolumeIndex(
@ -1511,8 +1433,11 @@ AudioManager::VolumeStreamState::SetVolumeIndex(uint32_t aIndex,
return rv ? NS_ERROR_FAILURE : NS_OK;
#else
if (aUpdateCache) {
mVolumeIndexes.Put(AUDIO_DEVICE_OUT_DEFAULT, aIndex);
// Per audio out device volume is not supported.
// Use AUDIO_DEVICE_OUT_SPEAKER just to store audio volume to DB.
mVolumeIndexes.Put(AUDIO_DEVICE_OUT_SPEAKER, aIndex);
mIsVolumeIndexesChanged = true;
mManager.AudioOutDeviceUpdated(AUDIO_DEVICE_OUT_SPEAKER);
}
rv = AudioSystem::setStreamVolumeIndex(
static_cast<audio_stream_type_t>(mStreamType),

Просмотреть файл

@ -41,20 +41,6 @@ typedef Observer<SwitchEvent> SwitchObserver;
namespace dom {
namespace gonk {
/**
* FxOS can remeber the separate volume settings on difference output profiles.
* (1) Primary : speaker, receiver
* (2) Headset : wired headphone/headset
* (3) Bluetooth : BT SCO/A2DP devices
**/
enum AudioOutputProfiles {
DEVICE_ERROR = -1,
DEVICE_PRIMARY = 0,
DEVICE_HEADSET = 1,
DEVICE_BLUETOOTH = 2,
DEVICE_TOTAL_NUMBER = 3,
};
class VolumeInitCallback;
class AudioManager final : public nsIAudioManager
@ -99,12 +85,8 @@ public:
// Set volume index to all active devices.
// Active devices are chosen by android AudioPolicyManager.
nsresult SetVolumeIndexToActiveDevices(uint32_t aIndex);
// Set volume index to all alias streams. Alias streams have same volume.
// It is used to update volume based on audio output profile data.
// Set volume index to all alias streams for device. Alias streams have same volume.
nsresult SetVolumeIndexToAliasStreams(uint32_t aIndex, uint32_t aDevice);
// Set volume index to all alias devices in audio output profile.
// Alias devices have same volume.
nsresult SetVolumeIndexToAliasDevices(uint32_t aIndex, uint32_t aDevice);
nsresult SetVolumeIndex(uint32_t aIndex, uint32_t aDevice, bool aUpdateCache = true);
// Restore volume index to all devices. Called when AudioFlinger is restarted.
void RestoreVolumeIndexToAllDevices();
@ -122,12 +104,15 @@ protected:
bool mIsVolumeInited;
// A bitwise variable for volume update of audio output profiles
uint32_t mAudioOutProfileUpdated;
// A bitwise variable for volume update of audio output devices,
// clear it after store the value into database.
uint32_t mAudioOutDevicesUpdated;
// Connected devices that are controlled by setDeviceConnectionState()
nsDataHashtable<nsUint32HashKey, nsCString> mConnectedDevices;
nsDataHashtable<nsUint32HashKey, uint32_t> mAudioDeviceTableIdMaps;
bool mSwitchDone;
#if defined(MOZ_B2G_BT) || ANDROID_VERSION >= 17
@ -141,11 +126,11 @@ protected:
bool IsFmOutConnected();
nsresult SetStreamVolumeForProfile(AudioOutputProfiles aProfile,
int32_t aStream,
uint32_t aIndex);
nsresult SetStreamVolumeForDevice(int32_t aStream,
uint32_t aIndex,
uint32_t aDevice);
nsresult SetStreamVolumeIndex(int32_t aStream, uint32_t aIndex);
nsresult GetStreamVolumeIndex(int32_t aStream, uint32_t *aIndex);
nsresult GetStreamVolumeIndex(int32_t aStream, uint32_t* aIndex);
void UpdateCachedActiveDevicesForStreams();
uint32_t GetDevicesForStream(int32_t aStream, bool aFromCache = true);
@ -166,24 +151,19 @@ private:
const nsCString aAddress);
void HandleAudioChannelProcessChanged();
// Initialize volume index for audio output profile
void InitVolumeForProfile(AudioOutputProfiles aProfile,
int32_t aStreamType,
uint32_t aIndex);
// Append the audio output profile to the volume setting string.
nsAutoCString AppendProfileToVolumeSetting(const char* aName,
AudioOutputProfiles aProfile);
// Append the audio output device to the volume setting string.
nsAutoCString AppendDeviceToVolumeSetting(const char* aName,
uint32_t aDevice);
// We store the volume setting in the database, these are related functions.
void InitVolumeFromDatabase();
void MaybeUpdateVolumeSettingToDatabase(bool aForce = false);
// Promise functions.
void InitProfileVolumeSucceeded();
void InitProfileVolumeFailed(const char* aError);
void InitDeviceVolumeSucceeded();
void InitDeviceVolumeFailed(const char* aError);
void AudioOutProfileUpdated(AudioOutputProfiles aProfile);
void AudioOutDeviceUpdated(uint32_t aDevice);
void UpdateHeadsetConnectionState(hal::SwitchState aState);
void UpdateDeviceConnectionState(bool aIsConnected, uint32_t aDevice, const nsCString& aDeviceName);

Просмотреть файл

@ -241,6 +241,7 @@ typedef enum {
#if ANDROID_VERSION < 17
typedef enum {
AUDIO_DEVICE_NONE = 0x0,
/* output devices */
AUDIO_DEVICE_OUT_EARPIECE = 0x1,
AUDIO_DEVICE_OUT_SPEAKER = 0x2,