X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/65efcb9d542de70854e33520ddd0d9838632a0e6..672640e924d5c61ec03919b977d38fa2783ad1c8:/lib/base/encoding.cpp diff --git a/lib/base/encoding.cpp b/lib/base/encoding.cpp index 831de847..361acce5 100644 --- a/lib/base/encoding.cpp +++ b/lib/base/encoding.cpp @@ -2,6 +2,7 @@ #include #include #include +#include eDVBTextEncodingHandler encodingHandler; // the one and only instance @@ -17,8 +18,8 @@ inline char toupper(char c) eDVBTextEncodingHandler::eDVBTextEncodingHandler() { - const char * file=DATADIR "/enigma2/encoding.conf"; - FILE *f = fopen(file, "rt"); + std::string file = eEnv::resolve("${datadir}/enigma2/encoding.conf"); + FILE *f = fopen(file.c_str(), "rt"); if (f) { char *line = (char*) malloc(256); @@ -42,14 +43,14 @@ eDVBTextEncodingHandler::eDVBTextEncodingHandler() } 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; + m_TransponderDefaultMapping[(tsid<<16)|onid]=0; else if ( sscanf( line, "%s ISO%d", countrycode, &encoding ) == 2 && encoding == 6397 ) { - m_CountryCodeDefaultMapping[countrycode]=64; + m_CountryCodeDefaultMapping[countrycode]=0; countrycode[0]=toupper(countrycode[0]); countrycode[1]=toupper(countrycode[1]); countrycode[2]=toupper(countrycode[2]); - m_CountryCodeDefaultMapping[countrycode]=64; + m_CountryCodeDefaultMapping[countrycode]=0; } else if ( (sscanf( line, "0x%x 0x%x", &tsid, &onid ) == 2 ) ||(sscanf( line, "%d %d", &tsid, &onid ) == 2 ) ) @@ -61,7 +62,7 @@ eDVBTextEncodingHandler::eDVBTextEncodingHandler() free(line); } else - eDebug("[eDVBTextEncodingHandler] couldn't open %s !", file); + eDebug("[eDVBTextEncodingHandler] couldn't open %s !", file.c_str()); } void eDVBTextEncodingHandler::getTransponderDefaultMapping(int tsidonid, int &table) @@ -83,5 +84,5 @@ int eDVBTextEncodingHandler::getCountryCodeDefaultMapping( const std::string &co m_CountryCodeDefaultMapping.find(country_code); if ( it != m_CountryCodeDefaultMapping.end() ) return it->second; - return 0; // ISO8859-1 / Latin1 + return 1; // ISO8859-1 / Latin1 }