blob: 9499c9f5dde92f433a563d937fd11b633323d3c7 [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 {
Ihab Awadb19a0bc2014-08-07 19:46:01 -070034 void receiveSessionModifyRequest(in VideoProfile videoProfile);
Andrew Lee752217b2014-08-08 01:40:14 -070035
Ihab Awadb19a0bc2014-08-07 19:46:01 -070036 void receiveSessionModifyResponse(int status, in VideoProfile requestedProfile,
37 in VideoProfile responseProfile);
Andrew Lee752217b2014-08-08 01:40:14 -070038
39 void handleCallSessionEvent(int event);
40
41 void changePeerDimensions(int width, int height);
42
Rekha Kumar07366812015-03-24 16:42:31 -070043 void changeCallDataUsage(long dataUsage);
Andrew Lee752217b2014-08-08 01:40:14 -070044
Yorke Lee400470f2015-05-12 13:31:25 -070045 void changeCameraCapabilities(in VideoProfile.CameraCapabilities cameraCapabilities);
Rekha Kumar07366812015-03-24 16:42:31 -070046
47 void changeVideoQuality(int videoQuality);
Andrew Lee752217b2014-08-08 01:40:14 -070048}