summaryrefslogtreecommitdiffstats
path: root/audio/A2dpAudioInterface.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 16:25:34 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:31:20 +0000
commitb381b932acfa441da5607f37ac4ef6573ed5be96 (patch)
treefc6ea0d261195f4a6d7137271ceefb9a2620de0e /audio/A2dpAudioInterface.cpp
parentda52930b89bb0e03948f3981e75f8727ea023587 (diff)
downloadhardware_libhardware_legacy-b381b932acfa441da5607f37ac4ef6573ed5be96.zip
hardware_libhardware_legacy-b381b932acfa441da5607f37ac4ef6573ed5be96.tar.gz
hardware_libhardware_legacy-b381b932acfa441da5607f37ac4ef6573ed5be96.tar.bz2
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: I9dfdc3f00a5f4f5b6ef4c75280ce2594ab018577
Diffstat (limited to 'audio/A2dpAudioInterface.cpp')
-rw-r--r--audio/A2dpAudioInterface.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/A2dpAudioInterface.cpp b/audio/A2dpAudioInterface.cpp
index 57c23bb..4c7351d 100644
--- a/audio/A2dpAudioInterface.cpp
+++ b/audio/A2dpAudioInterface.cpp
@@ -38,7 +38,7 @@ static const char *sA2dpWakeLock = "A2dpOutputStream";
// AudioHardwareInterface* hw = 0;
//
// hw = AudioHardwareInterface::create();
-// LOGD("new A2dpAudioInterface(hw: %p)", hw);
+// ALOGD("new A2dpAudioInterface(hw: %p)", hw);
// hw = new A2dpAudioInterface(hw);
// return hw;
//}
@@ -239,7 +239,7 @@ status_t A2dpAudioInterface::A2dpAudioStreamOut::set(
uint32_t lChannels = pChannels ? *pChannels : 0;
uint32_t lRate = pRate ? *pRate : 0;
- LOGD("A2dpAudioStreamOut::set %x, %d, %d, %d\n", device, lFormat, lChannels, lRate);
+ ALOGD("A2dpAudioStreamOut::set %x, %d, %d, %d\n", device, lFormat, lChannels, lRate);
// fix up defaults
if (lFormat == 0) lFormat = format();
@@ -448,7 +448,7 @@ status_t A2dpAudioInterface::A2dpAudioStreamOut::setAddress(const char* address)
status_t A2dpAudioInterface::A2dpAudioStreamOut::setBluetoothEnabled(bool enabled)
{
- LOGD("setBluetoothEnabled %d", enabled);
+ ALOGD("setBluetoothEnabled %d", enabled);
Mutex::Autolock lock(mLock);