Searched defs:PlaybackInfo (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
H A DRemoteControlClientCompat.java58 public void setPlaybackInfo(PlaybackInfo info) {
73 public static final class PlaybackInfo { class in class:RemoteControlClientCompat
99 * always between 0 and the value set by {@link PlaybackInfo#volumeMax}.
140 public void setPlaybackInfo(PlaybackInfo info) {
/frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
H A DRemoteControlClientCompat.java59 public void setPlaybackInfo(PlaybackInfo info) {
74 public static final class PlaybackInfo { class in class:RemoteControlClientCompat
100 * always between 0 and the value set by {@link PlaybackInfo#volumeMax}.
141 public void setPlaybackInfo(PlaybackInfo info) {
/frameworks/base/media/java/android/media/
H A DMediaController2.java113 * Called when the session has changed anything related with the {@link PlaybackInfo}.
119 @NonNull PlaybackInfo info) { }
252 // The same as MediaController.PlaybackInfo
253 public static final class PlaybackInfo { class in class:MediaController2
268 public PlaybackInfo(PlaybackInfoProvider provider) { method in class:MediaController2.PlaybackInfo
295 * {@link PlaybackInfo#PLAYBACK_TYPE_REMOTE} these may be ignored by the
659 public @Nullable PlaybackInfo getPlaybackInfo() {
H A DRemoteController.java77 private PlaybackInfo mLastPlaybackInfo;
673 private static class PlaybackInfo { class in class:RemoteController
679 PlaybackInfo(int state, long stateChangeTimeMs, long currentPosMs, float speed) { method in class:RemoteController.PlaybackInfo
/frameworks/support/media/api21/android/support/v4/media/session/
H A DMediaControllerCompatApi21.java194 public static class PlaybackInfo { class in class:MediaControllerCompatApi21
196 return ((MediaController.PlaybackInfo)volumeInfoObj).getPlaybackType();
200 return ((MediaController.PlaybackInfo) volumeInfoObj).getAudioAttributes();
209 return ((MediaController.PlaybackInfo)volumeInfoObj).getVolumeControl();
213 return ((MediaController.PlaybackInfo)volumeInfoObj).getMaxVolume();
217 return ((MediaController.PlaybackInfo)volumeInfoObj).getCurrentVolume();
265 private PlaybackInfo() { method in class:MediaControllerCompatApi21.PlaybackInfo
323 public void onAudioInfoChanged(MediaController.PlaybackInfo info){
325 PlaybackInfo.getLegacyAudioStream(info), info.getVolumeControl(),
/frameworks/base/media/java/android/media/session/
H A DMediaController.java323 public @Nullable PlaybackInfo getPlaybackInfo() {
326 return new PlaybackInfo(result.volumeType, result.audioAttrs, result.controlType,
649 public void onAudioInfoChanged(PlaybackInfo info) {
974 public static final class PlaybackInfo { class in class:MediaController
993 public PlaybackInfo(int type, AudioAttributes attrs, int control, int max, int current) { method in class:MediaController.PlaybackInfo
1017 * {@link PlaybackInfo#PLAYBACK_TYPE_REMOTE} these may be ignored by the
1129 PlaybackInfo info = new PlaybackInfo(pvi.volumeType, pvi.audioAttrs,
1171 mCallback.onAudioInfoChanged((PlaybackInfo) msg.obj);
/frameworks/support/media/src/main/java/androidx/media/
H A DMediaController2.java418 public @Nullable PlaybackInfo getPlaybackInfo() {
711 @Nullable PlaybackInfo getPlaybackInfo();
782 * Called when the session has changed anything related with the {@link PlaybackInfo}.
788 @NonNull PlaybackInfo info) { }
930 // The same as MediaController.PlaybackInfo
931 public static final class PlaybackInfo { class in class:MediaController2
953 PlaybackInfo(int playbackType, AudioAttributesCompat attrs, int controlType, int max, method in class:MediaController2.PlaybackInfo
1031 static PlaybackInfo createPlaybackInfo(int playbackType, AudioAttributesCompat attrs,
1033 return new PlaybackInfo(playbackType, attrs, controlType, max, current);
1036 static PlaybackInfo fromBundl
[all...]
/frameworks/support/media/src/main/java/android/support/v4/media/session/
H A DMediaControllerCompat.java502 public PlaybackInfo getPlaybackInfo() {
758 public void onAudioInfoChanged(PlaybackInfo info) {
908 new PlaybackInfo(type, stream, control, max, current));
1011 PlaybackInfo pi = null;
1013 pi = new PlaybackInfo(info.volumeType, info.audioStream, info.controlType,
1083 onAudioInfoChanged((PlaybackInfo) msg.obj);
1318 public static final class PlaybackInfo { class in class:MediaControllerCompat
1335 PlaybackInfo(int type, int stream, int control, int max, int current) { method in class:MediaControllerCompat.PlaybackInfo
1346 * <li>{@link PlaybackInfo#PLAYBACK_TYPE_LOCAL}</li>
1347 * <li>{@link PlaybackInfo#PLAYBACK_TYPE_REMOT
[all...]

Completed in 304 milliseconds