diff options
5 files changed, 162 insertions, 0 deletions
diff --git a/media/java/android/media/tv/extension/event/IEventDownload.aidl b/media/java/android/media/tv/extension/event/IEventDownload.aidl new file mode 100644 index 000000000000..29c7553e1014 --- /dev/null +++ b/media/java/android/media/tv/extension/event/IEventDownload.aidl @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2024 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.tv.extension.event; + +import android.media.tv.extension.event.IEventDownloadListener; +import android.os.Bundle; +import android.os.IBinder; + +/** + * @hide + */ +interface IEventDownload { + // Create an event download session and return it as a Ibinder for DVB/DTMB + IBinder createSession(in Bundle eventDownloadParams, in IEventDownloadListener listener); +} diff --git a/media/java/android/media/tv/extension/event/IEventDownloadListener.aidl b/media/java/android/media/tv/extension/event/IEventDownloadListener.aidl new file mode 100644 index 000000000000..6d7d61f15d27 --- /dev/null +++ b/media/java/android/media/tv/extension/event/IEventDownloadListener.aidl @@ -0,0 +1,26 @@ +/* + * Copyright (C) 2024 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.tv.extension.event; + +import android.os.Bundle; + +/** + * @hide + */ +oneway interface IEventDownloadListener { + void onCompleted(in Bundle status); +} diff --git a/media/java/android/media/tv/extension/event/IEventDownloadSession.aidl b/media/java/android/media/tv/extension/event/IEventDownloadSession.aidl new file mode 100644 index 000000000000..fe7ee37b324b --- /dev/null +++ b/media/java/android/media/tv/extension/event/IEventDownloadSession.aidl @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2024 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.tv.extension.event; + +import android.net.Uri; +import android.os.Bundle; + +/** + * @hide + */ +interface IEventDownloadSession { + // Determine to execute barker channel or silent tune flow for related service type + int isBarkerOrSequentialDownloadByServiceType(in Bundle eventDownloadParams); + // Determine whether to start barker channel or silent tune flow. + int isBarkerOrSequentialDownloadByServiceRecord(in Bundle eventDownloadParams); + // Start event download. + void startTuningMultiplex(in Uri channelUri); + // Set active window channels. + void setActiveWindowChannelInfo(in Uri[] activeWinChannelInfos); + // Cancel barker channel or silent tune flow. + void cancel(); + // Release barker channel or silent tune flow. + void release(); +} diff --git a/media/java/android/media/tv/extension/event/IEventMonitor.aidl b/media/java/android/media/tv/extension/event/IEventMonitor.aidl new file mode 100644 index 000000000000..f6e7bd134e78 --- /dev/null +++ b/media/java/android/media/tv/extension/event/IEventMonitor.aidl @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2024 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.tv.extension.event; + +import android.media.tv.extension.event.IEventMonitorListener; +import android.net.Uri; +import android.os.Bundle; + +/** + * @hide + */ +interface IEventMonitor { + // Get present event information. + Bundle getPresentEventInfo(long channelDbId); + // Add present event information listener. + void addPresentEventInfoListener(in IEventMonitorListener listener); + // Remove present event information listener. + void removePresentEventInfoListener(in IEventMonitorListener listener); + // Get following event information. + Bundle getFollowingEventInfo(long channelDbId); + // Add following event information listener. + void addFollowingEventInfoListener(in IEventMonitorListener listener); + // Remove following event information listener. + void removeFollowingEventInfoListener(in IEventMonitorListener listener); + // Get SDT guidance information. + Bundle getSdtGuidanceInfo(long channelDbId); + // Set Event Background channel list info. + void setBgmTuneChannelInfo(in Uri[] tuneChannelInfos); +} diff --git a/media/java/android/media/tv/extension/event/IEventMonitorListener.aidl b/media/java/android/media/tv/extension/event/IEventMonitorListener.aidl new file mode 100644 index 000000000000..a00e5422a7e0 --- /dev/null +++ b/media/java/android/media/tv/extension/event/IEventMonitorListener.aidl @@ -0,0 +1,26 @@ +/* + * Copyright (C) 2024 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.tv.extension.event; + +import android.os.Bundle; + +/** + * @hide + */ +oneway interface IEventMonitorListener { + void onInfoChanged(long channelDbId, in Bundle eventinfo); +} |