diff options
author | Glenn Kasten <gkasten@google.com> | 2015-02-17 15:04:28 -0800 |
---|---|---|
committer | Glenn Kasten <gkasten@google.com> | 2015-02-27 18:29:48 -0800 |
commit | 2f5aa01e52b8869515373b5047f00272f245883e (patch) | |
tree | b44c62dca5f9a925ce3b3d860376164597c2780f /services | |
parent | e1984fc72d9f814461992b9f5b1e5f9d45ce7afa (diff) | |
download | frameworks_av-2f5aa01e52b8869515373b5047f00272f245883e.zip frameworks_av-2f5aa01e52b8869515373b5047f00272f245883e.tar.gz frameworks_av-2f5aa01e52b8869515373b5047f00272f245883e.tar.bz2 |
Line length 100
Change-Id: Ic0ae92c300df221387bdd9669e4b7b995d83d28a
Diffstat (limited to 'services')
-rw-r--r-- | services/audioflinger/AudioResamplerSinc.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/services/audioflinger/AudioResamplerSinc.cpp b/services/audioflinger/AudioResamplerSinc.cpp index 82a3d66..fdad8b6 100644 --- a/services/audioflinger/AudioResamplerSinc.cpp +++ b/services/audioflinger/AudioResamplerSinc.cpp @@ -265,7 +265,8 @@ void AudioResamplerSinc::resample(int32_t* out, size_t outFrameCount, if (mConstants == &veryHighQualityConstants && readResampleCoefficients) { mFirCoefs = readResampleCoefficients( mInSampleRate <= mSampleRate ); } else { - mFirCoefs = (const int32_t *) ((mInSampleRate <= mSampleRate) ? mFirCoefsUp : mFirCoefsDown); + mFirCoefs = (const int32_t *) + ((mInSampleRate <= mSampleRate) ? mFirCoefsUp : mFirCoefsDown); } // select the appropriate resampler |