platform_hardware_interfaces/audio
jiabin df0f1c1e61 Add haptic channel mask.
Bug: 111454766
Test: build
Change-Id: I00c28aa02473ce83b0d9b404b5cf33410c73a2c8
2018-12-10 12:39:50 -08:00
..
2.0 Audio V4: Move service entry point to common 2018-03-06 11:30:51 -08:00
4.0 Audio XSD: Allow vendor extension for audio devices 2018-10-23 17:26:03 +00:00
5.0 Audio V5: move Stream Metadata to common 2018-12-02 17:59:45 -08:00
common Add haptic channel mask. 2018-12-10 12:39:50 -08:00
core/all-versions Audio V5: move Stream Metadata to common 2018-12-02 17:59:45 -08:00
effect Audio HAL V5: Introduce HAL V5, equal to V4 for now 2018-12-02 17:59:45 -08:00
README Audio HAL: Update file tree documentation 2018-11-28 20:29:52 -08:00

Directory structure of the audio HIDL related code.

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