Skip to content
Snippets Groups Projects
Commit 871942b5 authored by Aline Gondim Santos's avatar Aline Gondim Santos
Browse files

audiolayer: do not round sample_rate

Rounding the sample rate adds artifacts to the sent audio stream.

Change-Id: If82017c3cb69cb065ecfbdc5bfa96f2891874c25
parent 59622100
No related branches found
No related tags found
No related merge requests found
......@@ -159,8 +159,6 @@ AudioLayer::createAudioProcessor()
auto nb_channels = std::max(audioFormat_.nb_channels, audioInputFormat_.nb_channels);
auto sample_rate = std::max(audioFormat_.sample_rate, audioInputFormat_.sample_rate);
// round sample_rate to nearest multiple of 16000 and clamp it.
sample_rate = 16000u * ((sample_rate / 16000u) + 1u);
sample_rate = std::clamp(sample_rate, 16000u, 48000u);
AudioFormat formatForProcessor {sample_rate, nb_channels};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment