mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-12 15:25:34 +08:00
Set the actually opened audio device from vatlib
In the past, the optional arguments currentInput and currentOutput were not used. Therefore we never knew which device was actually opened by vatlib. This caused the Audio UI to be completely unsychronized from the reality when loading swiftgui. ref T337
This commit is contained in:
committed by
Klaus Basan
parent
44b1273085
commit
24ebc2ce7f
@@ -37,9 +37,6 @@ namespace BlackCore
|
||||
//! Get available input devices
|
||||
virtual const BlackMisc::Audio::CAudioDeviceInfoList &getInputDevices() const = 0;
|
||||
|
||||
//! Default input device
|
||||
virtual const BlackMisc::Audio::CAudioDeviceInfo &getDefaultInputDevice() const = 0;
|
||||
|
||||
//! Current input device
|
||||
virtual const BlackMisc::Audio::CAudioDeviceInfo &getCurrentInputDevice() const = 0;
|
||||
|
||||
@@ -63,9 +60,6 @@ namespace BlackCore
|
||||
//! Get available output devices
|
||||
virtual const BlackMisc::Audio::CAudioDeviceInfoList &getOutputDevices() const = 0;
|
||||
|
||||
//! Default output device
|
||||
virtual const BlackMisc::Audio::CAudioDeviceInfo &getDefaultOutputDevice() const = 0;
|
||||
|
||||
//! Current output device
|
||||
virtual const BlackMisc::Audio::CAudioDeviceInfo &getCurrentOutputDevice() const = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user