| Index: content/renderer/media/webrtc_audio_device_impl.cc
|
| diff --git a/content/renderer/media/webrtc_audio_device_impl.cc b/content/renderer/media/webrtc_audio_device_impl.cc
|
| index 32a5e49cd4e649e0023c26a4a5b6d6906d890c7f..64ae487fe7494c2ce56e2efbea7761d6b5a466aa 100644
|
| --- a/content/renderer/media/webrtc_audio_device_impl.cc
|
| +++ b/content/renderer/media/webrtc_audio_device_impl.cc
|
| @@ -144,8 +144,8 @@ void WebRtcAudioDeviceImpl::CaptureData(const int16* audio_data,
|
| // "higher than maximum". The input volume slider in the sound preference
|
| // allows the user to set a scaling that is higher than 100%. It means that
|
| // even if the reported maximum levels is N, the actual microphone level can
|
| - // go up to 1.5*N and that corresponds to a normalized |volume| of 1.5.
|
| - DCHECK_LE(volume, 1.5);
|
| + // go up to 1.5x*N and that corresponds to a normalized |volume| of 1.5x.
|
| + DCHECK_LE(volume, 1.6);
|
| #endif
|
|
|
| int output_delay_ms = 0;
|
|
|