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