update 2016-11-02 b1

1. created project
2. initialized ir encode and decode source files
This commit is contained in:
strawmanbobi
2016-11-02 22:29:13 +08:00
commit 2d43854e21
57 changed files with 11062 additions and 0 deletions

23
src/ir_decoder/Android.mk Normal file
View File

@@ -0,0 +1,23 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_CFLAGS := -DBOARD_MT6580
LOCAL_MODULE := libirdecode
LOCAL_SRC_FILES := ucon_decode_jni.c \
ucon_decode.c \
bc_parse_parameter.c \
irda_lib.c \
irda_apply.c \
irda_irframe.c \
irda_parse_ac_parameter.c \
irda_parse_forbidden_info.c \
irda_parse_frame_parameter.c \
irda_utils.c \
LOCAL_MODULE_TAGS := optional
LOCAL_PRELINK_MODULE := false
LOCAL_SHARED_LIBRARIES := liblog libcutils
include $(BUILD_SHARED_LIBRARY)