blob: cf8d637945468935f6a5c4464dad3c210f3e3818 [file] [log] [blame]
Andrew Lee752217b2014-08-08 01:40:14 -07001/*
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 com.android.ims.internal;
18
Tyler Gunnef9f6f92014-09-12 22:16:17 -070019import android.telecom.VideoProfile;
Andrew Lee752217b2014-08-08 01:40:14 -070020
21/**
22 * Internal remote interface for IMS's video call provider.
23 *
24 * At least initially, this aidl mirrors telecomm's {@link VideoCallCallback}. We created a
25 * separate aidl interface for invoking callbacks in Telephony from the IMS Service to without
26 * accessing internal interfaces. See {@link IImsVideoCallProvider} for additional detail.
27 *
Tyler Gunnef9f6f92014-09-12 22:16:17 -070028 * @see android.telecom.internal.IVideoCallCallback
29 * @see android.telecom.VideoCallImpl
Andrew Lee752217b2014-08-08 01:40:14 -070030 *
31 * {@hide}
32 */
33oneway interface IImsVideoCallCallback {
Andrei Onea903da372019-02-27 15:45:08 +000034 @UnsupportedAppUsage
Ihab Awadb19a0bc2014-08-07 19:46:01 -070035 void receiveSessionModifyRequest(in VideoProfile videoProfile);
Andrew Lee752217b2014-08-08 01:40:14 -070036
Andrei Onea903da372019-02-27 15:45:08 +000037 @UnsupportedAppUsage
Ihab Awadb19a0bc2014-08-07 19:46:01 -070038 void receiveSessionModifyResponse(int status, in VideoProfile requestedProfile,
39 in VideoProfile responseProfile);
Andrew Lee752217b2014-08-08 01:40:14 -070040
Andrei Onea903da372019-02-27 15:45:08 +000041 @UnsupportedAppUsage
Andrew Lee752217b2014-08-08 01:40:14 -070042 void handleCallSessionEvent(int event);
43
Andrei Onea903da372019-02-27 15:45:08 +000044 @UnsupportedAppUsage
Andrew Lee752217b2014-08-08 01:40:14 -070045 void changePeerDimensions(int width, int height);
46
Andrei Onea903da372019-02-27 15:45:08 +000047 @UnsupportedAppUsage
Rekha Kumar07366812015-03-24 16:42:31 -070048 void changeCallDataUsage(long dataUsage);
Andrew Lee752217b2014-08-08 01:40:14 -070049
Andrei Onea903da372019-02-27 15:45:08 +000050 @UnsupportedAppUsage
Yorke Lee400470f2015-05-12 13:31:25 -070051 void changeCameraCapabilities(in VideoProfile.CameraCapabilities cameraCapabilities);
Rekha Kumar07366812015-03-24 16:42:31 -070052
Andrei Onea903da372019-02-27 15:45:08 +000053 @UnsupportedAppUsage
Rekha Kumar07366812015-03-24 16:42:31 -070054 void changeVideoQuality(int videoQuality);
Andrew Lee752217b2014-08-08 01:40:14 -070055}