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

Commit 7eda7827 authored by Hongguang's avatar Hongguang
Browse files

Support DVB-T Cell Ids.

Bug: 210358443
Test: atest VtsHalTvTunerTargetTest
Change-Id: I36a61a78e919c036cde5ea24634eed28d7eb4e5d
parent d2c6d679
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -50,4 +50,5 @@ union FrontendScanMessage {
  android.hardware.tv.tuner.FrontendModulation modulation;
  android.hardware.tv.tuner.FrontendDvbcAnnex annex;
  boolean isHighPriority;
  int[] dvbtCellIds;
}
+1 −0
Original line number Diff line number Diff line
@@ -50,4 +50,5 @@ enum FrontendScanMessageType {
  MODULATION = 12,
  DVBC_ANNEX = 13,
  HIGH_PRIORITY = 14,
  DVBT_CELL_IDS = 15,
}
+1 −0
Original line number Diff line number Diff line
@@ -75,4 +75,5 @@ union FrontendStatus {
  android.hardware.tv.tuner.FrontendIsdbtMode isdbtMode;
  android.hardware.tv.tuner.FrontendIsdbtPartialReceptionFlag partialReceptionFlag;
  int[] streamIdList;
  int[] dvbtCellIds;
}
+1 −0
Original line number Diff line number Diff line
@@ -75,4 +75,5 @@ enum FrontendStatusType {
  ISDBT_MODE = 37,
  ISDBT_PARTIAL_RECEPTION_FLAG = 38,
  STREAM_ID_LIST = 39,
  DVBT_CELL_IDS = 40,
}
+6 −0
Original line number Diff line number Diff line
@@ -70,4 +70,10 @@ union FrontendScanMessage {
    FrontendDvbcAnnex annex;

    boolean isHighPriority;

    /**
     * DVB-T Cell Ids.
     */
    int[] dvbtCellIds;

}
Loading