mirror of
https://github.com/team-infusion-developers/android_device_samsung_msm8976-common.git
synced 2024-11-07 06:19:20 +00:00
155c078243
* Enable XML audio policy * From LA.BR.1.3.6-02810-8976.0
90 lines
3.8 KiB
Text
90 lines
3.8 KiB
Text
# Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are
|
|
# met:
|
|
# * Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# * Redistributions in binary form must reproduce the above
|
|
# copyright notice, this list of conditions and the following
|
|
# disclaimer in the documentation and/or other materials provided
|
|
# with the distribution.
|
|
# * Neither the name of The Linux Foundation nor the names of its
|
|
# contributors may be used to endorse or promote products derived
|
|
# from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
|
|
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
|
|
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
# List of profiles for the output device session where stream is routed.
|
|
# A stream opened with the inputs attributes which match the "flags" and
|
|
# "formats" as specified in the profile is routed to a device at
|
|
# sample rate specified under "sampling_rates" and bit width under
|
|
# "bit_width" and the topology extracted from the acdb data against
|
|
# the "app_type".
|
|
#
|
|
# the flags and formats are specified using the strings corresponding to
|
|
# enums in audio.h and audio_policy.h. They are concatenated with "|"
|
|
# without space or "\n".
|
|
# the flags and formats should match the ones in "audio_policy.conf"
|
|
|
|
outputs {
|
|
default {
|
|
flags AUDIO_OUTPUT_FLAG_PRIMARY
|
|
formats AUDIO_FORMAT_PCM_16_BIT
|
|
sampling_rates 48000
|
|
bit_width 16
|
|
app_type 69937
|
|
}
|
|
deep_buffer {
|
|
flags AUDIO_OUTPUT_FLAG_DEEP_BUFFER
|
|
formats AUDIO_FORMAT_PCM_16_BIT
|
|
sampling_rates 48000
|
|
bit_width 16
|
|
app_type 69936
|
|
}
|
|
direct {
|
|
flags AUDIO_OUTPUT_FLAG_DIRECT
|
|
formats AUDIO_FORMAT_PCM_16_BIT
|
|
sampling_rates 48000
|
|
bit_width 16
|
|
app_type 69936
|
|
}
|
|
direct_pcm_16 {
|
|
flags AUDIO_OUTPUT_FLAG_DIRECT|AUDIO_OUTPUT_FLAG_DIRECT_PCM
|
|
formats AUDIO_FORMAT_PCM_16_BIT|AUDIO_FORMAT_PCM_24_BIT_PACKED|AUDIO_FORMAT_PCM_8_24_BIT
|
|
sampling_rates 44100|48000|96000|192000
|
|
bit_width 16
|
|
app_type 69936
|
|
}
|
|
direct_pcm_24 {
|
|
flags AUDIO_OUTPUT_FLAG_DIRECT|AUDIO_OUTPUT_FLAG_DIRECT_PCM
|
|
formats AUDIO_FORMAT_PCM_24_BIT_PACKED|AUDIO_FORMAT_PCM_8_24_BIT
|
|
sampling_rates 44100|48000|96000|192000
|
|
bit_width 24
|
|
app_type 69940
|
|
}
|
|
compress_offload_16 {
|
|
flags AUDIO_OUTPUT_FLAG_DIRECT|AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD|AUDIO_OUTPUT_FLAG_NON_BLOCKING
|
|
formats AUDIO_FORMAT_MP3|AUDIO_FORMAT_AC3|AUDIO_FORMAT_E_AC3|AUDIO_FORMAT_FLAC|AUDIO_FORMAT_ALAC|AUDIO_FORMAT_APE|AUDIO_FORMAT_AAC_LC|AUDIO_FORMAT_AAC_HE_V1|AUDIO_FORMAT_AAC_HE_V2|AUDIO_FORMAT_WMA|AUDIO_FORMAT_WMA_PRO|AUDIO_FORMAT_VORBIS|AUDIO_FORMAT_AAC_ADTS_LC|AUDIO_FORMAT_AAC_ADTS_HE_V1|AUDIO_FORMAT_AAC_ADTS_HE_V2
|
|
sampling_rates 44100|48000
|
|
bit_width 16
|
|
app_type 69936
|
|
}
|
|
compress_offload_24 {
|
|
flags AUDIO_OUTPUT_FLAG_DIRECT|AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD|AUDIO_OUTPUT_FLAG_NON_BLOCKING
|
|
formats AUDIO_FORMAT_FLAC|AUDIO_FORMAT_ALAC|AUDIO_FORMAT_APE|AUDIO_FORMAT_VORBIS
|
|
sampling_rates 44100|48000|96000|192000
|
|
bit_width 24
|
|
app_type 69940
|
|
}
|
|
}
|