summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/AudioResamplerCubic.h
diff options
context:
space:
mode:
authorAndy Hung <hunga@google.com>2014-07-07 10:21:44 -0700
committerAndy Hung <hunga@google.com>2014-07-07 10:29:36 -0700
commit3348e36c51e91e78020bcc6578eda83d97c31bec (patch)
treeee3df8ed9f79863fc34589813710896a7e08af86 /services/audioflinger/AudioResamplerCubic.h
parent075abae2a954bf3edf18ad1705c2c0f188454ae0 (diff)
downloadframeworks_av-3348e36c51e91e78020bcc6578eda83d97c31bec.zip
frameworks_av-3348e36c51e91e78020bcc6578eda83d97c31bec.tar.gz
frameworks_av-3348e36c51e91e78020bcc6578eda83d97c31bec.tar.bz2
Replace int bitDepth with audio_format_t in Resampler
Remove mBitDepth from class (not used). Replace with audio_format_t in factory method to distinguish between float and pcm 16-bit. Change-Id: I166860796c68285077ef4458d8758d19b82523f9
Diffstat (limited to 'services/audioflinger/AudioResamplerCubic.h')
-rw-r--r--services/audioflinger/AudioResamplerCubic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/audioflinger/AudioResamplerCubic.h b/services/audioflinger/AudioResamplerCubic.h
index 203b933..b315da5 100644
--- a/services/audioflinger/AudioResamplerCubic.h
+++ b/services/audioflinger/AudioResamplerCubic.h
@@ -28,8 +28,8 @@ namespace android {
class AudioResamplerCubic : public AudioResampler {
public:
- AudioResamplerCubic(int bitDepth, int inChannelCount, int32_t sampleRate) :
- AudioResampler(bitDepth, inChannelCount, sampleRate, MED_QUALITY) {
+ AudioResamplerCubic(int inChannelCount, int32_t sampleRate) :
+ AudioResampler(inChannelCount, sampleRate, MED_QUALITY) {
}
virtual void resample(int32_t* out, size_t outFrameCount,
AudioBufferProvider* provider);