diff options
| author | 2025-03-15 20:40:38 -0400 | |
|---|---|---|
| committer | 2025-03-15 20:40:38 -0400 | |
| commit | 846bd3d1b7bcec3653aa9d662f559235c4689e1b (patch) | |
| tree | 56906544460079681f46d23d48d76f1a8242ea75 /src/mixer | |
| parent | 46d5660a2582323e1c9c33a56694c322bc21b7bc (diff) | |
| download | camu-846bd3d1b7bcec3653aa9d662f559235c4689e1b.tar.gz camu-846bd3d1b7bcec3653aa9d662f559235c4689e1b.tar.bz2 camu-846bd3d1b7bcec3653aa9d662f559235c4689e1b.zip | |
Sink refactor wip
Dangling target won't stay around. I have a couple of ideas about how to massively simplify the handling of ended entries.
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/mixer')
| -rw-r--r-- | src/mixer/mixer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mixer/mixer.h b/src/mixer/mixer.h index 8c14ea1..7f443ea 100644 --- a/src/mixer/mixer.h +++ b/src/mixer/mixer.h @@ -10,10 +10,10 @@ #include "../codec/codec.h" #ifdef CAMU_MIXER_THREADED -// Do we need to lock in order to synchronize the mixers paused state. -// Disabling this is a very specific optimization to allow the audio device to -// buffer data during start(). It requires pause(), resume(), and remove_buffer() -// to all come from the same thread. +// Do we need a lock in order to synchronize the mixers paused state. +// Disabling this is a very specific optimization to allow the audio device to buffer +// data during start(). It requires pause(), resume(), and remove_buffer() to all +// come from the same thread. //#define CAMU_MIXER_THREADED_START_STOP #endif |