当前位置: 首页>>代码示例>>Java>>正文


Java SurfaceTexture.setOnFrameAvailableListener方法代码示例

本文整理汇总了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();
        }
    });
}
 
开发者ID:TobiasLee,项目名称:FilterPlayer,代码行数:18,代码来源:VideoRenderer.java

示例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();
}
 
开发者ID:FacePlusPlus,项目名称:MegviiFacepp-Android-SDK,代码行数:18,代码来源:OpenglActivity.java

示例3: FrameListener

import android.graphics.SurfaceTexture; //导入方法依赖的package包/类
public FrameListener(int textureId, GLSurfaceView glSurfaceView) {
    mSurfaceTexture = new SurfaceTexture(textureId);
    mSurfaceTexture.setOnFrameAvailableListener(this);
    mGlSurfaceView = glSurfaceView;
}
 
开发者ID:rkshuai,项目名称:chromium-for-android-56-debug-video,代码行数:6,代码来源:VrShellImpl.java

示例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);
}
 
开发者ID:johnhany,项目名称:MOAAP,代码行数:8,代码来源:CameraGLRendererBase.java

示例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);
  }
}
 
开发者ID:Piasy,项目名称:AppRTC-Android,代码行数:14,代码来源:SurfaceTextureHelper.java

示例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));
}
 
开发者ID:vipycm,项目名称:mao-android,代码行数:12,代码来源:VideoPlayFragment.java


注:本文中的android.graphics.SurfaceTexture.setOnFrameAvailableListener方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。