summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-11-20 23:37:35 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-11-20 23:37:37 +0000
commit07715ac3b9309b397fb911ef81a393c4493cf20d (patch)
treece454a3265d2b4083dd5be18ad2cf75667a24ff1 /media
parent9d2e0daedd2c55314d60dd4620e66eccf4b0ca0b (diff)
parent36802bd18b7b4e8c87fa019c7e3068bee330d174 (diff)
downloadframeworks_av-07715ac3b9309b397fb911ef81a393c4493cf20d.zip
frameworks_av-07715ac3b9309b397fb911ef81a393c4493cf20d.tar.gz
frameworks_av-07715ac3b9309b397fb911ef81a393c4493cf20d.tar.bz2
Merge "C++11 compatibility."
Diffstat (limited to 'media')
-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() {