summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/OMXCodec.cpp
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-11-20 23:41:54 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-20 23:41:54 +0000
commit902dc42d79b075395d484ce1c71f215b199aaa2a (patch)
treece454a3265d2b4083dd5be18ad2cf75667a24ff1 /media/libstagefright/OMXCodec.cpp
parentd60486723cdc0b4b83b77d57ce35023a7516c471 (diff)
parent07715ac3b9309b397fb911ef81a393c4493cf20d (diff)
downloadframeworks_av-902dc42d79b075395d484ce1c71f215b199aaa2a.zip
frameworks_av-902dc42d79b075395d484ce1c71f215b199aaa2a.tar.gz
frameworks_av-902dc42d79b075395d484ce1c71f215b199aaa2a.tar.bz2
am 07715ac3: Merge "C++11 compatibility."
* commit '07715ac3b9309b397fb911ef81a393c4493cf20d': 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 a8806c8..d54f65d 100644
--- a/media/libstagefright/OMXCodec.cpp
+++ b/media/libstagefright/OMXCodec.cpp
@@ -100,10 +100,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() {