summaryrefslogtreecommitdiffstats
path: root/Gui/cfg.h
diff options
context:
space:
mode:
authoreugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-25 00:05:14 +0000
committereugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-25 00:05:14 +0000
commit18beb11c3de796d9767406125ce1d62d918a071e (patch)
tree7ed51239290ac40dd11c6557626c4a39ad425983 /Gui/cfg.h
parentb7f39d6b1600038aebcb3e8443fdbd4eef1072b0 (diff)
downloadmpv-18beb11c3de796d9767406125ce1d62d918a071e.tar.bz2
mpv-18beb11c3de796d9767406125ce1d62d918a071e.tar.xz
Add ASS subtitle rendering options to gui.
Patch by Piotr Kaczuba <pepe at attika dot ath dot cx>. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20440 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/cfg.h')
-rw-r--r--Gui/cfg.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Gui/cfg.h b/Gui/cfg.h
index ffda9dbd06..dd66de193c 100644
--- a/Gui/cfg.h
+++ b/Gui/cfg.h
@@ -57,6 +57,20 @@ extern int gui_main_pos_y;
extern int gui_sub_pos_x;
extern int gui_sub_pos_y;
+#ifdef USE_ASS
+typedef struct {
+ int enabled;
+ int use_margins;
+ int top_margin;
+ int bottom_margin;
+} gtkASS_t;
+extern gtkASS_t gtkASS;
+extern int ass_enabled;
+extern int ass_use_margins;
+extern int ass_top_margin;
+extern int ass_bottom_margin;
+#endif
+
extern int cfg_read( void );
extern int cfg_write( void );