summaryrefslogtreecommitdiff
path: root/android/media/update/MediaController2Provider.java
blob: 7234f7b61656044da74b2221aec97857a494d2d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
 * 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.SessionCommand2;
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 fastForward_impl();
    void rewind_impl();

    void setRating_impl(String mediaId, Rating2 rating);
    void sendCustomCommand_impl(SessionCommand2 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 getCurrentPosition_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();
    }
}