diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-02-13 10:37:27 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-02-13 10:37:27 +0100 |
commit | 7949793f001d8df78a34748ae706571e234618be (patch) | |
tree | 8da2382c23b3b7d8b4f0440ff81743f3ef12d04b /libsi/si.c | |
parent | 24a2b4680cef85329b9e7d30c1e6fb4f2f3d6de6 (diff) | |
download | vdr-7949793f001d8df78a34748ae706571e234618be.tar.gz vdr-7949793f001d8df78a34748ae706571e234618be.tar.bz2 |
Exported some libsi functions
Diffstat (limited to 'libsi/si.c')
-rw-r--r-- | libsi/si.c | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: si.c 2.1 2009/12/05 16:20:12 kls Exp $ + * $Id: si.c 2.2 2010/02/13 10:31:52 kls Exp $ * * ***************************************************************************/ @@ -311,6 +311,11 @@ static const char *CharacterTables2[] = { static const char *SystemCharacterTable = NULL; bool SystemCharacterTableIsSingleByte = true; +bool systemCharacterTableIsSingleByte(void) +{ + return SystemCharacterTableIsSingleByte; +} + bool SetSystemCharacterTable(const char *CharacterTable) { if (CharacterTable) { for (unsigned int i = 0; i < NumEntries(CharacterTables1); i++) { @@ -335,11 +340,7 @@ bool SetSystemCharacterTable(const char *CharacterTable) { return false; } -// Determines the character table used in the given buffer and returns -// a string indicating that table. If no table can be determined, the -// default ISO6937 is returned. If a table can be determined, the buffer -// and length are adjusted accordingly. -static const char *getCharacterTable(const unsigned char *&buffer, int &length, bool *isSingleByte = NULL) { +const char *getCharacterTable(const unsigned char *&buffer, int &length, bool *isSingleByte) { const char *cs = "ISO6937"; // Workaround for broadcaster stupidity: according to // "ETSI EN 300 468" the default character set is ISO6937. But unfortunately some @@ -375,7 +376,7 @@ static const char *getCharacterTable(const unsigned char *&buffer, int &length, return cs; } -static bool convertCharacterTable(const char *from, size_t fromLength, char *to, size_t toLength, const char *fromCode) +bool convertCharacterTable(const char *from, size_t fromLength, char *to, size_t toLength, const char *fromCode) { if (SystemCharacterTable) { iconv_t cd = iconv_open(SystemCharacterTable, fromCode); |