| Index: webrtc/modules/video_processing/video_denoiser.cc
|
| diff --git a/webrtc/modules/video_processing/video_denoiser.cc b/webrtc/modules/video_processing/video_denoiser.cc
|
| index c1cab8187d28c4b3ad2c3c58b882818979931600..0c58a2a14dbef90854f3c378a1d8a9bab233302e 100644
|
| --- a/webrtc/modules/video_processing/video_denoiser.cc
|
| +++ b/webrtc/modules/video_processing/video_denoiser.cc
|
| @@ -248,7 +248,7 @@ void VideoDenoiser::DenoiseFrame(const VideoFrame& frame,
|
| memset(moving_object_.get(), 1, mb_cols_ * mb_rows_);
|
|
|
| uint8_t noise_level = noise_estimation_enabled ? ne_->GetNoiseLevel() : 0;
|
| - int thr_var_base = 16 * 16 * 5;
|
| + int thr_var_base = 16 * 16 * 2;
|
| // Loop over blocks to accumulate/extract noise level and update x/y_density
|
| // factors for moving object detection.
|
| for (int mb_row = 0; mb_row < mb_rows_; ++mb_row) {
|
|
|