platform_hardware_libhardware/modules
Eric Laurent 981f774496 usb audio: check proxy_prepare() errors in opne_input_stream()
Make sure that open_input_stream() reflects audio parameters
modifications done by proxy_prepare() and returns an error with
proposed parameters if needed.
Alos do not overwrite adev->device_sample_rate when opening an
input stream as this is driven by the output stream.

Bug: 37949012
Test: audio capture, playback and calls over USB headset.
Change-Id: I45fcd895b9a95e7673f2232b4a98c74be0548d0d
2017-05-03 12:53:06 -07:00
..
audio audio.*.default: remove unneeded dependency/IWYU 2017-04-11 17:37:41 +00:00
audio_remote_submix Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
camera Merge "modules/camera: Fix compiler warnings" am: f7888e1130 am: f832261e65 am: d6cebded75 2016-09-01 01:53:45 +00:00
consumerir consumerir.default: remove unneeded dependency. 2017-04-12 03:25:10 +00:00
fingerprint Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
gralloc gralloc: fix dependencies 2017-04-17 16:30:05 -07:00
hwcomposer Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
input Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
local_time Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
nfc nfc.default: remove unneeded dependency 2017-04-12 23:00:56 +00:00
nfc-nci Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
power Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
radio Merge "Move default HAL libraries to vendor" 2017-03-09 05:15:37 +00:00
sensors Correct inotify usage and fix strong count accounting error 2017-04-27 00:22:56 -07:00
soundtrigger Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
thermal Move thermal HAL to vendor partition 2017-02-27 13:11:33 +09:00
tv_input Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
usbaudio usb audio: check proxy_prepare() errors in opne_input_stream() 2017-05-03 12:53:06 -07:00
usbcamera usbcamera: Fix compiler warnings 2016-08-08 09:35:54 -07:00
vehicle Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
vibrator Merge "vibrator: fix issue with ledtrig-transient support" am: 60849b8da4 am: 95d22ed018 2017-03-11 01:35:14 +00:00
vr Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00
Android.mk Add radio HAL stub to the build list; fix format warning. 2017-02-08 15:04:31 -08:00
README.android Move default HAL libraries to vendor 2017-03-07 11:28:32 +08:00

Default (and possibly architecture dependents) HAL modules go here. 


libhardware.so eventually should contain *just* the HAL hub
(hardware.c), everything in it should be rewritten as modules.

Modules are .so in /vendor/lib/hw/ and have a well defined naming
convention:

    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.product.board>.so
    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.board.platform>.so
    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.arch>.so
    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.default.so

They also have a well defined interface which lives in include/hardware/.

A module can have several variants: "default", "arch" and "board", and they're
loaded in the "board", "arch" and "default" order.
The source code for the "board" variant, usually lives under partners/...

The source code for "default" and "arch" would usually
live under hardware/modules/.