Merge commit '180c2ba763c32793c6d3c5fe2683f8f2b233ca10'
This commit is contained in:
commit
1bca4eeba1
@ -97,6 +97,10 @@ status_t GraphicBufferMapper::lockYCbCr(buffer_handle_t handle,
|
|||||||
ATRACE_CALL();
|
ATRACE_CALL();
|
||||||
status_t err;
|
status_t err;
|
||||||
|
|
||||||
|
if (mAllocMod->lock_ycbcr == NULL) {
|
||||||
|
return -EINVAL; // do not log failure
|
||||||
|
}
|
||||||
|
|
||||||
err = mAllocMod->lock_ycbcr(mAllocMod, handle, static_cast<int>(usage),
|
err = mAllocMod->lock_ycbcr(mAllocMod, handle, static_cast<int>(usage),
|
||||||
bounds.left, bounds.top, bounds.width(), bounds.height(),
|
bounds.left, bounds.top, bounds.width(), bounds.height(),
|
||||||
ycbcr);
|
ycbcr);
|
||||||
@ -144,16 +148,19 @@ status_t GraphicBufferMapper::lockAsyncYCbCr(buffer_handle_t handle,
|
|||||||
ATRACE_CALL();
|
ATRACE_CALL();
|
||||||
status_t err;
|
status_t err;
|
||||||
|
|
||||||
if (mAllocMod->common.module_api_version >= GRALLOC_MODULE_API_VERSION_0_3) {
|
if (mAllocMod->common.module_api_version >= GRALLOC_MODULE_API_VERSION_0_3
|
||||||
|
&& mAllocMod->lockAsync_ycbcr != NULL) {
|
||||||
err = mAllocMod->lockAsync_ycbcr(mAllocMod, handle,
|
err = mAllocMod->lockAsync_ycbcr(mAllocMod, handle,
|
||||||
static_cast<int>(usage), bounds.left, bounds.top,
|
static_cast<int>(usage), bounds.left, bounds.top,
|
||||||
bounds.width(), bounds.height(), ycbcr, fenceFd);
|
bounds.width(), bounds.height(), ycbcr, fenceFd);
|
||||||
} else {
|
} else if (mAllocMod->lock_ycbcr != NULL) {
|
||||||
sync_wait(fenceFd, -1);
|
sync_wait(fenceFd, -1);
|
||||||
close(fenceFd);
|
close(fenceFd);
|
||||||
err = mAllocMod->lock_ycbcr(mAllocMod, handle, static_cast<int>(usage),
|
err = mAllocMod->lock_ycbcr(mAllocMod, handle, static_cast<int>(usage),
|
||||||
bounds.left, bounds.top, bounds.width(), bounds.height(),
|
bounds.left, bounds.top, bounds.width(), bounds.height(),
|
||||||
ycbcr);
|
ycbcr);
|
||||||
|
} else {
|
||||||
|
return -EINVAL; // do not log failure
|
||||||
}
|
}
|
||||||
|
|
||||||
ALOGW_IF(err, "lock(...) failed %d (%s)", err, strerror(-err));
|
ALOGW_IF(err, "lock(...) failed %d (%s)", err, strerror(-err));
|
||||||
|
Loading…
Reference in New Issue
Block a user