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

Commit 90bcf3ce authored by Sal Savage's avatar Sal Savage Committed by Gerrit Code Review
Browse files

Merge "Add ACTION_STOP as a default player supported action"

parents 6fa5181d 94ca3b30
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -53,7 +53,8 @@ class AvrcpPlayer {
        mId = INVALID_ID;
        //Set Default Actions in case Player data isn't available.
        mAvailableActions = PlaybackState.ACTION_PAUSE | PlaybackState.ACTION_PLAY
            | PlaybackState.ACTION_SKIP_TO_NEXT | PlaybackState.ACTION_SKIP_TO_PREVIOUS;
            | PlaybackState.ACTION_SKIP_TO_NEXT | PlaybackState.ACTION_SKIP_TO_PREVIOUS
            | PlaybackState.ACTION_STOP;
    }

    AvrcpPlayer(int id, String name, byte[] playerFeatures, int playStatus, int playerType) {