aboutsummaryrefslogtreecommitdiff
path: root/lib/base/encoding.cpp
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-07-25 14:13:05 +0200
committerghost <andreas.monzner@multimedia-labs.de>2009-07-25 14:13:05 +0200
commitefdb7161844b7be58cdc5ec3308d8aaf5b257894 (patch)
tree070ccb01f9479f19b12e269699ebf51ee0e624ea /lib/base/encoding.cpp
parentcddb13ae57507610df08f5f11e0b19a7e36f63cb (diff)
downloadenigma2-efdb7161844b7be58cdc5ec3308d8aaf5b257894.tar.gz
enigma2-efdb7161844b7be58cdc5ec3308d8aaf5b257894.zip
more standard conform handling for dvb-text encodings
with this fix no more special handling for UPC Direkt transponders on 19.2°E and CS Link on 23.5°E is needed but some polish providers still needs special handling... i think they interpreted the spec in the wrong way
Diffstat (limited to 'lib/base/encoding.cpp')
-rw-r--r--lib/base/encoding.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/base/encoding.cpp b/lib/base/encoding.cpp
index 831de847..e4e1531c 100644
--- a/lib/base/encoding.cpp
+++ b/lib/base/encoding.cpp
@@ -42,14 +42,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 ) )
@@ -83,5 +83,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 0; // Latin1/ISO6397
}