-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAndroid.mk
38 lines (31 loc) · 923 Bytes
/
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
35
36
37
38
LOCAL_PATH := $(call my-dir)
LOCAL_MODULE_FILENAME := libvrok
LOCAL_MODULE := vrok
LOCAL_CPPFLAGS := -std=c++11 -ffast-math -O3 -mfpu=neon -funsafe-math-optimizations -DUSE_OOURA
LOCAL_CFLAGS := -ffast-math -O3 -mfpu=neon -funsafe-math-optimizations -DUSE_OOURA
LOCAL_SRC_FILES := extern-jni.cpp \
threadpool.cpp \
queue.cpp \
buffer.cpp \
ffmpeg.cpp \
bgpoint.cpp \
test1.cpp \
debug.cpp \
test2.cpp \
driver.cpp \
audiotrack.cpp \
effect.cpp \
preamp.cpp \
player.cpp \
fir.cpp \
tapdistortion.cpp \
componentmanager.cpp \
component.cpp \
eq.cpp \
shibatch/ooura_fft.c \
shibatch/equ.cpp
LOCAL_LDLIBS := -llog -ljnigraphics -lz -landroid
LOCAL_SHARED_LIBRARIES := libavformat libavcodec libswscale libavutil libswresample
include $(BUILD_SHARED_LIBRARY)
$(call import-add-path, /media/ENT/opt/android-ndk-r9c/sources/)
$(call import-module,ffmpeg-2.6.1/android/arm/)