Ticket #5300: libs_libmythtv-spelling-errors.patch

File libs_libmythtv-spelling-errors.patch, 4.5 KB (added by Erik Hovland <erik@…>, 17 years ago)
  • libs/libmythtv/eithelper.cpp

    Captures any spelling errors in libs/libmythtv
    
    From: Erik Hovland <erik@hovland.org>
    
    
    ---
    
     libs/libmythtv/eithelper.cpp     |    8 ++++----
     libs/libmythtv/eithelper.h       |    2 +-
     libs/libmythtv/signalmonitor.cpp |    2 +-
     libs/libmythtv/signalmonitor.h   |    8 ++++----
     4 files changed, 10 insertions(+), 10 deletions(-)
    
    diff --git a/libs/libmythtv/eithelper.cpp b/libs/libmythtv/eithelper.cpp
    index 2da0a27..2acec05 100644
    a b void EITHelper::AddEIT(const DVBEventInformationTable *eit)  
    410410    }
    411411}
    412412
    413 // This function gets special eit data from the german provider Premiere
     413// This function gets special EIT data from the German provider Premiere
    414414// for the option channels Premiere Sport and Premiere Direkt
    415415void EITHelper::AddEIT(const PremiereContentInformationTable *cit)
    416416{
    static uint get_chan_id_from_db(uint sourceid, uint serviceid,  
    665665        MythContext::DBError("Looking up chanID", query);
    666666    else if (query.next())
    667667    {
    668         // Check to see if we are interseted in this channel
     668        // Check to see if we are intersected in this channel
    669669        bool useOnAirGuide = query.value(1).toBool();
    670670        return (useOnAirGuide) ? query.value(0).toUInt() : 0;
    671671    }
    static void init_fixup(QMap<uint64_t,uint> &fix)  
    696696    // United Kingdom
    697697    fix[ 9018U << 16] = EITFixUp::kFixUK;
    698698
    699     // ComHem Sweeden
     699    // ComHem Sweden
    700700    fix[40999U << 16       ] = EITFixUp::kFixComHem;
    701701    fix[40999U << 16 | 1070] = EITFixUp::kFixSubtitle;
    702702    fix[40999U << 16 | 1308] = EITFixUp::kFixSubtitle;
    static void init_fixup(QMap<uint64_t,uint> &fix)  
    831831        fix[ 6200LL << 32 | 8916 << 16 ] = // Madrid (TeleMadrid)
    832832        EITFixUp::kEFixForceISO8859_15;
    833833
    834     // DVB-S Astra 19.2E french channels
     834    // DVB-S Astra 19.2E French channels
    835835    fix[     1022LL << 32 | 1 << 16 |  6901 ] = // DIRECT 8
    836836        fix[ 1022LL << 32 | 1 << 16 |  6905 ] = // France 24 (en Francais)
    837837        fix[ 1022LL << 32 | 1 << 16 |  6911 ] = // DIRECT 8
  • libs/libmythtv/eithelper.h

    diff --git a/libs/libmythtv/eithelper.h b/libs/libmythtv/eithelper.h
    index fc95fa5..4149931 100644
    a b class ATSCEvent  
    2020  public:
    2121    /// This empty constructor is needed for the QMap<> to work, it is
    2222    /// not intended to be used to initialize an ATSC Event.
    23     /// Since we immediately initialize the value insterted into the
     23    /// Since we immediately initialize the value inserted into the
    2424    /// QMap this is safe in that use.
    2525    ATSCEvent() {}
    2626    /// This is the only valid constructor for ATSCEvent.
  • libs/libmythtv/signalmonitor.cpp

    diff --git a/libs/libmythtv/signalmonitor.cpp b/libs/libmythtv/signalmonitor.cpp
    index f18e99b..eaa4233 100644
    a b void SignalMonitor::Kick()  
    254254 *  \brief Returns QStringList containing all signals and their current
    255255 *         values.
    256256 *
    257  *   This searlializes the signal monitoring values so that they can
     257 *   This serializes the signal monitoring values so that they can
    258258 *   be passed from a backend to a frontend.
    259259 *
    260260 *   SignalMonitorValue::Parse(const QStringList&) will convert this
  • libs/libmythtv/signalmonitor.h

    diff --git a/libs/libmythtv/signalmonitor.h b/libs/libmythtv/signalmonitor.h
    index 1a69ac6..218d6ec 100644
    a b class SignalMonitor  
    108108    static void* SpawnMonitorLoop(void*);
    109109    virtual void MonitorLoop();
    110110
    111     /// \brief This should be overriden to actually do signal monitoring.
     111    /// \brief This should be overridden to actually do signal monitoring.
    112112    virtual void UpdateValues() { ; }
    113113
    114114  public:
    class SignalMonitor  
    172172
    173173    static const uint64_t kDTVSigMon_WaitForAll = 0x01FF000000ULL;
    174174
    175     /// Wait for the Signal to Noise Ratio to rise above a threshhold
     175    /// Wait for the Signal to Noise Ratio to rise above a threshold
    176176    static const uint64_t kDVBSigMon_WaitForSNR = 0x1000000000ULL;
    177     /// Wait for the Bit Error Rate to fall below a threshhold
     177    /// Wait for the Bit Error Rate to fall below a threshold
    178178    static const uint64_t kDVBSigMon_WaitForBER = 0x2000000000ULL;
    179     /// Wait for uncorrected FEC blocks to fall below a threshhold
     179    /// Wait for uncorrected FEC blocks to fall below a threshold
    180180    static const uint64_t kDVBSigMon_WaitForUB  = 0x4000000000ULL;
    181181    /// Wait for rotor to complete turning the antenna
    182182    static const uint64_t kDVBSigMon_WaitForPos = 0x8000000000ULL;