From 742bac20b21332941f11eed127da8b0a4c88aadf Mon Sep 17 00:00:00 2001 From: "pbos@webrtc.org" Date: Tue, 19 Aug 2014 06:54:12 +0000 Subject: [PATCH] Remove __inline from WebRtcIsacfix_Log2Q8. This function is used externally and needs to always be emitted, also there's no point in explicitly marking this as inline. R=tina.legrand@webrtc.org BUG= Review URL: https://webrtc-codereview.appspot.com/13279004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6926 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../audio_coding/codecs/isac/fix/source/pitch_estimator.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_estimator.c b/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_estimator.c index 426b2cf48..9fb72c6c3 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_estimator.c +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_estimator.c @@ -27,10 +27,7 @@ static const int16_t kACoefQ12[3] = { 4096, -3072, 1024 }; - - -__inline int32_t WebRtcIsacfix_Log2Q8( uint32_t x ) { - +int32_t WebRtcIsacfix_Log2Q8(uint32_t x) { int32_t zeros, lg2; int16_t frac;