Loading media/java/android/media/tv/extension/cam/ICamAppInfoListener.aidl 0 → 100644 +26 −0 Original line number Diff line number Diff line /* * 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.cam; import android.os.Bundle; /** * @hide */ oneway interface ICamAppInfoListener { void onCamAppInfoChanged(int slotId, in Bundle appInfo); } media/java/android/media/tv/extension/cam/ICamAppInfoService.aidl 0 → 100644 +32 −0 Original line number Diff line number Diff line /* * 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.cam; import android.media.tv.extension.cam.ICamAppInfoListener; import android.os.Bundle; /** * @hide */ interface ICamAppInfoService { // Register ICamAppInfoListener to get CICAM Application Information updates. void addCamAppInfoListener(ICamAppInfoListener listener); // Unregister ICamAppInfoListener and stop get Application Information notify. void removeCamAppInfoListener(ICamAppInfoListener listener); // Get the Application Information of the CICAM. int getCamAppInfo(int slotId, out Bundle appInfo); } media/java/android/media/tv/extension/cam/ICamDrmInfoListener.aidl 0 → 100644 +26 −0 Original line number Diff line number Diff line /* * 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.cam; import android.os.Bundle; /** * @hide */ oneway interface ICamDrmInfoListener { void onCamDrmInfoChanged(int slotId, in Bundle camDrmInfo); } media/java/android/media/tv/extension/cam/ICamHostControlAskReleaseReplyCallback.aidl 0 → 100644 +24 −0 Original line number Diff line number Diff line /* * 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.cam; /** * @hide */ oneway interface ICamHostControlAskReleaseReplyCallback { void onAskReleaseReply(String sessionToken, int replyStatus); } media/java/android/media/tv/extension/cam/ICamHostControlInfoListener.aidl 0 → 100644 +24 −0 Original line number Diff line number Diff line /* * 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.cam; /** * @hide */ oneway interface ICamHostControlInfoListener { void onCamHostControlInfoChanged(String sessionToken, int sessionStatus); } Loading
media/java/android/media/tv/extension/cam/ICamAppInfoListener.aidl 0 → 100644 +26 −0 Original line number Diff line number Diff line /* * 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.cam; import android.os.Bundle; /** * @hide */ oneway interface ICamAppInfoListener { void onCamAppInfoChanged(int slotId, in Bundle appInfo); }
media/java/android/media/tv/extension/cam/ICamAppInfoService.aidl 0 → 100644 +32 −0 Original line number Diff line number Diff line /* * 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.cam; import android.media.tv.extension.cam.ICamAppInfoListener; import android.os.Bundle; /** * @hide */ interface ICamAppInfoService { // Register ICamAppInfoListener to get CICAM Application Information updates. void addCamAppInfoListener(ICamAppInfoListener listener); // Unregister ICamAppInfoListener and stop get Application Information notify. void removeCamAppInfoListener(ICamAppInfoListener listener); // Get the Application Information of the CICAM. int getCamAppInfo(int slotId, out Bundle appInfo); }
media/java/android/media/tv/extension/cam/ICamDrmInfoListener.aidl 0 → 100644 +26 −0 Original line number Diff line number Diff line /* * 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.cam; import android.os.Bundle; /** * @hide */ oneway interface ICamDrmInfoListener { void onCamDrmInfoChanged(int slotId, in Bundle camDrmInfo); }
media/java/android/media/tv/extension/cam/ICamHostControlAskReleaseReplyCallback.aidl 0 → 100644 +24 −0 Original line number Diff line number Diff line /* * 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.cam; /** * @hide */ oneway interface ICamHostControlAskReleaseReplyCallback { void onAskReleaseReply(String sessionToken, int replyStatus); }
media/java/android/media/tv/extension/cam/ICamHostControlInfoListener.aidl 0 → 100644 +24 −0 Original line number Diff line number Diff line /* * 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.cam; /** * @hide */ oneway interface ICamHostControlInfoListener { void onCamHostControlInfoChanged(String sessionToken, int sessionStatus); }