summaryrefslogtreecommitdiffstats
path: root/cfg-common.h
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-17 20:42:06 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-17 20:42:06 +0000
commitf6ecfe741f18a62cc33157193aed35ee695cfa68 (patch)
tree418b399188c6974ee357ed1e011e5674f8b866fc /cfg-common.h
parentd1b85029f820f6d6abe9ad254d8364392af2e826 (diff)
downloadmpv-f6ecfe741f18a62cc33157193aed35ee695cfa68.tar.bz2
mpv-f6ecfe741f18a62cc33157193aed35ee695cfa68.tar.xz
Fixes FriBiDi support and extends it with configure options. Patch by Raindel Shachar <raindel@techunix.technion.ac.il>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10650 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-common.h')
-rw-r--r--cfg-common.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/cfg-common.h b/cfg-common.h
index 5457506295..857b341f53 100644
--- a/cfg-common.h
+++ b/cfg-common.h
@@ -197,6 +197,15 @@
#ifdef USE_SUB
{"sub", &sub_name, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
+#ifdef USE_FRIBIDI
+ {"fribidi_charset", &fribidi_charset, CONF_TYPE_STRING, 0, 0, 0, NULL},
+ {"flip_hebrew", &flip_hebrew, CONF_TYPE_FLAG, 0, 0, 1, NULL},
+ {"noflip_hebrew", &flip_hebrew, CONF_TYPE_FLAG, 0, 1, 0, NULL},
+#else
+ {"fribidi_charset", "MPlayer wasn't compiled with FriBiDi support\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+ {"flip_hebrew", "MPlayer wasn't compiled with FriBiDi support\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+ {"noflip_hebrew", "MPlayer wasn't compiled with FriBiDi support\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+#endif
#ifdef USE_ICONV
{"subcp", &sub_cp, CONF_TYPE_STRING, 0, 0, 0, NULL},
#endif