summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Kondik <steve@cyngn.com>2015-02-25 00:55:50 -0800
committerSteve Kondik <steve@cyngn.com>2015-02-25 00:55:50 -0800
commit17785294d82488d05feafb21143ab9d4754d23a0 (patch)
treea3acc056c6be048970c972fcb6c5d47271514eee
parentd7a9b082baf6bafe2dd2abc6bca319868c5f94a6 (diff)
downloadhardware_qcom_audio-stable/cm-12.0-caf-8974-YNG3C.tar.gz
hardware_qcom_audio-stable/cm-12.0-caf-8974-YNG3C.tar.bz2
hardware_qcom_audio-stable/cm-12.0-caf-8974-YNG3C.zip
Change-Id: I522a0f0379143315f95dbf6a0f40cb6507287c47
-rw-r--r--hal/audio_hw.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/hal/audio_hw.c b/hal/audio_hw.c
index 4911cc50..7ad352f6 100644
--- a/hal/audio_hw.c
+++ b/hal/audio_hw.c
@@ -1156,18 +1156,18 @@ static void *offload_thread_loop(void *context)
send_callback = false;
switch(cmd->cmd) {
case OFFLOAD_CMD_WAIT_FOR_BUFFER:
- ALOGD("copl(%x):calling compress_wait", (unsigned int)out);
+ ALOGV("copl(%x):calling compress_wait", (unsigned int)out);
compress_wait(out->compr, -1);
- ALOGD("copl(%x):out of compress_wait", (unsigned int)out);
+ ALOGV("copl(%x):out of compress_wait", (unsigned int)out);
send_callback = true;
event = STREAM_CBK_EVENT_WRITE_READY;
break;
case OFFLOAD_CMD_PARTIAL_DRAIN:
ret = compress_next_track(out->compr);
if(ret == 0) {
- ALOGD("copl(%p):calling compress_partial_drain", out);
+ ALOGV("copl(%p):calling compress_partial_drain", out);
ret = compress_partial_drain(out->compr);
- ALOGD("copl(%p):out of compress_partial_drain", out);
+ ALOGV("copl(%p):out of compress_partial_drain", out);
if (ret < 0)
ret = -errno;
}
@@ -1187,9 +1187,9 @@ static void *offload_thread_loop(void *context)
ALOGE("%s: Block drain ready event during SSR", __func__);
break;
case OFFLOAD_CMD_DRAIN:
- ALOGD("copl(%x):calling compress_drain", (unsigned int)out);
+ ALOGV("copl(%x):calling compress_drain", (unsigned int)out);
compress_drain(out->compr);
- ALOGD("copl(%x):out of compress_drain", (unsigned int)out);
+ ALOGV("copl(%x):out of compress_drain", (unsigned int)out);
send_callback = true;
event = STREAM_CBK_EVENT_DRAIN_READY;
break;
@@ -2023,7 +2023,7 @@ static ssize_t out_write(struct audio_stream_out *stream, const void *buffer,
}
if (is_offload_usecase(out->usecase)) {
- ALOGD("copl(%x): writing buffer (%d bytes) to compress device", (unsigned int)out, bytes);
+ ALOGV("copl(%x): writing buffer (%d bytes) to compress device", (unsigned int)out, bytes);
if (out->send_new_metadata) {
ALOGD("copl(%x):send new gapless metadata", (unsigned int)out);
compress_set_gapless_metadata(out->compr, &out->gapless_mdata);