This includes following changes
- Remove PlaylistParams
- Implement PlaylistParams replacements. Here's the list.
- get/setShuffleMode()
- get/setRepeatMode()
- Note: Playlist metadata APIs are already submitted (b/74174649)
Bug: 74116823, Bug: 74118768
Test: Run CTS with MediaComponents/runcts.sh
Change-Id: I0267ffeaf92257eb7b81ffc8b6a3f40b5a2f6f9c
81 lines
2.7 KiB
Java
81 lines
2.7 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.app.PendingIntent;
|
|
import android.media.AudioAttributes;
|
|
import android.media.MediaController2.PlaybackInfo;
|
|
import android.media.MediaItem2;
|
|
import android.media.MediaMetadata2;
|
|
import android.media.MediaSession2.Command;
|
|
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 setPlaylist_impl(List<MediaItem2> list, MediaMetadata2 metadata);
|
|
MediaMetadata2 getPlaylistMetadata_impl();
|
|
void updatePlaylistMetadata_impl(MediaMetadata2 metadata);
|
|
|
|
void addPlaylistItem_impl(int index, MediaItem2 item);
|
|
void replacePlaylistItem_impl(int index, MediaItem2 item);
|
|
void removePlaylistItem_impl(MediaItem2 item);
|
|
|
|
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();
|
|
}
|
|
}
|