libraries: videoout: reduce logging pressure
This commit is contained in:
parent
70bcc26e2d
commit
c9c8673099
|
@ -185,14 +185,16 @@ s32 PS4_SYSV_ABI sceVideoOutGetFlipStatus(s32 handle, FlipStatus* status) {
|
||||||
return ORBIS_VIDEO_OUT_ERROR_INVALID_HANDLE;
|
return ORBIS_VIDEO_OUT_ERROR_INVALID_HANDLE;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_lock lock{port->port_mutex};
|
{
|
||||||
*status = port->flip_status;
|
std::unique_lock lock{port->port_mutex};
|
||||||
|
*status = port->flip_status;
|
||||||
|
}
|
||||||
|
|
||||||
LOG_INFO(Lib_VideoOut,
|
LOG_TRACE(Lib_VideoOut,
|
||||||
"count = {}, processTime = {}, tsc = {}, submitTsc = {}, flipArg = {}, gcQueueNum = "
|
"count = {}, processTime = {}, tsc = {}, submitTsc = {}, flipArg = {}, gcQueueNum = "
|
||||||
"{}, flipPendingNum = {}, currentBuffer = {}",
|
"{}, flipPendingNum = {}, currentBuffer = {}",
|
||||||
status->count, status->processTime, status->tsc, status->submitTsc, status->flipArg,
|
status->count, status->processTime, status->tsc, status->submitTsc, status->flipArg,
|
||||||
status->gcQueueNum, status->flipPendingNum, status->currentBuffer);
|
status->gcQueueNum, status->flipPendingNum, status->currentBuffer);
|
||||||
|
|
||||||
return ORBIS_OK;
|
return ORBIS_OK;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue