Home | History | Annotate | Download | only in loudness
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 # LoudnessEnhancer library
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SRC_FILES:= \
      7 	EffectLoudnessEnhancer.cpp \
      8 	dsp/core/dynamic_range_compression.cpp
      9 
     10 LOCAL_CFLAGS+= -O2 -fvisibility=hidden
     11 
     12 LOCAL_SHARED_LIBRARIES := \
     13 	libcutils \
     14 	liblog \
     15 
     16 LOCAL_MODULE_RELATIVE_PATH := soundfx
     17 LOCAL_MODULE:= libldnhncr
     18 
     19 LOCAL_C_INCLUDES := \
     20 	$(call include-path-for, audio-effects) \
     21 
     22 include $(BUILD_SHARED_LIBRARY)
     23