mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 12:45:05 +01:00
Increase mic stream volume to max in case the users mic is set low for some reason
This commit is contained in:
parent
5f532c2560
commit
ba4dfe4217
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user