I am playing around with Intel-inde and am running into trouble with CameraCapture and live streaming.
I've loaded the external JARs and the 4 armeabi .so files into my project. I've made a basic program basically copying the CameraStreamerActivity.java and have this code:
camera = createCamera();
capture = new CameraCapture(new AndroidMediaObjectFactory(getApplicationContext()), progressListener);
capture.createPreview(findViewById(R.id.surfaceView), camera);
I am getting these errors:
10-08 18:29:42.459: I/dalvikvm(9062): Could not find method android.opengl.EGL14.eglGetCurrentContext, referenced from method com.intel.inde.mp.android.AndroidMediaObjectFactory.getCurrentEglContext
10-08 18:29:42.459: W/dalvikvm(9062): VFY: unable to resolve static method 526: Landroid/opengl/EGL14;.eglGetCurrentContext ()Landroid/opengl/EGLContext;
Would appreciate some help as to what is causing this. Thank you.