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
This commit is contained in:
pbos@webrtc.org
2014-08-19 06:54:12 +00:00
parent 544f647a04
commit 742bac20b2

View File

@@ -27,10 +27,7 @@ static const int16_t kACoefQ12[3] = {
4096, -3072, 1024 4096, -3072, 1024
}; };
int32_t WebRtcIsacfix_Log2Q8(uint32_t x) {
__inline int32_t WebRtcIsacfix_Log2Q8( uint32_t x ) {
int32_t zeros, lg2; int32_t zeros, lg2;
int16_t frac; int16_t frac;