From c9537abfb1a9d1c94d6bf9aa0e6cfa2cda1ae94b Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 17 Dec 2021 04:07:00 -0800 Subject: Allocate voice properties in clusters --- core/context.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'core/context.h') diff --git a/core/context.h b/core/context.h index 155ee167..0e531db0 100644 --- a/core/context.h +++ b/core/context.h @@ -122,6 +122,7 @@ struct ContextBase { std::atomic mCurrentVoiceChange{}; void allocVoiceChanges(size_t addcount); + void allocVoiceProps(); ContextParams mParams; @@ -162,6 +163,9 @@ struct ContextBase { using VoiceCluster = std::unique_ptr; al::vector mVoiceClusters; + using VoicePropsCluster = std::unique_ptr; + al::vector mVoicePropClusters; + ContextBase(DeviceBase *device); ContextBase(const ContextBase&) = delete; -- cgit v1.2.3