summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/CaptureModule.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/camera/CaptureModule.java')
-rwxr-xr-xsrc/com/android/camera/CaptureModule.java28
1 files changed, 18 insertions, 10 deletions
diff --git a/src/com/android/camera/CaptureModule.java b/src/com/android/camera/CaptureModule.java
index 68f462eef..fb4e8994f 100755
--- a/src/com/android/camera/CaptureModule.java
+++ b/src/com/android/camera/CaptureModule.java
@@ -3867,23 +3867,31 @@ public class CaptureModule implements CameraModule, PhotoController,
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
+ quitRecordingWithError("IOException");
} catch (IllegalArgumentException e) {
- //surface of mediaRecorder is not valid
- Toast.makeText(mActivity,"Could not start media recorder.\n " +
- "Can't start video recording.", Toast.LENGTH_LONG).show();
- releaseMediaRecorder();
- releaseAudioFocus();
- mStartRecPending = false;
- mIsRecordingVideo = false;
- mUI.showUIafterRecording();
- mFrameProcessor.setVideoOutputSurface(null);
- restartSession(true);
+ e.printStackTrace();
+ quitRecordingWithError("IllegalArgumentException");
} catch (IllegalStateException e) {
e.printStackTrace();
+ quitRecordingWithError("IllegalStateException");
+ } catch (NullPointerException e) {
+ e.printStackTrace();
+ quitRecordingWithError("NullPointException");
}
return true;
}
+ private void quitRecordingWithError(String msg) {
+ Toast.makeText(mActivity,"Could not start media recorder.\n " +
+ msg, Toast.LENGTH_LONG).show();
+ releaseMediaRecorder();
+ releaseAudioFocus();
+ mStartRecPending = false;
+ mIsRecordingVideo = false;
+ mUI.showUIafterRecording();
+ mFrameProcessor.setVideoOutputSurface(null);
+ restartSession(true);
+ }
private boolean startMediaRecorder() {
if (mUnsupportedResolution == true ) {
Log.v(TAG, "Unsupported Resolution according to target");