pcm_mixer: Explicitly initialize the mixer frequency in the pcm init path

Change-Id: I5b79dbb0608ef182fd5592797c6211ce5299999c
This commit is contained in:
Solomon Peachy 2026-03-28 08:43:40 -04:00
parent a84a38dd87
commit 5ce96b84d8

View file

@ -266,6 +266,9 @@ void pcm_postinit(void)
sink->ops.postinit();
sink->pcm_is_ready = true;
}
/* Ensure mixer is in a sane state */
mixer_set_frequency(pcm_get_frequency());
}
bool pcm_is_initialized(void)