diff options
Diffstat (limited to 'gralloc')
-rw-r--r-- | gralloc/Android.mk | 3 | ||||
-rw-r--r-- | gralloc/gr_utils.cpp | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gralloc/Android.mk b/gralloc/Android.mk index c3f41337..57fee80f 100644 --- a/gralloc/Android.mk +++ b/gralloc/Android.mk @@ -49,6 +49,9 @@ endif ifeq ($(TARGET_USES_UNALIGNED_NV21_ZSL),true) LOCAL_CFLAGS += -DUSE_UNALIGNED_NV21_ZSL endif +ifeq ($(TARGET_USES_UNALIGNED_YCRCB),true) + LOCAL_CFLAGS += -DUSE_UNALIGNED_YCRCB +endif LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) LOCAL_SRC_FILES := gr_utils.cpp gr_adreno_info.cpp diff --git a/gralloc/gr_utils.cpp b/gralloc/gr_utils.cpp index d157ad61..4306663e 100644 --- a/gralloc/gr_utils.cpp +++ b/gralloc/gr_utils.cpp @@ -1001,6 +1001,9 @@ void GetAlignedWidthAndHeight(const BufferInfo &info, unsigned int *alignedw, // Below should be only YUV family switch (format) { case HAL_PIXEL_FORMAT_YCrCb_420_SP: +#ifdef USE_UNALIGNED_YCRCB + break; +#endif case HAL_PIXEL_FORMAT_YCbCr_420_SP: if (AdrenoMemInfo::GetInstance() == nullptr) { return; |