1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5
6
7LOCAL_SRC_FILES:= \
8	src/OMX_VideoEnc_Thread.c \
9	src/OMX_VideoEnc_Utils.c \
10	src/OMX_VideoEncoder.c
11
12LOCAL_C_INCLUDES := $(TI_OMX_COMP_C_INCLUDES) \
13	$(TI_OMX_VIDEO)/video_encode/inc \
14
15LOCAL_SHARED_LIBRARIES := $(TI_OMX_COMP_SHARED_LIBRARIES)
16
17	
18LOCAL_CFLAGS := $(TI_OMX_CFLAGS) -DOMAP_2430
19
20LOCAL_MODULE:= libOMX.TI.Video.encoder
21
22include $(BUILD_SHARED_LIBRARY)
23