New upstream version 21.0.2+dfsg1
This commit is contained in:
parent
1f1bbb3518
commit
baafb6325b
706 changed files with 49633 additions and 5044 deletions
|
|
@ -40,11 +40,13 @@ void OutputTimer::closeEvent(QCloseEvent*)
|
|||
void OutputTimer::StreamingTimerButton()
|
||||
{
|
||||
if (!obs_frontend_streaming_active()) {
|
||||
blog(LOG_INFO, "Starting stream due to OutputTimer");
|
||||
obs_frontend_streaming_start();
|
||||
} else if (streamingAlreadyActive) {
|
||||
StreamTimerStart();
|
||||
streamingAlreadyActive = false;
|
||||
} else if (obs_frontend_streaming_active()) {
|
||||
blog(LOG_INFO, "Stopping stream due to OutputTimer");
|
||||
obs_frontend_streaming_stop();
|
||||
}
|
||||
}
|
||||
|
|
@ -52,11 +54,13 @@ void OutputTimer::StreamingTimerButton()
|
|||
void OutputTimer::RecordingTimerButton()
|
||||
{
|
||||
if (!obs_frontend_recording_active()) {
|
||||
blog(LOG_INFO, "Starting recording due to OutputTimer");
|
||||
obs_frontend_recording_start();
|
||||
} else if (recordingAlreadyActive) {
|
||||
RecordTimerStart();
|
||||
recordingAlreadyActive = false;
|
||||
} else if (obs_frontend_recording_active()) {
|
||||
blog(LOG_INFO, "Stopping recording due to OutputTimer");
|
||||
obs_frontend_recording_stop();
|
||||
}
|
||||
}
|
||||
|
|
@ -204,11 +208,13 @@ void OutputTimer::ShowHideDialog()
|
|||
|
||||
void OutputTimer::EventStopStreaming()
|
||||
{
|
||||
blog(LOG_INFO, "Stopping stream due to OutputTimer timeout");
|
||||
obs_frontend_streaming_stop();
|
||||
}
|
||||
|
||||
void OutputTimer::EventStopRecording()
|
||||
{
|
||||
blog(LOG_INFO, "Stopping recording due to OutputTimer timeout");
|
||||
obs_frontend_recording_stop();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue