adding some crashfixes, show exceptions thrown at starting recording

This commit is contained in:
tibbi 2018-07-05 18:57:10 +02:00
parent f2f330ffd3
commit 9cb353d0b5

View File

@ -608,7 +608,7 @@ class PreviewCameraTwo : ViewGroup, TextureView.SurfaceTextureListener, MyPrevie
super.onCaptureCompleted(session, request, result) super.onCaptureCompleted(session, request, result)
if (request.tag == FOCUS_TAG) { if (request.tag == FOCUS_TAG) {
mCaptureSession!!.setRepeatingRequest(mPreviewRequestBuilder!!.build(), mCaptureCallback, mBackgroundHandler) mCaptureSession?.setRepeatingRequest(mPreviewRequestBuilder!!.build(), mCaptureCallback, mBackgroundHandler)
} }
} }
} }
@ -798,6 +798,7 @@ class PreviewCameraTwo : ViewGroup, TextureView.SurfaceTextureListener, MyPrevie
} }
private fun setupMediaRecorder() { private fun setupMediaRecorder() {
try {
val videoSize = getCurrentResolution() val videoSize = getCurrentResolution()
mLastVideoPath = mActivity.getOutputMediaFile(false) mLastVideoPath = mActivity.getOutputMediaFile(false)
val rotation = mActivity.windowManager.defaultDisplay.rotation val rotation = mActivity.windowManager.defaultDisplay.rotation
@ -817,6 +818,9 @@ class PreviewCameraTwo : ViewGroup, TextureView.SurfaceTextureListener, MyPrevie
} }
prepare() prepare()
} }
} catch (e: Exception) {
mActivity.showErrorToast(e)
}
} }
private fun startRecording() { private fun startRecording() {