Extract even more from the loop body

This commit is contained in:
Gwilym Inzani 2023-06-27 21:50:46 +01:00
parent 57f0a8c889
commit 38868cb269

View file

@ -422,7 +422,10 @@ impl MixerBuffer {
) {
working_buffer.fill(0.into());
for channel in channels.filter(|channel| !channel.is_done) {
for (channel, playback_speed) in
channels
.filter(|channel| !channel.is_done)
.filter_map(|channel| {
let playback_speed = if channel.is_stereo {
2.into()
} else {
@ -437,10 +440,13 @@ impl MixerBuffer {
channel.pos = 0.into();
} else {
channel.is_done = true;
continue;
return None;
}
}
Some((channel, playback_speed))
})
{
if channel.volume != 0.into() {
if channel.is_stereo {
unsafe {