ITvInputSession.aidl revision 4eee6a73e476cd2d82a69f3a535628901047f140
1/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.media.tv;
18
19import android.graphics.Rect;
20import android.media.PlaybackParams;
21import android.media.tv.TvTrackInfo;
22import android.net.Uri;
23import android.os.Bundle;
24import android.view.Surface;
25
26/**
27 * Sub-interface of ITvInputService which is created per session and has its own context.
28 * @hide
29 */
30oneway interface ITvInputSession {
31    void release();
32
33    void setMain(boolean isMain);
34    void setSurface(in Surface surface);
35    void dispatchSurfaceChanged(int format, int width, int height);
36    // TODO: Remove this once it becomes irrelevant for applications to handle audio focus. The plan
37    // is to introduce some new concepts that will solve a number of problems in audio policy today.
38    void setVolume(float volume);
39    void tune(in Uri channelUri, in Bundle params);
40    void setCaptionEnabled(boolean enabled);
41    void selectTrack(int type, in String trackId);
42
43    void appPrivateCommand(in String action, in Bundle data);
44
45    void createOverlayView(in IBinder windowToken, in Rect frame);
46    void relayoutOverlayView(in Rect frame);
47    void removeOverlayView();
48
49    void unblockContent(in String unblockedRating);
50
51    void timeShiftPlay(in Uri recordedProgramUri);
52    void timeShiftPause();
53    void timeShiftResume();
54    void timeShiftSeekTo(long timeMs);
55    void timeShiftSetPlaybackParams(in PlaybackParams params);
56    void timeShiftEnablePositionTracking(boolean enable);
57
58    // For the recording session
59    void connect(in Uri channelUri, in Bundle params);
60    void disconnect();
61    void startRecording(in Uri programHint);
62    void stopRecording();
63}
64