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.
 
 
 
 
 
 
hardware_samsung/exynos/multimedia/codecs/video/exynos4/mfc/Android.mk

42 lines
812 B

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_COPY_HEADERS_TO := libsecmm
LOCAL_COPY_HEADERS := \
include/mfc_errno.h \
include/mfc_interface.h \
include/SsbSipMfcApi.h
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := \
dec/src/SsbSipMfcDecAPI.c \
enc/src/SsbSipMfcEncAPI.c
LOCAL_C_INCLUDES := \
$(LOCAL_PATH)/include/
LOCAL_PRELINK_MODULE := false
ifeq ($(BOARD_USES_MFC_FPS),true)
LOCAL_CFLAGS := -DCONFIG_MFC_FPS
#LOCAL_CFLAGS += -DCONFIG_MFC_PERF_LOG
endif
ifeq ($(BOARD_USE_S3D_SUPPORT), true)
LOCAL_CFLAGS += -DS3D_SUPPORT
endif
LOCAL_ARM_MODE := arm
LOCAL_STATIC_LIBRARIES :=
LOCAL_SHARED_LIBRARIES := liblog
ifeq ($(TARGET_SOC),exynos4x12)
LOCAL_MODULE := libsecmfcdecapi
include $(BUILD_SHARED_LIBRARY)
else
LOCAL_MODULE := libsecmfcapi
include $(BUILD_STATIC_LIBRARY)
endif