Increase mic stream volume to max in case the users mic is set low for some reason

This commit is contained in:
James Rowe 2019-03-06 11:17:32 -07:00
parent 5f532c2560
commit ba4dfe4217

View File

@ -79,6 +79,10 @@ void CubebInput::StartSampling(const Frontend::Mic::Parameters& params) {
}
cubeb_stream_start(impl->stream);
int ret = cubeb_stream_set_volume(impl->stream, 1.0);
if (ret == CUBEB_ERROR_NOT_SUPPORTED) {
LOG_WARNING(Audio, "Unabled to set volume for cubeb input");
}
}
void CubebInput::StopSampling() {