Skip to content

Commit f859571

Browse files
Clang format
1 parent 2835cde commit f859571

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

obs-studio-server/source/nodeobs_service.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3298,11 +3298,8 @@ bool OutputIsBusy(obs_output_t *output, bool includeReconnect = false)
32983298
void WaitForAllOutputsToStop()
32993299
{
33003300
// At the moment, we assume that all outputs stop eventually, so there is no deadline timeout.
3301-
while (OutputIsBusy(streamingOutput[StreamServiceId::Main], true) ||
3302-
OutputIsBusy(streamingOutput[StreamServiceId::Second], true) ||
3303-
OutputIsBusy(recordingOutput) ||
3304-
OutputIsBusy(replayBufferOutput) ||
3305-
OutputIsBusy(virtualCam.Get())) {
3301+
while (OutputIsBusy(streamingOutput[StreamServiceId::Main], true) || OutputIsBusy(streamingOutput[StreamServiceId::Second], true) ||
3302+
OutputIsBusy(recordingOutput) || OutputIsBusy(replayBufferOutput) || OutputIsBusy(virtualCam.Get())) {
33063303
std::this_thread::sleep_for(std::chrono::milliseconds(25));
33073304
}
33083305
}

0 commit comments

Comments
 (0)