summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Grinko <iivanich@gmail.com>2015-01-26 14:30:39 +0200
committerEthan Chen <intervigil@gmail.com>2015-07-27 22:21:38 -0700
commit45a65e7bf53d38cd6a16601c212aae1d969a5fdd (patch)
treefa1f4e7e77d38c18a9c08878c2ff977b1762f747
parentc8e9df19d7a275dd8511d61142cda44b40138031 (diff)
downloadhardware_qcom_audio-45a65e7bf53d38cd6a16601c212aae1d969a5fdd.tar.gz
hardware_qcom_audio-45a65e7bf53d38cd6a16601c212aae1d969a5fdd.tar.bz2
hardware_qcom_audio-45a65e7bf53d38cd6a16601c212aae1d969a5fdd.zip
msm8660: Silence logcat spam
Change-Id: Idb79de4a5318aa04cd72a57012331760fffbeeca
-rw-r--r--msm8660/AudioHardware.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/msm8660/AudioHardware.h b/msm8660/AudioHardware.h
index 43a548ec..d5406ef0 100644
--- a/msm8660/AudioHardware.h
+++ b/msm8660/AudioHardware.h
@@ -236,10 +236,10 @@ private:
char af_quality[PROP_VALUE_MAX];
property_get("af.resampler.quality",af_quality,"0");
if(strcmp("255",af_quality) == 0) {
- ALOGD("SampleRate 48k");
+ ALOGV("SampleRate 48k");
return 48000;
} else {
- ALOGD("SampleRate 44.1k");
+ ALOGV("SampleRate 44.1k");
return 44100;
}
}
@@ -247,10 +247,10 @@ private:
char af_quality[PROP_VALUE_MAX];
property_get("af.resampler.quality",af_quality,"0");
if(strcmp("255",af_quality) == 0) {
- ALOGD("Bufsize 5248");
+ ALOGV("Bufsize 5248");
return 5248;
} else {
- ALOGD("Bufsize 4800");
+ ALOGV("Bufsize 4800");
return 4800;
}
}