From f98b6cc10e7d8a63cfd3153c590b04e871158c93 Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Wed, 23 May 2012 18:49:47 +0000 Subject: [PATCH] Remove noise during build on Win32 TBR=niklas.enbom@webrtc.org BUG=chromium:126483 Review URL: https://webrtc-codereview.appspot.com/590006 Patch from Scott Graham . git-svn-id: http://webrtc.googlecode.com/svn/trunk@2283 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/common_audio/signal_processing/cross_correlation.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/common_audio/signal_processing/cross_correlation.c b/src/common_audio/signal_processing/cross_correlation.c index 726a74967..39eeb3cc3 100644 --- a/src/common_audio/signal_processing/cross_correlation.c +++ b/src/common_audio/signal_processing/cross_correlation.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. + * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source @@ -164,9 +164,6 @@ void WebRtcSpl_CrossCorrelation(WebRtc_Word32* cross_correlation, WebRtc_Word16* (*CrossCorrPtr) = 0; #ifndef _ARM_OPT_ -#ifdef _WIN32 -#pragma message("NOTE: default implementation is used") -#endif // Perform the cross correlation for (j = 0; j < dim_seq; j++) { @@ -175,9 +172,6 @@ void WebRtcSpl_CrossCorrelation(WebRtc_Word32* cross_correlation, WebRtc_Word16* seq2Ptr++; } #else -#ifdef _WIN32 -#pragma message("NOTE: _ARM_OPT_ optimizations are used") -#endif if (right_shifts == 0) { // Perform the optimized cross correlation