| Index: content/renderer/media/media_stream_audio_processor_options.cc
|
| diff --git a/content/renderer/media/media_stream_audio_processor_options.cc b/content/renderer/media/media_stream_audio_processor_options.cc
|
| index 12338e227e77a17bb5798fb7300ea47705823580..320d1a6ba31d8296160a2a67b1c07523aa4d12ef 100644
|
| --- a/content/renderer/media/media_stream_audio_processor_options.cc
|
| +++ b/content/renderer/media/media_stream_audio_processor_options.cc
|
| @@ -134,8 +134,8 @@ void EnableTypingDetection(AudioProcessing* audio_processing,
|
| webrtc::VoiceDetection::kVeryLowLikelihood);
|
| CHECK_EQ(err, 0);
|
|
|
| - // Configure the update period to 100ms (10 * 10ms) in the typing detector.
|
| - typing_detector->SetParameters(0, 0, 0, 0, 0, 10);
|
| + // Configure the update period to 1s (100 * 10ms) in the typing detector.
|
| + typing_detector->SetParameters(0, 0, 0, 0, 0, 100);
|
| }
|
|
|
| void EnableExperimentalEchoCancellation(AudioProcessing* audio_processing) {
|
|
|