I want to play a video into an OpenGL texture on XOOM using Android 3.0. I have come across SurfaceTexture in the goole developer docs which has been added in API 11 http://developer.android.com/reference/android/graphics/SurfaceTexture.html

The documentation talks about using GL_TEXTURE_EXTERNAL_OES instead of GL_TEXTURE_2D, I cannot find any reference to this define in the latest android-ndk-r5c, it's not defined in in the ndk and it only goes up to platform-9, so I guess I would need platform-11 and there appears to be no android.opengl.GLES20Ext which I guess is where it would reside on the java side.

I have the latest of all released android tools from google and I cannot find any extra things from NVidia or Motorola on their developer sites.

Do anyone have a working example of using SurfaceTexture to either put the camera image or video onto an OpenGL texture? and/or know what I am missing to be able to use this new functionality?

link|improve this question
feedback

4 Answers

Example code. This creates a new external texture suitable for use in a SurfaceView, then wraps it in said SurfaceView and passes it to the camera as a surface to write the preview into.

int[] textures = new int[1];
// generate one texture pointer and bind it as an external texture.
GLES20.glGenTextures(1, textures, 0);
GLES20.glBindTexture(GLES11Ext.GL_TEXTURE_EXTERNAL_OES, textures[0]);
// No mip-mapping with camera source.
GLES20.glTexParameterf(GLES11Ext.GL_TEXTURE_EXTERNAL_OES,
        GL10.GL_TEXTURE_MIN_FILTER,
                        GL10.GL_LINEAR);        
GLES20.glTexParameterf(GLES11Ext.GL_TEXTURE_EXTERNAL_OES,
        GL10.GL_TEXTURE_MAG_FILTER, GL10.GL_LINEAR);
// Clamp to edge is only option.
GLES20.glTexParameteri(GLES11Ext.GL_TEXTURE_EXTERNAL_OES,
        GL10.GL_TEXTURE_WRAP_S, GL10.GL_CLAMP_TO_EDGE);
GLES20.glTexParameteri(GLES11Ext.GL_TEXTURE_EXTERNAL_OES,
        GL10.GL_TEXTURE_WRAP_T, GL10.GL_CLAMP_TO_EDGE);


int texture_id = textures[0];
SurfaceTexture mTexture = new SurfaceTexture(texture_id);
mTexture.setOnFrameAvailableListener(this);

Camera cam = Camera.open();
cam.setPreviewTexture(mTexture);

Note that if you render this object, you'll need to be careful: It's NOT a 2D texture, so it needs special treatment in the shader.

link|improve this answer
feedback

GLES11Ext.GL_TEXTURE_EXTERNAL_OES is api level 15.... now how would you do it with Mediaplayer instead of Camera. dont forget setSurface is only introduced in API 14.

So how can you use this surfacetexture + mediaplyer in API13 thats the biggest question

link|improve this answer
feedback

If using API level 11 to 14 you can just define GL_TEXTURE_EXTERNAL_OES yourself by placing

private static final int GL_TEXTURE_EXTERNAL_OES = 0x8D65;

in your code. This seems to work just fine for me.

link|improve this answer
feedback

NVIDIA has a full and working sample in their TEGRA Android Developer pack. The sample is written pure Java and runs in Standard Eclipse+Android SDK - so you just need to install the samples. The name of the project is surfacetexture (or something like it). It works nice! Hopes it helps you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.