fix Android.mk file
This commit is contained in:
parent
034e979b5f
commit
7d6d9cf676
2 changed files with 5 additions and 5 deletions
|
@ -6,11 +6,11 @@ ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
|
|||
APP_MODULES +=libmsilbc
|
||||
endif
|
||||
|
||||
ifneq ($(LINPHONE_VIDEO),0)
|
||||
ifeq ($(LINPHONE_VIDEO),1)
|
||||
APP_MODULES += libavutil libavcore libavcodec libswscale
|
||||
endif
|
||||
|
||||
ifneq ($(BUILD_AMR),0)
|
||||
ifeq ($(BUILD_AMR),1)
|
||||
APP_MODULES += libopencoreamr libmsamr
|
||||
endif
|
||||
|
||||
|
@ -18,7 +18,7 @@ ifeq ($(WITH_OPENSSL),1)
|
|||
APP_MODULES += libcrypto libssl
|
||||
endif
|
||||
|
||||
ifneq ($(BUILD_X264),0)
|
||||
ifeq ($(BUILD_X264),1)
|
||||
APP_MODULES +=libx264 libmsx264
|
||||
endif
|
||||
|
||||
|
@ -29,5 +29,4 @@ endif
|
|||
APP_BUILD_SCRIPT:=$(call my-dir)/Android.mk
|
||||
APP_PLATFORM := android-8
|
||||
APP_ABI := armeabi armeabi-v7a
|
||||
#APP_OPTIM := debug
|
||||
|
||||
APP_CFLAGS:=-DDISABLE_NEON
|
||||
|
|
|
@ -87,6 +87,7 @@ LOCAL_SRC_FILES = \
|
|||
libavcodec/resample2.c \
|
||||
libavcodec/simple_idct.c \
|
||||
libavcodec/utils.c \
|
||||
libavcodec/svq3.c \
|
||||
libavcodec/pthread.c
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue