more standard conform handling for dvb-text encodings
[enigma2.git] / lib / base / encoding.cpp
index 6a997cf13d8ccc95b871c4ce072a6c132d530e24..e4e1531c921d4ed4483fc1d8608703b8c1ba1501 100644 (file)
@@ -1,3 +1,4 @@
+#include <cstdio>
 #include <cstdlib>
 #include <lib/base/encoding.h>
 #include <lib/base/eerror.h>
@@ -41,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 ) )
@@ -82,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
 }