Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE

See https://android-git.corp.google.com/g/156016

Bug: 5449033
Change-Id: Ia14c98936bb1dc74e681bf2de342ad6861646778
This commit is contained in:
Steve Block
2011-12-20 16:22:33 +00:00
parent dcea17d050
commit 112bc5e57e
15 changed files with 36 additions and 36 deletions

View File

@@ -399,26 +399,26 @@ int EmulatedFakeCameraDevice::rotateFrame()
mCurrentFrameType = 0;
}
if (mCurrentFrameType == 2) {
LOGD("********** Rotated to the SOLID COLOR frame **********");
ALOGD("********** Rotated to the SOLID COLOR frame **********");
/* Solid color: lets rotate color too. */
if (mCurrentColor == &mWhiteYUV) {
LOGD("----- Painting a solid RED frame -----");
ALOGD("----- Painting a solid RED frame -----");
mCurrentColor = &mRedYUV;
} else if (mCurrentColor == &mRedYUV) {
LOGD("----- Painting a solid GREEN frame -----");
ALOGD("----- Painting a solid GREEN frame -----");
mCurrentColor = &mGreenYUV;
} else if (mCurrentColor == &mGreenYUV) {
LOGD("----- Painting a solid BLUE frame -----");
ALOGD("----- Painting a solid BLUE frame -----");
mCurrentColor = &mBlueYUV;
} else {
/* Back to white. */
LOGD("----- Painting a solid WHITE frame -----");
ALOGD("----- Painting a solid WHITE frame -----");
mCurrentColor = &mWhiteYUV;
}
} else if (mCurrentFrameType == 0) {
LOGD("********** Rotated to the CHECKERBOARD frame **********");
ALOGD("********** Rotated to the CHECKERBOARD frame **********");
} else if (mCurrentFrameType == 1) {
LOGD("********** Rotated to the STRIPED frame **********");
ALOGD("********** Rotated to the STRIPED frame **********");
}
}