Merge "Camera HAL Vts : Fix usage flag combination during gralloc allocation." into stage-aosp-rvc-ts-dev am: 7cc876ee02
am: 314611d129
am: 4181fe2378
am: 03a6282934
Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/interfaces/+/12173503 Change-Id: I995b94362e2f3c07e4ba4a038ade70671d652f43
This commit is contained in:
commit
7941bf02ce
1 changed files with 6 additions and 3 deletions
|
@ -4453,9 +4453,12 @@ void CameraHidlTest::processCaptureRequestInternal(uint64_t bufferUsage,
|
|||
nullptr};
|
||||
} else {
|
||||
allocateGraphicBuffer(testStream.width, testStream.height,
|
||||
android_convertGralloc1To0Usage(halStreamConfig.streams[0].producerUsage,
|
||||
halStreamConfig.streams[0].consumerUsage),
|
||||
halStreamConfig.streams[0].overrideFormat, &buffer_handle);
|
||||
/* We don't look at halStreamConfig.streams[0].consumerUsage
|
||||
* since that is 0 for output streams
|
||||
*/
|
||||
android_convertGralloc1To0Usage(
|
||||
halStreamConfig.streams[0].producerUsage, bufferUsage),
|
||||
halStreamConfig.streams[0].overrideFormat, &buffer_handle);
|
||||
outputBuffer = {halStreamConfig.streams[0].id,
|
||||
bufferId,
|
||||
buffer_handle,
|
||||
|
|
Loading…
Reference in a new issue