blob: be2da9de483d205ebdef0b8b7d75c373a2f909db [file] [log] [blame]
Ajay Dudani9746c472012-06-18 16:01:16 -07001#
2# Audio policy configuration for generic device builds (goldfish audio HAL - emulator)
3#
4
5# Global configuration section: lists input and output devices always present on the device
6# as well as the output device selected by default.
7# Devices are designated by a string that corresponds to the enum in audio.h
8
9global_configuration {
10 attached_output_devices AUDIO_DEVICE_OUT_SPEAKER
11 default_output_device AUDIO_DEVICE_OUT_SPEAKER
12 attached_input_devices AUDIO_DEVICE_IN_BUILTIN_MIC
13}
14
15# audio hardware module section: contains descriptors for all audio hw modules present on the
16# device. Each hw module node is named after the corresponding hw module library base name.
17# For instance, "primary" corresponds to audio.primary.<device>.so.
18# The "primary" module is mandatory and must include at least one output with
19# AUDIO_OUTPUT_FLAG_PRIMARY flag.
20# Each module descriptor contains one or more output profile descriptors and zero or more
21# input profile descriptors. Each profile lists all the parameters supported by a given output
22# or input stream category.
23# The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding
24# to enums in audio.h and audio_policy.h. They are concatenated by use of "|" without space or "\n".
25
26audio_hw_modules {
27 primary {
28 outputs {
29 primary {
SathishKumar Mani88613382012-08-13 18:40:18 -070030 sampling_rates 44100|48000
Ajay Dudani9746c472012-06-18 16:01:16 -070031 channel_masks AUDIO_CHANNEL_OUT_STEREO
32 formats AUDIO_FORMAT_PCM_16_BIT
Ajay Dudani498654c2012-07-05 11:56:07 -070033 devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL
Ajay Dudani9746c472012-06-18 16:01:16 -070034 flags AUDIO_OUTPUT_FLAG_PRIMARY
35 }
SathishKumar Mani88613382012-08-13 18:40:18 -070036 deep_buffer {
37 sampling_rates 8000|11025|12000|16000|22050|24000|32000|44100|48000
38 channel_masks AUDIO_CHANNEL_OUT_STEREO
39 formats AUDIO_FORMAT_PCM_16_BIT
40 devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL
41 flags AUDIO_OUTPUT_FLAG_DEEP_BUFFER
42 }
Ajay Dudani9746c472012-06-18 16:01:16 -070043 }
44 inputs {
45 primary {
46 sampling_rates 8000|11025|12000|16000|22050|24000|32000|44100|48000
47 channel_masks AUDIO_CHANNEL_IN_MONO|AUDIO_CHANNEL_IN_STEREO
48 formats AUDIO_FORMAT_PCM_16_BIT
Ajay Dudani498654c2012-07-05 11:56:07 -070049 devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_WIRED_HEADSET|AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET|AUDIO_DEVICE_IN_AUX_DIGITAL|AUDIO_DEVICE_IN_VOICE_CALL
Ajay Dudani9746c472012-06-18 16:01:16 -070050 }
51 }
52 }
53}