public void | checkStateErrors(MediaRecorderStateErrors stateErrors)1. It is valid to call stop() in the following states:
{Recording}.
2. It is invalid to call stop() in the following states:
{Initial, Initialized, DataSourceConfigured, Prepared, Error}
// Valid states.
assertTrue(!stateErrors.errorInRecordingState);
// Invalid states.
assertTrue(stateErrors.errorInInitialState);
assertTrue(stateErrors.errorInInitialStateAfterReset);
assertTrue(stateErrors.errorInInitialStateAfterStop);
assertTrue(stateErrors.errorInInitializedState);
assertTrue(stateErrors.errorInErrorState);
assertTrue(stateErrors.errorInDataSourceConfiguredState);
assertTrue(stateErrors.errorInPreparedState);
|