You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
975 B
43 lines
975 B
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_COPY_HEADERS_TO := libsecmm
|
|
LOCAL_COPY_HEADERS := \
|
|
color_space_convertor.h \
|
|
csc_fimc.h
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := \
|
|
color_space_convertor.c \
|
|
csc_linear_to_tiled_crop_neon.s \
|
|
csc_linear_to_tiled_interleave_crop_neon.s \
|
|
csc_tiled_to_linear_crop_neon.s \
|
|
csc_tiled_to_linear_deinterleave_crop_neon.s \
|
|
csc_ARGB8888_to_YUV420SP_NEON.s \
|
|
csc_interleave_memcpy_neon.s \
|
|
csc_fimc.cpp
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(TOP)/$(TARGET_OMX_PATH)/include/khronos \
|
|
$(TOP)/$(TARGET_OMX_PATH)/include/sec \
|
|
$(TOP)/$(TARGET_HAL_PATH)/include \
|
|
$(TOP)/$(TARGET_HAL_PATH)/libhwconverter
|
|
|
|
ifeq ($(BOARD_USE_SAMSUNG_COLORFORMAT), true)
|
|
LOCAL_CFLAGS += -DUSE_SAMSUNG_COLORFORMAT
|
|
endif
|
|
|
|
LOCAL_MODULE := libseccscapi
|
|
|
|
LOCAL_PRELINK_MODULE := false
|
|
|
|
LOCAL_CFLAGS :=
|
|
|
|
LOCAL_ARM_MODE := arm
|
|
|
|
LOCAL_STATIC_LIBRARIES :=
|
|
LOCAL_SHARED_LIBRARIES := liblog libfimc libhwconverter
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|