mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
Update Android make for AMR-WB integration
This commit is contained in:
parent
9b11921ae7
commit
d964a25167
1 changed files with 20 additions and 7 deletions
|
|
@ -105,15 +105,28 @@ endif
|
|||
endif
|
||||
|
||||
|
||||
|
||||
ifneq ($(BUILD_AMR),0)
|
||||
LOCAL_CFLAGS += -DHAVE_AMR
|
||||
|
||||
LOCAL_STATIC_LIBRARIES += \
|
||||
libmsamr \
|
||||
libopencoreamr
|
||||
_BUILD_AMR=0
|
||||
ifneq ($(BUILD_AMRNB), 0)
|
||||
_BUILD_AMR=1
|
||||
endif
|
||||
|
||||
ifneq ($(BUILD_AMRWB), 0)
|
||||
_BUILD_AMR=1
|
||||
endif
|
||||
|
||||
ifneq ($(_BUILD_AMR), 0)
|
||||
LOCAL_CFLAGS += -DHAVE_AMR
|
||||
LOCAL_STATIC_LIBRARIES += \
|
||||
libmsamr \
|
||||
libopencoreamr
|
||||
endif
|
||||
|
||||
ifneq ($(BUILD_AMRWB), 0)
|
||||
LOCAL_STATIC_LIBRARIES += \
|
||||
libvoamrwbenc
|
||||
endif
|
||||
|
||||
|
||||
ifeq ($(BUILD_SILK),1)
|
||||
LOCAL_CFLAGS += -DHAVE_SILK
|
||||
LOCAL_STATIC_LIBRARIES += libmssilk
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue