summaryrefslogtreecommitdiffstats
path: root/audio/A2dpAudioInterface.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-08 10:18:02 +0000
committerSteve Block <steveblock@google.com>2012-01-08 10:18:02 +0000
commit5efbd421e0029d6fc44b1cc65c0e5e0d85e5161f (patch)
tree3ae5b573b19628a8e2377315302e4283ffd7d55a /audio/A2dpAudioInterface.cpp
parent64cca04dcbf4e21a51131224b9d0f0c596f876d4 (diff)
downloadhardware_libhardware_legacy-5efbd421e0029d6fc44b1cc65c0e5e0d85e5161f.zip
hardware_libhardware_legacy-5efbd421e0029d6fc44b1cc65c0e5e0d85e5161f.tar.gz
hardware_libhardware_legacy-5efbd421e0029d6fc44b1cc65c0e5e0d85e5161f.tar.bz2
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/157220 Bug: 5449033 Change-Id: Idfcd2f2269080d92a621dc432c65f7cf244588af
Diffstat (limited to 'audio/A2dpAudioInterface.cpp')
-rw-r--r--audio/A2dpAudioInterface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/A2dpAudioInterface.cpp b/audio/A2dpAudioInterface.cpp
index 4c7351d..cc435bd 100644
--- a/audio/A2dpAudioInterface.cpp
+++ b/audio/A2dpAudioInterface.cpp
@@ -301,7 +301,7 @@ ssize_t A2dpAudioInterface::A2dpAudioStreamOut::write(const void* buffer, size_t
while (remaining > 0 && retries) {
status = a2dp_write(mData, buffer, remaining);
if (status < 0) {
- LOGE("a2dp_write failed err: %d\n", status);
+ ALOGE("a2dp_write failed err: %d\n", status);
goto Error;
}
if (status == 0) {
@@ -338,7 +338,7 @@ status_t A2dpAudioInterface::A2dpAudioStreamOut::init()
if (!mData) {
status_t status = a2dp_init(44100, 2, &mData);
if (status < 0) {
- LOGE("a2dp_init failed err: %d\n", status);
+ ALOGE("a2dp_init failed err: %d\n", status);
mData = NULL;
return status;
}