summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2015-12-09 22:37:30 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2015-12-09 22:37:30 -0800
commit16ec18dd4d5b144e0b549e7cade3f2669e38c175 (patch)
treed44174d3afb889fcab6bda9c12a9cbed21693459
parentb4eabafa914f154362df253a193fa9af5fca21b0 (diff)
parent5df33b292fc966596489a8cee6fa56e8d57464b0 (diff)
downloadandroid_hardware_qcom_audio-16ec18dd4d5b144e0b549e7cade3f2669e38c175.tar.gz
android_hardware_qcom_audio-16ec18dd4d5b144e0b549e7cade3f2669e38c175.tar.bz2
android_hardware_qcom_audio-16ec18dd4d5b144e0b549e7cade3f2669e38c175.zip
Merge "libaudiopolicymanager: DirectPCM: fix 44.1 clip playing noisy issue"
-rw-r--r--policy_hal/AudioPolicyManager.cpp24
1 files changed, 18 insertions, 6 deletions
diff --git a/policy_hal/AudioPolicyManager.cpp b/policy_hal/AudioPolicyManager.cpp
index 2a604bab..b005bfce 100644
--- a/policy_hal/AudioPolicyManager.cpp
+++ b/policy_hal/AudioPolicyManager.cpp
@@ -1518,18 +1518,18 @@ audio_io_handle_t AudioPolicyManagerCustom::getOutputForDevice(
} else if (/* stream == AUDIO_STREAM_MUSIC && */
flags == AUDIO_OUTPUT_FLAG_NONE &&
property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
- flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
- forced_deep = true;
+ forced_deep = true;
}
if (stream == AUDIO_STREAM_TTS) {
flags = AUDIO_OUTPUT_FLAG_TTS;
}
// Do offload magic here
- if (((flags == AUDIO_OUTPUT_FLAG_NONE) || forced_deep) &&
- (stream == AUDIO_STREAM_MUSIC) && (offloadInfo != NULL) &&
+ if ((flags == AUDIO_OUTPUT_FLAG_NONE) &&
+ (stream == AUDIO_STREAM_MUSIC) &&
+ (offloadInfo != NULL) &&
((offloadInfo->usage == AUDIO_USAGE_MEDIA) || (offloadInfo->usage == AUDIO_USAGE_GAME))) {
- flags = (audio_output_flags_t)(flags | AUDIO_OUTPUT_FLAG_DIRECT);
+ flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_DIRECT_PCM);
ALOGD("AudioCustomHAL --> Force Direct Flag .. flag (0x%x)", flags);
}
@@ -1537,7 +1537,7 @@ audio_io_handle_t AudioPolicyManagerCustom::getOutputForDevice(
// skip direct output selection if the request can obviously be attached to a mixed output
// and not explicitly requested
- if (((flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
+ if (((flags & (AUDIO_OUTPUT_FLAG_DIRECT|AUDIO_OUTPUT_FLAG_DIRECT_PCM)) == 0) &&
audio_is_linear_pcm(format) && samplingRate <= MAX_MIXER_SAMPLING_RATE &&
audio_channel_count_from_out_mask(channelMask) <= 2) {
goto non_direct_output;
@@ -1560,6 +1560,14 @@ audio_io_handle_t AudioPolicyManagerCustom::getOutputForDevice(
}
if (profile != 0) {
+
+ if (!(flags & AUDIO_OUTPUT_FLAG_DIRECT_PCM) &&
+ (profile->mFlags & AUDIO_OUTPUT_FLAG_DIRECT_PCM)) {
+ ALOGI("got Direct_PCM without requesting ... reject ");
+ profile = NULL;
+ goto non_direct_output;
+ }
+
sp<SwAudioOutputDescriptor> outputDesc = NULL;
for (size_t i = 0; i < mOutputs.size(); i++) {
@@ -1676,6 +1684,10 @@ non_direct_output:
// for non direct outputs, only PCM is supported
if (audio_is_linear_pcm(format)) {
+ if (forced_deep) {
+ flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
+ ALOGI("setting force DEEP buffer now ");
+ }
// get which output is suitable for the specified stream. The actual
// routing change will happen when startOutput() will be called
SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);