mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-23 15:50: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();
|
DeinitFFT();
|
||||||
|
|
||||||
|
DeinitAudioIO();
|
||||||
|
|
||||||
// Terminate the PluginManager (must be done before deleting the locale)
|
// Terminate the PluginManager (must be done before deleting the locale)
|
||||||
PluginManager::Get().Terminate();
|
PluginManager::Get().Terminate();
|
||||||
|
|
||||||
|
@ -943,6 +943,11 @@ void InitAudioIO()
|
|||||||
gPrefs->Flush();
|
gPrefs->Flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DeinitAudioIO()
|
||||||
|
{
|
||||||
|
ugAudioIO.reset();
|
||||||
|
}
|
||||||
|
|
||||||
wxString DeviceName(const PaDeviceInfo* info)
|
wxString DeviceName(const PaDeviceInfo* info)
|
||||||
{
|
{
|
||||||
wxString infoName = wxSafeConvertMB2WX(info->name);
|
wxString infoName = wxSafeConvertMB2WX(info->name);
|
||||||
|
@ -62,6 +62,7 @@ using WaveTrackArray = std::vector < WaveTrack* >;
|
|||||||
extern AUDACITY_DLL_API AudioIO *gAudioIO;
|
extern AUDACITY_DLL_API AudioIO *gAudioIO;
|
||||||
|
|
||||||
void InitAudioIO();
|
void InitAudioIO();
|
||||||
|
void DeinitAudioIO();
|
||||||
wxString DeviceName(const PaDeviceInfo* info);
|
wxString DeviceName(const PaDeviceInfo* info);
|
||||||
wxString HostName(const PaDeviceInfo* info);
|
wxString HostName(const PaDeviceInfo* info);
|
||||||
bool ValidateDeviceNames();
|
bool ValidateDeviceNames();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user