Merge "policy_hal: Update custom policy manager to new base class"
This commit is contained in:
commit
d9ce605054
|
@ -1,49 +1,87 @@
|
|||
ifeq ($(strip $(BOARD_USES_EXTN_AUDIO_POLICY_MANAGER)),true)
|
||||
|
||||
ifneq ($(USE_LEGACY_AUDIO_POLICY), 1)
|
||||
ifeq ($(USE_CUSTOM_AUDIO_POLICY), 1)
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_SRC_FILES := AudioPolicyManager.cpp
|
||||
|
||||
LOCAL_C_INCLUDES := $(TOPDIR)frameworks/av/services
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libcutils \
|
||||
libutils \
|
||||
liblog
|
||||
liblog \
|
||||
libsoundtrigger \
|
||||
libaudiopolicymanagerdefault
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := \
|
||||
libmedia_helper
|
||||
libmedia_helper \
|
||||
libserviceutility
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := \
|
||||
libaudiopolicy_legacy
|
||||
LOCAL_MODULE := libaudiopolicymanager
|
||||
|
||||
LOCAL_MODULE := audio_policy.$(TARGET_BOARD_PLATFORM)
|
||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_COMPRESS_VOIP)),true)
|
||||
LOCAL_CFLAGS += -DAUDIO_EXTN_COMPRESS_VOIP_ENABLED
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_EXTN_FORMATS)),true)
|
||||
LOCAL_CFLAGS += -DAUDIO_EXTN_FORMATS_ENABLED
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_FM)),true)
|
||||
LOCAL_CFLAGS += -DAUDIO_EXTN_FM_ENABLED
|
||||
endif
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PROXY_DEVICE)),true)
|
||||
LOCAL_CFLAGS += -DAUDIO_EXTN_AFE_PROXY_ENABLED
|
||||
endif
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_INCALL_MUSIC)),true)
|
||||
LOCAL_CFLAGS += -DAUDIO_EXTN_INCALL_MUSIC_ENABLED
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HDMI_SPK)),true)
|
||||
LOCAL_CFLAGS += -DAUDIO_EXTN_HDMI_SPK_ENABLED
|
||||
endif
|
||||
|
||||
|
||||
ifeq ($(strip $(TARGET_BOARD_PLATFORM)),msm8916)
|
||||
LOCAL_CFLAGS += -DVOICE_CONCURRENCY
|
||||
LOCAL_CFLAGS += -DWFD_CONCURRENCY
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_INCALL_MUSIC)),true)
|
||||
LOCAL_CFLAGS += -DAUDIO_EXTN_INCALL_MUSIC_ENABLED
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_MULTIPLE_TUNNEL)), true)
|
||||
LOCAL_CFLAGS += -DMULTIPLE_OFFLOAD_ENABLED
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PCM_OFFLOAD)),true)
|
||||
LOCAL_CFLAGS += -DPCM_OFFLOAD_ENABLED
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PROXY_DEVICE)),true)
|
||||
LOCAL_CFLAGS += -DAUDIO_EXTN_AFE_PROXY_ENABLED
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SSR)),true)
|
||||
LOCAL_CFLAGS += -DAUDIO_EXTN_SSR_ENABLED
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_VOICE_CONCURRENCY)),true)
|
||||
LOCAL_CFLAGS += -DVOICE_CONCURRENCY
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_WFD_CONCURRENCY)),true)
|
||||
LOCAL_CFLAGS += -DWFD_CONCURRENCY
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_RECORD_PLAY_CONCURRENCY)),true)
|
||||
LOCAL_CFLAGS += -DRECORD_PLAY_CONCURRENCY
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(DOLBY_UDC)),true)
|
||||
LOCAL_CFLAGS += -DDOLBY_UDC
|
||||
endif #DOLBY_UDC
|
||||
ifeq ($(strip $(DOLBY_DDP)),true)
|
||||
LOCAL_CFLAGS += -DDOLBY_DDP
|
||||
endif #DOLBY_DDP
|
||||
ifeq ($(strip $(DOLBY_DAP)),true)
|
||||
ifdef DOLBY_DAP_OPENSLES
|
||||
LOCAL_CFLAGS += -DDOLBY_DAP_OPENSLES
|
||||
endif
|
||||
endif #DOLBY_END
|
||||
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
endif
|
||||
endif
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2013, The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
|
||||
* Not a contribution.
|
||||
*
|
||||
* Copyright (C) 2009 The Android Open Source Project
|
||||
|
@ -18,59 +18,61 @@
|
|||
*/
|
||||
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
#include <utils/Timers.h>
|
||||
#include <utils/Errors.h>
|
||||
#include <utils/KeyedVector.h>
|
||||
#include <hardware_legacy/AudioPolicyManagerBase.h>
|
||||
#include <audiopolicy/AudioPolicyManager.h>
|
||||
#include <audiopolicy/audio_policy_conf.h>
|
||||
|
||||
|
||||
namespace android_audio_legacy {
|
||||
|
||||
namespace android {
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class AudioPolicyManager: public AudioPolicyManagerBase
|
||||
class AudioPolicyManagerCustom: public AudioPolicyManager
|
||||
{
|
||||
|
||||
public:
|
||||
AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
|
||||
: AudioPolicyManagerBase(clientInterface) {
|
||||
AudioPolicyManagerCustom(AudioPolicyClientInterface *clientInterface)
|
||||
: AudioPolicyManager(clientInterface) {
|
||||
mHdmiAudioDisabled = false;
|
||||
mHdmiAudioEvent = false; }
|
||||
|
||||
virtual ~AudioPolicyManager() {}
|
||||
virtual ~AudioPolicyManagerCustom() {}
|
||||
|
||||
virtual status_t setDeviceConnectionState(audio_devices_t device,
|
||||
AudioSystem::device_connection_state state,
|
||||
audio_policy_dev_state_t state,
|
||||
const char *device_address);
|
||||
virtual void setForceUse(AudioSystem::force_use usage, AudioSystem::forced_config config);
|
||||
virtual audio_io_handle_t getInput(int inputSource,
|
||||
uint32_t samplingRate,
|
||||
uint32_t format,
|
||||
uint32_t channels,
|
||||
AudioSystem::audio_in_acoustics acoustics);
|
||||
virtual audio_io_handle_t getOutput(AudioSystem::stream_type stream,
|
||||
uint32_t samplingRate = 0,
|
||||
uint32_t format = AudioSystem::FORMAT_DEFAULT,
|
||||
uint32_t channels = 0,
|
||||
AudioSystem::output_flags flags =
|
||||
AudioSystem::OUTPUT_FLAG_INDIRECT,
|
||||
const audio_offload_info_t *offloadInfo = NULL);
|
||||
|
||||
virtual audio_policy_dev_state_t getDeviceConnectionState(audio_devices_t device,
|
||||
const char *device_address);
|
||||
virtual void setPhoneState(audio_mode_t state);
|
||||
virtual void setForceUse(audio_policy_force_use_t usage,
|
||||
audio_policy_forced_cfg_t config);
|
||||
virtual status_t stopOutput(audio_io_handle_t output,
|
||||
AudioSystem::stream_type stream,
|
||||
audio_stream_type_t stream,
|
||||
int session = 0);
|
||||
virtual audio_io_handle_t getInput(audio_source_t inputSource,
|
||||
uint32_t samplingRate,
|
||||
audio_format_t format,
|
||||
audio_channel_mask_t channelMask,
|
||||
audio_session_t session,
|
||||
audio_input_flags_t flags);
|
||||
|
||||
// indicates to the audio policy manager that the input starts being used.
|
||||
virtual status_t startInput(audio_io_handle_t input,
|
||||
audio_session_t session);
|
||||
|
||||
// indicates to the audio policy manager that the input stops being used.
|
||||
virtual status_t stopInput(audio_io_handle_t input,
|
||||
audio_session_t session);
|
||||
virtual status_t setStreamVolumeIndex(audio_stream_type_t stream,
|
||||
int index,
|
||||
audio_devices_t device);
|
||||
virtual bool isOffloadSupported(const audio_offload_info_t& offloadInfo);
|
||||
|
||||
virtual void setPhoneState(int state);
|
||||
|
||||
// true if given state represents a device in a telephony or VoIP call
|
||||
virtual bool isStateInCall(int state);
|
||||
protected:
|
||||
// return the strategy corresponding to a given stream type
|
||||
static routing_strategy getStrategy(AudioSystem::stream_type stream);
|
||||
static routing_strategy getStrategy(audio_stream_type_t stream);
|
||||
|
||||
// return appropriate device for streams handled by the specified strategy according to current
|
||||
// phone state, connected devices...
|
||||
|
@ -84,34 +86,54 @@ protected:
|
|||
// where conditions are changing (setDeviceConnectionState(), setPhoneState()...) AND
|
||||
// before updateDevicesAndOutputs() is called.
|
||||
virtual audio_devices_t getDeviceForStrategy(routing_strategy strategy,
|
||||
bool fromCache = true);
|
||||
bool fromCache);
|
||||
// select input device corresponding to requested audio source
|
||||
virtual audio_devices_t getDeviceForInputSource(int inputSource);
|
||||
virtual audio_devices_t getDeviceForInputSource(audio_source_t inputSource);
|
||||
|
||||
// compute the actual volume for a given stream according to the requested index and a particular
|
||||
// device
|
||||
virtual float computeVolume(int stream, int index, audio_io_handle_t output, audio_devices_t device);
|
||||
virtual float computeVolume(audio_stream_type_t stream, int index,
|
||||
audio_io_handle_t output, audio_devices_t device);
|
||||
|
||||
// check that volume change is permitted, compute and send new volume to audio hardware
|
||||
status_t checkAndSetVolume(int stream, int index, audio_io_handle_t output, audio_devices_t device, int delayMs = 0, bool force = false);
|
||||
status_t checkAndSetVolume(audio_stream_type_t stream, int index, audio_io_handle_t output,
|
||||
audio_devices_t device, int delayMs = 0, bool force = false);
|
||||
|
||||
// returns the category the device belongs to with regard to volume curve management
|
||||
static device_category getDeviceCategory(audio_devices_t device);
|
||||
|
||||
static const char* HDMI_SPKR_STR;
|
||||
|
||||
//parameter indicates of HDMI speakers disabled from the Qualcomm settings
|
||||
//parameter indicates of HDMI speakers disabled
|
||||
bool mHdmiAudioDisabled;
|
||||
|
||||
//parameter indicates if HDMI plug in/out detected
|
||||
bool mHdmiAudioEvent;
|
||||
|
||||
private:
|
||||
void handleNotificationRoutingForStream(AudioSystem::stream_type stream);
|
||||
static float volIndexToAmpl(audio_devices_t device, const StreamDescriptor& streamDesc,
|
||||
int indexInUi);
|
||||
// updates device caching and output for streams that can influence the
|
||||
// routing of notifications
|
||||
void handleNotificationRoutingForStream(audio_stream_type_t stream);
|
||||
static bool isVirtualInputDevice(audio_devices_t device);
|
||||
static bool deviceDistinguishesOnAddress(audio_devices_t device);
|
||||
uint32_t nextUniqueId();
|
||||
// internal method to return the output handle for the given device and format
|
||||
audio_io_handle_t getOutputForDevice(
|
||||
audio_devices_t device,
|
||||
audio_stream_type_t stream,
|
||||
uint32_t samplingRate,
|
||||
audio_format_t format,
|
||||
audio_channel_mask_t channelMask,
|
||||
audio_output_flags_t flags,
|
||||
const audio_offload_info_t *offloadInfo);
|
||||
|
||||
// Used for voip + voice concurrency usecase
|
||||
int mPrevPhoneState;
|
||||
static int mvoice_call_state;
|
||||
int mvoice_call_state;
|
||||
#ifdef RECORD_PLAY_CONCURRENCY
|
||||
// Used for record + playback concurrency
|
||||
bool mIsInputRequestOnProgress;
|
||||
#endif
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue