mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 00:28:20 +00:00
[client] main: log if the frame format is using PQ or not
This commit is contained in:
parent
b41840b010
commit
6625cd733a
@ -695,12 +695,13 @@ int main_frameThread(void * unused)
|
|||||||
g_state.formatValid = true;
|
g_state.formatValid = true;
|
||||||
formatVer = frame->formatVer;
|
formatVer = frame->formatVer;
|
||||||
|
|
||||||
DEBUG_INFO("Format: %s %ux%u stride:%u pitch:%u rotation:%d hdr:%d",
|
DEBUG_INFO("Format: %s %ux%u stride:%u pitch:%u rotation:%d hdr:%d pq:%d",
|
||||||
FrameTypeStr[frame->type],
|
FrameTypeStr[frame->type],
|
||||||
frame->frameWidth, frame->frameHeight,
|
frame->frameWidth, frame->frameHeight,
|
||||||
frame->stride, frame->pitch,
|
frame->stride, frame->pitch,
|
||||||
frame->rotation,
|
frame->rotation,
|
||||||
frame->flags & FRAME_FLAG_HDR ? 1 : 0);
|
frame->flags & FRAME_FLAG_HDR ? 1 : 0,
|
||||||
|
frame->flags & FRAME_FLAG_HDR_PQ ? 1 : 0);
|
||||||
|
|
||||||
LG_LOCK(g_state.lgrLock);
|
LG_LOCK(g_state.lgrLock);
|
||||||
if (!RENDERER(onFrameFormat, lgrFormat))
|
if (!RENDERER(onFrameFormat, lgrFormat))
|
||||||
|
Loading…
Reference in New Issue
Block a user