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