mirror of https://github.com/procxx/kepka.git
added minimum system version to Info.plist, added suspended flag to OpenAL handle
This commit is contained in:
parent
db96605332
commit
16aafe28d5
|
@ -450,7 +450,7 @@ AudioCapture *audioCapture() {
|
||||||
return capture;
|
return capture;
|
||||||
}
|
}
|
||||||
|
|
||||||
AudioPlayerFader::AudioPlayerFader(QThread *thread) : _timer(this), _suspendFlag(false) {
|
AudioPlayerFader::AudioPlayerFader(QThread *thread) : _timer(this), _suspendFlag(false), _suspended(true) {
|
||||||
moveToThread(thread);
|
moveToThread(thread);
|
||||||
_timer.moveToThread(thread);
|
_timer.moveToThread(thread);
|
||||||
_suspendTimer.moveToThread(thread);
|
_suspendTimer.moveToThread(thread);
|
||||||
|
@ -570,6 +570,7 @@ void AudioPlayerFader::onTimer() {
|
||||||
void AudioPlayerFader::onSuspendTimer() {
|
void AudioPlayerFader::onSuspendTimer() {
|
||||||
QMutexLocker lock(&_suspendMutex);
|
QMutexLocker lock(&_suspendMutex);
|
||||||
if (_suspendFlag) {
|
if (_suspendFlag) {
|
||||||
|
_suspended = true;
|
||||||
alcSuspendContext(audioContext);
|
alcSuspendContext(audioContext);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -582,7 +583,10 @@ void AudioPlayerFader::processContext() {
|
||||||
QMutexLocker lock(&_suspendMutex);
|
QMutexLocker lock(&_suspendMutex);
|
||||||
_suspendFlag = false;
|
_suspendFlag = false;
|
||||||
emit stopSuspend();
|
emit stopSuspend();
|
||||||
alcProcessContext(audioContext);
|
if (_suspended) {
|
||||||
|
_suspended = false;
|
||||||
|
alcProcessContext(audioContext);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class AudioPlayerLoader {
|
class AudioPlayerLoader {
|
||||||
|
|
|
@ -172,7 +172,7 @@ private:
|
||||||
|
|
||||||
QTimer _timer, _suspendTimer;
|
QTimer _timer, _suspendTimer;
|
||||||
QMutex _suspendMutex;
|
QMutex _suspendMutex;
|
||||||
bool _suspendFlag;
|
bool _suspendFlag, _suspended;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>0.8.21</string>
|
<string>0.8.21</string>
|
||||||
|
<key>LSMinimumSystemVersion</key>
|
||||||
|
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleURLTypes</key>
|
<key>CFBundleURLTypes</key>
|
||||||
|
|
Loading…
Reference in New Issue