Merge "Fix a typo that caused the high quality resampler to produce garbage" into jb-mr1-dev
diff --git a/services/audioflinger/AudioResamplerSinc.cpp b/services/audioflinger/AudioResamplerSinc.cpp
index 90651f1..9e8447a 100644
--- a/services/audioflinger/AudioResamplerSinc.cpp
+++ b/services/audioflinger/AudioResamplerSinc.cpp
@@ -252,7 +252,7 @@
     // FIXME store current state (up or down sample) and only load the coefs when the state
     // changes. Or load two pointers one for up and one for down in the init function.
     // Not critical now since the read functions are fast, but would be important if read was slow.
-    if (readResampleCoefficients) {
+    if (mConstants == &veryHighQualityConstants && readResampleCoefficients) {
         ALOGV("get coefficient from libmm-audio resampler library");
         mFirCoefs = (mInSampleRate <= mSampleRate) ? readResampleCoefficients(true) :
                 readResampleCoefficients(false);