1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-20 09:31:15 +02:00

Exception safety in: general effect performing functions

This commit is contained in:
Paul Licameli
2016-12-16 13:27:24 -05:00
parent 2cbdd1cc43
commit 79c3bef2ce
5 changed files with 259 additions and 219 deletions

View File

@@ -131,7 +131,8 @@ public:
virtual bool IsReady() = 0;
virtual bool ProcessInitialize(sampleCount totalLen, ChannelNames chanMap = NULL) = 0;
virtual bool ProcessFinalize() = 0;
// This may be called during stack unwinding:
virtual bool ProcessFinalize() /* noexcept */ = 0;
virtual size_t ProcessBlock(float **inBlock, float **outBlock, size_t blockLen) = 0;
virtual bool RealtimeInitialize() = 0;