Mercurial > mplayer.hg
diff cfg-mplayer.h @ 725:3e5dbbc42864
Added -unicode switch to deal with unicode subs.
author | atmosfear |
---|---|
date | Tue, 08 May 2001 19:39:21 +0000 |
parents | c3e0bdb64027 |
children | e14114170e01 |
line wrap: on
line diff
--- a/cfg-mplayer.h Tue May 08 12:59:03 2001 +0000 +++ b/cfg-mplayer.h Tue May 08 19:39:21 2001 +0000 @@ -21,6 +21,7 @@ extern int vo_dbpp; extern int osd_level; +extern int sub_unicode; struct config conf[]={ /* name, pointer, type, flags, min, max */ @@ -53,6 +54,8 @@ {"subdelay", &sub_delay, CONF_TYPE_FLOAT, 0, 0.0, 10.0}, {"subfps", &sub_fps, CONF_TYPE_FLOAT, 0, 0.0, 10.0}, {"noautosub", &sub_auto, CONF_TYPE_FLAG, 0, 1, 0}, + {"unicode", &sub_unicode, CONF_TYPE_FLAG, 0, 0, 1}, + {"nounicode", &sub_unicode, CONF_TYPE_FLAG, 0, 1, 0}, {"font", &font_name, CONF_TYPE_STRING, 0, 0, 0}, {"ffactor", &font_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 10.0}, {"bg", &play_in_bg, CONF_TYPE_FLAG, 0, 0, 1},