Use 48KHz sample rate for PA test to match the actual stream

This commit is contained in:
Cameron Gutman 2021-07-24 07:33:07 -05:00
parent 7109301a46
commit 615ed824ac

View File

@ -34,7 +34,7 @@ static int channelCount;
bool audio_pulse_init(char* audio_device) {
pa_sample_spec spec = {
.format = PA_SAMPLE_S16LE,
.rate = 44000,
.rate = 48000,
.channels = 2
};