summaryrefslogtreecommitdiff
path: root/libsi
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-06-15 13:25:35 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2007-06-15 13:25:35 +0200
commitd1934a7cfd99abbf9502aef6e6ecd897f78aa026 (patch)
treeaf6b6e87662b5fab8265ff5b95a03614ac9f8301 /libsi
parent1f7c70cd49046525519cc84cb118d246c71569dc (diff)
downloadvdr-d1934a7cfd99abbf9502aef6e6ecd897f78aa026.tar.gz
vdr-d1934a7cfd99abbf9502aef6e6ecd897f78aa026.tar.bz2
Using nl_langinfo(CODESET) to determine the local codeset to use; libsi uses canonical codeset names
Diffstat (limited to 'libsi')
-rw-r--r--libsi/si.c94
1 files changed, 47 insertions, 47 deletions
diff --git a/libsi/si.c b/libsi/si.c
index 2eb3dfd6..88950908 100644
--- a/libsi/si.c
+++ b/libsi/si.c
@@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: si.c 1.20 2007/06/10 09:31:34 kls Exp $
+ * $Id: si.c 1.21 2007/06/15 13:08:31 kls Exp $
* *
***************************************************************************/
@@ -250,59 +250,59 @@ char *String::getText(char *buffer, char *shortVersion, int sizeBuffer, int size
}
static const char *CharacterTables1[] = {
- NULL, // 0x00
- "ISO8859-5", // 0x01
- "ISO8859-6", // 0x02
- "ISO8859-7", // 0x03
- "ISO8859-8", // 0x04
- "ISO8859-9", // 0x05
- "ISO8859-10", // 0x06
- "ISO8859-11", // 0x07
- "ISO8859-12", // 0x08
- "ISO8859-13", // 0x09
- "ISO8859-14", // 0x0A
- "ISO8859-15", // 0x0B
- NULL, // 0x0C
- NULL, // 0x0D
- NULL, // 0x0E
- NULL, // 0x0F
- NULL, // 0x10
- "UTF16", // 0x11
- "EUC-KR", // 0x12
- "GB2312", // 0x13
- "GBK", // 0x14
- "UTF8", // 0x15
- NULL, // 0x16
- NULL, // 0x17
- NULL, // 0x18
- NULL, // 0x19
- NULL, // 0x1A
- NULL, // 0x1B
- NULL, // 0x1C
- NULL, // 0x1D
- NULL, // 0x1E
- NULL, // 0x1F
+ NULL, // 0x00
+ "ISO-8859-5", // 0x01
+ "ISO-8859-6", // 0x02
+ "ISO-8859-7", // 0x03
+ "ISO-8859-8", // 0x04
+ "ISO-8859-9", // 0x05
+ "ISO-8859-10", // 0x06
+ "ISO-8859-11", // 0x07
+ "ISO-8859-12", // 0x08
+ "ISO-8859-13", // 0x09
+ "ISO-8859-14", // 0x0A
+ "ISO-8859-15", // 0x0B
+ NULL, // 0x0C
+ NULL, // 0x0D
+ NULL, // 0x0E
+ NULL, // 0x0F
+ NULL, // 0x10
+ "UTF-16", // 0x11
+ "EUC-KR", // 0x12
+ "GB2312", // 0x13
+ "GBK", // 0x14
+ "UTF-8", // 0x15
+ NULL, // 0x16
+ NULL, // 0x17
+ NULL, // 0x18
+ NULL, // 0x19
+ NULL, // 0x1A
+ NULL, // 0x1B
+ NULL, // 0x1C
+ NULL, // 0x1D
+ NULL, // 0x1E
+ NULL, // 0x1F
};
#define SingleByteLimit 0x0B
static const char *CharacterTables2[] = {
NULL, // 0x00
- "ISO8859-1", // 0x01
- "ISO8859-2", // 0x02
- "ISO8859-3", // 0x03
- "ISO8859-4", // 0x04
- "ISO8859-5", // 0x05
- "ISO8859-6", // 0x06
- "ISO8859-7", // 0x07
- "ISO8859-8", // 0x08
- "ISO8859-9", // 0x09
- "ISO8859-10", // 0x0A
- "ISO8859-11", // 0x0B
+ "ISO-8859-1", // 0x01
+ "ISO-8859-2", // 0x02
+ "ISO-8859-3", // 0x03
+ "ISO-8859-4", // 0x04
+ "ISO-8859-5", // 0x05
+ "ISO-8859-6", // 0x06
+ "ISO-8859-7", // 0x07
+ "ISO-8859-8", // 0x08
+ "ISO-8859-9", // 0x09
+ "ISO-8859-10", // 0x0A
+ "ISO-8859-11", // 0x0B
NULL, // 0x0C
- "ISO8859-13", // 0x0D
- "ISO8859-14", // 0x0E
- "ISO8859-15", // 0x0F
+ "ISO-8859-13", // 0x0D
+ "ISO-8859-14", // 0x0E
+ "ISO-8859-15", // 0x0F
};
#define NumEntries(Table) (sizeof(Table) / sizeof(char *))