1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-21 13:45:47 +01:00

Remove PortMixer code

Removes PortMixer code since PortMixer isn't supported by PortAudio

Signed-off-by: akleja <storspov@gmail.com>
This commit is contained in:
akleja
2021-08-29 23:33:33 +02:00
committed by Panagiotis Vasilopoulos
parent 056de91cf7
commit 12c0cba3c4
11 changed files with 1 additions and 691 deletions

View File

@@ -246,9 +246,6 @@ void AboutDialog::CreateInformationTab(ShuttleGui& AboutDialogGUI) {
#ifndef USE_LV2
#define USE_LV2 0
#endif
#ifndef USE_PORTMIXER
#define USE_PORTMIXER 0
#endif
#ifndef USE_SOUNDTOUCH
#define USE_SOUNDTOUCH 0
#endif
@@ -318,9 +315,6 @@ void AboutDialog::CreateInformationTab(ShuttleGui& AboutDialogGUI) {
#ifdef USE_LV2
AddBuildInfoRow(&informationStr, wxT("LV2"), buildInfo_pluginSupport, USE_LV2 ? enabled : disabled);
#endif
#ifdef USE_PORTMIXER
AddBuildInfoRow(&informationStr, wxT("PortMixer"), buildInfo_soundCardMixerSupport, USE_PORTMIXER ? enabled : disabled);
#endif
#ifdef USE_SOUNDTOUCH
AddBuildInfoRow(&informationStr, wxT("SoundTouch"), buildInfo_pitchTempoSupport, USE_SOUNDTOUCH ? enabled : disabled);
#endif