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

Commit e36b09b4 authored by Nick Chalko's avatar Nick Chalko
Browse files

Fix some spelling errors

Test: m android.hardware.tv.tuner@1.0
Change-Id: I2f1551106a2d18efe0819bea62cd0f9a0679c636
parent 316b60db
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -62,9 +62,9 @@ interface IDemux {
     *
     * It is used by the client to get the descriptor of the filter's Fast
     * Message Queue. The data in FMQ is filtered out from MPEG transport
     * stream. The data is origanized to data blocks which may have
     * stream. The data is organized to data blocks which may have
     * different length. The length's information of one or multiple data blocks
     * is sent to client throught DemuxFilterEvent.
     * is sent to client through DemuxFilterEvent.
     *
     * @param filterId the ID of the filter.
     * @return result Result status of the operation.
@@ -97,7 +97,7 @@ interface IDemux {
    /**
     * Start the filter.
     *
     * It is used by the client to ask the filter to start filterring data.
     * It is used by the client to ask the filter to start filtering data.
     *
     * @param filterId the ID of the filter.
     * @return result Result status of the operation.
@@ -218,7 +218,7 @@ interface IDemux {
     *
     * It is used by the client to get the descriptor of the output's Fast
     * Message Queue. The data in FMQ is muxed packets output from selected
     * filters. The packet's format is specifed by DemuxDataFormat in
     * filters. The packet's format is specified by DemuxDataFormat in
     * DemuxOutputSettings.
     *
     * @return result Result status of the operation.
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ interface IFrontend {
    setLnb(LnbId lnbId) generates (Result result);

    /**
     * Enble or Disable Low Noise Amplifier (LNA).
     * Enable or Disable Low Noise Amplifier (LNA).
     *
     * @param bEnable true if activate LNA module; false if deactivate LNA
     *
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ import ILnb;

/**
 * Top level interface to manage Frontend, Demux and Decrambler hardware
 * resouces which are needed for Android TV.
 * resources which are needed for Android TV.
 */
interface ITuner {
    /**
+1 −1
Original line number Diff line number Diff line
@@ -735,7 +735,7 @@ void Demux::inputThreadLoop() {
            ALOGD("[Demux] wait for data ready on the input FMQ");
            continue;
        }
        // Our current implementation filter the data and write it into the filter FMQ immedaitely
        // Our current implementation filter the data and write it into the filter FMQ immediately
        // after the DATA_READY from the VTS/framework
        if (!readInputFMQ() || !startFilterDispatcher()) {
            ALOGD("[Demux] input data failed to be filtered. Ending thread");
+4 −4
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ enum FrontendType : uint32_t {
    DVBS,
    /**
     * Digital Video Broadcasting - Terrestrial
     * DVB Terresttrial Frontend Standard ETSI EN 300 468 V1.15.1 and
     * DVB Terrestrial Frontend Standard ETSI EN 300 468 V1.15.1 and
     * ETSI EN 302 755 V1.4.1.
     */
    DVBT,
@@ -655,7 +655,7 @@ enum FrontendIsdbsRolloff : uint32_t {
};

/**
 *  Modulaltion Type for ISDBS.
 *  Modulation Type for ISDBS.
 */
@export
enum FrontendIsdbsModulation : uint32_t {
@@ -951,7 +951,7 @@ enum FrontendScanMessageType : uint32_t {
    GROUP_IDS,
    /** Stream Ids. */
    INPUT_STREAM_IDS,
    /** Locked signal stardard.  */
    /** Locked signal standard.  */
    STANDARD,
    /** PLP status in a tuned frequency band for ATSC3 frontend. */
    ATSC3_PLP_INFO,
@@ -969,7 +969,7 @@ struct FrontendScanAtsc3PlpInfo {
 *  Scan Message for Frontend.
 */
safe_union FrontendScanMessage {
    bool islocked;
    bool isLocked;
    bool isEnd;
    /** scan progress percent (0..100) */
    uint8_t progressPercent;