fixed synch issues + memleak @ name fetching

This commit is contained in:
Hane 2025-01-25 17:27:36 +01:00
commit 3239e60471
7 changed files with 87 additions and 43 deletions

View file

@ -9,10 +9,10 @@ class SessionStateCallback;
struct SessionVolumeInfo {
//SessionVolumeInfo(bool muted, float mainVolume);
bool muted;
float mainVolume;
NGuid caller;
bool isNameChanged = false;
bool muted;
float mainVolume;
NGuid caller;
std::atomic<bool> isNameChanged = false;
//size_t channels;
//std::vector<float> channelVolumes;
};