Shunkai Yao | 60b34b7 | 2022-11-10 17:16:50 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <audio_effects_conf version="2.0" xmlns="http://schemas.android.com/audio/audio_effects_conf/v2_0"> |
| 3 | <!-- Overview. |
| 4 | This example config file was copy from existing one: frameworks/av/media/libeffects/data/ |
| 5 | audio_effects.xml, with effect library names updated to AIDL libraries we currently have. |
| 6 | |
| 7 | All "library" attributes in "effect" element must must match a "library" element with the |
| 8 | same value of the "name" attribute. |
| 9 | All "effect" attributes in "preprocess" and "postprocess" element must match an "effect" |
| 10 | element with the same value of the "name" attribute. |
| 11 | |
| 12 | AIDL EffectFactory are relying on the "name" attribute in "effect" element to identify the |
| 13 | effect type, so it's necessary to have the mapping from name to effect type UUID. Make |
| 14 | sure to either use existing effect name as key of |
| 15 | ::android::hardware::audio::effect::kUuidNameTypeMap, or add a new {name, typeUUID} map |
| 16 | item to the kUuidNameTypeMap. |
| 17 | |
| 18 | Existing audio_effects.xml should working without any change as long as: |
| 19 | 1. "path" attribute of "library" element matches with the actual effect library name. |
| 20 | 2. "name" attribute of "effect" and "effectProxy" element correctly added as key of |
| 21 | kUuidNameTypeMap, with value matches Identity.type in Descriptor.aidl. |
| 22 | 3. "uuid" attribute of "effect" element matches Identity.uuid in Descriptor.aidl. |
| 23 | 4. "uuid" attribute of "effectProxy" element matches Identity.proxy in Descriptor.aidl. |
| 24 | --> |
| 25 | |
| 26 | <!-- List of effect libraries to load. |
| 27 | Each library element must contain a "name" attribute and a "path" attribute giving the |
| 28 | name of a library .so file on the target device. |
| 29 | --> |
| 30 | <libraries> |
Shunkai Yao | bd862b8 | 2022-12-20 00:11:41 +0000 | [diff] [blame] | 31 | <library name="aecsw" path="libaecsw.so"/> |
| 32 | <library name="agcsw" path="libagcsw.so"/> |
Shunkai Yao | 60b34b7 | 2022-11-10 17:16:50 +0000 | [diff] [blame] | 33 | <library name="bassboostsw" path="libbassboostsw.so"/> |
| 34 | <library name="bundle" path="libbundleaidl.so"/> |
Shraddha Basantwani | 4ff8698 | 2022-12-13 16:31:49 +0530 | [diff] [blame] | 35 | <library name="downmix" path="libdownmixaidl.so"/> |
Shunkai Yao | 60b34b7 | 2022-11-10 17:16:50 +0000 | [diff] [blame] | 36 | <library name="dynamics_processingsw" path="libdynamicsprocessingsw.so"/> |
| 37 | <library name="equalizersw" path="libequalizersw.so"/> |
Shraddha Basantwani | ae7dde5 | 2022-12-18 15:01:14 +0530 | [diff] [blame^] | 38 | <library name="haptic_generator" path="libhapticgeneratoraidl.so"/> |
Shraddha Basantwani | 22834ea | 2022-12-08 16:09:05 +0530 | [diff] [blame] | 39 | <library name="loudness_enhancer" path="libloudnessenhanceraidl.so"/> |
Shunkai Yao | bd862b8 | 2022-12-20 00:11:41 +0000 | [diff] [blame] | 40 | <library name="nssw" path="libnssw.so"/> |
Shunkai Yao | 812d5b4 | 2022-11-16 18:08:50 +0000 | [diff] [blame] | 41 | <library name="env_reverbsw" path="libenvreverbsw.so"/> |
| 42 | <library name="preset_reverbsw" path="libpresetreverbsw.so"/> |
Shunkai Yao | 60b34b7 | 2022-11-10 17:16:50 +0000 | [diff] [blame] | 43 | <library name="virtualizersw" path="libvirtualizersw.so"/> |
| 44 | <library name="visualizersw" path="libvisualizersw.so"/> |
| 45 | <library name="volumesw" path="libvolumesw.so"/> |
| 46 | </libraries> |
| 47 | |
| 48 | <!-- list of effects to load. |
| 49 | Each "effect" element must contain a "name", "library" and a "uuid" attribute. |
| 50 | The value of the "library" attribute must correspond to the name of one library element in |
| 51 | the "libraries" element. |
| 52 | The "name" attribute used to specific effect type, and should be mapping to a key of |
| 53 | aidl::android::hardware::audio::effect::kUuidNameTypeMap. |
| 54 | The "uuid" attribute is the implementation specific UUID as specified by the effect vendor. |
| 55 | |
| 56 | Effect proxy can be supported with "effectProxy" element, each sub-element should contain |
| 57 | "library" and "uuid" attribute, all other attributes were ignored. Framework side use |
| 58 | result of IFactory.queryEffects() to decide which effect implementation should be part of |
| 59 | proxy and which not. |
| 60 | |
| 61 | Only "name", "library", and "uuid" attributes in "effects" element are meaningful and |
| 62 | parsed out by EffectConfig class, all other attributes are ignored. |
| 63 | Only "name" and "uuid" attributes in "effectProxy" element are meaningful and parsed out |
| 64 | by EffectConfig class, all other attributes are ignored. |
| 65 | --> |
| 66 | |
| 67 | <effects> |
Shunkai Yao | bd862b8 | 2022-12-20 00:11:41 +0000 | [diff] [blame] | 68 | <effect name="acoustic_echo_canceler" library="aecsw" uuid="bb392ec0-8d4d-11e0-a896-0002a5d5c51b"/> |
| 69 | <effect name="automatic_gain_control" library="agcsw" uuid="89f38e65-d4d2-4d64-ad0e-2b3e799ea886"/> |
Shraddha Basantwani | 3a2fb03 | 2022-11-22 11:04:35 +0530 | [diff] [blame] | 70 | <effectProxy name="bassboost" uuid="14804144-a5ee-4d24-aa88-0002a5d5c51b"> |
| 71 | <libsw library="bassboostsw" uuid="fa8181f2-588b-11ed-9b6a-0242ac120002"/> |
| 72 | <libsw library="bundle" uuid="8631f300-72e2-11df-b57e-0002a5d5c51b"/> |
| 73 | </effectProxy> |
Shraddha Basantwani | 4ff8698 | 2022-12-13 16:31:49 +0530 | [diff] [blame] | 74 | <effect name="downmix" library="downmix" uuid="93f04452-e4fe-41cc-91f9-e475b6d1d69f"/> |
Shunkai Yao | 60b34b7 | 2022-11-10 17:16:50 +0000 | [diff] [blame] | 75 | <effect name="dynamics_processing" library="dynamics_processingsw" uuid="fa818d78-588b-11ed-9b6a-0242ac120002"/> |
Shraddha Basantwani | ae7dde5 | 2022-12-18 15:01:14 +0530 | [diff] [blame^] | 76 | <effect name="haptic_generator" library="haptic_generator" uuid="97c4acd1-8b82-4f2f-832e-c2fe5d7a9931"/> |
Shraddha Basantwani | 22834ea | 2022-12-08 16:09:05 +0530 | [diff] [blame] | 77 | <effect name="loudness_enhancer" library="loudness_enhancer" uuid="fa415329-2034-4bea-b5dc-5b381c8d1e2c"/> |
Shunkai Yao | 812d5b4 | 2022-11-16 18:08:50 +0000 | [diff] [blame] | 78 | <effect name="env_reverb" library="env_reverbsw" uuid="fa819886-588b-11ed-9b6a-0242ac120002"/> |
Shunkai Yao | bd862b8 | 2022-12-20 00:11:41 +0000 | [diff] [blame] | 79 | <effect name="noise_suppression" library="nssw" uuid="c06c8400-8e06-11e0-9cb6-0002a5d5c51b"/> |
Shunkai Yao | 812d5b4 | 2022-11-16 18:08:50 +0000 | [diff] [blame] | 80 | <effect name="preset_reverb" library="preset_reverbsw" uuid="fa8199c6-588b-11ed-9b6a-0242ac120002"/> |
Sham Rathod | 5fd232f | 2022-12-08 13:56:38 +0530 | [diff] [blame] | 81 | <effectProxy name="virtualizer" uuid="d3467faa-acc7-4d34-acaf-0002a5d5c51b"> |
| 82 | <libsw library="virtualizersw" uuid="fa819d86-588b-11ed-9b6a-0242ac120002"/> |
| 83 | <libsw library="bundle" uuid="1d4033c0-8557-11df-9f2d-0002a5d5c51b"/> |
| 84 | </effectProxy> |
Shunkai Yao | 60b34b7 | 2022-11-10 17:16:50 +0000 | [diff] [blame] | 85 | <effect name="visualizer" library="visualizersw" uuid="fa81a0f6-588b-11ed-9b6a-0242ac120002"/> |
| 86 | <effect name="volume" library="volumesw" uuid="fa81a718-588b-11ed-9b6a-0242ac120002"/> |
Shunkai Yao | 812d5b4 | 2022-11-16 18:08:50 +0000 | [diff] [blame] | 87 | <effectProxy name="equalizer" uuid="c8e70ecd-48ca-456e-8a4f-0002a5d5c51b"> |
Shunkai Yao | 60b34b7 | 2022-11-10 17:16:50 +0000 | [diff] [blame] | 88 | <libsw library="equalizersw" uuid="0bed4300-847d-11df-bb17-0002a5d5c51b"/> |
| 89 | <libsw library="bundle" uuid="ce772f20-847d-11df-bb17-0002a5d5c51b"/> |
| 90 | </effectProxy> |
| 91 | </effects> |
| 92 | |
| 93 | <!-- Audio pre processor configurations. |
| 94 | The pre processor configuration is described in a "preprocess" element and consists in a |
| 95 | list of elements each describing pre processor settings for a given use case or "stream". |
| 96 | Each stream element has a "type" attribute corresponding to the input source used. |
| 97 | Valid types are these defined in system/hardware/interfaces/media/aidl/android/media/audio/ |
| 98 | common/AudioSource.aidl. |
| 99 | Each "stream" element contains a list of "apply" elements indicating one effect to apply. |
| 100 | The effect to apply is designated by its name in the "effects" elements. |
| 101 | If there are more than one effect apply to one stream, the audio framework will apply them |
| 102 | in the same equence as they listed in "stream" element. |
| 103 | |
| 104 | <preprocess> |
| 105 | <stream type="voice_communication"> |
| 106 | <apply effect="aec"/> |
| 107 | <apply effect="ns"/> |
| 108 | </stream> |
| 109 | </preprocess> |
| 110 | --> |
| 111 | |
| 112 | <!-- Audio post processor configurations. |
| 113 | The post processor configuration is described in a "postprocess" element and consists in a |
| 114 | list of elements each describing post processor settings for a given use case or "stream". |
| 115 | Each stream element has a "type" attribute corresponding to the stream type used. |
| 116 | Valid types are these defined in system/hardware/interfaces/media/aidl/android/media/audio/ |
| 117 | common/AudioStreamType.aidl. |
| 118 | Each "stream" element contains a list of "apply" elements indicating one effect to apply. |
| 119 | The effect to apply is designated by its name in the "effects" elements. |
| 120 | If there are more than one effect apply to one stream, the audio framework will apply them |
| 121 | in the same equence as they listed in "stream" element. |
| 122 | |
| 123 | <postprocess> |
| 124 | <stream type="music"> |
| 125 | <apply effect="music_post_proc"/> |
| 126 | </stream> |
| 127 | <stream type="voice_call"> |
| 128 | <apply effect="voice_post_proc"/> |
| 129 | </stream> |
| 130 | <stream type="notification"> |
| 131 | <apply effect="notification_post_proc"/> |
| 132 | </stream> |
| 133 | </postprocess> |
| 134 | --> |
| 135 | |
| 136 | </audio_effects_conf> |