summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 16:20:38 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:30:22 +0000
commit84f254d6bb4e3458e25bd14394306dd8b89b02d8 (patch)
treed684951f25a40ba29228043ecc64b9c0fa44d15c
parent658ad712aea2756b797d1042b3b4171fccdc5ecf (diff)
downloadjhead-84f254d6bb4e3458e25bd14394306dd8b89b02d8.tar.gz
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: I1d1d755d5d36f9a990da3956825f642c9e2f2c9d
-rwxr-xr-xjpgfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/jpgfile.c b/jpgfile.c
index ba3b056..adb9801 100755
--- a/jpgfile.c
+++ b/jpgfile.c
@@ -448,7 +448,7 @@ int ReadJpegSectionsFromBuffer (unsigned char* buffer, unsigned int buffer_size,
}else if (memcmp(Data+2, "http:", 5) == 0){
Sections[SectionsRead-1].Type = M_XMP; // Change tag for internal purposes.
if (ShowTags){
- LOGD("Image cotains XMP section, %d bytes long\n", itemlen);
+ ALOGD("Image cotains XMP section, %d bytes long\n", itemlen);
if (ShowTags){
ShowXmp(Sections[SectionsRead-1]);
}
@@ -463,7 +463,7 @@ int ReadJpegSectionsFromBuffer (unsigned char* buffer, unsigned int buffer_size,
case M_IPTC:
if (ReadMode & READ_METADATA){
if (ShowTags){
- LOGD("Image cotains IPTC section, %d bytes long\n", itemlen);
+ ALOGD("Image cotains IPTC section, %d bytes long\n", itemlen);
}
// Note: We just store the IPTC section. Its relatively straightforward
// and we don't act on any part of it, so just display it at parse time.
@@ -490,7 +490,7 @@ int ReadJpegSectionsFromBuffer (unsigned char* buffer, unsigned int buffer_size,
default:
// Skip any other sections.
if (ShowTags){
- LOGD("Jpeg section marker 0x%02x size %d\n",marker, itemlen);
+ ALOGD("Jpeg section marker 0x%02x size %d\n",marker, itemlen);
}
break;
}