mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
Submodule externals updated: cd6142faf6...197cbb108e
@@ -31,7 +31,7 @@ blackcore {
|
||||
macx-clang: PRE_TARGETDEPS += $$DestRoot/lib/libblackcore.dylib
|
||||
}
|
||||
|
||||
LIBS *= -lblackcore -lvatlib2
|
||||
LIBS *= -lblackcore -lvatlib
|
||||
|
||||
win32 {
|
||||
contains(BLACK_CONFIG, FSX) {
|
||||
|
||||
@@ -30,7 +30,7 @@ namespace BlackCore
|
||||
: IAudioInputDevice(parent),
|
||||
m_audioService(audioService)
|
||||
{
|
||||
m_inputCodec.reset(Vat_CreateLocalInputCodec(audioService));
|
||||
m_inputCodec.reset(Vat_CreateLocalInputCodec(audioService, vatCodecLegacy));
|
||||
Vat_GetInputDeviceInfo(m_inputCodec.data(), onInputHardwareDeviceReceived, this, nullptr);
|
||||
m_currentDevice = getDefaultInputDevice();
|
||||
}
|
||||
@@ -77,7 +77,7 @@ namespace BlackCore
|
||||
: IAudioOutputDevice(parent),
|
||||
m_audioService(audioService)
|
||||
{
|
||||
m_outputCodec.reset(Vat_CreateLocalOutputCodec(m_audioService));
|
||||
m_outputCodec.reset(Vat_CreateLocalOutputCodec(m_audioService, vatCodecLegacy));
|
||||
Vat_GetOutputDeviceInfo(m_outputCodec.data(), onOutputHardwareDeviceReceived, this, nullptr);
|
||||
m_currentDevice = getDefaultOutputDevice();
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
#include "audiodevice.h"
|
||||
#include "blackmisc/audio/audiodeviceinfo.h"
|
||||
#include "blackmisc/audio/audiodeviceinfolist.h"
|
||||
#include "vatlib/vatlib2.h"
|
||||
#include "vatlib/vatlib.h"
|
||||
#include <QObject>
|
||||
|
||||
namespace BlackCore
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "blackcoreexport.h"
|
||||
#include "audiomixer.h"
|
||||
|
||||
#include "vatlib/vatlib2.h"
|
||||
#include "vatlib/vatlib.h"
|
||||
#include <QScopedPointer>
|
||||
|
||||
namespace BlackCore
|
||||
|
||||
@@ -30,7 +30,7 @@ SOURCES += *.cpp
|
||||
# SOURCES += $$PWD/settings/*.cpp
|
||||
SOURCES += $$PWD/data/*.cpp
|
||||
|
||||
LIBS *= -lvatlib2
|
||||
LIBS *= -lvatlib
|
||||
|
||||
DESTDIR = $$DestRoot/lib
|
||||
DLLDESTDIR = $$DestRoot/bin
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#include <type_traits>
|
||||
|
||||
static_assert(! std::is_abstract<BlackCore::CNetworkVatlib>::value, "Must implement all pure virtuals");
|
||||
static_assert(VAT_LIBVATLIB_VERSION == 904, "Wrong vatlib header installed");
|
||||
static_assert(VAT_LIBVATLIB_VERSION == 905, "Wrong vatlib header installed");
|
||||
|
||||
// TODO just placeholders to allow this to compile
|
||||
// This is just a test key and is NOT valid on the live network.
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
#include "settings/network.h"
|
||||
#include "blackmisc/simulation/ownaircraftprovider.h"
|
||||
#include "tokenbucket.h"
|
||||
#include <vatlib/vatlib2.h>
|
||||
#include <vatlib/vatlib.h>
|
||||
#include <QScopedPointer>
|
||||
#include <QTimer>
|
||||
#include <QTextCodec>
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
#include "blackcoreexport.h"
|
||||
#include "voice.h"
|
||||
#include <vatlib/vatlib2.h>
|
||||
#include <vatlib/vatlib.h>
|
||||
|
||||
#include <QString>
|
||||
#include <QScopedPointer>
|
||||
|
||||
Reference in New Issue
Block a user