summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/OMXCodec.cpp
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-11-20 23:47:28 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-20 23:47:28 +0000
commitd0e12a161471823d1ab269cb608be3f3b0a71ed1 (patch)
treef9a2f2ea19f528495278c1b651db5d75c8306869 /media/libstagefright/OMXCodec.cpp
parent75cfc881e25a9d7647701526484b5885dc43c574 (diff)
parent902dc42d79b075395d484ce1c71f215b199aaa2a (diff)
downloadframeworks_av-d0e12a161471823d1ab269cb608be3f3b0a71ed1.zip
frameworks_av-d0e12a161471823d1ab269cb608be3f3b0a71ed1.tar.gz
frameworks_av-d0e12a161471823d1ab269cb608be3f3b0a71ed1.tar.bz2
am 902dc42d: am 07715ac3: Merge "C++11 compatibility."
* commit '902dc42d79b075395d484ce1c71f215b199aaa2a': C++11 compatibility.
Diffstat (limited to 'media/libstagefright/OMXCodec.cpp')
-rw-r--r--media/libstagefright/OMXCodec.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/media/libstagefright/OMXCodec.cpp b/media/libstagefright/OMXCodec.cpp
index f26563e..3731a4a 100644
--- a/media/libstagefright/OMXCodec.cpp
+++ b/media/libstagefright/OMXCodec.cpp
@@ -101,10 +101,10 @@ static sp<MediaSource> InstantiateSoftwareEncoder(
#undef FACTORY_CREATE_ENCODER
#undef FACTORY_REF
-#define CODEC_LOGI(x, ...) ALOGI("[%s] "x, mComponentName, ##__VA_ARGS__)
-#define CODEC_LOGV(x, ...) ALOGV("[%s] "x, mComponentName, ##__VA_ARGS__)
-#define CODEC_LOGW(x, ...) ALOGW("[%s] "x, mComponentName, ##__VA_ARGS__)
-#define CODEC_LOGE(x, ...) ALOGE("[%s] "x, mComponentName, ##__VA_ARGS__)
+#define CODEC_LOGI(x, ...) ALOGI("[%s] " x, mComponentName, ##__VA_ARGS__)
+#define CODEC_LOGV(x, ...) ALOGV("[%s] " x, mComponentName, ##__VA_ARGS__)
+#define CODEC_LOGW(x, ...) ALOGW("[%s] " x, mComponentName, ##__VA_ARGS__)
+#define CODEC_LOGE(x, ...) ALOGE("[%s] " x, mComponentName, ##__VA_ARGS__)
struct OMXCodecObserver : public BnOMXObserver {
OMXCodecObserver() {