I want to use vp8 in my android application , that's why I download libvpx written with C++ , and now I want to connect it to my app with JNI. So the steps I have done
Place a libvpx checkout in the jni directory of my app
Run the configure script from the jni directory like this
./libvpx/configure --target=armv7-android-gcc --disable-examples --disable-neon --sdk-path=/opt/android-ndk-r6b/
Place an Android.mk file in the jni directory that references the Android.mk file in the libvpx directory:
LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) include libvpx/build/make/Android.mk
make Makefile , that created after running configuration
creat Android new Builder as shown here
Debug , and it should build libvpx and include it in my project
But there are no any libvpx in my app.
Can somebody help me, give some suggestion or some good tutorial of libvpx for android?
Thanks, Regards