summaryrefslogtreecommitdiff
path: root/vdr.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-02-10 14:29:27 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2015-02-10 14:29:27 +0100
commit89f5244007965c047ddf7943daf285cb3832b733 (patch)
treef7f2192afa8bd244637dea2311288ba531d1b76e /vdr.c
parentd34abd6665242550e8aed1c134de7fd83e86bb5b (diff)
downloadvdr-89f5244007965c047ddf7943daf285cb3832b733.tar.gz
vdr-89f5244007965c047ddf7943daf285cb3832b733.tar.bz2
Added command line option --chartab to replace VDR_CHARSET_OVERRIDE
Diffstat (limited to 'vdr.c')
-rw-r--r--vdr.c25
1 files changed, 24 insertions, 1 deletions
diff --git a/vdr.c b/vdr.c
index 336130f8..71a72f2e 100644
--- a/vdr.c
+++ b/vdr.c
@@ -22,7 +22,7 @@
*
* The project's page is at http://www.tvdr.de
*
- * $Id: vdr.c 3.15 2015/01/17 14:48:09 kls Exp $
+ * $Id: vdr.c 3.16 2015/02/10 14:13:12 kls Exp $
*/
#include <getopt.h>
@@ -216,6 +216,12 @@ int main(int argc, char *argv[])
bool MuteAudio = false;
int WatchdogTimeout = DEFAULTWATCHDOG;
const char *Terminal = NULL;
+ const char *OverrideCharacterTable = NULL;
+#define DEPRECATED_VDR_CHARSET_OVERRIDE
+#ifdef DEPRECATED_VDR_CHARSET_OVERRIDE
+ OverrideCharacterTable = getenv("VDR_CHARSET_OVERRIDE");
+ const char *DeprecatedVdrCharsetOverride = OverrideCharacterTable;
+#endif
bool UseKbd = true;
const char *LircDevice = NULL;
@@ -244,6 +250,7 @@ int main(int argc, char *argv[])
static struct option long_options[] = {
{ "audio", required_argument, NULL, 'a' },
{ "cachedir", required_argument, NULL, 'c' | 0x100 },
+ { "chartab", required_argument, NULL, 'c' | 0x200 },
{ "config", required_argument, NULL, 'c' },
{ "daemon", no_argument, NULL, 'd' },
{ "device", required_argument, NULL, 'D' },
@@ -287,6 +294,9 @@ int main(int argc, char *argv[])
case 'c' | 0x100:
CacheDirectory = optarg;
break;
+ case 'c' | 0x200:
+ OverrideCharacterTable = optarg;
+ break;
case 'c': ConfigDirectory = optarg;
break;
case 'd': DaemonMode = true;
@@ -517,6 +527,11 @@ int main(int argc, char *argv[])
printf("Usage: vdr [OPTIONS]\n\n" // for easier orientation, this is column 80|
" -a CMD, --audio=CMD send Dolby Digital audio to stdin of command CMD\n"
" --cachedir=DIR save cache files in DIR (default: %s)\n"
+ " --chartab=CHARACTER_TABLE\n"
+ " set the character table to use for strings in the\n"
+ " DVB data stream that don't begin with a character\n"
+ " table indicator, but don't use the standard default\n"
+ " character table (for instance ISO-8859-9)\n"
" -c DIR, --config=DIR read config files from DIR (default: %s)\n"
" -d, --daemon run in daemon mode\n"
" -D NUM, --device=NUM use only the given DVB device (NUM = 0, 1, 2...)\n"
@@ -674,6 +689,14 @@ int main(int argc, char *argv[])
isyslog("codeset is '%s' - %s", CodeSet, known ? "known" : "unknown");
cCharSetConv::SetSystemCharacterTable(CodeSet);
}
+#ifdef DEPRECATED_VDR_CHARSET_OVERRIDE
+ if (DeprecatedVdrCharsetOverride)
+ isyslog("use of environment variable VDR_CHARSET_OVERRIDE (%s) is deprecated!", DeprecatedVdrCharsetOverride);
+#endif
+ if (OverrideCharacterTable) {
+ isyslog("override character table is '%s'", OverrideCharacterTable);
+ SI::SetOverrideCharacterTable(OverrideCharacterTable);
+ }
// Initialize internationalization: