diff libass/ass_types.h @ 19638:a3473d990fed

Better collision detection algorithm. The idea is to keep a subtitle in place when a lower placed one disappears, thus improving readability. As a side effect, layers are supported now.
author eugeni
date Sat, 02 Sep 2006 19:17:32 +0000
parents c8daf3471201
children fa122b7c71c6
line wrap: on
line diff
--- a/libass/ass_types.h	Sat Sep 02 19:00:30 2006 +0000
+++ b/libass/ass_types.h	Sat Sep 02 19:17:32 2006 +0000
@@ -36,6 +36,8 @@
 	int Encoding;
 } ass_style_t;
 
+typedef struct render_priv_s render_priv_t;
+
 /// ass_event_t corresponds to a single Dialogue line
 /// Text is stored as-is, style overrides will be parsed later
 typedef struct ass_event_s {
@@ -51,6 +53,8 @@
 	int MarginV;
 	char* Effect;
 	char* Text;
+
+	render_priv_t* render_priv;
 } ass_event_t;
 
 typedef struct parser_priv_s parser_priv_t;