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)
|
410 | 410 | } |
411 | 411 | } |
412 | 412 | |
413 | | // This function gets special eit data from the german provider Premiere |
| 413 | // This function gets special EIT data from the German provider Premiere |
414 | 414 | // for the option channels Premiere Sport and Premiere Direkt |
415 | 415 | void EITHelper::AddEIT(const PremiereContentInformationTable *cit) |
416 | 416 | { |
… |
… |
static uint get_chan_id_from_db(uint sourceid, uint serviceid,
|
665 | 665 | MythContext::DBError("Looking up chanID", query); |
666 | 666 | else if (query.next()) |
667 | 667 | { |
668 | | // Check to see if we are interseted in this channel |
| 668 | // Check to see if we are intersected in this channel |
669 | 669 | bool useOnAirGuide = query.value(1).toBool(); |
670 | 670 | return (useOnAirGuide) ? query.value(0).toUInt() : 0; |
671 | 671 | } |
… |
… |
static void init_fixup(QMap<uint64_t,uint> &fix)
|
696 | 696 | // United Kingdom |
697 | 697 | fix[ 9018U << 16] = EITFixUp::kFixUK; |
698 | 698 | |
699 | | // ComHem Sweeden |
| 699 | // ComHem Sweden |
700 | 700 | fix[40999U << 16 ] = EITFixUp::kFixComHem; |
701 | 701 | fix[40999U << 16 | 1070] = EITFixUp::kFixSubtitle; |
702 | 702 | fix[40999U << 16 | 1308] = EITFixUp::kFixSubtitle; |
… |
… |
static void init_fixup(QMap<uint64_t,uint> &fix)
|
831 | 831 | fix[ 6200LL << 32 | 8916 << 16 ] = // Madrid (TeleMadrid) |
832 | 832 | EITFixUp::kEFixForceISO8859_15; |
833 | 833 | |
834 | | // DVB-S Astra 19.2E french channels |
| 834 | // DVB-S Astra 19.2E French channels |
835 | 835 | fix[ 1022LL << 32 | 1 << 16 | 6901 ] = // DIRECT 8 |
836 | 836 | fix[ 1022LL << 32 | 1 << 16 | 6905 ] = // France 24 (en Francais) |
837 | 837 | fix[ 1022LL << 32 | 1 << 16 | 6911 ] = // DIRECT 8 |
diff --git a/libs/libmythtv/eithelper.h b/libs/libmythtv/eithelper.h
index fc95fa5..4149931 100644
a
|
b
|
class ATSCEvent
|
20 | 20 | public: |
21 | 21 | /// This empty constructor is needed for the QMap<> to work, it is |
22 | 22 | /// 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 |
24 | 24 | /// QMap this is safe in that use. |
25 | 25 | ATSCEvent() {} |
26 | 26 | /// This is the only valid constructor for ATSCEvent. |
diff --git a/libs/libmythtv/signalmonitor.cpp b/libs/libmythtv/signalmonitor.cpp
index f18e99b..eaa4233 100644
a
|
b
|
void SignalMonitor::Kick()
|
254 | 254 | * \brief Returns QStringList containing all signals and their current |
255 | 255 | * values. |
256 | 256 | * |
257 | | * This searlializes the signal monitoring values so that they can |
| 257 | * This serializes the signal monitoring values so that they can |
258 | 258 | * be passed from a backend to a frontend. |
259 | 259 | * |
260 | 260 | * SignalMonitorValue::Parse(const QStringList&) will convert this |
diff --git a/libs/libmythtv/signalmonitor.h b/libs/libmythtv/signalmonitor.h
index 1a69ac6..218d6ec 100644
a
|
b
|
class SignalMonitor
|
108 | 108 | static void* SpawnMonitorLoop(void*); |
109 | 109 | virtual void MonitorLoop(); |
110 | 110 | |
111 | | /// \brief This should be overriden to actually do signal monitoring. |
| 111 | /// \brief This should be overridden to actually do signal monitoring. |
112 | 112 | virtual void UpdateValues() { ; } |
113 | 113 | |
114 | 114 | public: |
… |
… |
class SignalMonitor
|
172 | 172 | |
173 | 173 | static const uint64_t kDTVSigMon_WaitForAll = 0x01FF000000ULL; |
174 | 174 | |
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 |
176 | 176 | 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 |
178 | 178 | 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 |
180 | 180 | static const uint64_t kDVBSigMon_WaitForUB = 0x4000000000ULL; |
181 | 181 | /// Wait for rotor to complete turning the antenna |
182 | 182 | static const uint64_t kDVBSigMon_WaitForPos = 0x8000000000ULL; |