blob: abe979c0faf6da5b8ed55348607f221e95b5bd5c [file] [log] [blame]
Kevin Rocard649142b2017-12-13 18:58:39 -08001Directory structure of the audio HIDL related code.
2
3audio
Kevin Rocardd10247b2018-11-21 18:05:52 -08004|-- 2.0 <== core 2.0 HIDL API. .hal can not be moved into the core directory
5| because that would change its namespace and include path
Kevin Rocarda4e6d8b2018-01-20 21:52:01 -08006|-- 4.0 <== Version 4.0 of the core API
Kevin Rocard649142b2017-12-13 18:58:39 -08007|
Kevin Rocardd10247b2018-11-21 18:05:52 -08008|-- ...
Kevin Rocard649142b2017-12-13 18:58:39 -08009|
Kevin Rocardd10247b2018-11-21 18:05:52 -080010|-- common <== code common to audio core and effect API
11| |-- 2.0 <== HIDL API of V2
Kevin Rocard649142b2017-12-13 18:58:39 -080012| |-- 4.0
Kevin Rocard649142b2017-12-13 18:58:39 -080013| |-- ...
Kevin Rocardd10247b2018-11-21 18:05:52 -080014| `-- all_versions <== code common to all version of both core and effect API
15| |-- default <== implementation shared code between core and effect impl
16| |-- test <== utilities used by tests
17| `-- util <== utilities used by both implementation and tests
18|
19|-- core <== VTS and default implementation of the core API (not HIDL, see /audio/2.0))
20| `-- all_versions <== Code is version independent through #if and separate files
21| |-- default <== code that wraps the legacy API
22| `-- vts <== vts of core API
23| |-- 2.0 <== 2.0 specific tests and helpers
24| |-- 4.0
25| |-- ...
Kevin Rocard649142b2017-12-13 18:58:39 -080026|
27`-- effect <== idem for the effect API
28 |-- 2.0
Kevin Rocard649142b2017-12-13 18:58:39 -080029 |-- 4.0
Kevin Rocard649142b2017-12-13 18:58:39 -080030 |-- ...
Kevin Rocard649142b2017-12-13 18:58:39 -080031 `-- all_versions
32 |-- default
Kevin Rocard649142b2017-12-13 18:58:39 -080033 `-- vts