X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/f94e2c9821eb8784ca03b7122485d4720ec6d6e6..a6f7c725e21a4b6ed064e92b453331837d12f267:/lib/base/encoding.cpp diff --git a/lib/base/encoding.cpp b/lib/base/encoding.cpp index e8651699..831de847 100644 --- a/lib/base/encoding.cpp +++ b/lib/base/encoding.cpp @@ -1,9 +1,20 @@ +#include +#include #include #include -#include eDVBTextEncodingHandler encodingHandler; // the one and only instance +inline char toupper(char c) +{ + switch (c) + { + case 'a' ... 'z': + return c-32; + } + return c; +} + eDVBTextEncodingHandler::eDVBTextEncodingHandler() { const char * file=DATADIR "/enigma2/encoding.conf"; @@ -18,11 +29,28 @@ eDVBTextEncodingHandler::eDVBTextEncodingHandler() if ( line[0] == '#' ) continue; int tsid, onid, encoding; - if ( sscanf( line, "%s ISO8859-%d", countrycode, &encoding ) == 2 ) - m_CountryCodeDefaultMapping[countrycode]=encoding; - else if ( (sscanf( line, "0x%x 0x%x ISO8859-%d", &tsid, &onid, &encoding ) == 3 ) + 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; + else 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 ISO%d", &tsid, &onid, &encoding ) == 3 && encoding == 6397 ) + ||(sscanf( line, "%d %d ISO%d", &tsid, &onid, &encoding ) == 3 && encoding == 6397 ) ) + m_TransponderDefaultMapping[(tsid<<16)|onid]=64; + else if ( sscanf( line, "%s ISO%d", countrycode, &encoding ) == 2 && encoding == 6397 ) + { + m_CountryCodeDefaultMapping[countrycode]=64; + countrycode[0]=toupper(countrycode[0]); + countrycode[1]=toupper(countrycode[1]); + countrycode[2]=toupper(countrycode[2]); + m_CountryCodeDefaultMapping[countrycode]=64; + } else if ( (sscanf( line, "0x%x 0x%x", &tsid, &onid ) == 2 ) ||(sscanf( line, "%d %d", &tsid, &onid ) == 2 ) ) m_TransponderUseTwoCharMapping.insert((tsid<<16)|onid);