diff options
| author | 2015-01-29 10:55:21 -0800 | |
|---|---|---|
| committer | 2015-01-29 10:55:21 -0800 | |
| commit | b3ca72ce1ea0d5e9ef1601dd35520f9fcf23cbca (patch) | |
| tree | b5b9dc63d7c56c7a4fb998d3c1ec35f2dde5f3ba /libs/gui/CpuConsumer.cpp | |
| parent | bacce71e40661f908be8f3138ae6c9144c69ba65 (diff) | |
CpuConsumer: fix build error
Diffstat (limited to 'libs/gui/CpuConsumer.cpp')
| -rw-r--r-- | libs/gui/CpuConsumer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/gui/CpuConsumer.cpp b/libs/gui/CpuConsumer.cpp index 7dea4ef310..73d34eb6ee 100644 --- a/libs/gui/CpuConsumer.cpp +++ b/libs/gui/CpuConsumer.cpp @@ -22,7 +22,7 @@ #include <utils/Log.h> #include <gui/CpuConsumer.h> -//#define CC_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__) +#define CC_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__) //#define CC_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__) //#define CC_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__) #define CC_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__) @@ -68,7 +68,7 @@ status_t CpuConsumer::setDefaultBufferFormat(PixelFormat defaultFormat) } static bool isPossiblyYUV(PixelFormat format) { - switch ((int)format) { + switch (static_cast<int>(format)) { case HAL_PIXEL_FORMAT_RGBA_8888: case HAL_PIXEL_FORMAT_RGBX_8888: case HAL_PIXEL_FORMAT_RGB_888: |