OSDN Git Service

Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) DO NOT MERGE
authorSteve Block <steveblock@google.com>
Wed, 4 Jan 2012 20:21:59 +0000 (20:21 +0000)
committerSteve Block <steveblock@google.com>
Wed, 4 Jan 2012 20:21:59 +0000 (20:21 +0000)
See https://android-git.corp.google.com/g/156801

Bug: 5449033
Change-Id: Id162f100e77d64cce4a12cd62b330e7cb847d816

mca/filterfw/jni/jni_gl_environment.cpp
wilhelm/tests/native-media/jni/native-media-jni.c

index a9eb27e..ac752a7 100644 (file)
@@ -46,7 +46,7 @@ class NativeWindowHandle : public WindowHandle {
     }
 
     virtual void Destroy() {
-      LOGI("Releasing ANativeWindow!");
+      ALOGI("Releasing ANativeWindow!");
       ANativeWindow_release(window_);
     }
 
index 6c5a283..2dbe295 100644 (file)
@@ -248,7 +248,7 @@ void StreamChangeCallback (XAStreamInformationItf caller,
             XAVideoStreamInformation videoInfo;
             res = (*caller)->QueryStreamInformation(caller, streamIndex, &videoInfo);
             assert(XA_RESULT_SUCCESS == res);
-            LOGI("Found video size %u x %u, codec ID=%u, frameRate=%u, bitRate=%u, duration=%u ms",
+            ALOGI("Found video size %u x %u, codec ID=%u, frameRate=%u, bitRate=%u, duration=%u ms",
                         videoInfo.width, videoInfo.height, videoInfo.codecId, videoInfo.frameRate,
                         videoInfo.bitRate, videoInfo.duration);
         } break;