Home | History | Annotate | Download | only in player

Lines Matching defs:player

17 package com.example.android.mediarouter.player;
25 import com.example.android.mediarouter.player.Player.Callback;
35 * Actual playback of a single media item is abstracted into a Player interface,
47 private Player mPlayer;
67 // Get the cached statistic info from the player (will not update it)
92 // If player supports queuing, get status of each item. Player is
94 // (update=1 requires player to callback onPlaylistReady())
100 // Otherwise, only need to get status for current item. Player is
124 // if player supports queuing, enqueue the item now
162 // This should only be called for local player. Remote player is
166 "getStatus should not be called on remote player!");
237 // to a different player (route).
256 // Unsuspend the playback manager. Restart playback on new player (route).
257 // This will resume playback of current item. Furthermore, if the new player
258 // supports queuing, playlist will be re-established on the remote player.
271 // Player.Callback
302 throw new IllegalStateException("Player not set!");
390 // set the Player that this playback manager will interact with
391 public void setPlayer(Player player) {
392 mPlayer = player;