platform_hardware_interfaces/audio
Dan Shi ac9cf4482b Suppress gtest error for tests without any instance
Bug: 162052785
Test: m -j vts
Change-Id: I627d6790aa08aa9c6e3c5b8bdc533213ee08de21
Merged-In: I627d6790aa08aa9c6e3c5b8bdc533213ee08de21
2020-09-11 11:02:25 -07:00
..
2.0 update hidl .bp 2020-07-07 16:22:36 +09:00
4.0 Make android.hardware.renderscript@1.0 buildable for native_bridge 2020-07-08 21:20:03 +00:00
5.0 update hidl .bp 2020-07-07 16:22:36 +09:00
6.0 update hidl .bp 2020-07-07 16:22:36 +09:00
common Make android.hardware.renderscript@1.0 buildable for native_bridge am: 7cac9425b0 am: d454bfb695 2020-07-09 20:26:55 +00:00
core/all-versions Suppress gtest error for tests without any instance 2020-09-11 11:02:25 -07:00
effect Merge Android R (rvc-dev-plus-aosp-without-vendor@6692709) 2020-08-28 13:05:04 -07:00
policy/1.0 audio: Centralize audio configuration paths specification 2020-04-17 01:55:48 +00:00
README Update README 2019-10-08 11:09:46 +01:00

Directory structure of the audio HIDL related code.

Run `common/all-versions/copyHAL.sh` to create a new version of the audio HAL
based on an existing one.

audio
|-- 2.0              <== core 2.0 HIDL API. .hal can not be moved into the core directory
|                        because that would change its namespace and include path
|-- 4.0              <== Version 4.0 of the core API
|
|-- ...
|
|-- common           <== code common to audio core and effect API
|   |-- 2.0          <== HIDL API of V2
|   |-- 4.0
|   |-- ...
|   `-- all-versions <== code common to all version of both core and effect API
|       |-- default  <== implementation shared code between core and effect impl
|       |-- test     <== utilities used by tests
|       `-- util     <== utilities used by both implementation and tests
|
|-- core             <== VTS and default implementation of the core API (not HIDL, see /audio/2.0))
|   `-- all-versions <== Code is version independent through #if and separate files
|       |-- default  <== code that wraps the legacy API
|       `-- vts      <== vts of core API
|           |-- 2.0  <== 2.0 specific tests and helpers
|           |-- 4.0
|           |-- ...
|
`-- effect           <== idem for the effect API
    |-- 2.0
    |-- 4.0
    |-- ...
    `-- all-versions
        |-- default
        `-- vts