mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 16:42:50 +02:00
Restored some blocking invoke calls in Recording API
This commit is contained in:
parent
57864178c0
commit
8badda8128
1 changed files with 20 additions and 0 deletions
|
@ -129,6 +129,11 @@ void RecordingScriptingInterface::loadRecording(const QString& url, const Script
|
|||
}
|
||||
|
||||
void RecordingScriptingInterface::startPlaying() {
|
||||
if (QThread::currentThread() != thread()) {
|
||||
BLOCKING_INVOKE_METHOD(this, "startPlaying");
|
||||
return;
|
||||
}
|
||||
|
||||
Locker(_mutex);
|
||||
_player->play();
|
||||
}
|
||||
|
@ -143,6 +148,11 @@ void RecordingScriptingInterface::setPlayerAudioOffset(float audioOffset) {
|
|||
}
|
||||
|
||||
void RecordingScriptingInterface::setPlayerTime(float time) {
|
||||
if (QThread::currentThread() != thread()) {
|
||||
BLOCKING_INVOKE_METHOD(this, "setPlayerTime", Q_ARG(float, time));
|
||||
return;
|
||||
}
|
||||
|
||||
Locker(_mutex);
|
||||
_player->seek(time);
|
||||
}
|
||||
|
@ -178,6 +188,11 @@ void RecordingScriptingInterface::pausePlayer() {
|
|||
}
|
||||
|
||||
void RecordingScriptingInterface::stopPlaying() {
|
||||
if (QThread::currentThread() != thread()) {
|
||||
BLOCKING_INVOKE_METHOD(this, "stopPlaying");
|
||||
return;
|
||||
}
|
||||
|
||||
Locker(_mutex);
|
||||
_player->stop();
|
||||
}
|
||||
|
@ -273,6 +288,11 @@ bool RecordingScriptingInterface::saveRecordingToAsset(const ScriptValue& getCli
|
|||
}
|
||||
|
||||
void RecordingScriptingInterface::loadLastRecording() {
|
||||
if (QThread::currentThread() != thread()) {
|
||||
BLOCKING_INVOKE_METHOD(this, "loadLastRecording");
|
||||
return;
|
||||
}
|
||||
|
||||
Locker(_mutex);
|
||||
|
||||
if (!_lastClip) {
|
||||
|
|
Loading…
Reference in a new issue