annotate libass/ass_types.h @ 20477:de4a66d99f41

Libass interface reworked: - ass_instance_t renamed to ass_renderer_t - ass_library_t introduced - use of mplayer-specific global variables limited to ass_mp.c
author eugeni
date Sat, 28 Oct 2006 15:07:18 +0000
parents fa122b7c71c6
children cb409839a110
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20008
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*-
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
2 // vim:ts=8:sw=8:noet:ai:
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
3 /*
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
4 Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
5
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
6 This program is free software; you can redistribute it and/or modify
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
7 it under the terms of the GNU General Public License as published by
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
8 the Free Software Foundation; either version 2 of the License, or
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
9 (at your option) any later version.
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
10
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
11 This program is distributed in the hope that it will be useful,
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
14 GNU General Public License for more details.
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
15
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
16 You should have received a copy of the GNU General Public License
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
17 along with this program; if not, write to the Free Software
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
19 */
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19638
diff changeset
20
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
21 #ifndef __ASS_TYPES_H__
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
22 #define __ASS_TYPES_H__
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
23
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
24 #define VALIGN_SUB 0
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
25 #define VALIGN_CENTER 8
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
26 #define VALIGN_TOP 4
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
27 #define HALIGN_LEFT 1
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
28 #define HALIGN_CENTER 2
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
29 #define HALIGN_RIGHT 3
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
30
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
31 /// ass Style: line
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
32 typedef struct ass_style_s {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
33 char* Name;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
34 char* FontName;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
35 int FontSize;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
36 uint32_t PrimaryColour;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
37 uint32_t SecondaryColour;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
38 uint32_t OutlineColour;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
39 uint32_t BackColour;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
40 int Bold;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
41 int Italic;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
42 int Underline;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
43 int StrikeOut;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
44 double ScaleX;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
45 double ScaleY;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
46 int Spacing;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
47 int Angle;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
48 int BorderStyle;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
49 double Outline;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
50 double Shadow;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
51 int Alignment;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
52 int MarginL;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
53 int MarginR;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
54 int MarginV;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
55 // int AlphaLevel;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
56 int Encoding;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
57 } ass_style_t;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
58
19638
a3473d990fed Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents: 19492
diff changeset
59 typedef struct render_priv_s render_priv_t;
a3473d990fed Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents: 19492
diff changeset
60
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
61 /// ass_event_t corresponds to a single Dialogue line
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
62 /// Text is stored as-is, style overrides will be parsed later
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
63 typedef struct ass_event_s {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
64 long long Start; // ms
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
65 long long Duration; // ms
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
66
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
67 int ReadOrder;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
68 int Layer;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
69 int Style;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
70 char* Name;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
71 int MarginL;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
72 int MarginR;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
73 int MarginV;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
74 char* Effect;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
75 char* Text;
19638
a3473d990fed Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents: 19492
diff changeset
76
a3473d990fed Better collision detection algorithm. The idea is to keep a subtitle in place
eugeni
parents: 19492
diff changeset
77 render_priv_t* render_priv;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
78 } ass_event_t;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
79
19492
c8daf3471201 SSA/ASS parser reworked, with 2 main results:
eugeni
parents: 18937
diff changeset
80 typedef struct parser_priv_s parser_priv_t;
c8daf3471201 SSA/ASS parser reworked, with 2 main results:
eugeni
parents: 18937
diff changeset
81
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20008
diff changeset
82 typedef struct ass_library_s ass_library_t;
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20008
diff changeset
83
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
84 /// ass track represent either an external script or a matroska subtitle stream (no real difference between them)
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
85 /// it can be used in rendering after the headers are parsed (i.e. events format line read)
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
86 typedef struct ass_track_s {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
87 int n_styles; // amount used
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
88 int max_styles; // amount allocated
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
89 int n_events;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
90 int max_events;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
91 ass_style_t* styles; // array of styles, max_styles length, n_styles used
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
92 ass_event_t* events; // the same as styles
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
93
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
94 char* style_format; // style format line (everything after "Format: ")
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
95 char* event_format; // event format line
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
96
19492
c8daf3471201 SSA/ASS parser reworked, with 2 main results:
eugeni
parents: 18937
diff changeset
97 enum {TRACK_TYPE_UNKNOWN = 0, TRACK_TYPE_ASS, TRACK_TYPE_SSA} track_type;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
98
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
99 // script header fields
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
100 int PlayResX;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
101 int PlayResY;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
102 double Timer;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
103 int WrapStyle;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
104
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
105
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
106 int default_style; // index of default style
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
107 char* name; // file name in case of external subs, 0 for streams
19492
c8daf3471201 SSA/ASS parser reworked, with 2 main results:
eugeni
parents: 18937
diff changeset
108
20477
de4a66d99f41 Libass interface reworked:
eugeni
parents: 20008
diff changeset
109 ass_library_t* library;
19492
c8daf3471201 SSA/ASS parser reworked, with 2 main results:
eugeni
parents: 18937
diff changeset
110 parser_priv_t* parser_priv;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
111 } ass_track_t;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
112
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
113 #endif
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
114