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

Commit 3e664221 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 7747

* changes:
  Added 3 metadata types for pause/seek forward/seek backward.
parents fb6aecb7 716383a6
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -97,7 +97,13 @@ public class Metadata
    public static final int VIDEO_WIDTH = 26;    // Integer
    public static final int NUM_TRACKS = 27;     // Integer
    public static final int DRM_CRIPPLED = 28;   // Boolean
    private static final int LAST_SYSTEM = 28;

    // Playback capabilities.
    public static final int PAUSE_AVAILABLE = 29;         // Boolean
    public static final int SEEK_BACKWARD_AVAILABLE = 30; // Boolean
    public static final int SEEK_FORWARD_AVAILABLE = 31;  // Boolean

    private static final int LAST_SYSTEM = 31;
    private static final int FIRST_CUSTOM = 8092;

    // Shorthands to set the MediaPlayer's metadata filter.