mirror of
https://github.com/RPCS3/soundtouch.git
synced 2024-11-14 22:52:34 +01:00
46 lines
1.8 KiB
Makefile
46 lines
1.8 KiB
Makefile
# Copyright (C) 2010 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
# $Id$
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
# *** Remember: Change -O0 into -O2 in add-applications.mk ***
|
|
|
|
LOCAL_MODULE := soundtouch
|
|
LOCAL_SRC_FILES := soundtouch-jni.cpp ../../SoundTouch/AAFilter.cpp ../../SoundTouch/FIFOSampleBuffer.cpp \
|
|
../../SoundTouch/FIRFilter.cpp ../../SoundTouch/cpu_detect_x86.cpp \
|
|
../../SoundTouch/sse_optimized.cpp ../../SoundStretch/WavFile.cpp \
|
|
../../SoundTouch/RateTransposer.cpp ../../SoundTouch/SoundTouch.cpp \
|
|
../../SoundTouch/InterpolateCubic.cpp ../../SoundTouch/InterpolateLinear.cpp \
|
|
../../SoundTouch/InterpolateShannon.cpp ../../SoundTouch/TDStretch.cpp \
|
|
../../SoundTouch/BPMDetect.cpp ../../SoundTouch/PeakFinder.cpp
|
|
|
|
# for native audio
|
|
LOCAL_SHARED_LIBRARIES += -lgcc
|
|
# --whole-archive -lgcc
|
|
# for logging
|
|
LOCAL_LDLIBS += -llog
|
|
# for native asset manager
|
|
#LOCAL_LDLIBS += -landroid
|
|
# don't export all symbols
|
|
#
|
|
# in ARM-only environment could add "-marm" switch to force arm instruction set instead
|
|
# of thumb for improved calculation performance.
|
|
LOCAL_CFLAGS += -fvisibility=hidden -I ../../../include -fdata-sections -ffunction-sections
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|