forked from BelledonneCommunications/bcg729
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.mk
36 lines (30 loc) · 1.25 KB
/
Android.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := libbcg729
LOCAL_ARM_MODE := arm
LOCAL_SRC_FILES = src/LP2LSPConversion.c \
src/LPSynthesisFilter.c \
src/LSPQuantization.c \
src/adaptativeCodebookSearch.c \
src/codebooks.c \
src/computeAdaptativeCodebookGain.c \
src/computeLP.c \
src/computeWeightedSpeech.c \
src/decodeAdaptativeCodeVector.c \
src/decodeFixedCodeVector.c \
src/decodeGains.c \
src/decodeLSP.c \
src/decoder.c \
src/encoder.c \
src/findOpenLoopPitchDelay.c \
src/fixedCodebookSearch.c \
src/gainQuantization.c \
src/interpolateqLSP.c \
src/postFilter.c \
src/postProcessing.c \
src/preProcessing.c \
src/qLSP2LP.c \
src/utils.c
LOCAL_C_INCLUDES += \
$(LOCAL_PATH)/include
include $(BUILD_STATIC_LIBRARY)