-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
In mixer.c:155:
/* Some mixers like having a multiple of 4, so try to give that unless
* this is the last update. */
if(OutPos+DstBufferSize < SamplesToDo)
DstBufferSize &= ~3;
In case the previously computed DstBufferSize is <4, this sets it to zero and the outer loop never terminates. Should probably be:
if(DstBufferSize > 4 && OutPos+DstBufferSize < SamplesToDo)
Metadata
Metadata
Assignees
Labels
No labels