summaryrefslogtreecommitdiff
path: root/framework/src/android/telephony/imsmedia/IImsMedia.aidl
diff options
context:
space:
mode:
authorJayachandran C <jayachandranc@google.com>2021-12-24 02:06:52 -0800
committerJayachandran C <jayachandranc@google.com>2022-03-04 13:35:48 -0800
commit816f2638a9e86a01b91284a8dc0ca5c026ae12a5 (patch)
tree0bd8e81dc70f6b13548d14016e3ebf52b8d00354 /framework/src/android/telephony/imsmedia/IImsMedia.aidl
parent09f9a3a928c1b0821f253c16abec7f36ed4e5852 (diff)
downloadImsMedia-816f2638a9e86a01b91284a8dc0ca5c026ae12a5.tar.gz
Initial implementation of ImsMedia APIs and services
Bug: 203240638 Test: atest Change-Id: I3f980e3146f679722636e709a51182f232dcbd2f
Diffstat (limited to 'framework/src/android/telephony/imsmedia/IImsMedia.aidl')
-rw-r--r--framework/src/android/telephony/imsmedia/IImsMedia.aidl37
1 files changed, 37 insertions, 0 deletions
diff --git a/framework/src/android/telephony/imsmedia/IImsMedia.aidl b/framework/src/android/telephony/imsmedia/IImsMedia.aidl
new file mode 100644
index 00000000..2dda58ee
--- /dev/null
+++ b/framework/src/android/telephony/imsmedia/IImsMedia.aidl
@@ -0,0 +1,37 @@
+/**
+ * Copyright (C) 2022 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.telephony.imsmedia;
+
+import android.os.ParcelFileDescriptor;
+import android.telephony.imsmedia.RtpConfig;
+
+/**
+ * See ImsMediaManager for more information
+ *
+ * {@hide}
+ */
+oneway interface IImsMedia {
+ void openSession(
+ in ParcelFileDescriptor rtpFd,
+ in ParcelFileDescriptor rtcpFd,
+ int sessionType,
+ in RtpConfig rtpConfig,
+ in IBinder callback);
+
+ void closeSession(in IBinder session);
+}
+