-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move configs and permissions to device
- Loading branch information
Showing
4 changed files
with
250 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
# | ||
# Audio policy configuration for MT8127D Tank | ||
# | ||
|
||
# Global configuration section: lists input and output devices always present on the device | ||
# as well as the output device selected by default. | ||
# Devices are designated by a string that corresponds to the enum in audio.h | ||
|
||
#global_configuration { | ||
# attached_output_devices AUDIO_DEVICE_OUT_SPEAKER | ||
# default_output_device AUDIO_DEVICE_OUT_SPEAKER | ||
# attached_input_devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_REMOTE_SUBMIX|AUDIO_DEVICE_IN_FM | ||
#} | ||
|
||
# audio hardware module section: contains descriptors for all audio hw modules present on the | ||
# device. Each hw module node is named after the corresponding hw module library base name. | ||
# For instance, "primary" corresponds to audio.primary.<device>.so. | ||
# The "primary" module is mandatory and must include at least one output with | ||
# AUDIO_OUTPUT_FLAG_PRIMARY flag. | ||
# Each module descriptor contains one or more output profile descriptors and zero or more | ||
# input profile descriptors. Each profile lists all the parameters supported by a given output | ||
# or input stream category. | ||
# The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding | ||
# to enums in audio.h and audio_policy.h. They are concatenated by use of "|" without space or "\n". | ||
|
||
audio_hw_modules { | ||
primary { | ||
global_configuration { | ||
attached_output_devices AUDIO_DEVICE_OUT_SPEAKER | ||
default_output_device AUDIO_DEVICE_OUT_SPEAKER | ||
attached_input_devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_REMOTE_SUBMIX|AUDIO_DEVICE_IN_FM | ||
audio_hal_version 3.0 | ||
} | ||
devices { | ||
headset { | ||
type AUDIO_DEVICE_OUT_WIRED_HEADSET | ||
gains { | ||
gain_1 { | ||
mode AUDIO_GAIN_MODE_JOINT | ||
channel_mask AUDIO_CHANNEL_OUT_STEREO | ||
min_value_mB -6400 | ||
max_value_mB 0 | ||
default_value_mB 0 | ||
step_value_mB 100 | ||
min_ramp_ms 0 | ||
max_ramp_ms 0 | ||
} | ||
} | ||
} | ||
headphone { | ||
type AUDIO_DEVICE_OUT_WIRED_HEADPHONE | ||
gains { | ||
gain_1 { | ||
mode AUDIO_GAIN_MODE_JOINT | ||
channel_mask AUDIO_CHANNEL_OUT_STEREO | ||
min_value_mB -6400 | ||
max_value_mB 0 | ||
default_value_mB 0 | ||
step_value_mB 100 | ||
min_ramp_ms 0 | ||
max_ramp_ms 0 | ||
} | ||
} | ||
} | ||
} | ||
outputs { | ||
primary { | ||
sampling_rates 44100 | ||
channel_masks AUDIO_CHANNEL_OUT_STEREO | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ANLG_DOCK_HEADSET|AUDIO_DEVICE_OUT_DGTL_DOCK_HEADSET|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_FM_TX|AUDIO_DEVICE_OUT_DEFAULT | ||
flags AUDIO_OUTPUT_FLAG_PRIMARY | ||
gains { | ||
gain_1 { | ||
mode AUDIO_GAIN_MODE_JOINT | ||
channel_mask AUDIO_CHANNEL_OUT_STEREO | ||
min_value_mB -6400 | ||
max_value_mB 0 | ||
default_value_mB 0 | ||
step_value_mB 100 | ||
min_ramp_ms 0 | ||
max_ramp_ms 0 | ||
} | ||
} | ||
} | ||
hdmi_stereo { | ||
sampling_rates 48000 | ||
channel_masks AUDIO_CHANNEL_OUT_STEREO | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_OUT_AUX_DIGITAL | ||
} | ||
hdmi_multi_ch { | ||
sampling_rates 32000|44100|48000 | ||
channel_masks dynamic | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_OUT_AUX_DIGITAL | ||
flags AUDIO_OUTPUT_FLAG_DIRECT | ||
} | ||
hdmi_passthrough { | ||
sampling_rates dynamic | ||
channel_masks dynamic | ||
formats dynamic | ||
devices AUDIO_DEVICE_OUT_AUX_DIGITAL | ||
flags AUDIO_OUTPUT_FLAG_DIRECT | ||
} | ||
} | ||
inputs { | ||
primary { | ||
sampling_rates 8000|16000|48000 | ||
channel_masks AUDIO_CHANNEL_IN_MONO|AUDIO_CHANNEL_IN_STEREO | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_IN_COMMUNICATION|AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_AMBIENT|AUDIO_DEVICE_IN_WIRED_HEADSET|AUDIO_DEVICE_IN_AUX_DIGITAL|AUDIO_DEVICE_IN_VOICE_CALL|AUDIO_DEVICE_IN_BACK_MIC|AUDIO_DEVICE_IN_FM|AUDIO_DEVICE_IN_DEFAULT | ||
} | ||
} | ||
} | ||
a2dp { | ||
global_configuration { | ||
audio_hal_version 2.0 | ||
} | ||
outputs { | ||
a2dp { | ||
sampling_rates 44100 | ||
channel_masks AUDIO_CHANNEL_OUT_STEREO | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_OUT_ALL_A2DP | ||
} | ||
} | ||
inputs { | ||
a2dp { | ||
sampling_rates 44100 | ||
channel_masks AUDIO_CHANNEL_IN_STEREO | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_IN_BLUETOOTH_A2DP | ||
} | ||
} | ||
} | ||
usb { | ||
global_configuration { | ||
audio_hal_version 2.0 | ||
} | ||
inputs { | ||
usb_device { | ||
sampling_rates 16000|24000|32000|48000 | ||
channel_masks AUDIO_CHANNEL_IN_STEREO|AUDIO_CHANNEL_IN_MONO | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_IN_USB_DEVICE | ||
} | ||
} | ||
} | ||
r_submix { | ||
global_configuration { | ||
attached_input_devices AUDIO_DEVICE_IN_REMOTE_SUBMIX | ||
audio_hal_version 2.0 | ||
} | ||
outputs { | ||
r_submix { | ||
sampling_rates 48000 | ||
channel_masks AUDIO_CHANNEL_OUT_STEREO | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_OUT_REMOTE_SUBMIX | ||
} | ||
} | ||
inputs { | ||
r_submix { | ||
sampling_rates 48000 | ||
channel_masks AUDIO_CHANNEL_IN_MONO|AUDIO_CHANNEL_IN_STEREO | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_IN_REMOTE_SUBMIX | ||
} | ||
} | ||
} | ||
sco{ | ||
inputs { | ||
sco { | ||
sampling_rates 16000 | ||
channel_masks AUDIO_CHANNEL_IN_MONO | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET | ||
} | ||
} | ||
} | ||
btle{ | ||
inputs { | ||
btle { | ||
sampling_rates 16000 | ||
channel_masks AUDIO_CHANNEL_IN_MONO | ||
formats AUDIO_FORMAT_PCM_16_BIT | ||
devices AUDIO_DEVICE_IN_AMZN_BLUETOOTH_LE_MIC | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Copyright (C) 2014 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. | ||
--> | ||
|
||
<!-- This is the standard feature indicating that the device includes HDMI-CEC. --> | ||
<permissions> | ||
<feature name="android.hardware.hdmi.cec" /> | ||
</permissions> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Copyright (C) 2014 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. | ||
--> | ||
|
||
<permissions> | ||
|
||
<!-- These are the hardware components that all television devices must | ||
include. Devices with optional hardware must also include extra hardware | ||
files. | ||
--> | ||
<feature name="android.hardware.audio.output" /> | ||
<feature name="android.hardware.location" /> | ||
<feature name="android.hardware.location.network" /> | ||
<feature name="android.hardware.screen.landscape" /> | ||
<feature name="android.hardware.type.television" /> | ||
|
||
<feature name="android.software.app_widgets" /> | ||
<feature name="android.software.backup" /> | ||
<feature name="android.software.leanback" /> | ||
<feature name="android.software.leanback_only" /> | ||
<feature name="android.software.live_tv" /> | ||
<feature name="android.software.print" /> | ||
<feature name="android.software.voice_recognizers" /> | ||
|
||
</permissions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters