mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-25 14:57:20 +00:00
[obs] fix potential deadlock
This commit is contained in:
parent
00a41be413
commit
8d5a42c233
2
obs/lg.c
2
obs/lg.c
@ -229,6 +229,7 @@ static void lgVideoTick(void * data, float seconds)
|
|||||||
case FRAME_TYPE_RGBA10: format = GS_R10G10B10A2; break;
|
case FRAME_TYPE_RGBA10: format = GS_R10G10B10A2; break;
|
||||||
default:
|
default:
|
||||||
printf("invalid type %d\n", this->type);
|
printf("invalid type %d\n", this->type);
|
||||||
|
os_sem_post(this->frameSem);
|
||||||
obs_leave_graphics();
|
obs_leave_graphics();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -239,6 +240,7 @@ static void lgVideoTick(void * data, float seconds)
|
|||||||
if (!this->texture)
|
if (!this->texture)
|
||||||
{
|
{
|
||||||
printf("create texture failed\n");
|
printf("create texture failed\n");
|
||||||
|
os_sem_post(this->frameSem);
|
||||||
obs_leave_graphics();
|
obs_leave_graphics();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user