本文整理汇总了Java中android.graphics.SurfaceTexture.setOnFrameAvailableListener方法的典型用法代码示例。如果您正苦于以下问题:Java SurfaceTexture.setOnFrameAvailableListener方法的具体用法?Java SurfaceTexture.setOnFrameAvailableListener怎么用?Java SurfaceTexture.setOnFrameAvailableListener使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.graphics.SurfaceTexture
的用法示例。
在下文中一共展示了SurfaceTexture.setOnFrameAvailableListener方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onSurfaceCreated
import android.graphics.SurfaceTexture; //导入方法依赖的package包/类
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
Log.d(TAG, "onSurfaceCreated: ");
mFullScreen = new FullFrameRect(
new Texture2dProgram(Texture2dProgram.ProgramType.TEXTURE_EXT));
mTextureId = mFullScreen.createTextureObject();
mSurfaceTexture = new SurfaceTexture(mTextureId);
mSurface = new Surface(mSurfaceTexture);
mSurfaceTexture.setOnFrameAvailableListener(new SurfaceTexture.OnFrameAvailableListener() {
@Override
public void onFrameAvailable(SurfaceTexture surfaceTexture) {
mGLSurfaceView.requestRender();
}
});
}
示例2: surfaceInit
import android.graphics.SurfaceTexture; //导入方法依赖的package包/类
private void surfaceInit() {
mTextureID = OpenGLUtil.createTextureID();
mSurface = new SurfaceTexture(mTextureID);
if (isStartRecorder) {
mMediaHelper.startRecording(mTextureID);
}
// 这个接口就干了这么一件事,当有数据上来后会进到onFrameAvailable方法
mSurface.setOnFrameAvailableListener(this);// 设置照相机有数据时进入
mCameraMatrix = new CameraMatrix(mTextureID);
mPointsMatrix = new PointsMatrix(isFaceCompare);
mPointsMatrix.isShowFaceRect = isShowFaceRect;
mICamera.startPreview(mSurface);// 设置预览容器
mICamera.actionDetect(this);
if (isROIDetect)
drawShowRect();
}
示例3: FrameListener
import android.graphics.SurfaceTexture; //导入方法依赖的package包/类
public FrameListener(int textureId, GLSurfaceView glSurfaceView) {
mSurfaceTexture = new SurfaceTexture(textureId);
mSurfaceTexture.setOnFrameAvailableListener(this);
mGlSurfaceView = glSurfaceView;
}
示例4: initSurfaceTexture
import android.graphics.SurfaceTexture; //导入方法依赖的package包/类
private void initSurfaceTexture() {
Log.d(LOGTAG, "initSurfaceTexture");
deleteSurfaceTexture();
initTexOES(texCamera);
mSTexture = new SurfaceTexture(texCamera[0]);
mSTexture.setOnFrameAvailableListener(this);
}
示例5: setOnFrameAvailableListener
import android.graphics.SurfaceTexture; //导入方法依赖的package包/类
@TargetApi(21)
private static void setOnFrameAvailableListener(SurfaceTexture surfaceTexture,
SurfaceTexture.OnFrameAvailableListener listener, Handler handler) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
surfaceTexture.setOnFrameAvailableListener(listener, handler);
} else {
// The documentation states that the listener will be called on an arbitrary thread, but in
// pratice, it is always the thread on which the SurfaceTexture was constructed. There are
// assertions in place in case this ever changes. For API >= 21, we use the new API to
// explicitly specify the handler.
surfaceTexture.setOnFrameAvailableListener(listener);
}
}
示例6: onSurfaceCreated
import android.graphics.SurfaceTexture; //导入方法依赖的package包/类
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
GLES20.glClearColor(0.0f, 1.0f, 0.0f, 0.0f);
GLES20.glDisable(GLES20.GL_DEPTH_TEST);
mTexture = OpenGLUtils.genOesTexture();
mGLImageView.setImageTexture(mTexture);
mSurfaceTexture = new SurfaceTexture(mTexture);
mSurfaceTexture.setOnFrameAvailableListener(this);
mVideoPlayer.setOutSurface(new Surface(mSurfaceTexture));
}