Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 991da95b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "MediaRecorder.h:correct MEDIA_RECORDER_ERROR enum"

parents a7723305 a57cff4e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -115,9 +115,6 @@ enum video_encoder {
 * The state machine of the media_recorder.
 */
enum media_recorder_states {
    // Error state.
    MEDIA_RECORDER_ERROR                 =      0,

    // Recorder was just created.
    MEDIA_RECORDER_IDLE                  = 1 << 0,

@@ -132,6 +129,9 @@ enum media_recorder_states {

    // Recording is in progress.
    MEDIA_RECORDER_RECORDING             = 1 << 4,

    // Error state.
    MEDIA_RECORDER_ERROR                 = 1 << 5,
};

// The "msg" code passed to the listener in notify.