| Index: webrtc/modules/video_processing/util/denoiser_filter.cc
|
| diff --git a/webrtc/modules/video_processing/util/denoiser_filter.cc b/webrtc/modules/video_processing/util/denoiser_filter.cc
|
| index a5819905b2ab3de107c87e2523db5888465fd81b..3e36077ea05c5e153c0d0a1ebb10bd59adb48dde 100644
|
| --- a/webrtc/modules/video_processing/util/denoiser_filter.cc
|
| +++ b/webrtc/modules/video_processing/util/denoiser_filter.cc
|
| @@ -23,12 +23,11 @@ const int kSumDiffThresholdHigh = 600;
|
| DenoiserFilter* DenoiserFilter::Create() {
|
| DenoiserFilter* filter = NULL;
|
|
|
| - // If we know the minimum architecture at compile time, avoid CPU detection.
|
| +// If we know the minimum architecture at compile time, avoid CPU detection.
|
| #if defined(WEBRTC_ARCH_X86_FAMILY)
|
| // x86 CPU detection required.
|
| if (WebRtc_GetCPUInfo(kSSE2)) {
|
| - filter =
|
| - new DenoiserFilterSSE2();
|
| + filter = new DenoiserFilterSSE2();
|
| } else {
|
| filter = new DenoiserFilterC();
|
| }
|
|
|