Move VoiceVatlib into its own thread in ContextAudio

refs #183
This commit is contained in:
Roland Winklmeier
2014-04-13 18:50:10 +02:00
committed by Klaus Basan
parent c04e408844
commit 526149f94d
2 changed files with 10 additions and 1 deletions

View File

@@ -13,6 +13,8 @@
#include "voice_vatlib.h"
#include "blackcore/keyboard.h"
#include <QThread>
namespace BlackCore
{
//! \brief Audio context implementation
@@ -114,6 +116,8 @@ namespace BlackCore
CVoiceVatlib *m_voice; //!< underlying voice lib
IKeyboard *m_keyboard;
IKeyboard::RegistrationHandle m_handlePtt;
IContextSettings *m_contextSettings;
QThread m_threadVoice;
};
}