summaryrefslogtreecommitdiff
path: root/services/audioflinger/AudioResampler.cpp
diff options
context:
space:
mode:
author Jean-Baptiste Queru <jbq@google.com> 2012-01-19 14:46:24 -0800
committer android code review <noreply-gerritcodereview@google.com> 2012-01-19 14:46:24 -0800
commitee4618bc4da65fdabf197874e87d2923904e7acd (patch)
tree0fb687dcbdf125a30cdb645605b57bb847d0c7b5 /services/audioflinger/AudioResampler.cpp
parentc318bbb05e02a0080e129623ec8029d31be0d60e (diff)
parent06ade6ae1bd015e8b8ad0685847911213c93cc5b (diff)
Merge "Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF)"
Diffstat (limited to 'services/audioflinger/AudioResampler.cpp')
-rw-r--r--services/audioflinger/AudioResampler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/services/audioflinger/AudioResampler.cpp b/services/audioflinger/AudioResampler.cpp
index 9ee5a3034533..d18a6fb68792 100644
--- a/services/audioflinger/AudioResampler.cpp
+++ b/services/audioflinger/AudioResampler.cpp
@@ -96,15 +96,15 @@ AudioResampler* AudioResampler::create(int bitDepth, int inChannelCount,
switch (quality) {
default:
case LOW_QUALITY:
- LOGV("Create linear Resampler");
+ ALOGV("Create linear Resampler");
resampler = new AudioResamplerOrder1(bitDepth, inChannelCount, sampleRate);
break;
case MED_QUALITY:
- LOGV("Create cubic Resampler");
+ ALOGV("Create cubic Resampler");
resampler = new AudioResamplerCubic(bitDepth, inChannelCount, sampleRate);
break;
case HIGH_QUALITY:
- LOGV("Create sinc Resampler");
+ ALOGV("Create sinc Resampler");
resampler = new AudioResamplerSinc(bitDepth, inChannelCount, sampleRate);
break;
}