commit | 8e8dc9b98c27d0a18249e4f58fffa73a56f70e30 | [log] [tgz] |
---|---|---|
author | Changyeon Jo <changyeon@google.com> | Wed Aug 24 05:09:17 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Aug 24 05:09:17 2022 +0000 |
tree | 8ab402647d02bb1c4f4c0ecc66a93fd8ce55948c | |
parent | aa3e2e24f77c1970b438eecea6a860f5b5f35d12 [diff] | |
parent | ffab16505ebd0b0c13a9980ece5ba82f879618b7 [diff] |
Merge "Update EVS API descriptions" into tm-qpr-dev am: 02313365a9 am: ffab16505e Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/interfaces/+/19630723 Change-Id: Ibc52abdb9faff57f239eed2dfdd9a07146c1bc7d Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/automotive/evs/aidl/android/hardware/automotive/evs/EvsEventDesc.aidl b/automotive/evs/aidl/android/hardware/automotive/evs/EvsEventDesc.aidl index ebff98f..3abdb54 100644 --- a/automotive/evs/aidl/android/hardware/automotive/evs/EvsEventDesc.aidl +++ b/automotive/evs/aidl/android/hardware/automotive/evs/EvsEventDesc.aidl
@@ -33,7 +33,9 @@ @utf8InCpp String deviceId; /** - * Possible additional vendor information that is opaque to the EvsManager + * Possible additional vendor information that is opaque to the EvsManager. + * The size of the payload must not exceed 16-byte if the HIDL recipients are + * expected to exist. */ int[] payload; }
diff --git a/automotive/evs/aidl/android/hardware/automotive/evs/IEvsCameraStream.aidl b/automotive/evs/aidl/android/hardware/automotive/evs/IEvsCameraStream.aidl index 2c2b44c..c599d58 100644 --- a/automotive/evs/aidl/android/hardware/automotive/evs/IEvsCameraStream.aidl +++ b/automotive/evs/aidl/android/hardware/automotive/evs/IEvsCameraStream.aidl
@@ -47,7 +47,10 @@ /** * Receives calls from the HAL each time an event happens. * - * @param in event EVS event with possible event information. + * @param in event EVS event with possible event information. If ths HIDL + * recipients are expected to exist, the size of the event + * payload must not exceed 16 bytes; otherwise, a notification + * will not reach them. */ void notify(in EvsEventDesc event); }