commit | ffab16505ebd0b0c13a9980ece5ba82f879618b7 | [log] [tgz] |
---|---|---|
author | Changyeon Jo <changyeon@google.com> | Tue Aug 23 21:32:23 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Aug 23 21:32:23 2022 +0000 |
tree | 0af634f3b0bcbf0df18e052e8452087f313e11d7 | |
parent | eb4698378136734015019e53381b9e488083ce95 [diff] | |
parent | 02313365a9ac0b324dcda854526e8e40b0ed37a4 [diff] |
Merge "Update EVS API descriptions" into tm-qpr-dev am: 02313365a9 Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/interfaces/+/19630723 Change-Id: I7ffb0d88973f8ad949fb61eebdf1a6d6bad3dcac 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); }