blob: 48801d90c99e61ccf2d3ca2b6c5b39077c1f5cb9 [file] [log] [blame]
Eric Laurente1919b32013-04-09 09:14:20 -07001# List of effect libraries to load. Each library element must contain a "path" element
2# giving the full path of the library .so file.
3# libraries {
4# <lib name> {
5# path <lib path>
6# }
7# }
8libraries {
9 bundle {
10 path /system/lib/soundfx/libbundlewrapper.so
11 }
12 reverb {
13 path /system/lib/soundfx/libreverbwrapper.so
14 }
15 visualizer {
16 path /system/lib/soundfx/libvisualizer.so
17 }
18 qcom_pre_processing {
19 path /system/lib/soundfx/libqcomvoiceprocessing.so
20 }
21 downmix {
22 path /system/lib/soundfx/libdownmix.so
23 }
Jean-Michel Trivi1c3855a2013-09-16 18:47:22 -070024 loudness_enhancer {
25 path /system/lib/soundfx/libldnhncr.so
26 }
Eric Laurente1919b32013-04-09 09:14:20 -070027}
28
29# list of effects to load. Each effect element must contain a "library" and a "uuid" element.
30# The value of the "library" element must correspond to the name of one library element in the
31# "libraries" element.
32# The name of the effect element is indicative, only the value of the "uuid" element
33# designates the effect.
34# The uuid is the implementation specific UUID as specified by the effect vendor. This is not the
35# generic effect type UUID.
36# effects {
37# <fx name> {
38# library <lib name>
39# uuid <effect uuid>
40# }
41# ...
42# }
43
44effects {
45 bassboost {
46 library bundle
47 uuid 8631f300-72e2-11df-b57e-0002a5d5c51b
48 }
49 virtualizer {
50 library bundle
51 uuid 1d4033c0-8557-11df-9f2d-0002a5d5c51b
52 }
53 equalizer {
54 library bundle
55 uuid ce772f20-847d-11df-bb17-0002a5d5c51b
56 }
57 volume {
58 library bundle
59 uuid 119341a0-8469-11df-81f9-0002a5d5c51b
60 }
61 reverb_env_aux {
62 library reverb
63 uuid 4a387fc0-8ab3-11df-8bad-0002a5d5c51b
64 }
65 reverb_env_ins {
66 library reverb
67 uuid c7a511a0-a3bb-11df-860e-0002a5d5c51b
68 }
69 reverb_pre_aux {
70 library reverb
71 uuid f29a1400-a3bb-11df-8ddc-0002a5d5c51b
72 }
73 reverb_pre_ins {
74 library reverb
75 uuid 172cdf00-a3bc-11df-a72f-0002a5d5c51b
76 }
77 visualizer {
78 library visualizer
79 uuid d069d9e0-8329-11df-9168-0002a5d5c51b
80 }
81 downmix {
82 library downmix
83 uuid 93f04452-e4fe-41cc-91f9-e475b6d1d69f
84 }
85 aec {
86 library qcom_pre_processing
87 uuid 0f8d0d2a-59e5-45fe-b6e4-248c8a799109
88 }
Jean-Michel Trivi1c3855a2013-09-16 18:47:22 -070089 loudness_enhancer {
90 library loudness_enhancer
91 uuid fa415329-2034-4bea-b5dc-5b381c8d1e2c
92 }
Eric Laurente1919b32013-04-09 09:14:20 -070093}
94# Audio preprocessor configurations.
95# The pre processor configuration consists in a list of elements each describing
96# pre processor settings for a given input source. Valid input source names are:
97# "mic", "camcorder", "voice_recognition", "voice_communication"
98# Each input source element contains a list of effects elements. The name of the effect
99# element must be the name of one of the effects in the "effects" list of the file.
100# Each effect element may optionally contain a list of parameters and their
101# default value to apply when the pre processor effect is created.
102# A parameter is defined by a "param" element and a "value" element. Each of these elements
103# consists in one or more elements specifying a type followed by a value.
104# The types defined are: "int", "short", "float", "bool" and "string"
105# When both "param" and "value" are a single int, a simple form is allowed where just
106# the param and value pair is present in the parameter description
107# pre_processing {
108# <input source name> {
109# <fx name> {
110# <param 1 name> {
111# param {
112# int|short|float|bool|string <value>
113# [ int|short|float|bool|string <value> ]
114# ...
115# }
116# value {
117# int|short|float|bool|string <value>
118# [ int|short|float|bool|string <value> ]
119# ...
120# }
121# }
122# <param 2 name > {<param> <value>}
123# ...
124# }
125# ...
126# }
127# ...
128# }