aboutsummaryrefslogtreecommitdiff
path: root/lib/base/encoding.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-12-08 17:06:29 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-12-08 17:06:29 +0000
commit065d3ac0f19a6f2c61c3f8aa80a6cd8784ff7a7f (patch)
tree9de4647a4d6b042a8f592105ca31ae03509d8fa9 /lib/base/encoding.cpp
parent3d42d707a1aca0fda2f9810ea36ec47d52f4b2c2 (diff)
downloadenigma2-065d3ac0f19a6f2c61c3f8aa80a6cd8784ff7a7f.tar.gz
enigma2-065d3ac0f19a6f2c61c3f8aa80a6cd8784ff7a7f.zip
add each country code in lower and upper case
Diffstat (limited to 'lib/base/encoding.cpp')
-rw-r--r--lib/base/encoding.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/base/encoding.cpp b/lib/base/encoding.cpp
index e8651699..48be7873 100644
--- a/lib/base/encoding.cpp
+++ b/lib/base/encoding.cpp
@@ -4,6 +4,16 @@
eDVBTextEncodingHandler encodingHandler; // the one and only instance
+char toupper(char c)
+{
+ switch (c)
+ {
+ case 'a' ... 'z':
+ return c-32;
+ }
+ return c;
+}
+
eDVBTextEncodingHandler::eDVBTextEncodingHandler()
{
const char * file=DATADIR "/enigma2/encoding.conf";
@@ -19,7 +29,13 @@ eDVBTextEncodingHandler::eDVBTextEncodingHandler()
continue;
int tsid, onid, encoding;
if ( sscanf( line, "%s ISO8859-%d", countrycode, &encoding ) == 2 )
+ {
+ m_CountryCodeDefaultMapping[countrycode]=encoding;
+ countrycode[0]=toupper(countrycode[0]);
+ countrycode[1]=toupper(countrycode[1]);
+ countrycode[2]=toupper(countrycode[2]);
m_CountryCodeDefaultMapping[countrycode]=encoding;
+ }
else if ( (sscanf( line, "0x%x 0x%x ISO8859-%d", &tsid, &onid, &encoding ) == 3 )
||(sscanf( line, "%d %d ISO8859-%d", &tsid, &onid, &encoding ) == 3 ) )
m_TransponderDefaultMapping[(tsid<<16)|onid]=encoding;