mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-23 07:40:05 +02:00
Fix linux debug complaints of missing thread shut-down...
... caused by commit b47bcb548e7866c1a44a4600ffbeff0ae0445516
This commit is contained in:
parent
5a8801fcd6
commit
15a60bde4b
@ -2025,6 +2025,8 @@ int AudacityApp::OnExit()
|
||||
|
||||
DeinitFFT();
|
||||
|
||||
DeinitAudioIO();
|
||||
|
||||
// Terminate the PluginManager (must be done before deleting the locale)
|
||||
PluginManager::Get().Terminate();
|
||||
|
||||
|
@ -943,6 +943,11 @@ void InitAudioIO()
|
||||
gPrefs->Flush();
|
||||
}
|
||||
|
||||
void DeinitAudioIO()
|
||||
{
|
||||
ugAudioIO.reset();
|
||||
}
|
||||
|
||||
wxString DeviceName(const PaDeviceInfo* info)
|
||||
{
|
||||
wxString infoName = wxSafeConvertMB2WX(info->name);
|
||||
|
@ -62,6 +62,7 @@ using WaveTrackArray = std::vector < WaveTrack* >;
|
||||
extern AUDACITY_DLL_API AudioIO *gAudioIO;
|
||||
|
||||
void InitAudioIO();
|
||||
void DeinitAudioIO();
|
||||
wxString DeviceName(const PaDeviceInfo* info);
|
||||
wxString HostName(const PaDeviceInfo* info);
|
||||
bool ValidateDeviceNames();
|
||||
|
Loading…
x
Reference in New Issue
Block a user