This change includes - Addressed trivial TODOs (takes less than 1min) - Renamed playlist controller to playlist agent - Renamed mplc to playlistAgent - Renamed mpb to player - Assigned buganizer issues for TODOs Bug: 74361045 Test: Run MediaComponentsTest Change-Id: I45e97081b5a3f24988c3daadd007edcb51be5288
83 lines
2.8 KiB
Java
83 lines
2.8 KiB
Java
/*
|
|
* Copyright 2018 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package android.media.update;
|
|
|
|
import android.annotation.NonNull;
|
|
import android.app.PendingIntent;
|
|
import android.media.AudioAttributes;
|
|
import android.media.MediaController2.PlaybackInfo;
|
|
import android.media.MediaItem2;
|
|
import android.media.MediaSession2.Command;
|
|
import android.media.MediaSession2.PlaylistParams;
|
|
import android.media.PlaybackState2;
|
|
import android.media.Rating2;
|
|
import android.media.SessionToken2;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.os.ResultReceiver;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @hide
|
|
*/
|
|
public interface MediaController2Provider extends TransportControlProvider {
|
|
void initialize();
|
|
|
|
void close_impl();
|
|
SessionToken2 getSessionToken_impl();
|
|
boolean isConnected_impl();
|
|
|
|
PendingIntent getSessionActivity_impl();
|
|
|
|
void setVolumeTo_impl(int value, int flags);
|
|
void adjustVolume_impl(int direction, int flags);
|
|
PlaybackInfo getPlaybackInfo_impl();
|
|
|
|
void prepareFromUri_impl(Uri uri, Bundle extras);
|
|
void prepareFromSearch_impl(String query, Bundle extras);
|
|
void prepareFromMediaId_impl(String mediaId, Bundle extras);
|
|
void playFromSearch_impl(String query, Bundle extras);
|
|
void playFromUri_impl(Uri uri, Bundle extras);
|
|
void playFromMediaId_impl(String mediaId, Bundle extras);
|
|
|
|
void setRating_impl(String mediaId, Rating2 rating);
|
|
void sendCustomCommand_impl(Command command, Bundle args, ResultReceiver cb);
|
|
List<MediaItem2> getPlaylist_impl();
|
|
|
|
void addPlaylistItem_impl(int index, MediaItem2 item);
|
|
void replacePlaylistItem_impl(int index, MediaItem2 item);
|
|
void removePlaylistItem_impl(MediaItem2 item);
|
|
|
|
PlaylistParams getPlaylistParams_impl();
|
|
void setPlaylistParams_impl(PlaylistParams params);
|
|
PlaybackState2 getPlaybackState_impl();
|
|
int getPlayerState_impl();
|
|
long getPosition_impl();
|
|
float getPlaybackSpeed_impl();
|
|
long getBufferedPosition_impl();
|
|
MediaItem2 getCurrentMediaItem_impl();
|
|
|
|
interface PlaybackInfoProvider {
|
|
int getPlaybackType_impl();
|
|
AudioAttributes getAudioAttributes_impl();
|
|
int getControlType_impl();
|
|
int getMaxVolume_impl();
|
|
int getCurrentVolume_impl();
|
|
}
|
|
}
|