First submission of audio effect library from NXP software.

This CL contains the first open sourceable version of the audio effect library from NXP software.
The effects implemented are:
- Bass boost
- Virtualizer (stereo widening)
- Equalizer
- Spectrum analyzer

Source file for the effect engines are located under libeffects/lvm/lib
The wrapper implementing the interface with the audio effect framework in under libeffects/lvm/wrapper

The code of other effect libraries has also been reorganized fo clarity:
- the effect factory is now under libeffects/factory
- the test equalizer and reverb effects are under libeffect/testlibs
- the visualizer is under libeffects/virtualizer

Change-Id: I8d91e2181f81b89f8fc0c1e1e6bf552c5809b2eb
diff --git a/media/libeffects/lvm/wrapper/Android.mk b/media/libeffects/lvm/wrapper/Android.mk
new file mode 100644
index 0000000..4ebc443
--- /dev/null
+++ b/media/libeffects/lvm/wrapper/Android.mk
@@ -0,0 +1,30 @@
+LOCAL_PATH:= $(call my-dir)

+

+# music bundle wrapper

+LOCAL_PATH:= $(call my-dir)

+include $(CLEAR_VARS)

+

+LOCAL_ARM_MODE := arm

+

+LOCAL_SRC_FILES:= \

+	Bundle/EffectBundle.cpp

+

+LOCAL_MODULE:= libbundlewrapper

+

+LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/soundfx

+

+LOCAL_PRELINK_MODULE := false

+

+LOCAL_STATIC_LIBRARIES += libmusicbundle

+

+LOCAL_SHARED_LIBRARIES := \

+     libcutils \

+     libdl

+

+LOCAL_C_INCLUDES += \

+	$(LOCAL_PATH)/Bundle \

+	$(LOCAL_PATH)/../lib/Common/lib/ \

+	$(LOCAL_PATH)/../lib/Bundle/lib/

+

+

+include $(BUILD_SHARED_LIBRARY)