summaryrefslogtreecommitdiffstats
path: root/cfg-common.h
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-24 10:24:07 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-24 10:24:07 +0000
commit3b285a0e3b2a7e17b0c367b8e25f37bca5020fe6 (patch)
tree074501b286e442a5cd9f62033deba1ea96293fcb /cfg-common.h
parentc8091743e16de84e3c59890aed97bcdb62189270 (diff)
downloadmpv-3b285a0e3b2a7e17b0c367b8e25f37bca5020fe6.tar.bz2
mpv-3b285a0e3b2a7e17b0c367b8e25f37bca5020fe6.tar.xz
Improvements to spudec (DVD/VobSub) subtitle code:
- runtime selectable positioning, like with text subs - runtime selectable scaling/antialiasing algorithm - gaussian blur scaler (finally dvd/vobsub doesn't look like shit!) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9078 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-common.h')
-rw-r--r--cfg-common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cfg-common.h b/cfg-common.h
index 1ca35bcb50..47024b6aea 100644
--- a/cfg-common.h
+++ b/cfg-common.h
@@ -192,6 +192,9 @@
{"subpos", &sub_pos, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
{"subalign", &sub_alignment, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
{"subwidth", &sub_width_p, CONF_TYPE_INT, CONF_RANGE, 10, 100, NULL},
+ {"spualign", &spu_alignment, CONF_TYPE_INT, CONF_RANGE, -1, 2, NULL},
+ {"spuaa", &spu_aamode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
+ {"spugauss", &spu_gaussvar, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 3.0, NULL},
#ifdef HAVE_FREETYPE
{"subfont-encoding", &subtitle_font_encoding, CONF_TYPE_STRING, 0, 0, 0, NULL},
{"subfont-text-scale", &text_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0, 100, NULL},