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