commit | 010751d402160fd49a252ada6bfa571b6eaafdee | [log] [tgz] |
---|---|---|
author | Sungtak Lee <taklee@google.com> | Mon Nov 27 18:50:49 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Nov 27 18:50:49 2023 +0000 |
tree | c8714488a09c21f00f1bd2dc72d5636ae89c6cea | |
parent | d761cc1099ab9aa43fb2eeee5911038a898f51a7 [diff] | |
parent | cf5c2cf45a537c88fe399d37fbd0e0df825a5db8 [diff] |
Merge "media.c2 aidl: handle the case of fence being invalid" into main am: cf5c2cf45a Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2845122 Change-Id: I12621d945009fe68fcea07e02e725815bd286496 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/media/c2/aidl/aidl_api/android.hardware.media.c2/current/android/hardware/media/c2/IGraphicBufferAllocator.aidl b/media/c2/aidl/aidl_api/android.hardware.media.c2/current/android/hardware/media/c2/IGraphicBufferAllocator.aidl index 3e460dd..e13ba1f 100644 --- a/media/c2/aidl/aidl_api/android.hardware.media.c2/current/android/hardware/media/c2/IGraphicBufferAllocator.aidl +++ b/media/c2/aidl/aidl_api/android.hardware.media.c2/current/android/hardware/media/c2/IGraphicBufferAllocator.aidl
@@ -39,7 +39,7 @@ ParcelFileDescriptor getWaitableFd(); parcelable Allocation { android.hardware.HardwareBuffer buffer; - ParcelFileDescriptor fence; + @nullable ParcelFileDescriptor fence; } parcelable Description { int width;
diff --git a/media/c2/aidl/android/hardware/media/c2/IGraphicBufferAllocator.aidl b/media/c2/aidl/android/hardware/media/c2/IGraphicBufferAllocator.aidl index 49c4ea4..1710242 100644 --- a/media/c2/aidl/android/hardware/media/c2/IGraphicBufferAllocator.aidl +++ b/media/c2/aidl/android/hardware/media/c2/IGraphicBufferAllocator.aidl
@@ -35,7 +35,7 @@ */ parcelable Allocation { HardwareBuffer buffer; - ParcelFileDescriptor fence; + @nullable ParcelFileDescriptor fence; } /**