summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/AudioResampler.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-02-06 08:24:07 -0800
committerGlenn Kasten <gkasten@google.com>2014-02-10 08:22:42 -0800
commit01d3acba9de861cb2b718338e787cff3566fc5ec (patch)
tree597410f74cf8cc6e3103a5f6b209c3f40cd388c6 /services/audioflinger/AudioResampler.h
parentec95f0e82a680931e9c7c9011dbbd68d5ab484c8 (diff)
downloadframeworks_av-01d3acba9de861cb2b718338e787cff3566fc5ec.zip
frameworks_av-01d3acba9de861cb2b718338e787cff3566fc5ec.tar.gz
frameworks_av-01d3acba9de861cb2b718338e787cff3566fc5ec.tar.bz2
Fix clang warnings in AudioFlinger
Change-Id: I0fa61025c979709ad7d655bc717df5f194b6089e
Diffstat (limited to 'services/audioflinger/AudioResampler.h')
-rw-r--r--services/audioflinger/AudioResampler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/audioflinger/AudioResampler.h b/services/audioflinger/AudioResampler.h
index c341325..dc33f29 100644
--- a/services/audioflinger/AudioResampler.h
+++ b/services/audioflinger/AudioResampler.h
@@ -84,7 +84,7 @@ protected:
static const uint32_t kPhaseMask = (1LU<<kNumPhaseBits)-1;
// multiplier to calculate fixed point phase increment
- static const double kPhaseMultiplier = 1L << kNumPhaseBits;
+ static const double kPhaseMultiplier;
AudioResampler(int bitDepth, int inChannelCount, int32_t sampleRate, src_quality quality);