Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 14632b19 authored by Sherry Huang's avatar Sherry Huang
Browse files

TIF: Adding functions for service database for DVBI

Adding DVBI specific functions for service database upon partner's
request. Amending import listener to include other optional params.

Test: m
Bug: b/400785063
Flag: android.media.tv.flags.tif_extension_standardization_bugfix
Change-Id: I939f84c72736533e7771c67f06f41962d98b7417
parent 0c0cfa27
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -78,4 +78,11 @@ interface IServiceListEdit {
    int addPredefinedChannelList(String serviceListId, in Bundle[] predefinedListBundle);
    // Add predefined satellite info of Hotbird 13E in scan two satellite scene EU region.
    int addPredefinedSatInfo(String serviceListId, in Bundle predefinedSatInfoBundle);

    // Get the logo URI for a specific service - DVB-I only.
    String getServiceLogoUri(int serviceRecordId);
    // Get the installed service list information for a specific channel list id - DVB-I only.
    Bundle getInstalledServiceListInfo(String channelListId);
    // Get all installed service list information - DVB-I only.
    Bundle[] getAllInstalledServiceListInfo();
}
+3 −1
Original line number Diff line number Diff line
@@ -16,10 +16,12 @@

package android.media.tv.extension.servicedb;

import android.os.Bundle;

/**
 * @hide
 */
interface IServiceListImportListener {
    void onImported(int importResult);
    void onPreloaded(int preloadResult);
    void onPreloaded(int preloadResult, in Bundle serviceListInfo);
}
 No newline at end of file